Platypus vignette

Alexander Yermanos

2021-02-13

1. Introduction

Platypus is a package designed to facilitate the analysis of single-cell immune repertoire sequencing experiments. The package can be used to separately analyze gene expression (GEX) or immune receptor repertoire (VDJ) sequencing data, in addition to integrating the two data sets to combine phenotypic features with repertoire analysis. The package is designed to primarily analyze the output from 10x genomics cellranger (output from count for GEX and vdj for enriched immune receptor libraries). The functions could work with other barcode-based scSeq technologies assume the input columns are added correctly. The gene expression analysis relies heavily upon Seurat, a commonly used R package for single-cell sequencing (scSeq).

2. Gene expression analysis

The output from cellranger’s count function returns gene expression information in the form of an expression matrix, barcodes, and gene identifiers. The function automate_GEX allows us to automates the transcriptional analysis of the gene expression libraries from cellranger. The input directory should be set to the directory containing these three files (barcodes.tsv.gz, features.tsv.gz, matrix.mtx.gz). If it is desired to analyze multiple distinct transcriptomes (e.g. on separate UMAP space), these directories should go into separate list objects. For example if there are 20 repertoires and it is wanted to analyze them separately (20 separate UMAPs, 20 separate repertoires) then each outer list element of the input directories will contain the directory for the individual repertoire/GEX files. The output of this function is a Seurat object similar to the standard pipeline demonstrated in the Seurat vignette. This involves scaling, normalizing, clustering, and performing dimension reductionality (tSNE and UMAP by default). At this stage there is no incorporation of repertoire features, which need to be explicitly integrated using subsequent functions in Platypus.

In the example below two directories are supplied to two distinct list elements, and thus these distinct transcriptomes (corresponding to two distinct repertoires) will each be associated to a distinct Seurat object.

### Removing any previous versions of the package
# First we will ensure that there is no previous version installed locally
#detach("package:Platypus", unload=TRUE)
#remove.packages("Platypus")

### Downloading and installing Platypus

# First we need to download the most recent version from the master branch at https://github.com/alexyermanos/Platypus we can install the package using the following command. 
# WARNING: This needs to be replaced with your own directory where the downloaded package is found

# For MacOS useres it may look like this
#install.packages("~/Downloads/Platypus_2.0.4.tar.gz", repos = NULL, type="source")

# For windows it will likely look something like this. 
# WARNING: You will need to replace YourPCName with your User name for the windows account in the directory. 
# install.packages("C:\Users\YourPCName\Downloads\Platypus_2.0.4.tar.gz", repos = NULL, type="source")

# Now we can load the installed package into the R environment. In case of problems with instally other R packages that are used in Platypus, please see the README file at the https://github.com/alexyermanos/Platypus, where we outline how to install the other R packages for both Windows and MacOS.
#library(Platypus)

# The individual R functions can additionally be found on the github in the Functions branch. Within this branch, there is an folder "R" which contains the individual functions. This can similarly be downloaded and loaded into the R environment incase not all functions are desired. Similarly, these functions are actively updated and may include more features than the in original tar.gz file. 


### Downloading the test data
# The COVID-19 data (~136 MB size of the zip file) can be found at the following link https://polybox.ethz.ch/index.php/s/fxQJ3NrRSwiPSSo This dataset contains VDJ (separate libraries for B and T cells) and GEX libraries from two convalescent COVID-19 patients.

# After downloading the zip file named "PlatypusTestData.zip", please unzip the file and find the path to the newly formed folder. Typically this will be in the Downloads folder, so the code below should work on MacOS. For windows please uncomment the code and change the user name to match your PC.

directory_to_covid_patients_gex <- list()
directory_to_covid_patients_gex[[1]] <- c("~/Downloads/PlatypusTestData/Patient1_GEX/")
directory_to_covid_patients_gex[[2]] <- c("~/Downloads/PlatypusTestData/Patient2_GEX/")

# For windows: 
#directory_to_covid_patients_gex[[1]] <- c("C:\Users\YourPCName\Downloads\PlatypusTestData\Patient1_GEX")
#directory_to_covid_patients_gex[[2]] <- c("C:\Users\YourPCName\Downloads\PlatypusTestData\Patient2_GEX")

GEX_automate allows us to perform the standard Seurat pipeline in a single line of code with the ability to change the parameters used by Seurat involving minimum read numbers, mitochondrial gene percentages, cluster resolution, etc. In addition we can remove antibody and TCR genes from the data set (e.g. IGHV1-1), to not let clonality impact transcriptional clustering, by simply setting the VDJ.gene.filter argument to TRUE.

covid_gex_patients_not_integrated <- Platypus::GEX_automate(GEX.outs.directory.list = directory_to_covid_patients_gex,integration.method = "scale.data",mito.filter = 20,cluster.resolution = 0.5,VDJ.gene.filter = T)
## [1] "This may take longer than other repertoire associated functions. Please see Seurat vingenettes for further information"
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
## 
## Number of nodes: 6871
## Number of edges: 227893
## 
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8914
## Number of communities: 13
## Elapsed time: 0 seconds
## Warning: The default method for RunUMAP has changed from calling Python UMAP via reticulate to the R-native UWOT using the cosine metric
## To use Python UMAP via reticulate, set umap.method to 'umap-learn' and metric to 'correlation'
## This message will be shown once per session
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
## 
## Number of nodes: 6055
## Number of edges: 205942
## 
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8829
## Number of communities: 12
## Elapsed time: 0 seconds

Based on the input given (2 directories as separate list objects), we get 2 distinct Seurat objects.

length(covid_gex_patients_not_integrated) ## length of two 
## [1] 2
class(covid_gex_patients_not_integrated) ## output is a list
## [1] "list"
class(covid_gex_patients_not_integrated[[1]]) ## Seurat object 
## [1] "Seurat"
## attr(,"package")
## [1] "Seurat"
ncol(covid_gex_patients_not_integrated[[1]]) ## 6871 cells
## [1] 6871
ncol(covid_gex_patients_not_integrated[[2]]) ## 6055 cells
## [1] 6055

Now we can visualize the 2D plots for each patient individually. By default, UMAP, PCA, and TSNE reductions are included in the object. Under default parameters this will display all cells in the GEX library from Patient1. By changing to the second list element we can view the cells from Patient2.

Seurat::DimPlot(covid_gex_patients_not_integrated[[1]],reduction = "umap")

Seurat::DimPlot(covid_gex_patients_not_integrated[[1]],reduction = "pca")

Seurat::DimPlot(covid_gex_patients_not_integrated[[1]],reduction = "tsne")

# UMAP for the second patient
Seurat::DimPlot(covid_gex_patients_not_integrated[[2]],reduction = "umap")

If we are intrested in merging the transcripotmes (corresponding to two distinct gene expression libraries), then the two directories are supplied to a single list element. The output from GEX_automate (corresponding to a single Seurat object list element this time) contains a column with the sample origin infromation based on the order of the input directories. Additionally, one can label different samples by group in the case that biological replicates are present. In this case we simply set patients to group1 and group2

directory_to_covid_patients_integrated <- list()
directory_to_covid_patients_integrated[[1]] <- c("~/Downloads/PlatypusTestData/Patient1_GEX/",
                                                 "~/Downloads/PlatypusTestData/Patient2_GEX/")

## Here we use the previous version of automate_GEX to produce the identical UMAP seen in the manuscript. 
covid_gex <- Platypus::automate_GEX(GEX.outs.directory.list = directory_to_covid_patients_integrated[1:1],integration.method = "scale.data",mito.filter = 20,cluster.resolution = 0.5,VDJ.gene.filter = T)
## [1] "This may take longer than other repertoire associated functions. Please see Seurat vignettes for further information"
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
## 
## Number of nodes: 12926
## Number of edges: 426416
## 
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8933
## Number of communities: 12
## Elapsed time: 2 seconds
### In this case, patient1 is the covid_gex[[1]]$sample_id==1 and patient2 is the covid_gex[[1]]$sample_id==2.

class(covid_gex) ## list
## [1] "list"
length(covid_gex) ### list of length one
## [1] 1
class(covid_gex[[1]]) ## Seurat object containing GEX from both samples 
## [1] "Seurat"
## attr(,"package")
## [1] "Seurat"

We can extract which cells come from which sample based on the sample_id in the Seurat object.

print(table(covid_gex[[1]]$sample_id)) 
## 
##    1    2 
## 6871 6055

We can see that the first patient had 6871 cells and the second patient had 6055 cells found in their gene expression data based on the current filtering.

Now we can visualize the samples using a UMAP/tsne plot.

Seurat::DimPlot(covid_gex[[1]],reduction = "umap")

We observe that under this Seurat pipeline there are 12 distinct clusters. The number of clusters can be changed by altering the cluster.resolution argument in the automate_GEX function.

In this current UMAP we do not see which cells are coming from which patient. To see this, we can simply separate the cells in the DimPlot by the sample_id vector in the Seurat object.

Seurat::DimPlot(covid_gex[[1]],reduction = "umap",split.by = "sample_id") 

Seurat::DimPlot(covid_gex[[1]],reduction = "umap")

We can visually observe that the majority of clusters have cells from both patients, suggesting a similar distribution of transcriptional properties between the two samples. We can also plot the cluster membership for each of the distinct samples (patients) using the GEX_cluster_per_sample function.

Platypus::GEX_cluster_membership(automate_GEX.output = covid_gex[[1]])

Finally we can also look at the B, CD4 and CD8 clusters for each patient.

Seurat::FeaturePlot(covid_gex[[1]],reduction = "umap",features = c("CD4","CD8A","CD3E","CD19"),split.by = "sample_id")

We can see that both patients seem to have B cells (CD19+), CD4 T cells, and CD8 T cells. Platypus also allows us to assigning cell type/state identity to the different clusters by using the GEX_phenotype. This functon takes the Seurat object as input and uses canonical markers to easily match the clustering to known cell types. The user also has the possibility to use a custom list of markers and their associate cell types/states.

covid_gex_phenotype <- Platypus::GEX_phenotype(covid_gex[[1]], default = T)
## Loading required package: do
## Warning: package 'do' was built under R version 3.6.2
## 
## Attaching package: 'do'
## The following object is masked from 'package:Biostrings':
## 
##     reverse
## The following object is masked from 'package:XVector':
## 
##     reverse
## The following objects are masked from 'package:IRanges':
## 
##     mid, reverse
## The following object is masked from 'package:S4Vectors':
## 
##     expand
## Loading required package: useful
## 
## Attaching package: 'useful'
## The following objects are masked from 'package:do':
## 
##     left, right
covid_gex[[1]] <- Platypus::GEX_phenotype(covid_gex[[1]], default = F,
                                            cell.state.markers=c("CD8A+;CCL5+;CD44+;IL7R-;CD19-",
                          "CD8A+;CCL5-;CD44+;IL7R+;CD19-"),
                        cell.state.names=c("EffectorCD8",
                        "MemoryCD8"))

The resulting Seurat object now contains a “cell.state” column which can be used for annotation in the DimPlot function of the Seurat package.

Seurat::DimPlot(covid_gex[[1]],reduction = "umap",split.by = "sample_id", group.by = "cell.state") 

3. Differential Gene Analysis

After scaling, normalizing, and clustering the cells from the GEX libraries we can now investigate which genes are differentially expressed between either clusters or samples. First we can investigate those genes that define each of the clusters by using the GEX_cluster_genes function that takes the output from the automate_GEX function. Depending on the size of the data set and the number of cells this function can by quite slow. The output of this function is a list in which each element contains the differentially expressed genes for a given cluster. For example the first element of the list will correspond to a dataframe describing the genes for cluster0 that we previously observed on the UMAP. This list object will correspond to the length of the number of clusters that were previously calculated, and has the same format as the FindMarkers function from Seurat. The pct.1 will correspond to the percentage of cells expressing the gene in the cluster of interest, and the pct.2 to the percentage of cells in all other clusters.

## Warning: running this function will take a while
gene_expression_cluster <- Platypus::GEX_cluster_genes(covid_gex[[1]],min.pct = 0.25) 

length(gene_expression_cluster) ## length of 12, corresponding to 12 clusters
## [1] 12
length(unique(covid_gex[[1]]$seurat_clusters)) ## length of 12 
## [1] 12

We can now look at some of the genes associated with cluster0 in the previously displayed umap

head(gene_expression_cluster[[1]])
##        p_val avg_logFC pct.1 pct.2 p_val_adj SYMBOL cluster
## ANXA1      0 1.2198819 0.845 0.309         0  ANXA1       0
## S100A4     0 1.1878717 0.943 0.484         0 S100A4       0
## LMNA       0 1.1177405 0.566 0.128         0   LMNA       0
## IL32       0 0.9844173 0.972 0.507         0   IL32       0
## KLRB1      0 0.9616874 0.431 0.094         0  KLRB1       0
## SRGN       0 0.8459888 0.869 0.420         0   SRGN       0

We can see that genes ANXA1, S100A4 or LMNA are highly expressed in this cluster. We can also quantify the total number of differentially expressed genes for all 12 clusters

print(sapply(gene_expression_cluster,nrow))
##  [1]  168  155  345  381  200  178  214  636   19  744  795 1265

It is also possible using Platypus to create a heatmap displaying the differentially expressed genes for each cluster. This can be customized to sub-sample cells in case certain clusters are too large for visualization purposes. Additionally, the user can determine the number of genes to display for each cluster based on the n.genes.per.cluster argument. The function GEX_cluster_genes_heatmap can be used to produce a ggplot object, based on the DoHeatmap from Seurat.

covid_heatmap_clusters <- Platypus::GEX_cluster_genes_heatmap1(automate_GEX.output = covid_gex[[1]],
                                                              GEX_cluster_genes.output = gene_expression_cluster,
                                                              n.genes.per.cluster = 3,max.cell = 30,
                                                              metric = "top_logFC")

print(covid_heatmap_clusters)

After plotting the ggplot object we can clearly see genes enricheded in the various clusters - mainly indicated by the diagonal.

Earlier we say how we can match the unbiased clustering to known cell types using canonical markers. Platypus also allows us to run a GO or KEGG term analysis in order to obtain information on the most significant GO/KEGG terms and their visualizations using the GEX_GOterm function. (To do this, we first need to organize the top genes that define each Seurat cluster and convert them into a single dataframe. This is done using the GEX_topN_DE_genes_per_cluster function)

ontology_covid <- Platypus::GEX_GOterm(GEX.cluster.genes.output = gene_expression_cluster, topNgenes = 10, go.plots = F)
## Loading required package: org.Mm.eg.db
## Loading required package: AnnotationDbi
## Loading required package: Biobase
## Welcome to Bioconductor
## 
##     Vignettes contain introductory material; view with
##     'browseVignettes()'. To cite Bioconductor, see
##     'citation("Biobase")', and for packages 'citation("pkgname")'.
## 
## Attaching package: 'AnnotationDbi'
## The following object is masked from 'package:dplyr':
## 
##     select
## 
## Loading required package: edgeR
## Warning: package 'edgeR' was built under R version 3.6.2
## Loading required package: limma
## Warning: package 'limma' was built under R version 3.6.2
## 
## Attaching package: 'limma'
## The following object is masked from 'package:BiocGenerics':
## 
##     plotMA
## The following object is masked from 'package:seqinr':
## 
##     zscore
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
## 'select()' returned 1:1 mapping between keys and columns
print(ontology_covid)
## [[1]]
## [[1]][[1]]
##                                                                                                                                                           Term
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0010165                                                                                                                                   response to X-ray
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0050663                                                                                                                                  cytokine secretion
## GO:0042092                                                                                                                              type 2 immune response
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0016050                                                                                                                                vesicle organization
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0042886                                                                                                                                     amide transport
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0071702                                                                                                                         organic substance transport
## GO:0035270                                                                                                                        endocrine system development
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0009306                                                                                                                                   protein secretion
## GO:0008104                                                                                                                                protein localization
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0002790                                                                                                                                   peptide secretion
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:0097350                                                                                                                                neutrophil clearance
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:0035799                                                                                                                                   ureter maturation
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0006810                                                                                                                                           transport
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0015793                                                                                                                                  glycerol transport
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0072179                                                                                                                              nephric duct formation
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0070295                                                                                                                              renal water absorption
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0033036                                                                                                                          macromolecule localization
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0051234                                                                                                                       establishment of localization
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0001816                                                                                                                                 cytokine production
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0015840                                                                                                                                      urea transport
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0043542                                                                                                                          endothelial cell migration
## GO:0061024                                                                                                                               membrane organization
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0015031                                                                                                                                   protein transport
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:0060017                                                                                                                       parathyroid gland development
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0070459                                                                                                                                 prolactin secretion
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0003097                                                                                                                               renal water transport
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0015833                                                                                                                                   peptide transport
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0045184                                                                                                               establishment of protein localization
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0030278                                                                                                                          regulation of ossification
## GO:0006915                                                                                                                                   apoptotic process
## GO:0042592                                                                                                                                 homeostatic process
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0044849                                                                                                                                       estrous cycle
## GO:0015791                                                                                                                                    polyol transport
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0012501                                                                                                                               programmed cell death
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0051046                                                                                                                             regulation of secretion
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0009888                                                                                                                                  tissue development
## GO:0023051                                                                                                                             regulation of signaling
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0008283                                                                                                                                  cell proliferation
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0030217                                                                                                                              T cell differentiation
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0072176                                                                                                                            nephric duct development
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0090132                                                                                                                                epithelium migration
## GO:0008219                                                                                                                                          cell death
## GO:0090130                                                                                                                                    tissue migration
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0006996                                                                                                                              organelle organization
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0051451                                                                                                                                  myoblast migration
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0071599                                                                                                                            otic vesicle development
## GO:0070293                                                                                                                                    renal absorption
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0032940                                                                                                                                   secretion by cell
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0006833                                                                                                                                     water transport
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0051276                                                                                                                             chromosome organization
## GO:0032259                                                                                                                                         methylation
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0001655                                                                                                                       urogenital system development
## GO:0072359                                                                                                                      circulatory system development
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0072189                                                                                                                                  ureter development
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0031579                                                                                                                          membrane raft organization
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:0009914                                                                                                                                   hormone transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0001503                                                                                                                                        ossification
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0010256                                                                                                                    endomembrane system organization
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0003176                                                                                                                            aortic valve development
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0046903                                                                                                                                           secretion
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0009314                                                                                                                               response to radiation
## GO:0051179                                                                                                                                        localization
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0042044                                                                                                                                     fluid transport
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051098                                                                                                                               regulation of binding
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0048799                                                                                                                             animal organ maturation
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0060065                                                                                                                                  uterus development
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0007155                                                                                                                                       cell adhesion
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0016570                                                                                                                                histone modification
## GO:0022610                                                                                                                                 biological adhesion
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0048608                                                                                                                  reproductive structure development
## GO:0061458                                                                                                                     reproductive system development
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0070670                                                                                                                           response to interleukin-4
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0048732                                                                                                                                   gland development
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0050789                                                                                                                    regulation of biological process
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042110                                                                                                                                   T cell activation
## GO:0016477                                                                                                                                      cell migration
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0032392                                                                                                                                DNA geometric change
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0032879                                                                                                                          regulation of localization
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0001709                                                                                                                             cell fate determination
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0007154                                                                                                                                  cell communication
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0060612                                                                                                                          adipose tissue development
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0002250                                                                                                                            adaptive immune response
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0032355                                                                                                                               response to estradiol
## GO:0065007                                                                                                                               biological regulation
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0030850                                                                                                                          prostate gland development
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0034613                                                                                                                       cellular protein localization
## GO:0045058                                                                                                                                    T cell selection
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0010941                                                                                                                            regulation of cell death
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0070848                                                                                                                           response to growth factor
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0003170                                                                                                                             heart valve development
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0031347                                                                                                                      regulation of defense response
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0070988                                                                                                                                       demethylation
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0040011                                                                                                                                          locomotion
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006954                                                                                                                               inflammatory response
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0006325                                                                                                                              chromatin organization
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0030029                                                                                                                        actin filament-based process
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0048513                                                                                                                            animal organ development
## GO:0051049                                                                                                                             regulation of transport
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0015908                                                                                                                                fatty acid transport
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0048589                                                                                                                                developmental growth
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0001656                                                                                                                             metanephros development
## GO:0031016                                                                                                                                pancreas development
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0006950                                                                                                                                  response to stress
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0033993                                                                                                                                   response to lipid
## GO:0006304                                                                                                                                    DNA modification
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0045087                                                                                                                              innate immune response
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0061326                                                                                                                            renal tubule development
## GO:0001657                                                                                                                            ureteric bud development
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0055006                                                                                                                            cardiac cell development
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0003014                                                                                                                                renal system process
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0002252                                                                                                                             immune effector process
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0050776                                                                                                                       regulation of immune response
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0048856                                                                                                                    anatomical structure development
## GO:0030282                                                                                                                                 bone mineralization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0031929                                                                                                                                       TOR signaling
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0008584                                                                                                                              male gonad development
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0001889                                                                                                                                   liver development
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0000723                                                                                                                                telomere maintenance
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0032200                                                                                                                               telomere organization
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0003279                                                                                                                          cardiac septum development
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0016043                                                                                                                     cellular component organization
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0009791                                                                                                                          post-embryonic development
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0045321                                                                                                                                leukocyte activation
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0016573                                                                                                                                 histone acetylation
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0042221                                                                                                                                response to chemical
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0048468                                                                                                                                    cell development
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:0031099                                                                                                                                        regeneration
## GO:0097530                                                                                                                               granulocyte migration
## GO:0072006                                                                                                                                 nephron development
## GO:0002520                                                                                                                           immune system development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0030154                                                                                                                                cell differentiation
## GO:0032502                                                                                                                               developmental process
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0009605                                                                                                                       response to external stimulus
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0060284                                                                                                                      regulation of cell development
## GO:0030879                                                                                                                           mammary gland development
## GO:0040007                                                                                                                                              growth
## GO:0001775                                                                                                                                     cell activation
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0035295                                                                                                                                    tube development
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0051641                                                                                                                               cellular localization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0035148                                                                                                                                      tube formation
## GO:0048869                                                                                                                      cellular developmental process
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:0051262                                                                                                                             protein tetramerization
## GO:0023052                                                                                                                                           signaling
## GO:0002376                                                                                                                               immune system process
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0001764                                                                                                                                    neuron migration
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0060429                                                                                                                              epithelium development
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0006473                                                                                                                                 protein acetylation
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0099173                                                                                                                            postsynapse organization
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0048469                                                                                                                                     cell maturation
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0042098                                                                                                                                T cell proliferation
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0034329                                                                                                                              cell junction assembly
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0071103                                                                                                                             DNA conformation change
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0008406                                                                                                                                   gonad development
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0048731                                                                                                                                  system development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0030073                                                                                                                                   insulin secretion
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0003008                                                                                                                                      system process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0043583                                                                                                                                     ear development
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0007568                                                                                                                                               aging
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0050896                                                                                                                                response to stimulus
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0010033                                                                                                                       response to organic substance
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0022414                                                                                                                                reproductive process
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0000003                                                                                                                                        reproduction
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0007548                                                                                                                                 sex differentiation
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0048511                                                                                                                                    rhythmic process
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0043588                                                                                                                                    skin development
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0051604                                                                                                                                  protein maturation
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0051235                                                                                                                             maintenance of location
## GO:0019538                                                                                                                           protein metabolic process
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0007275                                                                                                                  multicellular organism development
## GO:0006952                                                                                                                                    defense response
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0009987                                                                                                                                    cellular process
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007049                                                                                                                                          cell cycle
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0006955                                                                                                                                     immune response
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0043010                                                                                                                         camera-type eye development
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0006959                                                                                                                             humoral immune response
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0042060                                                                                                                                       wound healing
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:1901652                                                                                                                                 response to peptide
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0022008                                                                                                                                        neurogenesis
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0001654                                                                                                                                     eye development
## GO:0007015                                                                                                                         actin filament organization
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0043412                                                                                                                          macromolecule modification
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0048880                                                                                                                          sensory system development
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0070997                                                                                                                                        neuron death
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0015711                                                                                                                             organic anion transport
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0007517                                                                                                                            muscle organ development
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0007165                                                                                                                                 signal transduction
## GO:0007409                                                                                                                                        axonogenesis
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0009611                                                                                                                                response to wounding
## GO:0061564                                                                                                                                    axon development
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0002253                                                                                                                       activation of immune response
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0006820                                                                                                                                     anion transport
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0044057                                                                                                                        regulation of system process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007399                                                                                                                          nervous system development
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0009725                                                                                                                                 response to hormone
## GO:0061061                                                                                                                        muscle structure development
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0001568                                                                                                                            blood vessel development
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006897                                                                                                                                         endocytosis
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0010467                                                                                                                                     gene expression
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0031175                                                                                                                       neuron projection development
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0022402                                                                                                                                  cell cycle process
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0048666                                                                                                                                  neuron development
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0009790                                                                                                                                  embryo development
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0030182                                                                                                                              neuron differentiation
## GO:0046907                                                                                                                             intracellular transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:0030030                                                                                                                        cell projection organization
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0006508                                                                                                                                         proteolysis
## GO:0048699                                                                                                                               generation of neurons
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0044238                                                                                                                           primary metabolic process
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0022607                                                                                                                         cellular component assembly
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0008150                                                                                                                                  biological_process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0045117                                                                                                                                     azole transport
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070741                                                                                                                           response to interleukin-6
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0032602                                                                                                                                chemokine production
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0015844                                                                                                                                 monoamine transport
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0003158                                                                                                                             endothelium development
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0000725                                                                                                                              recombinational repair
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0042737                                                                                                                              drug catabolic process
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0007565                                                                                                                                    female pregnancy
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0050792                                                                                                                         regulation of viral process
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:1990138                                                                                                                         neuron projection extension
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0019058                                                                                                                                    viral life cycle
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0060485                                                                                                                              mesenchyme development
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0016032                                                                                                                                       viral process
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0006936                                                                                                                                  muscle contraction
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0016358                                                                                                                                dendrite development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0007059                                                                                                                              chromosome segregation
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0006417                                                                                                                           regulation of translation
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0007281                                                                                                                               germ cell development
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0044403                                                                                                                                    symbiont process
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0008380                                                                                                                                        RNA splicing
## GO:0016311                                                                                                                                   dephosphorylation
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0003002                                                                                                                                     regionalization
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0042113                                                                                                                                   B cell activation
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0003013                                                                                                                          circulatory system process
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0001501                                                                                                                         skeletal system development
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0051301                                                                                                                                       cell division
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0051640                                                                                                                              organelle localization
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0098542                                                                                                                  defense response to other organism
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0070925                                                                                                                                  organelle assembly
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0006396                                                                                                                                      RNA processing
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0030001                                                                                                                                 metal ion transport
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007417                                                                                                                  central nervous system development
## GO:0030163                                                                                                                           protein catabolic process
## GO:0009617                                                                                                                               response to bacterium
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0006812                                                                                                                                    cation transport
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0007608                                                                                                                         sensory perception of smell
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0007600                                                                                                                                  sensory perception
## GO:0006468                                                                                                                             protein phosphorylation
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0016310                                                                                                                                     phosphorylation
## GO:0009056                                                                                                                                   catabolic process
## GO:0050877                                                                                                                              nervous system process
## GO:0051704                                                                                                                              multi-organism process
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0006793                                                                                                                        phosphorus metabolic process
##            Ont     N DE         P.DE
## GO:0045064  BP    17  2 1.639671e-05
## GO:0010165  BP    25  2 3.611390e-05
## GO:0010638  BP   595  4 3.999087e-05
## GO:0050707  BP   213  3 5.298384e-05
## GO:0002828  BP    31  2 5.591234e-05
## GO:0050663  BP   244  3 7.933454e-05
## GO:0042092  BP    37  2 7.998903e-05
## GO:0001818  BP   259  3 9.468819e-05
## GO:0016050  BP   259  3 9.468819e-05
## GO:0061647  BP    45  2 1.187208e-04
## GO:0043370  BP    50  2 1.467615e-04
## GO:0032663  BP    58  2 1.977353e-04
## GO:0042886  BP  1817  5 2.223567e-04
## GO:0042093  BP    63  2 2.333985e-04
## GO:0002294  BP    64  2 2.408814e-04
## GO:2000514  BP    64  2 2.408814e-04
## GO:0002293  BP    65  2 2.484808e-04
## GO:0002287  BP    66  2 2.561968e-04
## GO:0032623  BP    66  2 2.561968e-04
## GO:0050710  BP    67  2 2.640293e-04
## GO:0046637  BP    68  2 2.719781e-04
## GO:0002292  BP    71  2 2.965223e-04
## GO:0031060  BP    73  2 3.134658e-04
## GO:0032880  BP  1038  4 3.453851e-04
## GO:0033371  BP     1  1 3.688071e-04
## GO:2000699  BP     1  1 3.688071e-04
## GO:2000701  BP     1  1 3.688071e-04
## GO:0033380  BP     1  1 3.688071e-04
## GO:0033382  BP     1  1 3.688071e-04
## GO:0033379  BP     1  1 3.688071e-04
## GO:0033373  BP     1  1 3.688071e-04
## GO:0033377  BP     1  1 3.688071e-04
## GO:0033370  BP     1  1 3.688071e-04
## GO:2000607  BP     1  1 3.688071e-04
## GO:2000703  BP     1  1 3.688071e-04
## GO:2000734  BP     1  1 3.688071e-04
## GO:0033375  BP     1  1 3.688071e-04
## GO:0033368  BP     1  1 3.688071e-04
## GO:0033374  BP     1  1 3.688071e-04
## GO:0033367  BP     1  1 3.688071e-04
## GO:2000606  BP     1  1 3.688071e-04
## GO:2000683  BP     1  1 3.688071e-04
## GO:2000702  BP     1  1 3.688071e-04
## GO:2000733  BP     1  1 3.688071e-04
## GO:0045785  BP   411  3 3.694317e-04
## GO:0043367  BP    81  2 3.858734e-04
## GO:0051093  BP  1070  4 3.879533e-04
## GO:0045597  BP  1097  4 4.267276e-04
## GO:0071705  BP  2133  5 4.738229e-04
## GO:0045582  BP    95  2 5.303441e-04
## GO:0010595  BP    97  2 5.528191e-04
## GO:0031058  BP    97  2 5.528191e-04
## GO:0035710  BP   100  2 5.873891e-04
## GO:0050708  BP   490  3 6.176238e-04
## GO:0046634  BP   104  2 6.350805e-04
## GO:0033043  BP  1242  4 6.845868e-04
## GO:0045621  BP   108  2 6.845942e-04
## GO:0034968  BP   109  2 6.972569e-04
## GO:0046632  BP   112  2 7.359261e-04
## GO:1905269  BP   112  2 7.359261e-04
## GO:0061289  BP     2  1 7.374933e-04
## GO:0061290  BP     2  1 7.374933e-04
## GO:0060995  BP     2  1 7.374933e-04
## GO:0072204  BP     2  1 7.374933e-04
## GO:0033364  BP     2  1 7.374933e-04
## GO:1905277  BP     2  1 7.374933e-04
## GO:1900138  BP     2  1 7.374933e-04
## GO:0002286  BP   113  2 7.490426e-04
## GO:0002791  BP   529  3 7.718683e-04
## GO:0051130  BP  1290  4 7.903892e-04
## GO:0018022  BP   122  2 8.721820e-04
## GO:0010212  BP   125  2 9.152594e-04
## GO:0051241  BP  1343  4 9.203518e-04
## GO:0071702  BP  2505  5 1.002835e-03
## GO:0035270  BP   136  2 1.081859e-03
## GO:0051128  BP  2558  5 1.104889e-03
## GO:1901536  BP     3  1 1.106059e-03
## GO:1904178  BP     3  1 1.106059e-03
## GO:2000611  BP     3  1 1.106059e-03
## GO:0002572  BP     3  1 1.106059e-03
## GO:0030010  BP   138  2 1.113606e-03
## GO:0016571  BP   138  2 1.113606e-03
## GO:0009306  BP   605  3 1.139186e-03
## GO:0008104  BP  2578  5 1.145394e-03
## GO:0002824  BP   140  2 1.145799e-03
## GO:0010634  BP   143  2 1.194924e-03
## GO:0002821  BP   147  2 1.261983e-03
## GO:0045580  BP   150  2 1.313444e-03
## GO:0050709  BP   152  2 1.348305e-03
## GO:0031056  BP   153  2 1.365902e-03
## GO:0002790  BP   652  3 1.413886e-03
## GO:0046631  BP   157  2 1.437395e-03
## GO:0010594  BP   157  2 1.437395e-03
## GO:0050793  BP  2721  5 1.469037e-03
## GO:0061209  BP     4  1 1.474503e-03
## GO:0090650  BP     4  1 1.474503e-03
## GO:0030951  BP     4  1 1.474503e-03
## GO:0014839  BP     4  1 1.474503e-03
## GO:0061218  BP     4  1 1.474503e-03
## GO:0097350  BP     4  1 1.474503e-03
## GO:1905278  BP     4  1 1.474503e-03
## GO:1900114  BP     4  1 1.474503e-03
## GO:2000667  BP     4  1 1.474503e-03
## GO:0072107  BP     4  1 1.474503e-03
## GO:0033366  BP     4  1 1.474503e-03
## GO:0072106  BP     4  1 1.474503e-03
## GO:0090649  BP     4  1 1.474503e-03
## GO:0035799  BP     4  1 1.474503e-03
## GO:0002792  BP   162  2 1.529245e-03
## GO:0051094  BP  1540  4 1.539535e-03
## GO:0001817  BP   679  3 1.589164e-03
## GO:0030155  BP   686  3 1.636752e-03
## GO:1902107  BP   168  2 1.643096e-03
## GO:0006810  BP  4398  6 1.739734e-03
## GO:0051223  BP   708  3 1.792182e-03
## GO:0002262  BP   176  2 1.801037e-03
## GO:0008213  BP   176  2 1.801037e-03
## GO:0006479  BP   176  2 1.801037e-03
## GO:0015793  BP     5  1 1.842827e-03
## GO:0060374  BP     5  1 1.842827e-03
## GO:0072179  BP     5  1 1.842827e-03
## GO:0035898  BP     5  1 1.842827e-03
## GO:0071442  BP     5  1 1.842827e-03
## GO:0033031  BP     5  1 1.842827e-03
## GO:2000609  BP     5  1 1.842827e-03
## GO:0070295  BP     5  1 1.842827e-03
## GO:2001252  BP   182  2 1.924079e-03
## GO:0045619  BP   182  2 1.924079e-03
## GO:0033036  BP  2901  5 1.970315e-03
## GO:0042127  BP  1649  4 1.986981e-03
## GO:0050870  BP   187  2 2.029606e-03
## GO:0070201  BP   740  3 2.034494e-03
## GO:0051234  BP  4538  6 2.063740e-03
## GO:0002822  BP   189  2 2.072576e-03
## GO:0090087  BP   749  3 2.106183e-03
## GO:0001816  BP   755  3 2.154852e-03
## GO:0002285  BP   193  2 2.159816e-03
## GO:0035860  BP     6  1 2.211030e-03
## GO:0072602  BP     6  1 2.211030e-03
## GO:0045629  BP     6  1 2.211030e-03
## GO:1903243  BP     6  1 2.211030e-03
## GO:1901723  BP     6  1 2.211030e-03
## GO:2000483  BP     6  1 2.211030e-03
## GO:2000664  BP     6  1 2.211030e-03
## GO:0015840  BP     6  1 2.211030e-03
## GO:1902275  BP   197  2 2.248784e-03
## GO:0043542  BP   198  2 2.271296e-03
## GO:0061024  BP   780  3 2.365278e-03
## GO:1903039  BP   203  2 2.385469e-03
## GO:0051224  BP   204  2 2.408626e-03
## GO:0051099  BP   205  2 2.431891e-03
## GO:0002819  BP   205  2 2.431891e-03
## GO:0015031  BP  1746  4 2.456634e-03
## GO:1903708  BP   208  2 2.502328e-03
## GO:1904950  BP   209  2 2.526021e-03
## GO:0072603  BP     7  1 2.579112e-03
## GO:0010616  BP     7  1 2.579112e-03
## GO:0033600  BP     7  1 2.579112e-03
## GO:0010519  BP     7  1 2.579112e-03
## GO:0060017  BP     7  1 2.579112e-03
## GO:2000553  BP     7  1 2.579112e-03
## GO:0070459  BP     7  1 2.579112e-03
## GO:1901535  BP     7  1 2.579112e-03
## GO:0071440  BP     7  1 2.579112e-03
## GO:2000665  BP     7  1 2.579112e-03
## GO:2000662  BP     7  1 2.579112e-03
## GO:0003097  BP     7  1 2.579112e-03
## GO:0060676  BP     7  1 2.579112e-03
## GO:0007163  BP   216  2 2.694867e-03
## GO:0015833  BP  1797  4 2.732663e-03
## GO:1903530  BP   831  3 2.833689e-03
## GO:0010632  BP   225  2 2.919624e-03
## GO:0072611  BP     8  1 2.947073e-03
## GO:0072201  BP     8  1 2.947073e-03
## GO:0045627  BP     8  1 2.947073e-03
## GO:0031394  BP     8  1 2.947073e-03
## GO:0045184  BP  1856  4 3.078472e-03
## GO:1903531  BP   232  2 3.100374e-03
## GO:0030278  BP   233  2 3.126618e-03
## GO:0006915  BP  1867  4 3.146187e-03
## GO:0042592  BP  1887  4 3.271978e-03
## GO:0071481  BP     9  1 3.314914e-03
## GO:0044849  BP     9  1 3.314914e-03
## GO:0015791  BP     9  1 3.314914e-03
## GO:2000617  BP     9  1 3.314914e-03
## GO:0033034  BP     9  1 3.314914e-03
## GO:1903242  BP     9  1 3.314914e-03
## GO:0032429  BP     9  1 3.314914e-03
## GO:0072197  BP     9  1 3.314914e-03
## GO:0022409  BP   242  2 3.367554e-03
## GO:0012501  BP  1908  4 3.407818e-03
## GO:0045595  BP  1909  4 3.414384e-03
## GO:0030334  BP   892  3 3.465609e-03
## GO:0051046  BP   911  3 3.678925e-03
## GO:0044154  BP    10  1 3.682634e-03
## GO:0042421  BP    10  1 3.682634e-03
## GO:2001280  BP    10  1 3.682634e-03
## GO:2000551  BP    10  1 3.682634e-03
## GO:0010612  BP    10  1 3.682634e-03
## GO:0033029  BP    10  1 3.682634e-03
## GO:0010646  BP  3338  5 3.721736e-03
## GO:0009888  BP  1956  4 3.733087e-03
## GO:0023051  BP  3360  5 3.833221e-03
## GO:0002699  BP   259  2 3.845805e-03
## GO:0051048  BP   261  2 3.904048e-03
## GO:0008283  BP  1994  4 4.005553e-03
## GO:2000145  BP   939  3 4.007933e-03
## GO:0001765  BP    11  1 4.050234e-03
## GO:0072172  BP    11  1 4.050234e-03
## GO:0072178  BP    11  1 4.050234e-03
## GO:0051574  BP    11  1 4.050234e-03
## GO:0061085  BP    11  1 4.050234e-03
## GO:0072182  BP    11  1 4.050234e-03
## GO:0031392  BP    11  1 4.050234e-03
## GO:0055015  BP    11  1 4.050234e-03
## GO:0030217  BP   269  2 4.141167e-03
## GO:0002366  BP   269  2 4.141167e-03
## GO:0002263  BP   273  2 4.262205e-03
## GO:0014745  BP    12  1 4.417713e-03
## GO:0072176  BP    12  1 4.417713e-03
## GO:0001781  BP    12  1 4.417713e-03
## GO:0090343  BP    12  1 4.417713e-03
## GO:0032754  BP    12  1 4.417713e-03
## GO:0045625  BP    12  1 4.417713e-03
## GO:2000615  BP    12  1 4.417713e-03
## GO:1900112  BP    12  1 4.417713e-03
## GO:0003091  BP    12  1 4.417713e-03
## GO:0010631  BP   280  2 4.477984e-03
## GO:0090132  BP   282  2 4.540559e-03
## GO:0008219  BP  2065  4 4.551371e-03
## GO:0090130  BP   284  2 4.603543e-03
## GO:0043414  BP   286  2 4.666937e-03
## GO:1903037  BP   287  2 4.698787e-03
## GO:0043970  BP    13  1 4.785071e-03
## GO:0072160  BP    13  1 4.785071e-03
## GO:0045628  BP    13  1 4.785071e-03
## GO:1904177  BP    13  1 4.785071e-03
## GO:2001279  BP    13  1 4.785071e-03
## GO:1902105  BP   294  2 4.924591e-03
## GO:0006996  BP  3568  5 5.014849e-03
## GO:0040012  BP  1018  3 5.032936e-03
## GO:0035745  BP    14  1 5.152309e-03
## GO:0070365  BP    14  1 5.152309e-03
## GO:0051451  BP    14  1 5.152309e-03
## GO:0002829  BP    14  1 5.152309e-03
## GO:0019755  BP    14  1 5.152309e-03
## GO:0032736  BP    14  1 5.152309e-03
## GO:0031340  BP    14  1 5.152309e-03
## GO:0051270  BP  1028  3 5.173117e-03
## GO:0009628  BP  1030  3 5.201439e-03
## GO:0050863  BP   304  2 5.255805e-03
## GO:0032717  BP    15  1 5.519427e-03
## GO:0071599  BP    15  1 5.519427e-03
## GO:0070293  BP    15  1 5.519427e-03
## GO:0006590  BP    15  1 5.519427e-03
## GO:2000026  BP  2184  4 5.579042e-03
## GO:0048872  BP   315  2 5.631806e-03
## GO:0007159  BP   319  2 5.771548e-03
## GO:0032940  BP  1070  3 5.788131e-03
## GO:0002684  BP  1072  3 5.818486e-03
## GO:0022603  BP  1076  3 5.879489e-03
## GO:0060192  BP    16  1 5.886424e-03
## GO:0002830  BP    16  1 5.886424e-03
## GO:1901722  BP    16  1 5.886424e-03
## GO:0036124  BP    17  1 6.253301e-03
## GO:0090185  BP    17  1 6.253301e-03
## GO:1905331  BP    17  1 6.253301e-03
## GO:0055012  BP    17  1 6.253301e-03
## GO:0006833  BP    17  1 6.253301e-03
## GO:0000902  BP  1100  3 6.253779e-03
## GO:0051276  BP  1103  3 6.301568e-03
## GO:0032259  BP   338  2 6.457130e-03
## GO:0050900  BP   340  2 6.531382e-03
## GO:0030952  BP    18  1 6.620057e-03
## GO:0042415  BP    18  1 6.620057e-03
## GO:2000696  BP    18  1 6.620057e-03
## GO:0032674  BP    18  1 6.620057e-03
## GO:0018205  BP   345  2 6.718739e-03
## GO:0001655  BP   346  2 6.756506e-03
## GO:0072359  BP  1143  3 6.960257e-03
## GO:0003180  BP    19  1 6.986693e-03
## GO:0003215  BP    19  1 6.986693e-03
## GO:0032634  BP    19  1 6.986693e-03
## GO:0060231  BP    19  1 6.986693e-03
## GO:0030502  BP    19  1 6.986693e-03
## GO:0040037  BP    19  1 6.986693e-03
## GO:0002726  BP    19  1 6.986693e-03
## GO:1905276  BP    19  1 6.986693e-03
## GO:2000114  BP    19  1 6.986693e-03
## GO:0032656  BP    19  1 6.986693e-03
## GO:0072189  BP    19  1 6.986693e-03
## GO:0050727  BP   354  2 7.062182e-03
## GO:0033044  BP   356  2 7.139582e-03
## GO:0080111  BP    20  1 7.353209e-03
## GO:0045623  BP    20  1 7.353209e-03
## GO:0090201  BP    20  1 7.353209e-03
## GO:0072079  BP    20  1 7.353209e-03
## GO:0033599  BP    20  1 7.353209e-03
## GO:0001101  BP   364  2 7.453091e-03
## GO:0046879  BP   365  2 7.492718e-03
## GO:0031579  BP    21  1 7.719604e-03
## GO:0090050  BP    21  1 7.719604e-03
## GO:2000482  BP    21  1 7.719604e-03
## GO:0009914  BP   373  2 7.813234e-03
## GO:0035510  BP    22  1 8.085880e-03
## GO:0045063  BP    22  1 8.085880e-03
## GO:0072111  BP    22  1 8.085880e-03
## GO:0070734  BP    22  1 8.085880e-03
## GO:0032616  BP    22  1 8.085880e-03
## GO:0001780  BP    22  1 8.085880e-03
## GO:0045624  BP    22  1 8.085880e-03
## GO:0001503  BP   381  2 8.139946e-03
## GO:0032989  BP  1211  3 8.173473e-03
## GO:0010256  BP   384  2 8.264054e-03
## GO:0035743  BP    23  1 8.452035e-03
## GO:0003176  BP    23  1 8.452035e-03
## GO:0002320  BP    23  1 8.452035e-03
## GO:0043371  BP    23  1 8.452035e-03
## GO:0002827  BP    23  1 8.452035e-03
## GO:0048485  BP    23  1 8.452035e-03
## GO:0046903  BP  1227  3 8.476347e-03
## GO:0051251  BP   394  2 8.683988e-03
## GO:0030098  BP   395  2 8.726508e-03
## GO:0022407  BP   395  2 8.726508e-03
## GO:0009314  BP   395  2 8.726508e-03
## GO:0051179  BP  5950  6 8.762074e-03
## GO:0065008  BP  4051  5 8.783072e-03
## GO:0042044  BP    24  1 8.818070e-03
## GO:0072643  BP    24  1 8.818070e-03
## GO:0045723  BP    24  1 8.818070e-03
## GO:0032352  BP    24  1 8.818070e-03
## GO:0032753  BP    24  1 8.818070e-03
## GO:0032878  BP    24  1 8.818070e-03
## GO:0051098  BP   403  2 9.070100e-03
## GO:0006925  BP    25  1 9.183984e-03
## GO:0072606  BP    25  1 9.183984e-03
## GO:0032703  BP    25  1 9.183984e-03
## GO:0051894  BP    25  1 9.183984e-03
## GO:0061213  BP    25  1 9.183984e-03
## GO:2000679  BP    25  1 9.183984e-03
## GO:0001516  BP    25  1 9.183984e-03
## GO:0046457  BP    25  1 9.183984e-03
## GO:0042403  BP    25  1 9.183984e-03
## GO:0001667  BP   406  2 9.200517e-03
## GO:1903706  BP   407  2 9.244178e-03
## GO:0048799  BP    26  1 9.549779e-03
## GO:0014898  BP    26  1 9.549779e-03
## GO:0009713  BP    26  1 9.549779e-03
## GO:0042423  BP    26  1 9.549779e-03
## GO:0003299  BP    26  1 9.549779e-03
## GO:0070168  BP    26  1 9.549779e-03
## GO:0051570  BP    26  1 9.549779e-03
## GO:0060065  BP    26  1 9.549779e-03
## GO:0002697  BP   420  2 9.820385e-03
## GO:0007155  BP  1298  3 9.902048e-03
## GO:0014887  BP    27  1 9.915454e-03
## GO:0046639  BP    27  1 9.915454e-03
## GO:0045061  BP    27  1 9.915454e-03
## GO:0007010  BP  1305  3 1.004992e-02
## GO:0016570  BP   427  2 1.013724e-02
## GO:0022610  BP  1310  3 1.015635e-02
## GO:0035162  BP    28  1 1.028101e-02
## GO:0045992  BP    28  1 1.028101e-02
## GO:0060037  BP    28  1 1.028101e-02
## GO:0061217  BP    28  1 1.028101e-02
## GO:0048518  BP  6171  6 1.059291e-02
## GO:0071353  BP    29  1 1.064644e-02
## GO:0051052  BP   440  2 1.073783e-02
## GO:0080134  BP  1337  3 1.074280e-02
## GO:0002460  BP   441  2 1.078468e-02
## GO:0016569  BP   444  2 1.092579e-02
## GO:0043372  BP    30  1 1.101176e-02
## GO:0035066  BP    30  1 1.101176e-02
## GO:0002724  BP    30  1 1.101176e-02
## GO:0002825  BP    30  1 1.101176e-02
## GO:0051569  BP    30  1 1.101176e-02
## GO:0032673  BP    30  1 1.101176e-02
## GO:0002696  BP   446  2 1.102033e-02
## GO:0001819  BP   449  2 1.116282e-02
## GO:0048608  BP   449  2 1.116282e-02
## GO:0061458  BP   453  2 1.135411e-02
## GO:1903963  BP    31  1 1.137695e-02
## GO:0050482  BP    31  1 1.137695e-02
## GO:2000515  BP    31  1 1.137695e-02
## GO:0010614  BP    31  1 1.137695e-02
## GO:2000352  BP    31  1 1.137695e-02
## GO:0045920  BP    31  1 1.137695e-02
## GO:1903393  BP    31  1 1.137695e-02
## GO:0070670  BP    31  1 1.137695e-02
## GO:1905314  BP    31  1 1.137695e-02
## GO:0050867  BP   461  2 1.174110e-02
## GO:0032508  BP    32  1 1.174203e-02
## GO:0032689  BP    32  1 1.174203e-02
## GO:0032743  BP    32  1 1.174203e-02
## GO:0040036  BP    32  1 1.174203e-02
## GO:0048732  BP   467  2 1.203519e-02
## GO:0033598  BP    33  1 1.210698e-02
## GO:0071709  BP    33  1 1.210698e-02
## GO:0014741  BP    33  1 1.210698e-02
## GO:1901890  BP    33  1 1.210698e-02
## GO:2000108  BP    33  1 1.210698e-02
## GO:2000758  BP    34  1 1.247182e-02
## GO:0033032  BP    34  1 1.247182e-02
## GO:0031338  BP    34  1 1.247182e-02
## GO:0051567  BP    35  1 1.283653e-02
## GO:0050789  BP 11520  8 1.287023e-02
## GO:2000516  BP    36  1 1.320113e-02
## GO:0033363  BP    36  1 1.320113e-02
## GO:0042110  BP   491  2 1.324428e-02
## GO:0016477  BP  1447  3 1.333965e-02
## GO:0035850  BP    37  1 1.356561e-02
## GO:0032633  BP    37  1 1.356561e-02
## GO:0033028  BP    37  1 1.356561e-02
## GO:0032392  BP    38  1 1.392996e-02
## GO:0040019  BP    38  1 1.392996e-02
## GO:1900026  BP    38  1 1.392996e-02
## GO:0045622  BP    38  1 1.392996e-02
## GO:0006636  BP    38  1 1.392996e-02
## GO:0002682  BP  1473  3 1.400293e-02
## GO:0032879  BP  2835  4 1.413758e-02
## GO:0006998  BP    39  1 1.429420e-02
## GO:1900087  BP    39  1 1.429420e-02
## GO:0090049  BP    39  1 1.429420e-02
## GO:0002369  BP    40  1 1.465832e-02
## GO:0046456  BP    40  1 1.465832e-02
## GO:0044091  BP    40  1 1.465832e-02
## GO:0110111  BP    40  1 1.465832e-02
## GO:0031062  BP    40  1 1.465832e-02
## GO:1905332  BP    40  1 1.465832e-02
## GO:0006693  BP    40  1 1.465832e-02
## GO:0006692  BP    40  1 1.465832e-02
## GO:0022604  BP   523  2 1.493676e-02
## GO:0023061  BP   523  2 1.493676e-02
## GO:1903672  BP    41  1 1.502231e-02
## GO:0042304  BP    41  1 1.502231e-02
## GO:0042981  BP  1516  3 1.514208e-02
## GO:0001709  BP    42  1 1.538619e-02
## GO:0046636  BP    42  1 1.538619e-02
## GO:0045923  BP    42  1 1.538619e-02
## GO:0007154  BP  6648  6 1.553740e-02
## GO:0043067  BP  1537  3 1.571764e-02
## GO:1901985  BP    43  1 1.574995e-02
## GO:0043403  BP    43  1 1.574995e-02
## GO:0030335  BP   539  2 1.581692e-02
## GO:0051051  BP   540  2 1.587268e-02
## GO:0071385  BP    44  1 1.611359e-02
## GO:0018023  BP    45  1 1.647711e-02
## GO:0090184  BP    45  1 1.647711e-02
## GO:0010464  BP    45  1 1.647711e-02
## GO:0051249  BP   555  2 1.671938e-02
## GO:0048585  BP  1576  3 1.682029e-02
## GO:0010817  BP   557  2 1.683375e-02
## GO:0071384  BP    46  1 1.684051e-02
## GO:2000147  BP   561  2 1.706351e-02
## GO:0003179  BP    47  1 1.720379e-02
## GO:0032309  BP    47  1 1.720379e-02
## GO:0045581  BP    47  1 1.720379e-02
## GO:0090199  BP    47  1 1.720379e-02
## GO:0048870  BP  1595  3 1.737346e-02
## GO:0051674  BP  1595  3 1.737346e-02
## GO:0007267  BP  1596  3 1.740287e-02
## GO:0002521  BP   567  2 1.741072e-02
## GO:0042088  BP    48  1 1.756695e-02
## GO:0048483  BP    48  1 1.756695e-02
## GO:0061005  BP    48  1 1.756695e-02
## GO:1902808  BP    48  1 1.756695e-02
## GO:0090342  BP    48  1 1.756695e-02
## GO:0070887  BP  3023  4 1.767929e-02
## GO:1904036  BP    49  1 1.793000e-02
## GO:0046638  BP    49  1 1.793000e-02
## GO:0014888  BP    49  1 1.793000e-02
## GO:0051272  BP   580  2 1.817357e-02
## GO:0060612  BP    50  1 1.829292e-02
## GO:0050891  BP    50  1 1.829292e-02
## GO:0046189  BP    50  1 1.829292e-02
## GO:0002250  BP   583  2 1.835165e-02
## GO:0031018  BP    51  1 1.865572e-02
## GO:0032355  BP    51  1 1.865572e-02
## GO:0065007  BP 12135  8 1.876040e-02
## GO:0040017  BP   593  2 1.895075e-02
## GO:0035924  BP    52  1 1.901841e-02
## GO:1901570  BP    52  1 1.901841e-02
## GO:0001954  BP    52  1 1.901841e-02
## GO:2000677  BP    52  1 1.901841e-02
## GO:0006935  BP   597  2 1.919274e-02
## GO:0042330  BP   600  2 1.937512e-02
## GO:1901571  BP    53  1 1.938097e-02
## GO:0071715  BP    53  1 1.938097e-02
## GO:0002720  BP    53  1 1.938097e-02
## GO:0030850  BP    53  1 1.938097e-02
## GO:0010517  BP    53  1 1.938097e-02
## GO:1900024  BP    53  1 1.938097e-02
## GO:0071363  BP   602  2 1.949713e-02
## GO:0051568  BP    54  1 1.974342e-02
## GO:0045599  BP    54  1 1.974342e-02
## GO:0051496  BP    54  1 1.974342e-02
## GO:0051290  BP    54  1 1.974342e-02
## GO:2000351  BP    54  1 1.974342e-02
## GO:0035065  BP    54  1 1.974342e-02
## GO:0032350  BP    54  1 1.974342e-02
## GO:0034613  BP  1676  3 1.985017e-02
## GO:0045058  BP    55  1 2.010575e-02
## GO:0002042  BP    55  1 2.010575e-02
## GO:0002548  BP    55  1 2.010575e-02
## GO:0010823  BP    55  1 2.010575e-02
## GO:0006900  BP    55  1 2.010575e-02
## GO:0010941  BP  1685  3 2.013728e-02
## GO:0070727  BP  1686  3 2.016933e-02
## GO:0070848  BP   615  2 2.029828e-02
## GO:0009712  BP    56  1 2.046795e-02
## GO:0006584  BP    56  1 2.046795e-02
## GO:0045620  BP    56  1 2.046795e-02
## GO:0043536  BP    56  1 2.046795e-02
## GO:0090303  BP    56  1 2.046795e-02
## GO:0048538  BP    56  1 2.046795e-02
## GO:0030104  BP    56  1 2.046795e-02
## GO:0072577  BP    57  1 2.083004e-02
## GO:0003170  BP    57  1 2.083004e-02
## GO:0010463  BP    57  1 2.083004e-02
## GO:0090109  BP    57  1 2.083004e-02
## GO:0051893  BP    57  1 2.083004e-02
## GO:0030855  BP   626  2 2.098713e-02
## GO:0007507  BP   628  2 2.111344e-02
## GO:0015909  BP    58  1 2.119201e-02
## GO:0060986  BP    59  1 2.155387e-02
## GO:0031347  BP   640  2 2.187823e-02
## GO:0090183  BP    60  1 2.191560e-02
## GO:0001836  BP    60  1 2.191560e-02
## GO:0042698  BP    61  1 2.227721e-02
## GO:0051239  BP  3248  4 2.263466e-02
## GO:0070988  BP    62  1 2.263871e-02
## GO:0043966  BP    62  1 2.263871e-02
## GO:0018149  BP    62  1 2.263871e-02
## GO:0002694  BP   652  2 2.265475e-02
## GO:0043388  BP    63  1 2.300008e-02
## GO:0032677  BP    63  1 2.300008e-02
## GO:2000756  BP    63  1 2.300008e-02
## GO:0042246  BP    63  1 2.300008e-02
## GO:0071479  BP    64  1 2.336134e-02
## GO:0032233  BP    64  1 2.336134e-02
## GO:1903391  BP    64  1 2.336134e-02
## GO:0030036  BP   663  2 2.337679e-02
## GO:0008285  BP   681  2 2.457922e-02
## GO:0040011  BP  1817  3 2.462504e-02
## GO:0045669  BP    68  1 2.480518e-02
## GO:0032637  BP    69  1 2.516584e-02
## GO:0046635  BP    69  1 2.516584e-02
## GO:1903670  BP    69  1 2.516584e-02
## GO:0006954  BP   691  2 2.525837e-02
## GO:0050865  BP   693  2 2.539514e-02
## GO:0002711  BP    71  1 2.588682e-02
## GO:0010611  BP    71  1 2.588682e-02
## GO:0060675  BP    71  1 2.588682e-02
## GO:0072171  BP    72  1 2.624713e-02
## GO:1903036  BP    73  1 2.660731e-02
## GO:0060191  BP    73  1 2.660731e-02
## GO:0008543  BP    74  1 2.696739e-02
## GO:0014743  BP    74  1 2.696739e-02
## GO:1901983  BP    74  1 2.696739e-02
## GO:0098609  BP   720  2 2.727222e-02
## GO:0007045  BP    76  1 2.768717e-02
## GO:0048041  BP    76  1 2.768717e-02
## GO:0061180  BP    77  1 2.804689e-02
## GO:0006325  BP   735  2 2.833944e-02
## GO:0003208  BP    79  1 2.876597e-02
## GO:0051240  BP  1929  3 2.884313e-02
## GO:0072078  BP    80  1 2.912533e-02
## GO:0030500  BP    80  1 2.912533e-02
## GO:0030029  BP   746  2 2.913300e-02
## GO:0050778  BP   747  2 2.920560e-02
## GO:0048513  BP  3504  4 2.928366e-02
## GO:0051049  BP  1946  3 2.951655e-02
## GO:0072088  BP    82  1 2.984370e-02
## GO:0002718  BP    82  1 2.984370e-02
## GO:0032204  BP    82  1 2.984370e-02
## GO:0071674  BP    83  1 3.020270e-02
## GO:0072028  BP    83  1 3.020270e-02
## GO:1901992  BP    83  1 3.020270e-02
## GO:1901888  BP    83  1 3.020270e-02
## GO:0044728  BP    84  1 3.056159e-02
## GO:0032101  BP   770  2 3.089618e-02
## GO:0034333  BP    85  1 3.092036e-02
## GO:0002088  BP    85  1 3.092036e-02
## GO:0051384  BP    85  1 3.092036e-02
## GO:0033365  BP   774  2 3.119424e-02
## GO:0007044  BP    86  1 3.127902e-02
## GO:0015908  BP    86  1 3.127902e-02
## GO:0061333  BP    86  1 3.127902e-02
## GO:0003281  BP    86  1 3.127902e-02
## GO:0048522  BP  5469  5 3.142256e-02
## GO:0033077  BP    88  1 3.199597e-02
## GO:0044344  BP    88  1 3.199597e-02
## GO:0019217  BP    88  1 3.199597e-02
## GO:0051492  BP    88  1 3.199597e-02
## GO:0048589  BP   787  2 3.217114e-02
## GO:0006928  BP  2014  3 3.229799e-02
## GO:0070301  BP    89  1 3.235427e-02
## GO:0001656  BP    89  1 3.235427e-02
## GO:0031016  BP    89  1 3.235427e-02
## GO:1904035  BP    89  1 3.235427e-02
## GO:0031960  BP    89  1 3.235427e-02
## GO:0003006  BP   791  2 3.247424e-02
## GO:0043535  BP    90  1 3.271245e-02
## GO:0071774  BP    90  1 3.271245e-02
## GO:0032526  BP    90  1 3.271245e-02
## GO:0032652  BP    91  1 3.307051e-02
## GO:0045596  BP   799  2 3.308396e-02
## GO:0006950  BP  3640  4 3.327516e-02
## GO:0000904  BP   804  2 3.346741e-02
## GO:0046889  BP    93  1 3.378628e-02
## GO:0002709  BP    94  1 3.414399e-02
## GO:0070555  BP    94  1 3.414399e-02
## GO:0006906  BP    94  1 3.414399e-02
## GO:0051716  BP  7810  6 3.478380e-02
## GO:0071456  BP    96  1 3.485906e-02
## GO:0030279  BP    96  1 3.485906e-02
## GO:1901989  BP    96  1 3.485906e-02
## GO:0033993  BP   822  2 3.486288e-02
## GO:0006304  BP    97  1 3.521642e-02
## GO:0072676  BP    97  1 3.521642e-02
## GO:0070167  BP    97  1 3.521642e-02
## GO:0043502  BP    97  1 3.521642e-02
## GO:2001237  BP    98  1 3.557365e-02
## GO:0072080  BP    98  1 3.557365e-02
## GO:0042102  BP    98  1 3.557365e-02
## GO:0060993  BP    99  1 3.593078e-02
## GO:0055013  BP   100  1 3.628778e-02
## GO:0090174  BP   100  1 3.628778e-02
## GO:0045778  BP   100  1 3.628778e-02
## GO:0002702  BP   100  1 3.628778e-02
## GO:0110020  BP   100  1 3.628778e-02
## GO:0046649  BP   841  2 3.636116e-02
## GO:0045087  BP   842  2 3.644073e-02
## GO:0031532  BP   101  1 3.664467e-02
## GO:0003300  BP   101  1 3.664467e-02
## GO:0051651  BP   101  1 3.664467e-02
## GO:0110110  BP   101  1 3.664467e-02
## GO:0034446  BP   101  1 3.664467e-02
## GO:0033559  BP   101  1 3.664467e-02
## GO:0002367  BP   102  1 3.700144e-02
## GO:0050886  BP   102  1 3.700144e-02
## GO:1902106  BP   102  1 3.700144e-02
## GO:0051897  BP   102  1 3.700144e-02
## GO:0030038  BP   103  1 3.735809e-02
## GO:0032231  BP   103  1 3.735809e-02
## GO:0043149  BP   103  1 3.735809e-02
## GO:0032612  BP   104  1 3.771462e-02
## GO:0072163  BP   104  1 3.771462e-02
## GO:0072164  BP   104  1 3.771462e-02
## GO:0061326  BP   104  1 3.771462e-02
## GO:0001657  BP   104  1 3.771462e-02
## GO:0014897  BP   105  1 3.807104e-02
## GO:0055006  BP   106  1 3.842734e-02
## GO:0045185  BP   106  1 3.842734e-02
## GO:0014812  BP   106  1 3.842734e-02
## GO:0001823  BP   107  1 3.878352e-02
## GO:0014896  BP   107  1 3.878352e-02
## GO:0003014  BP   107  1 3.878352e-02
## GO:2000106  BP   108  1 3.913958e-02
## GO:0002252  BP   879  2 3.943428e-02
## GO:0072009  BP   109  1 3.949553e-02
## GO:0018958  BP   109  1 3.949553e-02
## GO:0042035  BP   109  1 3.949553e-02
## GO:0032649  BP   109  1 3.949553e-02
## GO:0006690  BP   110  1 3.985136e-02
## GO:0001776  BP   110  1 3.985136e-02
## GO:0008637  BP   111  1 4.020707e-02
## GO:0043123  BP   112  1 4.056267e-02
## GO:1905330  BP   112  1 4.056267e-02
## GO:1904019  BP   113  1 4.091815e-02
## GO:0001952  BP   113  1 4.091815e-02
## GO:0048583  BP  3883  4 4.123283e-02
## GO:0043534  BP   114  1 4.127351e-02
## GO:0042472  BP   114  1 4.127351e-02
## GO:2000045  BP   114  1 4.127351e-02
## GO:0050776  BP   903  2 4.142677e-02
## GO:0035239  BP   905  2 4.159459e-02
## GO:0048856  BP  5871  5 4.192988e-02
## GO:0030282  BP   116  1 4.198388e-02
## GO:0002040  BP   116  1 4.198388e-02
## GO:0043500  BP   117  1 4.233889e-02
## GO:0006259  BP   915  2 4.243773e-02
## GO:0030097  BP   921  2 4.294686e-02
## GO:0043066  BP   921  2 4.294686e-02
## GO:0031929  BP   119  1 4.304856e-02
## GO:0050868  BP   119  1 4.304856e-02
## GO:0008584  BP   120  1 4.340322e-02
## GO:0046717  BP   121  1 4.375777e-02
## GO:0036294  BP   121  1 4.375777e-02
## GO:0042089  BP   121  1 4.375777e-02
## GO:0046546  BP   121  1 4.375777e-02
## GO:0001889  BP   121  1 4.375777e-02
## GO:1900180  BP   121  1 4.375777e-02
## GO:0042542  BP   121  1 4.375777e-02
## GO:0032609  BP   122  1 4.411219e-02
## GO:0006997  BP   122  1 4.411219e-02
## GO:0048284  BP   122  1 4.411219e-02
## GO:0071621  BP   123  1 4.446650e-02
## GO:0043069  BP   939  2 4.448866e-02
## GO:0050794  BP 10774  7 4.458266e-02
## GO:0061008  BP   124  1 4.482070e-02
## GO:0000723  BP   124  1 4.482070e-02
## GO:0042107  BP   125  1 4.517477e-02
## GO:0099175  BP   125  1 4.517477e-02
## GO:0048584  BP  2294  3 4.523391e-02
## GO:0050852  BP   126  1 4.552873e-02
## GO:0034332  BP   126  1 4.552873e-02
## GO:0032200  BP   126  1 4.552873e-02
## GO:0051726  BP   955  2 4.587716e-02
## GO:0014065  BP   127  1 4.588257e-02
## GO:0010811  BP   127  1 4.588257e-02
## GO:0010565  BP   127  1 4.588257e-02
## GO:0003279  BP   128  1 4.623630e-02
## GO:1902806  BP   128  1 4.623630e-02
## GO:0051101  BP   129  1 4.658991e-02
## GO:0045995  BP   129  1 4.658991e-02
## GO:0030218  BP   131  1 4.729678e-02
## GO:1903038  BP   131  1 4.729678e-02
## GO:0048534  BP   972  2 4.737079e-02
## GO:0071887  BP   132  1 4.765004e-02
## GO:1901568  BP   133  1 4.800318e-02
## GO:0061025  BP   133  1 4.800318e-02
## GO:0016043  BP  6083  5 4.833138e-02
## GO:0006633  BP   134  1 4.835621e-02
## GO:0002698  BP   134  1 4.835621e-02
## GO:0051336  BP   985  2 4.852558e-02
## GO:0071453  BP   135  1 4.870912e-02
## GO:0045598  BP   135  1 4.870912e-02
## GO:0042471  BP   136  1 4.906192e-02
## GO:0050671  BP   136  1 4.906192e-02
## GO:0009791  BP   136  1 4.906192e-02
## GO:0010821  BP   136  1 4.906192e-02
## GO:0045321  BP   994  2 4.933139e-02
## GO:0002456  BP   137  1 4.941459e-02
## GO:0032946  BP   138  1 4.976716e-02
## GO:0016573  BP   139  1 5.011960e-02
## GO:0030216  BP   139  1 5.011960e-02
## GO:0034097  BP  1004  2 5.023276e-02
## GO:1902533  BP  1005  2 5.032325e-02
## GO:0042221  BP  4136  4 5.067869e-02
## GO:0006338  BP   141  1 5.082415e-02
## GO:0061041  BP   141  1 5.082415e-02
## GO:0048468  BP  2406  3 5.107480e-02
## GO:0034101  BP   142  1 5.117624e-02
## GO:0050680  BP   142  1 5.117624e-02
## GO:0045667  BP   142  1 5.117624e-02
## GO:0055007  BP   143  1 5.152822e-02
## GO:0072073  BP   143  1 5.152822e-02
## GO:0090288  BP   143  1 5.152822e-02
## GO:0018393  BP   144  1 5.188009e-02
## GO:0002708  BP   144  1 5.188009e-02
## GO:0070665  BP   145  1 5.223184e-02
## GO:0031099  BP   145  1 5.223184e-02
## GO:0097530  BP   146  1 5.258347e-02
## GO:0072006  BP   146  1 5.258347e-02
## GO:0002520  BP  1030  2 5.260575e-02
## GO:0008643  BP   147  1 5.293499e-02
## GO:0006475  BP   147  1 5.293499e-02
## GO:0030856  BP   147  1 5.293499e-02
## GO:0003206  BP   148  1 5.328639e-02
## GO:0003231  BP   148  1 5.328639e-02
## GO:0002700  BP   148  1 5.328639e-02
## GO:0050728  BP   149  1 5.363767e-02
## GO:0034614  BP   150  1 5.398884e-02
## GO:0015718  BP   150  1 5.398884e-02
## GO:0050715  BP   150  1 5.398884e-02
## GO:0008360  BP   150  1 5.398884e-02
## GO:0030154  BP  4218  4 5.399999e-02
## GO:0032502  BP  6258  5 5.408551e-02
## GO:0006606  BP   151  1 5.433990e-02
## GO:0071840  BP  6266  5 5.435893e-02
## GO:0060548  BP  1049  2 5.436635e-02
## GO:0046661  BP   152  1 5.469083e-02
## GO:0051250  BP   152  1 5.469083e-02
## GO:0065009  BP  2477  3 5.497314e-02
## GO:0051053  BP   153  1 5.504166e-02
## GO:0071478  BP   154  1 5.539236e-02
## GO:0001838  BP   154  1 5.539236e-02
## GO:0007569  BP   155  1 5.574295e-02
## GO:0051170  BP   155  1 5.574295e-02
## GO:0018394  BP   155  1 5.574295e-02
## GO:0062013  BP   155  1 5.574295e-02
## GO:0051896  BP   155  1 5.574295e-02
## GO:0071383  BP   156  1 5.609343e-02
## GO:0007166  BP  2497  3 5.609851e-02
## GO:0048015  BP   157  1 5.644379e-02
## GO:0045834  BP   157  1 5.644379e-02
## GO:0002244  BP   158  1 5.679403e-02
## GO:1903707  BP   158  1 5.679403e-02
## GO:0050777  BP   158  1 5.679403e-02
## GO:0009605  BP  2515  3 5.712154e-02
## GO:0051050  BP  1081  2 5.738116e-02
## GO:0031214  BP   160  1 5.749417e-02
## GO:0048017  BP   160  1 5.749417e-02
## GO:0051291  BP   160  1 5.749417e-02
## GO:0072175  BP   161  1 5.784407e-02
## GO:2001236  BP   161  1 5.784407e-02
## GO:0060284  BP  1093  2 5.852751e-02
## GO:0030879  BP   163  1 5.854352e-02
## GO:0040007  BP  1097  2 5.891152e-02
## GO:0001775  BP  1098  2 5.900766e-02
## GO:0051017  BP   165  1 5.924250e-02
## GO:0043122  BP   165  1 5.924250e-02
## GO:0045931  BP   166  1 5.959182e-02
## GO:0061572  BP   168  1 6.029012e-02
## GO:0097237  BP   170  1 6.098795e-02
## GO:0042129  BP   170  1 6.098795e-02
## GO:0046890  BP   170  1 6.098795e-02
## GO:0035295  BP  1122  2 6.133275e-02
## GO:0000082  BP   171  1 6.133669e-02
## GO:0051641  BP  2592  3 6.160651e-02
## GO:0006575  BP   174  1 6.238223e-02
## GO:0018193  BP  1137  2 6.280283e-02
## GO:0002705  BP   176  1 6.307869e-02
## GO:0035148  BP   176  1 6.307869e-02
## GO:0048869  BP  4443  4 6.377657e-02
## GO:0071773  BP   179  1 6.412250e-02
## GO:1903034  BP   179  1 6.412250e-02
## GO:0071772  BP   179  1 6.412250e-02
## GO:0048646  BP  1157  2 6.478287e-02
## GO:0035051  BP   182  1 6.516528e-02
## GO:0016331  BP   182  1 6.516528e-02
## GO:0002695  BP   182  1 6.516528e-02
## GO:0051262  BP   183  1 6.551265e-02
## GO:0023052  BP  6579  5 6.578551e-02
## GO:0002376  BP  2664  3 6.595851e-02
## GO:0044843  BP   185  1 6.620703e-02
## GO:0001764  BP   185  1 6.620703e-02
## GO:0045766  BP   185  1 6.620703e-02
## GO:0010770  BP   185  1 6.620703e-02
## GO:0060429  BP  1172  2 6.628264e-02
## GO:0043491  BP   186  1 6.655405e-02
## GO:0009968  BP  1175  2 6.658410e-02
## GO:0022408  BP   187  1 6.690096e-02
## GO:0006473  BP   187  1 6.690096e-02
## GO:0071695  BP   190  1 6.794099e-02
## GO:0007249  BP   193  1 6.897999e-02
## GO:0055002  BP   193  1 6.897999e-02
## GO:0048771  BP   193  1 6.897999e-02
## GO:0031669  BP   194  1 6.932609e-02
## GO:0099173  BP   194  1 6.932609e-02
## GO:0003205  BP   195  1 6.967208e-02
## GO:0042180  BP   195  1 6.967208e-02
## GO:1902905  BP   195  1 6.967208e-02
## GO:0002706  BP   195  1 6.967208e-02
## GO:0031401  BP  1210  2 7.013756e-02
## GO:0048469  BP   198  1 7.070936e-02
## GO:0009653  BP  2744  3 7.097158e-02
## GO:0071236  BP   199  1 7.105490e-02
## GO:0001649  BP   199  1 7.105490e-02
## GO:0071495  BP  1223  2 7.147430e-02
## GO:0002685  BP   201  1 7.174562e-02
## GO:0000302  BP   201  1 7.174562e-02
## GO:0050866  BP   203  1 7.243588e-02
## GO:0031032  BP   204  1 7.278085e-02
## GO:0007160  BP   204  1 7.278085e-02
## GO:1904018  BP   204  1 7.278085e-02
## GO:0001666  BP   204  1 7.278085e-02
## GO:0042098  BP   205  1 7.312569e-02
## GO:0009966  BP  2780  3 7.328785e-02
## GO:0034329  BP   206  1 7.347043e-02
## GO:0055001  BP   207  1 7.381505e-02
## GO:0097529  BP   207  1 7.381505e-02
## GO:0017038  BP   209  1 7.450395e-02
## GO:2000027  BP   209  1 7.450395e-02
## GO:0071103  BP   210  1 7.484822e-02
## GO:0048839  BP   211  1 7.519239e-02
## GO:0030595  BP   211  1 7.519239e-02
## GO:0010810  BP   211  1 7.519239e-02
## GO:0048523  BP  4687  4 7.548746e-02
## GO:0009913  BP   213  1 7.588037e-02
## GO:0008406  BP   214  1 7.622420e-02
## GO:0002573  BP   216  1 7.691150e-02
## GO:0048545  BP   216  1 7.691150e-02
## GO:0043547  BP   217  1 7.725498e-02
## GO:0045137  BP   218  1 7.759835e-02
## GO:0042445  BP   218  1 7.759835e-02
## GO:0051495  BP   218  1 7.759835e-02
## GO:0031348  BP   220  1 7.828475e-02
## GO:0048731  BP  4746  4 7.849317e-02
## GO:0031668  BP   223  1 7.931349e-02
## GO:0030073  BP   223  1 7.931349e-02
## GO:0050670  BP   225  1 7.999875e-02
## GO:0010648  BP  1306  2 8.021701e-02
## GO:0023057  BP  1310  2 8.064720e-02
## GO:0032944  BP   227  1 8.068356e-02
## GO:0097191  BP   229  1 8.136791e-02
## GO:1901617  BP   229  1 8.136791e-02
## GO:0036293  BP   230  1 8.170992e-02
## GO:2001234  BP   231  1 8.205182e-02
## GO:0043543  BP   231  1 8.205182e-02
## GO:0007187  BP   233  1 8.273527e-02
## GO:0003008  BP  2939  3 8.395931e-02
## GO:0045444  BP   238  1 8.444191e-02
## GO:0070663  BP   238  1 8.444191e-02
## GO:0015850  BP   239  1 8.478290e-02
## GO:0016485  BP   239  1 8.478290e-02
## GO:0090257  BP   239  1 8.478290e-02
## GO:0043583  BP   242  1 8.580519e-02
## GO:0017157  BP   244  1 8.648616e-02
## GO:0007411  BP   245  1 8.682647e-02
## GO:0097485  BP   246  1 8.716667e-02
## GO:0007568  BP   247  1 8.750676e-02
## GO:0090068  BP   249  1 8.818660e-02
## GO:0002703  BP   250  1 8.852635e-02
## GO:0050896  BP  9531  6 8.916611e-02
## GO:0034330  BP   255  1 9.022341e-02
## GO:0110053  BP   255  1 9.022341e-02
## GO:0009719  BP  1409  2 9.154028e-02
## GO:1901990  BP   259  1 9.157904e-02
## GO:0048738  BP   260  1 9.191766e-02
## GO:0072330  BP   264  1 9.327104e-02
## GO:0043523  BP   264  1 9.327104e-02
## GO:0010033  BP  3070  3 9.328083e-02
## GO:0044093  BP  1429  2 9.379638e-02
## GO:0050807  BP   266  1 9.394706e-02
## GO:0034599  BP   268  1 9.462263e-02
## GO:0090287  BP   271  1 9.563515e-02
## GO:0034504  BP   272  1 9.597243e-02
## GO:0031647  BP   275  1 9.698361e-02
## GO:0050803  BP   276  1 9.732044e-02
## GO:0071229  BP   278  1 9.799378e-02
## GO:0030072  BP   278  1 9.799378e-02
## GO:0060070  BP   279  1 9.833028e-02
## GO:0072659  BP   279  1 9.833028e-02
## GO:0022414  BP  1471  2 9.859209e-02
## GO:0003007  BP   280  1 9.866666e-02
## GO:0000003  BP  1472  2 9.870722e-02
## GO:0001822  BP   281  1 9.900294e-02
## GO:2000146  BP   281  1 9.900294e-02
## GO:0070482  BP   282  1 9.933911e-02
## GO:0045165  BP   284  1 1.000111e-01
## GO:0007162  BP   284  1 1.000111e-01
## GO:0071496  BP   285  1 1.003469e-01
## GO:0061448  BP   285  1 1.003469e-01
## GO:0007548  BP   288  1 1.013538e-01
## GO:0051169  BP   289  1 1.016891e-01
## GO:0006913  BP   289  1 1.016891e-01
## GO:1901987  BP   290  1 1.020244e-01
## GO:0016192  BP  1501  2 1.020644e-01
## GO:0048511  BP   291  1 1.023596e-01
## GO:0009967  BP  1504  2 1.024137e-01
## GO:0071214  BP   292  1 1.026946e-01
## GO:0104004  BP   292  1 1.026946e-01
## GO:0051402  BP   293  1 1.030296e-01
## GO:0043588  BP   293  1 1.030296e-01
## GO:0031325  BP  3201  3 1.030659e-01
## GO:0050851  BP   295  1 1.036991e-01
## GO:0043087  BP   295  1 1.036991e-01
## GO:0060326  BP   299  1 1.050369e-01
## GO:0051604  BP   300  1 1.053710e-01
## GO:0032270  BP  1532  2 1.056920e-01
## GO:0046942  BP   301  1 1.057051e-01
## GO:0090596  BP   301  1 1.057051e-01
## GO:0015849  BP   302  1 1.060390e-01
## GO:0050714  BP   302  1 1.060390e-01
## GO:0046883  BP   302  1 1.060390e-01
## GO:0072001  BP   302  1 1.060390e-01
## GO:0046677  BP   305  1 1.070402e-01
## GO:0045765  BP   307  1 1.077071e-01
## GO:0046651  BP   308  1 1.080404e-01
## GO:0048519  BP  5278  4 1.086422e-01
## GO:0032943  BP   310  1 1.087066e-01
## GO:0051271  BP   316  1 1.107026e-01
## GO:0051146  BP   316  1 1.107026e-01
## GO:0021700  BP   317  1 1.110349e-01
## GO:0048562  BP   318  1 1.113670e-01
## GO:1901700  BP  1589  2 1.124639e-01
## GO:0051235  BP   322  1 1.126946e-01
## GO:0019538  BP  5344  4 1.127609e-01
## GO:0042063  BP   323  1 1.130262e-01
## GO:0043434  BP   324  1 1.133578e-01
## GO:0007275  BP  5362  4 1.138984e-01
## GO:0006952  BP  1601  2 1.139058e-01
## GO:0002429  BP   326  1 1.140204e-01
## GO:0008544  BP   329  1 1.150137e-01
## GO:0006869  BP   330  1 1.153445e-01
## GO:0070661  BP   331  1 1.156752e-01
## GO:0002793  BP   331  1 1.156752e-01
## GO:0040013  BP   332  1 1.160059e-01
## GO:0032102  BP   336  1 1.173273e-01
## GO:0006909  BP   336  1 1.173273e-01
## GO:0002768  BP   338  1 1.179873e-01
## GO:0019216  BP   338  1 1.179873e-01
## GO:0009987  BP 15803  8 1.180840e-01
## GO:0031589  BP   339  1 1.183172e-01
## GO:0007049  BP  1639  2 1.185078e-01
## GO:0051247  BP  1639  2 1.185078e-01
## GO:1901342  BP   341  1 1.189766e-01
## GO:0050878  BP   342  1 1.193061e-01
## GO:0010769  BP   343  1 1.196356e-01
## GO:1990778  BP   344  1 1.199649e-01
## GO:0032956  BP   344  1 1.199649e-01
## GO:0009636  BP   344  1 1.199649e-01
## GO:0006955  BP  1652  2 1.200945e-01
## GO:0002440  BP   345  1 1.202941e-01
## GO:0043010  BP   348  1 1.212810e-01
## GO:1902903  BP   348  1 1.212810e-01
## GO:0045787  BP   349  1 1.216098e-01
## GO:0006464  BP  3453  3 1.231359e-01
## GO:0036211  BP  3453  3 1.231359e-01
## GO:0006959  BP   355  1 1.235801e-01
## GO:0044772  BP   356  1 1.239081e-01
## GO:0050678  BP   358  1 1.245638e-01
## GO:0062012  BP   359  1 1.248915e-01
## GO:0042060  BP   360  1 1.252190e-01
## GO:0046394  BP   362  1 1.258738e-01
## GO:0009893  BP  3486  3 1.258808e-01
## GO:0016053  BP   363  1 1.262011e-01
## GO:1902531  BP  1710  2 1.272475e-01
## GO:1901214  BP   368  1 1.278356e-01
## GO:0010876  BP   370  1 1.284887e-01
## GO:0031667  BP   371  1 1.288150e-01
## GO:0072594  BP   374  1 1.297935e-01
## GO:0006887  BP   375  1 1.301194e-01
## GO:0006631  BP   376  1 1.304453e-01
## GO:0035690  BP   380  1 1.317475e-01
## GO:0060562  BP   380  1 1.317475e-01
## GO:1901652  BP   384  1 1.330480e-01
## GO:0031399  BP  1760  2 1.335070e-01
## GO:0033554  BP  1763  2 1.338852e-01
## GO:0060249  BP   392  1 1.356437e-01
## GO:0003012  BP   392  1 1.356437e-01
## GO:0022008  BP  1778  2 1.357807e-01
## GO:0032970  BP   393  1 1.359677e-01
## GO:0044770  BP   394  1 1.362916e-01
## GO:0042692  BP   395  1 1.366154e-01
## GO:0001654  BP   397  1 1.372626e-01
## GO:0007015  BP   400  1 1.382326e-01
## GO:0006979  BP   400  1 1.382326e-01
## GO:0150063  BP   400  1 1.382326e-01
## GO:0043412  BP  3634  3 1.385083e-01
## GO:0030099  BP   401  1 1.385557e-01
## GO:0009991  BP   401  1 1.385557e-01
## GO:0051346  BP   402  1 1.388787e-01
## GO:0010639  BP   403  1 1.392016e-01
## GO:0048880  BP   403  1 1.392016e-01
## GO:0050790  BP  1807  2 1.394655e-01
## GO:0070997  BP   405  1 1.398471e-01
## GO:2001233  BP   414  1 1.427465e-01
## GO:0015711  BP   415  1 1.430681e-01
## GO:0010647  BP  1854  2 1.454926e-01
## GO:0007517  BP   424  1 1.459579e-01
## GO:0023056  BP  1860  2 1.462668e-01
## GO:0050673  BP   425  1 1.462784e-01
## GO:0002449  BP   425  1 1.462784e-01
## GO:0016055  BP   428  1 1.472394e-01
## GO:0198738  BP   430  1 1.478795e-01
## GO:0051222  BP   435  1 1.494780e-01
## GO:0032501  BP  8233  5 1.510908e-01
## GO:0031328  BP  1903  2 1.518456e-01
## GO:0014706  BP   449  1 1.539395e-01
## GO:0002757  BP   450  1 1.542574e-01
## GO:0050808  BP   451  1 1.545752e-01
## GO:0045786  BP   452  1 1.548928e-01
## GO:1904951  BP   454  1 1.555279e-01
## GO:0009891  BP  1943  2 1.570817e-01
## GO:0007005  BP   459  1 1.571136e-01
## GO:0002764  BP   463  1 1.583802e-01
## GO:0007165  BP  6028  4 1.601605e-01
## GO:0007409  BP   470  1 1.605928e-01
## GO:0060537  BP   472  1 1.612240e-01
## GO:1903532  BP   472  1 1.612240e-01
## GO:0002683  BP   473  1 1.615394e-01
## GO:0010628  BP  1981  2 1.620955e-01
## GO:1901615  BP   481  1 1.640592e-01
## GO:0071407  BP   482  1 1.643737e-01
## GO:0048871  BP   486  1 1.656307e-01
## GO:0048568  BP   493  1 1.678263e-01
## GO:0007346  BP   493  1 1.678263e-01
## GO:0010035  BP   493  1 1.678263e-01
## GO:0009611  BP   495  1 1.684527e-01
## GO:0061564  BP   506  1 1.718902e-01
## GO:0002443  BP   507  1 1.722021e-01
## GO:0051345  BP   510  1 1.731371e-01
## GO:0001525  BP   513  1 1.740712e-01
## GO:0032870  BP   518  1 1.756259e-01
## GO:1901564  BP  6234  4 1.760394e-01
## GO:1903827  BP   520  1 1.762471e-01
## GO:1905114  BP   521  1 1.765575e-01
## GO:0002253  BP   526  1 1.781080e-01
## GO:0051047  BP   527  1 1.784178e-01
## GO:0044089  BP   534  1 1.805835e-01
## GO:0001701  BP   538  1 1.818188e-01
## GO:0051493  BP   538  1 1.818188e-01
## GO:0072657  BP   543  1 1.833605e-01
## GO:0008610  BP   545  1 1.839765e-01
## GO:0006820  BP   549  1 1.852072e-01
## GO:0002009  BP   553  1 1.864362e-01
## GO:0007169  BP   553  1 1.864362e-01
## GO:0000226  BP   568  1 1.910305e-01
## GO:0060627  BP   568  1 1.910305e-01
## GO:0032787  BP   570  1 1.916413e-01
## GO:0010564  BP   585  1 1.962094e-01
## GO:0044057  BP   596  1 1.995448e-01
## GO:0010975  BP   603  1 2.016609e-01
## GO:0097190  BP   605  1 2.022646e-01
## GO:0007423  BP   606  1 2.025663e-01
## GO:0071396  BP   612  1 2.043743e-01
## GO:0051259  BP   617  1 2.058782e-01
## GO:0048514  BP   622  1 2.073795e-01
## GO:0048667  BP   628  1 2.091779e-01
## GO:0007399  BP  2333  2 2.100796e-01
## GO:0043065  BP   632  1 2.103747e-01
## GO:0048598  BP   637  1 2.118685e-01
## GO:0043068  BP   637  1 2.118685e-01
## GO:1903047  BP   644  1 2.139556e-01
## GO:0044283  BP   650  1 2.157407e-01
## GO:0010720  BP   659  1 2.184115e-01
## GO:0050804  BP   661  1 2.190039e-01
## GO:0099177  BP   662  1 2.192999e-01
## GO:0048812  BP   677  1 2.237288e-01
## GO:0048729  BP   677  1 2.237288e-01
## GO:0071310  BP  2433  2 2.241149e-01
## GO:0097435  BP   681  1 2.249061e-01
## GO:0043086  BP   682  1 2.252001e-01
## GO:0120039  BP   691  1 2.278423e-01
## GO:0044267  BP  4569  3 2.286229e-01
## GO:0010942  BP   695  1 2.290140e-01
## GO:0048858  BP   696  1 2.293067e-01
## GO:0009725  BP   697  1 2.295992e-01
## GO:0061061  BP   701  1 2.307686e-01
## GO:0032268  BP  2494  2 2.327421e-01
## GO:0032990  BP   718  1 2.357207e-01
## GO:0001568  BP   719  1 2.360111e-01
## GO:0014070  BP   734  1 2.403556e-01
## GO:0006897  BP   741  1 2.423755e-01
## GO:0001944  BP   752  1 2.455400e-01
## GO:0051129  BP   755  1 2.464010e-01
## GO:0007017  BP   759  1 2.475476e-01
## GO:0035556  BP  2608  2 2.489762e-01
## GO:0072358  BP   765  1 2.492647e-01
## GO:0120035  BP   772  1 2.512635e-01
## GO:0045664  BP   776  1 2.524036e-01
## GO:0031344  BP   781  1 2.538265e-01
## GO:0010467  BP  4814  3 2.545933e-01
## GO:0000278  BP   799  1 2.589291e-01
## GO:0051246  BP  2687  2 2.602961e-01
## GO:0043009  BP   824  1 2.659645e-01
## GO:0009792  BP   841  1 2.707146e-01
## GO:0098916  BP   856  1 2.748832e-01
## GO:0007268  BP   856  1 2.748832e-01
## GO:0000122  BP   857  1 2.751603e-01
## GO:0048609  BP   858  1 2.754374e-01
## GO:0099537  BP   865  1 2.773741e-01
## GO:0032504  BP   869  1 2.784788e-01
## GO:0098657  BP   872  1 2.793063e-01
## GO:0099536  BP   874  1 2.798575e-01
## GO:0006886  BP   882  1 2.820586e-01
## GO:0010243  BP   883  1 2.823333e-01
## GO:0007167  BP   890  1 2.842536e-01
## GO:0042493  BP   894  1 2.853489e-01
## GO:0019752  BP   902  1 2.875350e-01
## GO:0071345  BP   907  1 2.888984e-01
## GO:0044255  BP   932  1 2.956802e-01
## GO:0043436  BP   941  1 2.981075e-01
## GO:0044087  BP   948  1 2.999903e-01
## GO:0050767  BP   956  1 3.021366e-01
## GO:0080090  BP  5248  3 3.022390e-01
## GO:0060341  BP   958  1 3.026722e-01
## GO:0006082  BP   968  1 3.053450e-01
## GO:0008284  BP   972  1 3.064115e-01
## GO:1901698  BP   982  1 3.090716e-01
## GO:0051173  BP  3061  2 3.143212e-01
## GO:0044092  BP  1006  1 3.154187e-01
## GO:0031323  BP  5401  3 3.194164e-01
## GO:0043085  BP  1051  1 3.271800e-01
## GO:0051960  BP  1071  1 3.323493e-01
## GO:0031175  BP  1083  1 3.354339e-01
## GO:0010604  BP  3212  2 3.361818e-01
## GO:0009887  BP  1090  1 3.372274e-01
## GO:0022402  BP  1108  1 3.418196e-01
## GO:0019219  BP  3352  2 3.563954e-01
## GO:0045892  BP  1177  1 3.591619e-01
## GO:1903507  BP  1181  1 3.601547e-01
## GO:0048878  BP  1182  1 3.604026e-01
## GO:1902679  BP  1182  1 3.604026e-01
## GO:1901701  BP  1206  1 3.663286e-01
## GO:0048666  BP  1222  1 3.702521e-01
## GO:0045944  BP  1226  1 3.712296e-01
## GO:0009790  BP  1231  1 3.724495e-01
## GO:0031326  BP  3470  2 3.733594e-01
## GO:0006629  BP  1258  1 3.790011e-01
## GO:0055085  BP  1266  1 3.809305e-01
## GO:0051253  BP  1269  1 3.816527e-01
## GO:0019222  BP  5953  3 3.823522e-01
## GO:0009889  BP  3542  2 3.836665e-01
## GO:0043170  BP  8488  4 3.856492e-01
## GO:2000113  BP  1379  1 4.076210e-01
## GO:0045934  BP  1395  1 4.113163e-01
## GO:0010558  BP  1414  1 4.156779e-01
## GO:0031327  BP  1471  1 4.285907e-01
## GO:0010468  BP  3860  2 4.286537e-01
## GO:0006807  BP  8923  4 4.305581e-01
## GO:0030182  BP  1494  1 4.337289e-01
## GO:0046907  BP  1502  1 4.355064e-01
## GO:0009890  BP  1509  1 4.370577e-01
## GO:0120036  BP  1526  1 4.408093e-01
## GO:0045893  BP  1536  1 4.430058e-01
## GO:1903508  BP  1540  1 4.438822e-01
## GO:1902680  BP  1541  1 4.441011e-01
## GO:0006811  BP  1565  1 4.493321e-01
## GO:0030030  BP  1572  1 4.508496e-01
## GO:1901566  BP  1599  1 4.566679e-01
## GO:0051254  BP  1638  1 4.649753e-01
## GO:0006508  BP  1657  1 4.689815e-01
## GO:0048699  BP  1672  1 4.721254e-01
## GO:0065003  BP  1729  1 4.839219e-01
## GO:0044238  BP  9443  4 4.845419e-01
## GO:0090304  BP  4277  2 4.858541e-01
## GO:0044281  BP  1753  1 4.888183e-01
## GO:0010629  BP  1783  1 4.948808e-01
## GO:0010557  BP  1799  1 4.980879e-01
## GO:0045935  BP  1833  1 5.048429e-01
## GO:0044260  BP  7099  3 5.127244e-01
## GO:0051649  BP  1906  1 5.190741e-01
## GO:0007186  BP  1921  1 5.219528e-01
## GO:0043933  BP  1956  1 5.286105e-01
## GO:0006357  BP  1993  1 5.355588e-01
## GO:0071704  BP 10008  4 5.426510e-01
## GO:0006366  BP  2049  1 5.459021e-01
## GO:0006139  BP  4813  2 5.554197e-01
## GO:0044249  BP  4938  2 5.709022e-01
## GO:0046483  BP  4940  2 5.711475e-01
## GO:0006725  BP  5012  2 5.799264e-01
## GO:1901576  BP  5031  2 5.822262e-01
## GO:0051172  BP  2271  1 5.849206e-01
## GO:0008152  BP 10485  4 5.905501e-01
## GO:0051171  BP  5104  2 5.909961e-01
## GO:0009058  BP  5125  2 5.934993e-01
## GO:1901360  BP  5208  2 6.033065e-01
## GO:0031324  BP  2449  1 6.140221e-01
## GO:0010605  BP  2584  1 6.348690e-01
## GO:0060255  BP  5486  2 6.351288e-01
## GO:0034641  BP  5547  2 6.418964e-01
## GO:0006355  BP  2784  1 6.639152e-01
## GO:1903506  BP  2792  1 6.650330e-01
## GO:2001141  BP  2801  1 6.662866e-01
## GO:0022607  BP  2807  1 6.671201e-01
## GO:0009892  BP  2843  1 6.720819e-01
## GO:0006351  BP  2875  1 6.764372e-01
## GO:0097659  BP  2883  1 6.775179e-01
## GO:0032774  BP  2896  1 6.792673e-01
## GO:0044085  BP  3041  1 6.982155e-01
## GO:0051252  BP  3049  1 6.992313e-01
## GO:2000112  BP  3219  1 7.201113e-01
## GO:0034654  BP  3310  1 7.307501e-01
## GO:0010556  BP  3311  1 7.308649e-01
## GO:0044237  BP  9374  3 7.372321e-01
## GO:0018130  BP  3374  1 7.380154e-01
## GO:0019438  BP  3386  1 7.393581e-01
## GO:1901362  BP  3510  1 7.528785e-01
## GO:0016070  BP  3761  1 7.783538e-01
## GO:0044271  BP  3993  1 7.997960e-01
## GO:0034645  BP  4022  1 8.023422e-01
## GO:0009059  BP  4121  1 8.108189e-01
## GO:0008150  BP 23210  8 9.315968e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0045060  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0043383  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0045059  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:1902230  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:1902229  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0043368  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:0070229  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071622  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0032722  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0002763  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:2000107  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:2001021  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0042108  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0070228  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:0048524  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051341  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0002690  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0032642  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0032602  BP    92  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:2001243  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0070227  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0032755  BP    99  0 1.000000e+00
## GO:0045639  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0030593  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0007584  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0002688  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0042100  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0008630  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:1990266  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0002761  BP   125  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0050921  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002687  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:1903900  BP   145  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0032675  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0032635  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:2001242  BP   169  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0043902  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0050792  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:0050731  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0043903  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0050679  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0019058  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:2001020  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050920  BP   213  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0045637  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0070374  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0051607  BP   227  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0031330  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050730  BP   263  0 1.000000e+00
## GO:0050864  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0009615  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0016032  BP   283  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0097193  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:0009895  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0070372  BP   306  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0032103  BP   312  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0018108  BP   319  0 1.000000e+00
## GO:0018212  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0070371  BP   323  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0019221  BP   341  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0044403  BP   343  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:0045861  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:0031349  BP   370  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0042176  BP   378  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0051260  BP   383  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0043900  BP   391  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0042113  BP   405  0 1.000000e+00
## GO:0044419  BP   408  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0071900  BP   427  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:0006874  BP   473  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0055074  BP   489  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0072503  BP   497  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0043410  BP   519  0 1.000000e+00
## GO:0072507  BP   521  0 1.000000e+00
## GO:1902532  BP   527  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0006875  BP   582  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0007420  BP   634  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0030003  BP   641  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0006873  BP   655  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0045859  BP   662  0 1.000000e+00
## GO:0055065  BP   664  0 1.000000e+00
## GO:0080135  BP   666  0 1.000000e+00
## GO:0098542  BP   667  0 1.000000e+00
## GO:0060322  BP   688  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0031329  BP   695  0 1.000000e+00
## GO:0051603  BP   696  0 1.000000e+00
## GO:0030162  BP   716  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043549  BP   728  0 1.000000e+00
## GO:0055080  BP   732  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0043408  BP   737  0 1.000000e+00
## GO:0044257  BP   740  0 1.000000e+00
## GO:0006974  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0098771  BP   746  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0000165  BP   793  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0055082  BP   810  0 1.000000e+00
## GO:0023014  BP   810  0 1.000000e+00
## GO:0050801  BP   812  0 1.000000e+00
## GO:0009894  BP   821  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0051338  BP   832  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007417  BP   888  0 1.000000e+00
## GO:0030163  BP   898  0 1.000000e+00
## GO:0009617  BP   907  0 1.000000e+00
## GO:0019725  BP   930  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0001934  BP   989  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:0032269  BP  1003  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044265  BP  1013  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0042327  BP  1043  0 1.000000e+00
## GO:0051248  BP  1070  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0045937  BP  1112  0 1.000000e+00
## GO:0010562  BP  1112  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:1901565  BP  1151  0 1.000000e+00
## GO:0051707  BP  1172  0 1.000000e+00
## GO:0043207  BP  1174  0 1.000000e+00
## GO:0009607  BP  1208  0 1.000000e+00
## GO:0009057  BP  1218  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0001932  BP  1410  0 1.000000e+00
## GO:0042325  BP  1533  0 1.000000e+00
## GO:0019220  BP  1692  0 1.000000e+00
## GO:0051174  BP  1693  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0006468  BP  1815  0 1.000000e+00
## GO:1901575  BP  1857  0 1.000000e+00
## GO:0044248  BP  1996  0 1.000000e+00
## GO:0016310  BP  2166  0 1.000000e+00
## GO:0009056  BP  2257  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0051704  BP  2389  0 1.000000e+00
## GO:0006796  BP  2933  0 1.000000e+00
## GO:0006793  BP  2955  0 1.000000e+00
## 
## [[1]][[2]]
##                                                                                                                                                           Term
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0030217                                                                                                                              T cell differentiation
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0042110                                                                                                                                   T cell activation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0002250                                                                                                                            adaptive immune response
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:0030902                                                                                                                               hindbrain development
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0002870                                                                                                                                       T cell anergy
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0006915                                                                                                                                   apoptotic process
## GO:0061525                                                                                                                                 hindgut development
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0012501                                                                                                                               programmed cell death
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0006310                                                                                                                                   DNA recombination
## GO:0008219                                                                                                                                          cell death
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0045321                                                                                                                                leukocyte activation
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:0002520                                                                                                                           immune system development
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0043383                                                                                                                           negative T cell selection
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0055057                                                                                                                                 neuroblast division
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0001775                                                                                                                                     cell activation
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0007398                                                                                                                                ectoderm development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0043586                                                                                                                                  tongue development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0060438                                                                                                                                 trachea development
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:0062009                                                                                                                        secondary palate development
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0002507                                                                                                                                 tolerance induction
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0048608                                                                                                                  reproductive structure development
## GO:0061458                                                                                                                     reproductive system development
## GO:0002376                                                                                                                               immune system process
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0048568                                                                                                                         embryonic organ development
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0043368                                                                                                                           positive T cell selection
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0060325                                                                                                                                  face morphogenesis
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0019083                                                                                                                                 viral transcription
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0048806                                                                                                                               genitalia development
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0017145                                                                                                                                  stem cell division
## GO:0065007                                                                                                                               biological regulation
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0006955                                                                                                                                     immune response
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0045058                                                                                                                                    T cell selection
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0010941                                                                                                                            regulation of cell death
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:0007420                                                                                                                                   brain development
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0060324                                                                                                                                    face development
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0009058                                                                                                                                biosynthetic process
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0060322                                                                                                                                    head development
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0021766                                                                                                                             hippocampus development
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0001756                                                                                                                                       somitogenesis
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0001816                                                                                                                                 cytokine production
## GO:0009888                                                                                                                                  tissue development
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0048524                                                                                                                positive regulation of viral process
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0008283                                                                                                                                  cell proliferation
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0061053                                                                                                                                  somite development
## GO:0043009                                                                                                                      chordate embryonic development
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0021761                                                                                                                           limbic system development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0007584                                                                                                                                response to nutrient
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0021549                                                                                                                              cerebellum development
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0043473                                                                                                                                        pigmentation
## GO:0035282                                                                                                                                        segmentation
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0007417                                                                                                                  central nervous system development
## GO:0042100                                                                                                                                B cell proliferation
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0048856                                                                                                                    anatomical structure development
## GO:0022037                                                                                                                           metencephalon development
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0007498                                                                                                                                mesoderm development
## GO:0042476                                                                                                                                       odontogenesis
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0048565                                                                                                                         digestive tract development
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0007165                                                                                                                                 signal transduction
## GO:0007399                                                                                                                          nervous system development
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:0055123                                                                                                                        digestive system development
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0016573                                                                                                                                 histone acetylation
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0032502                                                                                                                               developmental process
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0030879                                                                                                                           mammary gland development
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0098727                                                                                                                          maintenance of cell number
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0035295                                                                                                                                    tube development
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:0071772                                                                                                                                     response to BMP
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0050789                                                                                                                    regulation of biological process
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:0050792                                                                                                                         regulation of viral process
## GO:0023052                                                                                                                                           signaling
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060429                                                                                                                              epithelium development
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0021915                                                                                                                             neural tube development
## GO:0007154                                                                                                                                  cell communication
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0009790                                                                                                                                  embryo development
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0042098                                                                                                                                T cell proliferation
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0007155                                                                                                                                       cell adhesion
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0021537                                                                                                                           telencephalon development
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0050896                                                                                                                                response to stimulus
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0060485                                                                                                                              mesenchyme development
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0016032                                                                                                                                       viral process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0007548                                                                                                                                 sex differentiation
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0016358                                                                                                                                dendrite development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0045927                                                                                                                       positive regulation of growth
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0042063                                                                                                                                         gliogenesis
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0007275                                                                                                                  multicellular organism development
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0023051                                                                                                                             regulation of signaling
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0044403                                                                                                                                    symbiont process
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0006508                                                                                                                                         proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0048699                                                                                                                               generation of neurons
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0048513                                                                                                                            animal organ development
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0003002                                                                                                                                     regionalization
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0030900                                                                                                                               forebrain development
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0022008                                                                                                                                        neurogenesis
## GO:0008152                                                                                                                                   metabolic process
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0051098                                                                                                                               regulation of binding
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0042113                                                                                                                                   B cell activation
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0006816                                                                                                                               calcium ion transport
## GO:0007517                                                                                                                            muscle organ development
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0048732                                                                                                                                   gland development
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0030154                                                                                                                                cell differentiation
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0007423                                                                                                                           sensory organ development
## GO:0070848                                                                                                                           response to growth factor
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048869                                                                                                                      cellular developmental process
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0048468                                                                                                                                    cell development
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0061061                                                                                                                        muscle structure development
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0040008                                                                                                                                regulation of growth
## GO:0009605                                                                                                                       response to external stimulus
## GO:0001568                                                                                                                            blood vessel development
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0044238                                                                                                                           primary metabolic process
## GO:0006325                                                                                                                              chromatin organization
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0001944                                                                                                                             vasculature development
## GO:0048731                                                                                                                                  system development
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0030001                                                                                                                                 metal ion transport
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0002252                                                                                                                             immune effector process
## GO:0032879                                                                                                                          regulation of localization
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0030163                                                                                                                           protein catabolic process
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0050776                                                                                                                       regulation of immune response
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0019538                                                                                                                           protein metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0031175                                                                                                                       neuron projection development
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0040007                                                                                                                                              growth
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0022402                                                                                                                                  cell cycle process
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0072359                                                                                                                      circulatory system development
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0048666                                                                                                                                  neuron development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0016477                                                                                                                                      cell migration
## GO:0030182                                                                                                                              neuron differentiation
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:0030030                                                                                                                        cell projection organization
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0007049                                                                                                                                          cell cycle
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0042221                                                                                                                                response to chemical
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0007600                                                                                                                                  sensory perception
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0040011                                                                                                                                          locomotion
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0042592                                                                                                                                 homeostatic process
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0051049                                                                                                                             regulation of transport
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0016310                                                                                                                                     phosphorylation
## GO:0009056                                                                                                                                   catabolic process
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0050877                                                                                                                              nervous system process
## GO:0009987                                                                                                                                    cellular process
## GO:0051704                                                                                                                              multi-organism process
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0008150                                                                                                                                  biological_process
## GO:0022607                                                                                                                         cellular component assembly
## GO:0051179                                                                                                                                        localization
## GO:0003008                                                                                                                                      system process
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0016043                                                                                                                     cellular component organization
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0010033                                                                                                                       response to organic substance
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0006996                                                                                                                              organelle organization
## GO:0006950                                                                                                                                  response to stress
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0006810                                                                                                                                           transport
## GO:0051234                                                                                                                       establishment of localization
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0032602                                                                                                                                chemokine production
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0051701                                                                                                                               interaction with host
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0050821                                                                                                                               protein stabilization
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0051262                                                                                                                             protein tetramerization
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0019058                                                                                                                                    viral life cycle
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:0051607                                                                                                                           defense response to virus
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0060348                                                                                                                                    bone development
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043583                                                                                                                                     ear development
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0007611                                                                                                                                  learning or memory
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006417                                                                                                                           regulation of translation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0032259                                                                                                                                         methylation
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0007281                                                                                                                               germ cell development
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0007015                                                                                                                         actin filament organization
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0048232                                                                                                                              male gamete generation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0009306                                                                                                                                   protein secretion
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0031347                                                                                                                      regulation of defense response
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0002790                                                                                                                                   peptide secretion
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0006954                                                                                                                               inflammatory response
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0009725                                                                                                                                 response to hormone
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0006396                                                                                                                                      RNA processing
## GO:0033993                                                                                                                                   response to lipid
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0045087                                                                                                                              innate immune response
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0042493                                                                                                                                    response to drug
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0032940                                                                                                                                   secretion by cell
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0060284                                                                                                                      regulation of cell development
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0046903                                                                                                                                           secretion
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0046907                                                                                                                             intracellular transport
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0006952                                                                                                                                    defense response
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0015031                                                                                                                                   protein transport
## GO:0015833                                                                                                                                   peptide transport
## GO:0042886                                                                                                                                     amide transport
## GO:0045184                                                                                                               establishment of protein localization
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0071702                                                                                                                         organic substance transport
## GO:0008104                                                                                                                                protein localization
## GO:0051641                                                                                                                               cellular localization
## GO:0033036                                                                                                                          macromolecule localization
##            Ont     N DE         P.DE
## GO:0033153  BP     5  2 1.208411e-06
## GO:0002568  BP     5  2 1.208411e-06
## GO:0002681  BP     5  2 1.208411e-06
## GO:0033151  BP    15  2 1.266407e-05
## GO:0046631  BP   157  3 2.133064e-05
## GO:0032673  BP    30  2 5.231510e-05
## GO:0032633  BP    37  2 7.998903e-05
## GO:0030217  BP   269  3 1.059342e-04
## GO:0016444  BP    67  2 2.640293e-04
## GO:0002562  BP    67  2 2.640293e-04
## GO:0030098  BP   395  3 3.288237e-04
## GO:0002200  BP    75  2 3.308731e-04
## GO:0015964  BP     1  1 3.688071e-04
## GO:0015962  BP     1  1 3.688071e-04
## GO:0042110  BP   491  3 6.213049e-04
## GO:0046632  BP   112  2 7.359261e-04
## GO:0002521  BP   567  3 9.440896e-04
## GO:0002250  BP   583  3 1.023379e-03
## GO:2000384  BP     3  1 1.106059e-03
## GO:0071899  BP     3  1 1.106059e-03
## GO:2000383  BP     3  1 1.106059e-03
## GO:0071898  BP     3  1 1.106059e-03
## GO:0061153  BP     3  1 1.106059e-03
## GO:0061152  BP     3  1 1.106059e-03
## GO:0097190  BP   605  3 1.139186e-03
## GO:0044336  BP     4  1 1.474503e-03
## GO:0030538  BP     4  1 1.474503e-03
## GO:0048619  BP     4  1 1.474503e-03
## GO:0019244  BP     4  1 1.474503e-03
## GO:0002669  BP     4  1 1.474503e-03
## GO:0002913  BP     4  1 1.474503e-03
## GO:0030902  BP   164  2 1.566756e-03
## GO:0009892  BP  2843  5 1.796494e-03
## GO:0015961  BP     5  1 1.842827e-03
## GO:0021943  BP     5  1 1.842827e-03
## GO:0032696  BP     5  1 1.842827e-03
## GO:0032714  BP     5  1 1.842827e-03
## GO:0071839  BP     6  1 2.211030e-03
## GO:1902262  BP     6  1 2.211030e-03
## GO:0071866  BP     6  1 2.211030e-03
## GO:0071895  BP     6  1 2.211030e-03
## GO:0071865  BP     6  1 2.211030e-03
## GO:0002870  BP     7  1 2.579112e-03
## GO:0048069  BP     7  1 2.579112e-03
## GO:0002249  BP     7  1 2.579112e-03
## GO:0032713  BP     7  1 2.579112e-03
## GO:0002666  BP     7  1 2.579112e-03
## GO:0033634  BP     7  1 2.579112e-03
## GO:0002667  BP     7  1 2.579112e-03
## GO:0002911  BP     7  1 2.579112e-03
## GO:0046649  BP   841  3 2.931846e-03
## GO:0015959  BP     8  1 2.947073e-03
## GO:0021861  BP     8  1 2.947073e-03
## GO:0007442  BP     8  1 2.947073e-03
## GO:0006915  BP  1867  4 3.146187e-03
## GO:0061525  BP     9  1 3.314914e-03
## GO:0019249  BP     9  1 3.314914e-03
## GO:0030223  BP     9  1 3.314914e-03
## GO:0048341  BP     9  1 3.314914e-03
## GO:0022409  BP   242  2 3.367554e-03
## GO:0012501  BP  1908  4 3.407818e-03
## GO:0060710  BP    10  1 3.682634e-03
## GO:0021873  BP    10  1 3.682634e-03
## GO:0051001  BP    10  1 3.682634e-03
## GO:0030854  BP    10  1 3.682634e-03
## GO:0002645  BP    10  1 3.682634e-03
## GO:0006259  BP   915  3 3.724852e-03
## GO:0030097  BP   921  3 3.794411e-03
## GO:0043066  BP   921  3 3.794411e-03
## GO:0043069  BP   939  3 4.007933e-03
## GO:0071864  BP    11  1 4.050234e-03
## GO:0002664  BP    11  1 4.050234e-03
## GO:0060033  BP    12  1 4.417713e-03
## GO:0071838  BP    12  1 4.417713e-03
## GO:0045086  BP    12  1 4.417713e-03
## GO:0071863  BP    12  1 4.417713e-03
## GO:0033632  BP    12  1 4.417713e-03
## GO:0048534  BP   972  3 4.418502e-03
## GO:0060070  BP   279  2 4.446851e-03
## GO:0006310  BP   280  2 4.477984e-03
## GO:0008219  BP  2065  4 4.551371e-03
## GO:0048519  BP  5278  6 4.655825e-03
## GO:0045321  BP   994  3 4.706173e-03
## GO:0002517  BP    13  1 4.785071e-03
## GO:1900121  BP    13  1 4.785071e-03
## GO:0048340  BP    13  1 4.785071e-03
## GO:0097193  BP   292  2 4.859567e-03
## GO:0021932  BP    14  1 5.152309e-03
## GO:0032769  BP    14  1 5.152309e-03
## GO:0045060  BP    14  1 5.152309e-03
## GO:0060019  BP    14  1 5.152309e-03
## GO:0002520  BP  1030  3 5.201439e-03
## GO:0046651  BP   308  2 5.391122e-03
## GO:0032943  BP   310  2 5.459386e-03
## GO:0060548  BP  1049  3 5.475292e-03
## GO:0043383  BP    15  1 5.519427e-03
## GO:2001256  BP    15  1 5.519427e-03
## GO:0033631  BP    16  1 5.886424e-03
## GO:0035112  BP    16  1 5.886424e-03
## GO:0055057  BP    16  1 5.886424e-03
## GO:0036445  BP    16  1 5.886424e-03
## GO:0043923  BP    16  1 5.886424e-03
## GO:0045059  BP    16  1 5.886424e-03
## GO:0070661  BP   331  2 6.200370e-03
## GO:0001775  BP  1098  3 6.222045e-03
## GO:0021542  BP    18  1 6.620057e-03
## GO:0007398  BP    18  1 6.620057e-03
## GO:0032674  BP    18  1 6.620057e-03
## GO:0045861  BP   349  2 6.870398e-03
## GO:0021535  BP    19  1 6.986693e-03
## GO:0032634  BP    19  1 6.986693e-03
## GO:0030852  BP    19  1 6.986693e-03
## GO:0032656  BP    19  1 6.986693e-03
## GO:0045076  BP    19  1 6.986693e-03
## GO:0002643  BP    19  1 6.986693e-03
## GO:0048557  BP    20  1 7.353209e-03
## GO:0006089  BP    20  1 7.353209e-03
## GO:0033630  BP    20  1 7.353209e-03
## GO:0050434  BP    20  1 7.353209e-03
## GO:0042094  BP    21  1 7.719604e-03
## GO:0043586  BP    21  1 7.719604e-03
## GO:0045063  BP    22  1 8.085880e-03
## GO:0032616  BP    22  1 8.085880e-03
## GO:0048339  BP    22  1 8.085880e-03
## GO:0046641  BP    22  1 8.085880e-03
## GO:0002115  BP    22  1 8.085880e-03
## GO:0060438  BP    22  1 8.085880e-03
## GO:0022407  BP   395  2 8.726508e-03
## GO:0052472  BP    24  1 8.818070e-03
## GO:0043921  BP    24  1 8.818070e-03
## GO:0052312  BP    24  1 8.818070e-03
## GO:0032753  BP    24  1 8.818070e-03
## GO:1900120  BP    24  1 8.818070e-03
## GO:0062009  BP    24  1 8.818070e-03
## GO:1902230  BP    25  1 9.183984e-03
## GO:0045785  BP   411  2 9.419773e-03
## GO:0060713  BP    27  1 9.915454e-03
## GO:0051354  BP    27  1 9.915454e-03
## GO:0045061  BP    27  1 9.915454e-03
## GO:0016055  BP   428  2 1.018288e-02
## GO:0010605  BP  2584  4 1.019756e-02
## GO:0198738  BP   430  2 1.027444e-02
## GO:0048103  BP    28  1 1.028101e-02
## GO:0002507  BP    28  1 1.028101e-02
## GO:0031295  BP    29  1 1.064644e-02
## GO:0071353  BP    29  1 1.064644e-02
## GO:0048608  BP   449  2 1.116282e-02
## GO:0061458  BP   453  2 1.135411e-02
## GO:0002376  BP  2664  4 1.135982e-02
## GO:0031294  BP    31  1 1.137695e-02
## GO:0050999  BP    31  1 1.137695e-02
## GO:0070670  BP    31  1 1.137695e-02
## GO:0060561  BP    32  1 1.174203e-02
## GO:0060669  BP    32  1 1.174203e-02
## GO:0032743  BP    32  1 1.174203e-02
## GO:0048566  BP    33  1 1.210698e-02
## GO:0045879  BP    33  1 1.210698e-02
## GO:0032435  BP    34  1 1.247182e-02
## GO:0048568  BP   493  2 1.334738e-02
## GO:0046640  BP    37  1 1.356561e-02
## GO:1902229  BP    37  1 1.356561e-02
## GO:0030851  BP    38  1 1.392996e-02
## GO:0043368  BP    38  1 1.392996e-02
## GO:0046633  BP    40  1 1.465832e-02
## GO:0060325  BP    40  1 1.465832e-02
## GO:1905114  BP   521  2 1.482832e-02
## GO:0033628  BP    41  1 1.502231e-02
## GO:0046782  BP    41  1 1.502231e-02
## GO:0042981  BP  1516  3 1.514208e-02
## GO:1902742  BP    42  1 1.538619e-02
## GO:0048873  BP    42  1 1.538619e-02
## GO:0032768  BP    42  1 1.538619e-02
## GO:0043067  BP  1537  3 1.571764e-02
## GO:0001569  BP    44  1 1.611359e-02
## GO:0019083  BP    44  1 1.611359e-02
## GO:0048523  BP  4687  5 1.647826e-02
## GO:0009117  BP   555  2 1.671938e-02
## GO:0019674  BP    46  1 1.684051e-02
## GO:0060323  BP    46  1 1.684051e-02
## GO:0010718  BP    47  1 1.720379e-02
## GO:0006753  BP   564  2 1.723673e-02
## GO:0042088  BP    48  1 1.756695e-02
## GO:0050850  BP    48  1 1.756695e-02
## GO:2000059  BP    50  1 1.829292e-02
## GO:0048806  BP    51  1 1.865572e-02
## GO:0072132  BP    51  1 1.865572e-02
## GO:0017145  BP    51  1 1.865572e-02
## GO:0065007  BP 12135  8 1.876040e-02
## GO:0042127  BP  1649  3 1.900319e-02
## GO:0001954  BP    52  1 1.901841e-02
## GO:0006955  BP  1652  3 1.909624e-02
## GO:0048546  BP    53  1 1.938097e-02
## GO:0043392  BP    53  1 1.938097e-02
## GO:1901799  BP    53  1 1.938097e-02
## GO:0045058  BP    55  1 2.010575e-02
## GO:0048066  BP    55  1 2.010575e-02
## GO:0010941  BP  1685  3 2.013728e-02
## GO:0044249  BP  4938  5 2.054897e-02
## GO:0019080  BP    57  1 2.083004e-02
## GO:0032663  BP    58  1 2.119201e-02
## GO:0055086  BP   630  2 2.124009e-02
## GO:0007420  BP   634  2 2.149436e-02
## GO:0060711  BP    59  1 2.155387e-02
## GO:0048598  BP   637  2 2.168593e-02
## GO:0060324  BP    60  1 2.191560e-02
## GO:1901576  BP  5031  5 2.222383e-02
## GO:0044283  BP   650  2 2.252452e-02
## GO:0010171  BP    62  1 2.263871e-02
## GO:0043966  BP    62  1 2.263871e-02
## GO:0042093  BP    63  1 2.300008e-02
## GO:0043967  BP    63  1 2.300008e-02
## GO:0002294  BP    64  1 2.336134e-02
## GO:0002763  BP    64  1 2.336134e-02
## GO:0010629  BP  1783  3 2.341932e-02
## GO:0002293  BP    65  1 2.372248e-02
## GO:0033627  BP    65  1 2.372248e-02
## GO:0001707  BP    65  1 2.372248e-02
## GO:0009058  BP  5125  5 2.401251e-02
## GO:0002287  BP    66  1 2.408350e-02
## GO:0032623  BP    66  1 2.408350e-02
## GO:0001817  BP   679  2 2.444435e-02
## GO:0043086  BP   682  2 2.464678e-02
## GO:0030155  BP   686  2 2.491781e-02
## GO:0060322  BP   688  2 2.505379e-02
## GO:0048332  BP    69  1 2.516584e-02
## GO:0007405  BP    69  1 2.516584e-02
## GO:0046635  BP    69  1 2.516584e-02
## GO:2001021  BP    70  1 2.552639e-02
## GO:0050909  BP    70  1 2.552639e-02
## GO:0002292  BP    71  1 2.588682e-02
## GO:1903051  BP    71  1 2.588682e-02
## GO:0051851  BP    73  1 2.660731e-02
## GO:0021766  BP    74  1 2.696739e-02
## GO:0042108  BP    74  1 2.696739e-02
## GO:0030162  BP   716  2 2.699056e-02
## GO:0098609  BP   720  2 2.727222e-02
## GO:0045843  BP    75  1 2.732734e-02
## GO:0060563  BP    75  1 2.732734e-02
## GO:0072332  BP    77  1 2.804689e-02
## GO:0048635  BP    77  1 2.804689e-02
## GO:0032729  BP    77  1 2.804689e-02
## GO:0001756  BP    77  1 2.804689e-02
## GO:1901862  BP    78  1 2.840649e-02
## GO:0051702  BP    79  1 2.876597e-02
## GO:0043154  BP    80  1 2.912533e-02
## GO:0043367  BP    81  1 2.948457e-02
## GO:0001816  BP   755  2 2.978911e-02
## GO:0009888  BP  1956  3 2.991678e-02
## GO:1903363  BP    83  1 3.020270e-02
## GO:0048524  BP    84  1 3.056159e-02
## GO:0008589  BP    84  1 3.056159e-02
## GO:0051341  BP    85  1 3.092036e-02
## GO:0008283  BP  1994  3 3.146533e-02
## GO:2000117  BP    87  1 3.163755e-02
## GO:0042475  BP    87  1 3.163755e-02
## GO:0010717  BP    87  1 3.163755e-02
## GO:0033077  BP    88  1 3.199597e-02
## GO:0021872  BP    89  1 3.235427e-02
## GO:0003006  BP   791  2 3.247424e-02
## GO:0051817  BP    93  1 3.378628e-02
## GO:0060021  BP    94  1 3.414399e-02
## GO:0001704  BP    95  1 3.450158e-02
## GO:0061053  BP    96  1 3.485906e-02
## GO:0043009  BP   824  2 3.501938e-02
## GO:2001243  BP    97  1 3.521642e-02
## GO:0021761  BP    98  1 3.557365e-02
## GO:0042102  BP    98  1 3.557365e-02
## GO:0045639  BP    99  1 3.593078e-02
## GO:0035710  BP   100  1 3.628778e-02
## GO:0007584  BP   100  1 3.628778e-02
## GO:0009792  BP   841  2 3.636116e-02
## GO:0050848  BP   101  1 3.664467e-02
## GO:0000122  BP   857  2 3.764277e-02
## GO:0021549  BP   104  1 3.771462e-02
## GO:0046634  BP   104  1 3.771462e-02
## GO:0043473  BP   105  1 3.807104e-02
## GO:0035282  BP   105  1 3.807104e-02
## GO:0032091  BP   106  1 3.842734e-02
## GO:0042035  BP   109  1 3.949553e-02
## GO:0032649  BP   109  1 3.949553e-02
## GO:0007417  BP   888  2 4.017683e-02
## GO:0042100  BP   112  1 4.056267e-02
## GO:0001892  BP   112  1 4.056267e-02
## GO:0008630  BP   112  1 4.056267e-02
## GO:0002286  BP   113  1 4.091815e-02
## GO:0001952  BP   113  1 4.091815e-02
## GO:0035239  BP   905  2 4.159459e-02
## GO:0048856  BP  5871  5 4.192988e-02
## GO:0022037  BP   116  1 4.198388e-02
## GO:0002040  BP   116  1 4.198388e-02
## GO:0007498  BP   117  1 4.233889e-02
## GO:0042476  BP   118  1 4.269379e-02
## GO:0006090  BP   118  1 4.269379e-02
## GO:0042089  BP   121  1 4.375777e-02
## GO:0048565  BP   121  1 4.375777e-02
## GO:0051172  BP  2271  3 4.408142e-02
## GO:0032609  BP   122  1 4.411219e-02
## GO:0032434  BP   122  1 4.411219e-02
## GO:0019222  BP  5953  5 4.433325e-02
## GO:0032501  BP  8233  6 4.493004e-02
## GO:0042107  BP   125  1 4.517477e-02
## GO:0002761  BP   125  1 4.517477e-02
## GO:0050852  BP   126  1 4.552873e-02
## GO:0019637  BP   954  2 4.578989e-02
## GO:0010811  BP   127  1 4.588257e-02
## GO:0042177  BP   129  1 4.658991e-02
## GO:0051101  BP   129  1 4.658991e-02
## GO:0007165  BP  6028  5 4.661147e-02
## GO:0007399  BP  2333  3 4.722477e-02
## GO:0008284  BP   972  2 4.737079e-02
## GO:0001837  BP   133  1 4.800318e-02
## GO:0055123  BP   134  1 4.835621e-02
## GO:0072331  BP   135  1 4.870912e-02
## GO:0009166  BP   136  1 4.906192e-02
## GO:0050671  BP   136  1 4.906192e-02
## GO:0032946  BP   138  1 4.976716e-02
## GO:0009059  BP  4121  4 5.008500e-02
## GO:0016573  BP   139  1 5.011960e-02
## GO:0032269  BP  1003  2 5.014234e-02
## GO:0044092  BP  1006  2 5.041380e-02
## GO:0072089  BP   140  1 5.047193e-02
## GO:0035113  BP   143  1 5.152822e-02
## GO:0030326  BP   143  1 5.152822e-02
## GO:0007224  BP   143  1 5.152822e-02
## GO:0002065  BP   144  1 5.188009e-02
## GO:0018393  BP   144  1 5.188009e-02
## GO:0070665  BP   145  1 5.223184e-02
## GO:0006475  BP   147  1 5.293499e-02
## GO:1901292  BP   148  1 5.328639e-02
## GO:2000058  BP   148  1 5.328639e-02
## GO:0031324  BP  2449  3 5.341771e-02
## GO:0032502  BP  6258  5 5.408551e-02
## GO:0018394  BP   155  1 5.574295e-02
## GO:0032268  BP  2494  3 5.592894e-02
## GO:0007166  BP  2497  3 5.609851e-02
## GO:0051093  BP  1070  2 5.633787e-02
## GO:0051248  BP  1070  2 5.633787e-02
## GO:0002684  BP  1072  2 5.652702e-02
## GO:0046496  BP   158  1 5.679403e-02
## GO:0021543  BP   158  1 5.679403e-02
## GO:0035821  BP   160  1 5.749417e-02
## GO:0019362  BP   160  1 5.749417e-02
## GO:0009887  BP  1090  2 5.824012e-02
## GO:0030879  BP   163  1 5.854352e-02
## GO:0072524  BP   165  1 5.924250e-02
## GO:0019827  BP   165  1 5.924250e-02
## GO:0030509  BP   168  1 6.029012e-02
## GO:1902107  BP   168  1 6.029012e-02
## GO:0098727  BP   169  1 6.063909e-02
## GO:2001242  BP   169  1 6.063909e-02
## GO:0007369  BP   170  1 6.098795e-02
## GO:0001890  BP   170  1 6.098795e-02
## GO:0042129  BP   170  1 6.098795e-02
## GO:0035295  BP  1122  2 6.133275e-02
## GO:0034404  BP   172  1 6.168532e-02
## GO:0051100  BP   173  1 6.203383e-02
## GO:0035556  BP  2608  3 6.256046e-02
## GO:0035107  BP   175  1 6.273052e-02
## GO:0035108  BP   175  1 6.273052e-02
## GO:0043902  BP   175  1 6.273052e-02
## GO:0018193  BP  1137  2 6.280283e-02
## GO:0016202  BP   176  1 6.307869e-02
## GO:0006733  BP   177  1 6.342674e-02
## GO:0010951  BP   178  1 6.377468e-02
## GO:0061136  BP   178  1 6.377468e-02
## GO:0071773  BP   179  1 6.412250e-02
## GO:1901861  BP   179  1 6.412250e-02
## GO:0071772  BP   179  1 6.412250e-02
## GO:0048634  BP   180  1 6.447021e-02
## GO:0050789  BP 11520  7 6.527009e-02
## GO:0061351  BP   183  1 6.551265e-02
## GO:0050792  BP   183  1 6.551265e-02
## GO:0023052  BP  6579  5 6.578551e-02
## GO:0048754  BP   184  1 6.585990e-02
## GO:0060429  BP  1172  2 6.628264e-02
## GO:0009968  BP  1175  2 6.658410e-02
## GO:0045892  BP  1177  2 6.678535e-02
## GO:0022408  BP   187  1 6.690096e-02
## GO:0050870  BP   187  1 6.690096e-02
## GO:0006473  BP   187  1 6.690096e-02
## GO:1903507  BP  1181  2 6.718850e-02
## GO:1902679  BP  1182  2 6.728943e-02
## GO:0051246  BP  2687  3 6.738072e-02
## GO:0021915  BP   191  1 6.828743e-02
## GO:0007154  BP  6648  5 6.849885e-02
## GO:0002285  BP   193  1 6.897999e-02
## GO:0050793  BP  2721  3 6.951131e-02
## GO:0030307  BP   195  1 6.967208e-02
## GO:0050731  BP   195  1 6.967208e-02
## GO:0043903  BP   198  1 7.070936e-02
## GO:0001649  BP   199  1 7.105490e-02
## GO:0048736  BP   201  1 7.174562e-02
## GO:0060173  BP   201  1 7.174562e-02
## GO:0043281  BP   201  1 7.174562e-02
## GO:0009790  BP  1231  2 7.230139e-02
## GO:1903039  BP   203  1 7.243588e-02
## GO:0007160  BP   204  1 7.278085e-02
## GO:0042098  BP   205  1 7.312569e-02
## GO:0009966  BP  2780  3 7.328785e-02
## GO:1903708  BP   208  1 7.415955e-02
## GO:1903050  BP   208  1 7.415955e-02
## GO:0019722  BP   209  1 7.450395e-02
## GO:2001020  BP   209  1 7.450395e-02
## GO:0046434  BP   210  1 7.484822e-02
## GO:0010810  BP   211  1 7.519239e-02
## GO:0051253  BP  1269  2 7.627591e-02
## GO:0045637  BP   215  1 7.656791e-02
## GO:0048762  BP   216  1 7.691150e-02
## GO:0002573  BP   216  1 7.691150e-02
## GO:0061138  BP   221  1 7.862778e-02
## GO:0007155  BP  1298  2 7.935904e-02
## GO:0050670  BP   225  1 7.999875e-02
## GO:0010648  BP  1306  2 8.021701e-02
## GO:2000116  BP   226  1 8.034121e-02
## GO:0022610  BP  1310  2 8.064720e-02
## GO:0023057  BP  1310  2 8.064720e-02
## GO:0032944  BP   227  1 8.068356e-02
## GO:1901617  BP   229  1 8.136791e-02
## GO:0006139  BP  4813  4 8.198860e-02
## GO:0009952  BP   231  1 8.205182e-02
## GO:2001234  BP   231  1 8.205182e-02
## GO:0043543  BP   231  1 8.205182e-02
## GO:0001894  BP   232  1 8.239360e-02
## GO:0006796  BP  2933  3 8.354370e-02
## GO:0070663  BP   238  1 8.444191e-02
## GO:0010001  BP   239  1 8.478290e-02
## GO:1903362  BP   239  1 8.478290e-02
## GO:0006793  BP  2955  3 8.507249e-02
## GO:0001763  BP   240  1 8.512378e-02
## GO:0043393  BP   240  1 8.512378e-02
## GO:0010466  BP   242  1 8.580519e-02
## GO:0006260  BP   243  1 8.614573e-02
## GO:0031330  BP   247  1 8.750676e-02
## GO:0090068  BP   249  1 8.818660e-02
## GO:0021537  BP   249  1 8.818660e-02
## GO:2000113  BP  1379  2 8.819041e-02
## GO:0046483  BP  4940  4 8.885376e-02
## GO:0060541  BP   251  1 8.886598e-02
## GO:0050896  BP  9531  6 8.916611e-02
## GO:0045934  BP  1395  2 8.997184e-02
## GO:0001818  BP   259  1 9.157904e-02
## GO:0010558  BP  1414  2 9.210261e-02
## GO:0006725  BP  5012  4 9.288475e-02
## GO:0050730  BP   263  1 9.293287e-02
## GO:0072330  BP   264  1 9.327104e-02
## GO:0002366  BP   269  1 9.496025e-02
## GO:0060485  BP   272  1 9.597243e-02
## GO:0051924  BP   272  1 9.597243e-02
## GO:0002263  BP   273  1 9.630960e-02
## GO:0051171  BP  5104  4 9.818114e-02
## GO:0031327  BP  1471  2 9.859209e-02
## GO:0022414  BP  1471  2 9.859209e-02
## GO:0000003  BP  1472  2 9.870722e-02
## GO:0002682  BP  1473  2 9.882238e-02
## GO:0016032  BP   283  1 9.967516e-02
## GO:0007162  BP   284  1 1.000111e-01
## GO:1903037  BP   287  1 1.010183e-01
## GO:0007548  BP   288  1 1.013538e-01
## GO:0030111  BP   292  1 1.026946e-01
## GO:0009890  BP  1509  2 1.029967e-01
## GO:0016358  BP   294  1 1.033644e-01
## GO:0009895  BP   294  1 1.033644e-01
## GO:1902105  BP   294  1 1.033644e-01
## GO:0050851  BP   295  1 1.036991e-01
## GO:1901360  BP  5208  4 1.043642e-01
## GO:0060326  BP   299  1 1.050369e-01
## GO:0051094  BP  1540  2 1.066346e-01
## GO:0050863  BP   304  1 1.067066e-01
## GO:0080090  BP  5248  4 1.067974e-01
## GO:0045927  BP   308  1 1.080404e-01
## GO:0048872  BP   315  1 1.103702e-01
## GO:0048585  BP  1576  2 1.109081e-01
## GO:0048562  BP   318  1 1.113670e-01
## GO:0034654  BP  3310  3 1.115501e-01
## GO:0010556  BP  3311  3 1.116293e-01
## GO:0007159  BP   319  1 1.116991e-01
## GO:0018108  BP   319  1 1.116991e-01
## GO:0018212  BP   322  1 1.126946e-01
## GO:0042063  BP   323  1 1.130262e-01
## GO:0007267  BP  1596  2 1.133043e-01
## GO:0010646  BP  3338  3 1.137785e-01
## GO:0007275  BP  5362  4 1.138984e-01
## GO:0002429  BP   326  1 1.140204e-01
## GO:0023051  BP  3360  3 1.155433e-01
## GO:0006732  BP   331  1 1.156752e-01
## GO:0031323  BP  5401  4 1.163840e-01
## GO:0018130  BP  3374  3 1.166726e-01
## GO:0019438  BP  3386  3 1.176445e-01
## GO:0052548  BP   337  1 1.176574e-01
## GO:0002768  BP   338  1 1.179873e-01
## GO:0031589  BP   339  1 1.183172e-01
## GO:0044403  BP   343  1 1.196356e-01
## GO:0018205  BP   345  1 1.202941e-01
## GO:0006508  BP  1657  2 1.207064e-01
## GO:0045787  BP   349  1 1.216098e-01
## GO:0060255  BP  5486  4 1.219000e-01
## GO:0048699  BP  1672  2 1.225476e-01
## GO:0007178  BP   357  1 1.242360e-01
## GO:0031326  BP  3470  3 1.245466e-01
## GO:0051716  BP  7810  5 1.252037e-01
## GO:0046394  BP   362  1 1.258738e-01
## GO:0034641  BP  5547  4 1.259412e-01
## GO:0016053  BP   363  1 1.262011e-01
## GO:1902531  BP  1710  2 1.272475e-01
## GO:0048513  BP  3504  3 1.273890e-01
## GO:1901362  BP  3510  3 1.278935e-01
## GO:0031667  BP   371  1 1.288150e-01
## GO:0003002  BP   373  1 1.294675e-01
## GO:0009889  BP  3542  3 1.305984e-01
## GO:0042176  BP   378  1 1.310966e-01
## GO:0060562  BP   380  1 1.317475e-01
## GO:0001503  BP   381  1 1.320728e-01
## GO:0044281  BP  1753  2 1.326257e-01
## GO:0051260  BP   383  1 1.327230e-01
## GO:0030900  BP   386  1 1.336975e-01
## GO:0043900  BP   391  1 1.353196e-01
## GO:0060249  BP   392  1 1.356437e-01
## GO:0022008  BP  1778  2 1.357807e-01
## GO:0008152  BP 10485  6 1.361186e-01
## GO:0051251  BP   394  1 1.362916e-01
## GO:0043161  BP   394  1 1.362916e-01
## GO:0010557  BP  1799  2 1.384463e-01
## GO:0030099  BP   401  1 1.385557e-01
## GO:0009991  BP   401  1 1.385557e-01
## GO:0051346  BP   402  1 1.388787e-01
## GO:0051098  BP   403  1 1.392016e-01
## GO:0050790  BP  1807  2 1.394655e-01
## GO:0042113  BP   405  1 1.398471e-01
## GO:1903706  BP   407  1 1.404922e-01
## GO:0044419  BP   408  1 1.408146e-01
## GO:0052547  BP   411  1 1.417810e-01
## GO:2001233  BP   414  1 1.427465e-01
## GO:0010959  BP   421  1 1.449956e-01
## GO:0006816  BP   423  1 1.456372e-01
## GO:0007517  BP   424  1 1.459579e-01
## GO:0034655  BP   425  1 1.462784e-01
## GO:0016570  BP   427  1 1.469192e-01
## GO:0019932  BP   427  1 1.469192e-01
## GO:0001558  BP   431  1 1.481994e-01
## GO:0002460  BP   441  1 1.513926e-01
## GO:0031328  BP  1903  2 1.518456e-01
## GO:0016569  BP   444  1 1.523485e-01
## GO:0002696  BP   446  1 1.529852e-01
## GO:0006163  BP   447  1 1.533034e-01
## GO:0001819  BP   449  1 1.539395e-01
## GO:0014706  BP   449  1 1.539395e-01
## GO:0002757  BP   450  1 1.542574e-01
## GO:0051240  BP  1929  2 1.552441e-01
## GO:0009891  BP  1943  2 1.570817e-01
## GO:0010498  BP   459  1 1.571136e-01
## GO:0050867  BP   461  1 1.577471e-01
## GO:0044270  BP   463  1 1.583802e-01
## GO:0002764  BP   463  1 1.583802e-01
## GO:0010468  BP  3860  3 1.587434e-01
## GO:0048732  BP   467  1 1.596452e-01
## GO:0007389  BP   468  1 1.599611e-01
## GO:0046700  BP   469  1 1.602770e-01
## GO:0048583  BP  3883  3 1.608640e-01
## GO:0070838  BP   472  1 1.612240e-01
## GO:0060537  BP   472  1 1.612240e-01
## GO:0010628  BP  1981  2 1.620955e-01
## GO:0072511  BP   475  1 1.621700e-01
## GO:0006357  BP  1993  2 1.636866e-01
## GO:1901615  BP   481  1 1.640592e-01
## GO:0019439  BP   483  1 1.646881e-01
## GO:0048871  BP   486  1 1.656307e-01
## GO:0072521  BP   490  1 1.668859e-01
## GO:0044271  BP  3993  3 1.711546e-01
## GO:0006366  BP  2049  2 1.711585e-01
## GO:0051186  BP   509  1 1.728256e-01
## GO:0034645  BP  4022  3 1.739076e-01
## GO:0001525  BP   513  1 1.740712e-01
## GO:0016049  BP   513  1 1.740712e-01
## GO:1901361  BP   513  1 1.740712e-01
## GO:1901564  BP  6234  4 1.760394e-01
## GO:0002253  BP   526  1 1.781080e-01
## GO:1902532  BP   527  1 1.784178e-01
## GO:0001701  BP   538  1 1.818188e-01
## GO:0030335  BP   539  1 1.821273e-01
## GO:0005975  BP   546  1 1.842843e-01
## GO:0002009  BP   553  1 1.864362e-01
## GO:0051249  BP   555  1 1.870501e-01
## GO:2000147  BP   561  1 1.888894e-01
## GO:2000026  BP  2184  2 1.894639e-01
## GO:0032787  BP   570  1 1.916413e-01
## GO:0051301  BP   574  1 1.928617e-01
## GO:0030154  BP  4218  3 1.929286e-01
## GO:0051272  BP   580  1 1.946893e-01
## GO:0006511  BP   580  1 1.946893e-01
## GO:0010564  BP   585  1 1.962094e-01
## GO:0019941  BP   592  1 1.983334e-01
## GO:0040017  BP   593  1 1.986364e-01
## GO:0090304  BP  4277  3 1.987891e-01
## GO:0006807  BP  8923  5 1.991662e-01
## GO:0006935  BP   597  1 1.998474e-01
## GO:0042330  BP   600  1 2.007546e-01
## GO:0071363  BP   602  1 2.013589e-01
## GO:0043632  BP   602  1 2.013589e-01
## GO:0007423  BP   606  1 2.025663e-01
## GO:0070848  BP   615  1 2.052769e-01
## GO:0051259  BP   617  1 2.058782e-01
## GO:0048514  BP   622  1 2.073795e-01
## GO:0030855  BP   626  1 2.085788e-01
## GO:0048869  BP  4443  3 2.155877e-01
## GO:0002694  BP   652  1 2.163349e-01
## GO:0048468  BP  2406  2 2.203115e-01
## GO:0080135  BP   666  1 2.204831e-01
## GO:0048729  BP   677  1 2.237288e-01
## GO:0050865  BP   693  1 2.284283e-01
## GO:0044267  BP  4569  3 2.286229e-01
## GO:0031329  BP   695  1 2.290140e-01
## GO:0051603  BP   696  1 2.293067e-01
## GO:0065009  BP  2477  2 2.303332e-01
## GO:0061061  BP   701  1 2.307686e-01
## GO:0044237  BP  9374  5 2.342759e-01
## GO:0040008  BP   717  1 2.354302e-01
## GO:0009605  BP  2515  2 2.357223e-01
## GO:0001568  BP   719  1 2.360111e-01
## GO:0043269  BP   732  1 2.397776e-01
## GO:0044238  BP  9443  5 2.398869e-01
## GO:0006325  BP   735  1 2.406445e-01
## GO:0044257  BP   740  1 2.420872e-01
## GO:0006974  BP   740  1 2.420872e-01
## GO:0050778  BP   747  1 2.441031e-01
## GO:0001944  BP   752  1 2.455400e-01
## GO:0048731  BP  4746  3 2.473084e-01
## GO:0072358  BP   765  1 2.492647e-01
## GO:0044260  BP  7099  4 2.497935e-01
## GO:0010467  BP  4814  3 2.545933e-01
## GO:0000904  BP   804  1 2.603409e-01
## GO:0009894  BP   821  1 2.651234e-01
## GO:0009653  BP  2744  2 2.684919e-01
## GO:0030001  BP   839  1 2.701572e-01
## GO:0006355  BP  2784  2 2.742552e-01
## GO:1903506  BP  2792  2 2.754089e-01
## GO:2001141  BP  2801  2 2.767071e-01
## GO:0055114  BP   872  1 2.793063e-01
## GO:0002252  BP   879  1 2.812339e-01
## GO:0032879  BP  2835  2 2.816150e-01
## GO:0007167  BP   890  1 2.842536e-01
## GO:0030334  BP   892  1 2.848015e-01
## GO:0030163  BP   898  1 2.864427e-01
## GO:0006351  BP  2875  2 2.873950e-01
## GO:0019752  BP   902  1 2.875350e-01
## GO:0050776  BP   903  1 2.878079e-01
## GO:0071704  BP 10008  5 2.880221e-01
## GO:0097659  BP  2883  2 2.885517e-01
## GO:0071345  BP   907  1 2.888984e-01
## GO:0032774  BP  2896  2 2.904317e-01
## GO:2000145  BP   939  1 2.975687e-01
## GO:0043436  BP   941  1 2.981075e-01
## GO:0051726  BP   955  1 3.018686e-01
## GO:0006082  BP   968  1 3.053450e-01
## GO:0051336  BP   985  1 3.098678e-01
## GO:0001934  BP   989  1 3.109282e-01
## GO:0051252  BP  3049  2 3.125830e-01
## GO:0019538  BP  5344  3 3.129984e-01
## GO:0051173  BP  3061  2 3.143212e-01
## GO:0034097  BP  1004  1 3.148917e-01
## GO:1902533  BP  1005  1 3.151553e-01
## GO:0044265  BP  1013  1 3.172601e-01
## GO:0040012  BP  1018  1 3.185728e-01
## GO:0051270  BP  1028  1 3.211913e-01
## GO:0042327  BP  1043  1 3.251023e-01
## GO:0031325  BP  3201  2 3.345907e-01
## GO:0031175  BP  1083  1 3.354339e-01
## GO:0010604  BP  3212  2 3.361818e-01
## GO:2000112  BP  3219  2 3.371941e-01
## GO:0040007  BP  1097  1 3.390166e-01
## GO:0045597  BP  1097  1 3.390166e-01
## GO:0000902  BP  1100  1 3.397821e-01
## GO:0006812  BP  1101  1 3.400371e-01
## GO:0051276  BP  1103  1 3.405468e-01
## GO:0051239  BP  3248  2 3.413864e-01
## GO:0022402  BP  1108  1 3.418196e-01
## GO:0045937  BP  1112  1 3.428362e-01
## GO:0010562  BP  1112  1 3.428362e-01
## GO:0072359  BP  1143  1 3.506678e-01
## GO:1901565  BP  1151  1 3.526754e-01
## GO:0048646  BP  1157  1 3.541774e-01
## GO:0019219  BP  3352  2 3.563954e-01
## GO:0050794  BP 10774  5 3.586155e-01
## GO:0031401  BP  1210  1 3.673115e-01
## GO:0032989  BP  1211  1 3.675570e-01
## GO:0009057  BP  1218  1 3.692732e-01
## GO:0048666  BP  1222  1 3.702521e-01
## GO:0071495  BP  1223  1 3.704966e-01
## GO:0006464  BP  3453  2 3.709206e-01
## GO:0036211  BP  3453  2 3.709206e-01
## GO:0045944  BP  1226  1 3.712296e-01
## GO:0007606  BP  1236  1 3.736674e-01
## GO:0009893  BP  3486  2 3.756530e-01
## GO:0043170  BP  8488  4 3.856492e-01
## GO:0043412  BP  3634  2 3.967786e-01
## GO:0080134  BP  1337  1 3.978226e-01
## GO:0051241  BP  1343  1 3.992311e-01
## GO:0009719  BP  1409  1 4.145329e-01
## GO:0016070  BP  3761  2 4.147549e-01
## GO:0001932  BP  1410  1 4.147621e-01
## GO:0016477  BP  1447  1 4.231850e-01
## GO:0030182  BP  1494  1 4.337289e-01
## GO:0009967  BP  1504  1 4.359500e-01
## GO:0120036  BP  1526  1 4.408093e-01
## GO:0032270  BP  1532  1 4.421281e-01
## GO:0042325  BP  1533  1 4.423476e-01
## GO:0045893  BP  1536  1 4.430058e-01
## GO:1903508  BP  1540  1 4.438822e-01
## GO:1902680  BP  1541  1 4.441011e-01
## GO:0006811  BP  1565  1 4.493321e-01
## GO:0030030  BP  1572  1 4.508496e-01
## GO:0048870  BP  1595  1 4.558094e-01
## GO:0051674  BP  1595  1 4.558094e-01
## GO:1901566  BP  1599  1 4.566679e-01
## GO:0051254  BP  1638  1 4.649753e-01
## GO:0007049  BP  1639  1 4.651869e-01
## GO:0051247  BP  1639  1 4.651869e-01
## GO:0042221  BP  4136  2 4.667795e-01
## GO:0019220  BP  1692  1 4.762915e-01
## GO:0051174  BP  1693  1 4.764991e-01
## GO:0065003  BP  1729  1 4.839219e-01
## GO:0031399  BP  1760  1 4.902386e-01
## GO:0033554  BP  1763  1 4.908463e-01
## GO:0007600  BP  1791  1 4.964866e-01
## GO:0006468  BP  1815  1 5.012768e-01
## GO:0040011  BP  1817  1 5.016742e-01
## GO:0045935  BP  1833  1 5.048429e-01
## GO:0010647  BP  1854  1 5.089747e-01
## GO:1901575  BP  1857  1 5.095624e-01
## GO:0023056  BP  1860  1 5.101495e-01
## GO:0042592  BP  1887  1 5.154055e-01
## GO:0045595  BP  1909  1 5.196510e-01
## GO:0051049  BP  1946  1 5.267167e-01
## GO:0043933  BP  1956  1 5.286105e-01
## GO:0044248  BP  1996  1 5.361182e-01
## GO:0006928  BP  2014  1 5.394618e-01
## GO:0016310  BP  2166  1 5.668539e-01
## GO:0009056  BP  2257  1 5.825511e-01
## GO:0048584  BP  2294  1 5.887874e-01
## GO:0050877  BP  2299  1 5.896238e-01
## GO:0009987  BP 15803  6 6.028407e-01
## GO:0051704  BP  2389  1 6.044220e-01
## GO:0071310  BP  2433  1 6.114825e-01
## GO:0051128  BP  2558  1 6.309337e-01
## GO:0048522  BP  5469  2 6.332288e-01
## GO:0008150  BP 23210  9 6.368752e-01
## GO:0022607  BP  2807  1 6.671201e-01
## GO:0051179  BP  5950  2 6.846224e-01
## GO:0003008  BP  2939  1 6.849937e-01
## GO:0070887  BP  3023  1 6.959187e-01
## GO:0016043  BP  6083  2 6.979593e-01
## GO:0044085  BP  3041  1 6.982155e-01
## GO:0010033  BP  3070  1 7.018834e-01
## GO:0048518  BP  6171  2 7.065745e-01
## GO:0071840  BP  6266  2 7.156880e-01
## GO:0006996  BP  3568  1 7.589857e-01
## GO:0006950  BP  3640  1 7.663802e-01
## GO:0065008  BP  4051  1 8.048595e-01
## GO:0006810  BP  4398  1 8.328459e-01
## GO:0051234  BP  4538  1 8.430860e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0031394  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:2001280  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:0031392  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:2001279  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:0045723  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0001516  BP    25  0 1.000000e+00
## GO:0046457  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0006636  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0046456  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0006693  BP    40  0 1.000000e+00
## GO:0006692  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:0042304  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0045923  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0070229  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071622  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:1901570  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0002720  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0032722  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0032677  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0032637  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:2000107  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0070228  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0002718  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:0002690  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0032642  BP    88  0 1.000000e+00
## GO:0019217  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0032602  BP    92  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:0046889  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0045582  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0070227  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0032755  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0030593  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0002702  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0033559  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0002367  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:1902106  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0045621  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:2000106  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0006690  BP   110  0 1.000000e+00
## GO:0001776  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0002688  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0043123  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:1990266  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0071621  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0010565  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0071887  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:1901568  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0006633  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0002456  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0050921  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002687  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:1903900  BP   145  0 1.000000e+00
## GO:0097530  BP   146  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0002821  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:0002700  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0045580  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0051250  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0032675  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0062013  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0045834  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:1903707  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:2001236  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0032635  BP   162  0 1.000000e+00
## GO:0002792  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0043122  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0046890  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:0002695  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0045619  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0051262  BP   183  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0045766  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0043491  BP   186  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0002822  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:0007249  BP   193  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0042180  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0050679  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0019058  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0002685  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0050866  BP   203  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0051224  BP   204  0 1.000000e+00
## GO:1904018  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0002819  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0097529  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:1904950  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0030595  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050920  BP   213  0 1.000000e+00
## GO:0050707  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0070374  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:0051607  BP   227  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:0097191  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:1903531  BP   232  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:0050663  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0002699  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0051048  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050864  BP   264  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0009615  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0030072  BP   278  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:2000146  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0046883  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0070372  BP   306  0 1.000000e+00
## GO:0045765  BP   307  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0032103  BP   312  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0051271  BP   316  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0070371  BP   323  0 1.000000e+00
## GO:0043434  BP   324  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0040013  BP   332  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0032102  BP   336  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0019216  BP   338  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0050900  BP   340  0 1.000000e+00
## GO:0019221  BP   341  0 1.000000e+00
## GO:1901342  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0002440  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0050727  BP   354  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0050678  BP   358  0 1.000000e+00
## GO:0062012  BP   359  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0046879  BP   365  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031349  BP   370  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0009914  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0006631  BP   376  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0035690  BP   380  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:1901652  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0006979  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0002697  BP   420  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0050673  BP   425  0 1.000000e+00
## GO:0002449  BP   425  0 1.000000e+00
## GO:0071900  BP   427  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0051222  BP   435  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:1904951  BP   454  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0006874  BP   473  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0002683  BP   473  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:0071407  BP   482  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0055074  BP   489  0 1.000000e+00
## GO:0050708  BP   490  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0072503  BP   497  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0002443  BP   507  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0032870  BP   518  0 1.000000e+00
## GO:0043410  BP   519  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:0072507  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0023061  BP   523  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0002791  BP   529  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0051051  BP   540  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0008610  BP   545  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0007169  BP   553  0 1.000000e+00
## GO:0010817  BP   557  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0006875  BP   582  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:0044057  BP   596  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0009306  BP   605  0 1.000000e+00
## GO:0071396  BP   612  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0043065  BP   632  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0043068  BP   637  0 1.000000e+00
## GO:0031347  BP   640  0 1.000000e+00
## GO:0030003  BP   641  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0002790  BP   652  0 1.000000e+00
## GO:0006873  BP   655  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0045859  BP   662  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0055065  BP   664  0 1.000000e+00
## GO:0098542  BP   667  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0008285  BP   681  0 1.000000e+00
## GO:0097435  BP   681  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0006954  BP   691  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0010942  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0009725  BP   697  0 1.000000e+00
## GO:0051223  BP   708  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043549  BP   728  0 1.000000e+00
## GO:0055080  BP   732  0 1.000000e+00
## GO:0014070  BP   734  0 1.000000e+00
## GO:0043408  BP   737  0 1.000000e+00
## GO:0070201  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0030029  BP   746  0 1.000000e+00
## GO:0098771  BP   746  0 1.000000e+00
## GO:0090087  BP   749  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0032101  BP   770  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0045664  BP   776  0 1.000000e+00
## GO:0061024  BP   780  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0000165  BP   793  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0045596  BP   799  0 1.000000e+00
## GO:0055082  BP   810  0 1.000000e+00
## GO:0023014  BP   810  0 1.000000e+00
## GO:0050801  BP   812  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0033993  BP   822  0 1.000000e+00
## GO:1903530  BP   831  0 1.000000e+00
## GO:0051338  BP   832  0 1.000000e+00
## GO:0045087  BP   842  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0006886  BP   882  0 1.000000e+00
## GO:0010243  BP   883  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0042493  BP   894  0 1.000000e+00
## GO:0009617  BP   907  0 1.000000e+00
## GO:0051046  BP   911  0 1.000000e+00
## GO:0019725  BP   930  0 1.000000e+00
## GO:0044255  BP   932  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0050767  BP   956  0 1.000000e+00
## GO:0060341  BP   958  0 1.000000e+00
## GO:1901698  BP   982  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0032880  BP  1038  0 1.000000e+00
## GO:0043085  BP  1051  0 1.000000e+00
## GO:0032940  BP  1070  0 1.000000e+00
## GO:0051960  BP  1071  0 1.000000e+00
## GO:0022603  BP  1076  0 1.000000e+00
## GO:0051050  BP  1081  0 1.000000e+00
## GO:0060284  BP  1093  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0051707  BP  1172  0 1.000000e+00
## GO:0043207  BP  1174  0 1.000000e+00
## GO:0048878  BP  1182  0 1.000000e+00
## GO:1901701  BP  1206  0 1.000000e+00
## GO:0009607  BP  1208  0 1.000000e+00
## GO:0046903  BP  1227  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0006629  BP  1258  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0007010  BP  1305  0 1.000000e+00
## GO:0044093  BP  1429  0 1.000000e+00
## GO:0016192  BP  1501  0 1.000000e+00
## GO:0046907  BP  1502  0 1.000000e+00
## GO:1901700  BP  1589  0 1.000000e+00
## GO:0006952  BP  1601  0 1.000000e+00
## GO:0034613  BP  1676  0 1.000000e+00
## GO:0070727  BP  1686  0 1.000000e+00
## GO:0015031  BP  1746  0 1.000000e+00
## GO:0015833  BP  1797  0 1.000000e+00
## GO:0042886  BP  1817  0 1.000000e+00
## GO:0045184  BP  1856  0 1.000000e+00
## GO:0051649  BP  1906  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0071705  BP  2133  0 1.000000e+00
## GO:0071702  BP  2505  0 1.000000e+00
## GO:0008104  BP  2578  0 1.000000e+00
## GO:0051641  BP  2592  0 1.000000e+00
## GO:0033036  BP  2901  0 1.000000e+00
## 
## [[1]][[3]]
##                                                                                                                                                           Term
## GO:0051262                                                                                                                             protein tetramerization
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0042113                                                                                                                                   B cell activation
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0050776                                                                                                                       regulation of immune response
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0042100                                                                                                                                B cell proliferation
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0045321                                                                                                                                leukocyte activation
## GO:0002520                                                                                                                           immune system development
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0001775                                                                                                                                     cell activation
## GO:0030183                                                                                                                              B cell differentiation
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0002682                                                                                                                 regulation of immune system process
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:0006955                                                                                                                                     immune response
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0002376                                                                                                                               immune system process
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:0002253                                                                                                                       activation of immune response
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:0022607                                                                                                                         cellular component assembly
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0002250                                                                                                                            adaptive immune response
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0043383                                                                                                                           negative T cell selection
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:0048513                                                                                                                            animal organ development
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0042092                                                                                                                              type 2 immune response
## GO:0043368                                                                                                                           positive T cell selection
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0030154                                                                                                                                cell differentiation
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048869                                                                                                                      cellular developmental process
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0048731                                                                                                                                  system development
## GO:0070206                                                                                                                               protein trimerization
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0032637                                                                                                                            interleukin-8 production
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:0048524                                                                                                                positive regulation of viral process
## GO:0070509                                                                                                                                  calcium ion import
## GO:0007275                                                                                                                  multicellular organism development
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0032602                                                                                                                                chemokine production
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0048856                                                                                                                    anatomical structure development
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0051701                                                                                                                               interaction with host
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:1990266                                                                                                                                neutrophil migration
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0007165                                                                                                                                 signal transduction
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0016043                                                                                                                     cellular component organization
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0048518                                                                                                           positive regulation of biological process
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0032502                                                                                                                               developmental process
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0042592                                                                                                                                 homeostatic process
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0006457                                                                                                                                     protein folding
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0008283                                                                                                                                  cell proliferation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0023052                                                                                                                                           signaling
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0007154                                                                                                                                  cell communication
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0050792                                                                                                                         regulation of viral process
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0019058                                                                                                                                    viral life cycle
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0051704                                                                                                                              multi-organism process
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0009605                                                                                                                       response to external stimulus
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0051641                                                                                                                               cellular localization
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0016032                                                                                                                                       viral process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0044403                                                                                                                                    symbiont process
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0042110                                                                                                                                   T cell activation
## GO:0050896                                                                                                                                response to stimulus
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0031347                                                                                                                      regulation of defense response
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0002790                                                                                                                                   peptide secretion
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0006810                                                                                                                                           transport
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0001816                                                                                                                                 cytokine production
## GO:0051234                                                                                                                       establishment of localization
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0030001                                                                                                                                 metal ion transport
## GO:0045087                                                                                                                              innate immune response
## GO:0002252                                                                                                                             immune effector process
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0050789                                                                                                                    regulation of biological process
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0065007                                                                                                                               biological regulation
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0006812                                                                                                                                    cation transport
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0048878                                                                                                                                chemical homeostasis
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0046903                                                                                                                                           secretion
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0051179                                                                                                                                        localization
## GO:0007155                                                                                                                                       cell adhesion
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016477                                                                                                                                      cell migration
## GO:0046907                                                                                                                             intracellular transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0006952                                                                                                                                    defense response
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0034613                                                                                                                       cellular protein localization
## GO:0010941                                                                                                                            regulation of cell death
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0015031                                                                                                                                   protein transport
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0015833                                                                                                                                   peptide transport
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0042886                                                                                                                                     amide transport
## GO:0040011                                                                                                                                          locomotion
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0045184                                                                                                               establishment of protein localization
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0006915                                                                                                                                   apoptotic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0012501                                                                                                                               programmed cell death
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0051049                                                                                                                             regulation of transport
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0008219                                                                                                                                          cell death
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0016310                                                                                                                                     phosphorylation
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0009987                                                                                                                                    cellular process
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0071702                                                                                                                         organic substance transport
## GO:0008104                                                                                                                                protein localization
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0032879                                                                                                                          regulation of localization
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0033036                                                                                                                          macromolecule localization
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0010033                                                                                                                       response to organic substance
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0023051                                                                                                                             regulation of signaling
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0006950                                                                                                                                  response to stress
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0042221                                                                                                                                response to chemical
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0019538                                                                                                                           protein metabolic process
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0044238                                                                                                                           primary metabolic process
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:0008150                                                                                                                                  biological_process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0050886                                                                                                                                   endocrine process
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0006417                                                                                                                           regulation of translation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0032259                                                                                                                                         methylation
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0006887                                                                                                                                          exocytosis
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0007015                                                                                                                         actin filament organization
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0051301                                                                                                                                       cell division
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0009306                                                                                                                                   protein secretion
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0006954                                                                                                                               inflammatory response
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0009725                                                                                                                                 response to hormone
## GO:0061061                                                                                                                        muscle structure development
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0006396                                                                                                                                      RNA processing
## GO:0033993                                                                                                                                   response to lipid
## GO:0043009                                                                                                                      chordate embryonic development
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007417                                                                                                                  central nervous system development
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0030163                                                                                                                           protein catabolic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0031175                                                                                                                       neuron projection development
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0060284                                                                                                                      regulation of cell development
## GO:0040007                                                                                                                                              growth
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0035295                                                                                                                                    tube development
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0072359                                                                                                                      circulatory system development
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0060429                                                                                                                              epithelium development
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0048666                                                                                                                                  neuron development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0009790                                                                                                                                  embryo development
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0030182                                                                                                                              neuron differentiation
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0030030                                                                                                                        cell projection organization
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0007049                                                                                                                                          cell cycle
## GO:0006508                                                                                                                                         proteolysis
## GO:0048699                                                                                                                               generation of neurons
## GO:0022008                                                                                                                                        neurogenesis
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0007600                                                                                                                                  sensory perception
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0009888                                                                                                                                  tissue development
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0009056                                                                                                                                   catabolic process
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0050877                                                                                                                              nervous system process
## GO:0007399                                                                                                                          nervous system development
## GO:0048468                                                                                                                                    cell development
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0003008                                                                                                                                      system process
## GO:0006996                                                                                                                              organelle organization
##            Ont     N DE         P.DE
## GO:0051262  BP   183  3 4.148822e-07
## GO:0030098  BP   395  3 4.209297e-06
## GO:0042113  BP   405  3 4.538007e-06
## GO:0002521  BP   567  3 1.247877e-05
## GO:0051259  BP   617  3 1.608662e-05
## GO:0050778  BP   747  3 2.857192e-05
## GO:0046649  BP   841  3 4.079068e-05
## GO:0050776  BP   903  3 5.050598e-05
## GO:0030097  BP   921  3 5.359036e-05
## GO:0042100  BP   112  2 6.244339e-05
## GO:0048534  BP   972  3 6.300586e-05
## GO:0045321  BP   994  3 6.738621e-05
## GO:0002520  BP  1030  3 7.498415e-05
## GO:0002684  BP  1072  3 8.454575e-05
## GO:0001775  BP  1098  3 9.085383e-05
## GO:0030183  BP   149  2 1.106504e-04
## GO:0050853  BP   181  2 1.633332e-04
## GO:0002682  BP  1473  3 2.195063e-04
## GO:2000448  BP     2  1 2.458613e-04
## GO:0006955  BP  1652  3 3.097168e-04
## GO:0065003  BP  1729  3 3.551034e-04
## GO:0035691  BP     3  1 3.687769e-04
## GO:2000446  BP     3  1 3.687769e-04
## GO:0050851  BP   295  2 4.334424e-04
## GO:0046651  BP   308  2 4.723845e-04
## GO:0032943  BP   310  2 4.785229e-04
## GO:0043933  BP  1956  3 5.142377e-04
## GO:0002429  BP   326  2 5.290443e-04
## GO:0070661  BP   331  2 5.453473e-04
## GO:0002768  BP   338  2 5.685832e-04
## GO:0002901  BP     5  1 6.145778e-04
## GO:0002906  BP     5  1 6.145778e-04
## GO:0002905  BP     5  1 6.145778e-04
## GO:0002606  BP     6  1 7.374631e-04
## GO:0048584  BP  2294  3 8.297281e-04
## GO:0031394  BP     8  1 9.832035e-04
## GO:0002757  BP   450  2 1.005456e-03
## GO:0002764  BP   463  2 1.064072e-03
## GO:0007166  BP  2497  3 1.070181e-03
## GO:0045657  BP     9  1 1.106059e-03
## GO:0046598  BP     9  1 1.106059e-03
## GO:0002604  BP     9  1 1.106059e-03
## GO:0060907  BP    10  1 1.228904e-03
## GO:2001280  BP    10  1 1.228904e-03
## GO:0002376  BP  2664  3 1.299682e-03
## GO:0002468  BP    11  1 1.351739e-03
## GO:1902166  BP    11  1 1.351739e-03
## GO:0002579  BP    11  1 1.351739e-03
## GO:2000343  BP    11  1 1.351739e-03
## GO:0045416  BP    11  1 1.351739e-03
## GO:0031392  BP    11  1 1.351739e-03
## GO:0002253  BP   526  2 1.371309e-03
## GO:0045080  BP    12  1 1.474564e-03
## GO:0022607  BP  2807  3 1.520501e-03
## GO:2001279  BP    13  1 1.597378e-03
## GO:0002250  BP   583  2 1.682267e-03
## GO:0019886  BP    14  1 1.720183e-03
## GO:0045060  BP    14  1 1.720183e-03
## GO:2000341  BP    14  1 1.720183e-03
## GO:0072567  BP    15  1 1.842978e-03
## GO:0042033  BP    15  1 1.842978e-03
## GO:0043383  BP    15  1 1.842978e-03
## GO:0045073  BP    15  1 1.842978e-03
## GO:0045414  BP    15  1 1.842978e-03
## GO:1902165  BP    15  1 1.842978e-03
## GO:0010935  BP    15  1 1.842978e-03
## GO:0044085  BP  3041  3 1.933501e-03
## GO:0042228  BP    16  1 1.965762e-03
## GO:0043518  BP    16  1 1.965762e-03
## GO:0002830  BP    16  1 1.965762e-03
## GO:0045059  BP    16  1 1.965762e-03
## GO:0045655  BP    16  1 1.965762e-03
## GO:1902656  BP    17  1 2.088537e-03
## GO:0050755  BP    17  1 2.088537e-03
## GO:0010934  BP    17  1 2.088537e-03
## GO:0045410  BP    17  1 2.088537e-03
## GO:0002495  BP    19  1 2.334056e-03
## GO:0061081  BP    19  1 2.334056e-03
## GO:0002504  BP    20  1 2.456800e-03
## GO:1902254  BP    20  1 2.456800e-03
## GO:0002577  BP    20  1 2.456800e-03
## GO:0002115  BP    22  1 2.702259e-03
## GO:0002903  BP    23  1 2.824973e-03
## GO:0045723  BP    24  1 2.947677e-03
## GO:0048513  BP  3504  3 2.958313e-03
## GO:0002478  BP    25  1 3.070371e-03
## GO:1902230  BP    25  1 3.070371e-03
## GO:0090023  BP    25  1 3.070371e-03
## GO:0001516  BP    25  1 3.070371e-03
## GO:0046457  BP    25  1 3.070371e-03
## GO:0071624  BP    27  1 3.315729e-03
## GO:0045408  BP    27  1 3.315729e-03
## GO:0045061  BP    27  1 3.315729e-03
## GO:0042226  BP    28  1 3.438392e-03
## GO:0030224  BP    29  1 3.561046e-03
## GO:1903131  BP    29  1 3.561046e-03
## GO:0051085  BP    30  1 3.683690e-03
## GO:0061082  BP    30  1 3.683690e-03
## GO:0002902  BP    30  1 3.683690e-03
## GO:1902253  BP    30  1 3.683690e-03
## GO:0019884  BP    31  1 3.806323e-03
## GO:1901797  BP    31  1 3.806323e-03
## GO:0090022  BP    31  1 3.806323e-03
## GO:0002828  BP    31  1 3.806323e-03
## GO:0048583  BP  3883  3 4.026153e-03
## GO:0046596  BP    33  1 4.051560e-03
## GO:1902624  BP    34  1 4.174164e-03
## GO:0051084  BP    35  1 4.296757e-03
## GO:0043516  BP    35  1 4.296757e-03
## GO:0006458  BP    36  1 4.419341e-03
## GO:0001782  BP    37  1 4.541914e-03
## GO:1902229  BP    37  1 4.541914e-03
## GO:0042092  BP    37  1 4.541914e-03
## GO:0043368  BP    38  1 4.664477e-03
## GO:0006636  BP    38  1 4.664477e-03
## GO:0046456  BP    40  1 4.909573e-03
## GO:0006693  BP    40  1 4.909573e-03
## GO:0006692  BP    40  1 4.909573e-03
## GO:0001783  BP    41  1 5.032106e-03
## GO:0042304  BP    41  1 5.032106e-03
## GO:0045923  BP    42  1 5.154629e-03
## GO:1902622  BP    42  1 5.154629e-03
## GO:0030154  BP  4218  3 5.161008e-03
## GO:0042771  BP    43  1 5.277142e-03
## GO:0030890  BP    45  1 5.522137e-03
## GO:0001961  BP    45  1 5.522137e-03
## GO:0032757  BP    46  1 5.644620e-03
## GO:0045581  BP    47  1 5.767093e-03
## GO:0070229  BP    49  1 6.012008e-03
## GO:0048869  BP  4443  3 6.031973e-03
## GO:0071622  BP    50  1 6.134450e-03
## GO:0060760  BP    51  1 6.256883e-03
## GO:0061077  BP    52  1 6.379305e-03
## GO:1901570  BP    52  1 6.379305e-03
## GO:0002720  BP    53  1 6.501717e-03
## GO:0051290  BP    54  1 6.624120e-03
## GO:0046718  BP    54  1 6.624120e-03
## GO:0045058  BP    55  1 6.746512e-03
## GO:0045620  BP    56  1 6.868894e-03
## GO:0051806  BP    58  1 7.113628e-03
## GO:0044409  BP    58  1 7.113628e-03
## GO:0030260  BP    58  1 7.113628e-03
## GO:0051828  BP    58  1 7.113628e-03
## GO:1903902  BP    58  1 7.113628e-03
## GO:0048731  BP  4746  3 7.352455e-03
## GO:0070206  BP    62  1 7.602976e-03
## GO:0030330  BP    63  1 7.725288e-03
## GO:0032722  BP    63  1 7.725288e-03
## GO:0032677  BP    63  1 7.725288e-03
## GO:0002763  BP    64  1 7.847589e-03
## GO:0048002  BP    68  1 8.336696e-03
## GO:0032637  BP    69  1 8.458947e-03
## GO:2000107  BP    69  1 8.458947e-03
## GO:0048146  BP    69  1 8.458947e-03
## GO:0030888  BP    69  1 8.458947e-03
## GO:2001021  BP    70  1 8.581189e-03
## GO:1901796  BP    70  1 8.581189e-03
## GO:0042108  BP    74  1 9.070054e-03
## GO:0070228  BP    76  1 9.314426e-03
## GO:0072332  BP    77  1 9.436597e-03
## GO:0002260  BP    78  1 9.558759e-03
## GO:0002718  BP    82  1 1.004730e-02
## GO:0048524  BP    84  1 1.029151e-02
## GO:0070509  BP    86  1 1.053569e-02
## GO:0007275  BP  5362  3 1.060379e-02
## GO:0002690  BP    87  1 1.065776e-02
## GO:0033077  BP    88  1 1.077982e-02
## GO:0032642  BP    88  1 1.077982e-02
## GO:0019217  BP    88  1 1.077982e-02
## GO:0042770  BP    90  1 1.102391e-02
## GO:0032602  BP    92  1 1.126796e-02
## GO:0046889  BP    93  1 1.138997e-02
## GO:0045582  BP    95  1 1.163396e-02
## GO:2001243  BP    97  1 1.187791e-02
## GO:0070227  BP    98  1 1.199987e-02
## GO:0032755  BP    99  1 1.212182e-02
## GO:0045639  BP    99  1 1.212182e-02
## GO:0030593  BP   100  1 1.224376e-02
## GO:0002702  BP   100  1 1.224376e-02
## GO:0033559  BP   101  1 1.236569e-02
## GO:0002367  BP   102  1 1.248761e-02
## GO:1902106  BP   102  1 1.248761e-02
## GO:0051289  BP   103  1 1.260952e-02
## GO:0048145  BP   107  1 1.309706e-02
## GO:0045621  BP   108  1 1.321892e-02
## GO:0001959  BP   108  1 1.321892e-02
## GO:2000106  BP   108  1 1.321892e-02
## GO:0048144  BP   109  1 1.334077e-02
## GO:0042035  BP   109  1 1.334077e-02
## GO:0019882  BP   110  1 1.346261e-02
## GO:0006690  BP   110  1 1.346261e-02
## GO:0001776  BP   110  1 1.346261e-02
## GO:0002688  BP   111  1 1.358444e-02
## GO:0008630  BP   112  1 1.370626e-02
## GO:0043123  BP   112  1 1.370626e-02
## GO:0048856  BP  5871  3 1.391996e-02
## GO:0000187  BP   115  1 1.407166e-02
## GO:0051701  BP   117  1 1.431521e-02
## GO:0060759  BP   118  1 1.443697e-02
## GO:0050868  BP   119  1 1.455872e-02
## GO:1990266  BP   119  1 1.455872e-02
## GO:0042089  BP   121  1 1.480219e-02
## GO:0071621  BP   123  1 1.504562e-02
## GO:0007165  BP  6028  3 1.506702e-02
## GO:0042107  BP   125  1 1.528901e-02
## GO:0002761  BP   125  1 1.528901e-02
## GO:0016043  BP  6083  3 1.548328e-02
## GO:0010565  BP   127  1 1.553236e-02
## GO:1903038  BP   131  1 1.601893e-02
## GO:0071887  BP   132  1 1.614055e-02
## GO:0048518  BP  6171  3 1.616513e-02
## GO:1901568  BP   133  1 1.626216e-02
## GO:0006633  BP   134  1 1.638376e-02
## GO:0072331  BP   135  1 1.650535e-02
## GO:0050671  BP   136  1 1.662693e-02
## GO:0032502  BP  6258  3 1.685863e-02
## GO:0032946  BP   138  1 1.687006e-02
## GO:0071840  BP  6266  3 1.692337e-02
## GO:0042592  BP  1887  2 1.700604e-02
## GO:0050921  BP   140  1 1.711315e-02
## GO:0051649  BP  1906  2 1.734083e-02
## GO:0002687  BP   144  1 1.759920e-02
## GO:0070665  BP   145  1 1.772069e-02
## GO:1903900  BP   145  1 1.772069e-02
## GO:0097530  BP   146  1 1.784217e-02
## GO:0002821  BP   147  1 1.796364e-02
## GO:0002700  BP   148  1 1.808510e-02
## GO:0045580  BP   150  1 1.832799e-02
## GO:0051250  BP   152  1 1.857083e-02
## GO:0006457  BP   153  1 1.869224e-02
## GO:0032675  BP   153  1 1.869224e-02
## GO:0008283  BP  1994  2 1.893135e-02
## GO:0062013  BP   155  1 1.893503e-02
## GO:0060402  BP   157  1 1.917778e-02
## GO:0045834  BP   157  1 1.917778e-02
## GO:1903707  BP   158  1 1.929914e-02
## GO:0051291  BP   160  1 1.954182e-02
## GO:0023052  BP  6579  3 1.958869e-02
## GO:0032635  BP   162  1 1.978447e-02
## GO:0002792  BP   162  1 1.978447e-02
## GO:0043122  BP   165  1 2.014837e-02
## GO:0007154  BP  6648  3 2.021160e-02
## GO:1902107  BP   168  1 2.051217e-02
## GO:2001242  BP   169  1 2.063342e-02
## GO:0060401  BP   170  1 2.075466e-02
## GO:0046890  BP   170  1 2.075466e-02
## GO:0043902  BP   175  1 2.136071e-02
## GO:0002695  BP   182  1 2.220875e-02
## GO:0045619  BP   182  1 2.220875e-02
## GO:0050792  BP   183  1 2.232986e-02
## GO:0022408  BP   187  1 2.281419e-02
## GO:0050870  BP   187  1 2.281419e-02
## GO:0007249  BP   193  1 2.354039e-02
## GO:0042180  BP   195  1 2.378238e-02
## GO:0050731  BP   195  1 2.378238e-02
## GO:0043903  BP   198  1 2.414529e-02
## GO:0019058  BP   199  1 2.426623e-02
## GO:0002685  BP   201  1 2.450810e-02
## GO:0050866  BP   203  1 2.474993e-02
## GO:1903039  BP   203  1 2.474993e-02
## GO:0002819  BP   205  1 2.499172e-02
## GO:0097529  BP   207  1 2.523346e-02
## GO:1903708  BP   208  1 2.535432e-02
## GO:2001020  BP   209  1 2.547517e-02
## GO:0030595  BP   211  1 2.571684e-02
## GO:0050920  BP   213  1 2.595847e-02
## GO:0050871  BP   215  1 2.620006e-02
## GO:0045637  BP   215  1 2.620006e-02
## GO:0002573  BP   216  1 2.632083e-02
## GO:0070374  BP   218  1 2.656236e-02
## GO:0043406  BP   220  1 2.680385e-02
## GO:0051704  BP  2389  2 2.686670e-02
## GO:0050670  BP   225  1 2.740740e-02
## GO:0032944  BP   227  1 2.764874e-02
## GO:2001234  BP   231  1 2.813132e-02
## GO:0045089  BP   232  1 2.825194e-02
## GO:0070663  BP   238  1 2.897544e-02
## GO:0022409  BP   242  1 2.945758e-02
## GO:0009605  BP  2515  2 2.966640e-02
## GO:0032147  BP   248  1 3.018049e-02
## GO:0051641  BP  2592  2 3.143996e-02
## GO:0016064  BP   259  1 3.150488e-02
## GO:0002699  BP   259  1 3.150488e-02
## GO:0051048  BP   261  1 3.174555e-02
## GO:0019724  BP   263  1 3.198618e-02
## GO:0050730  BP   263  1 3.198618e-02
## GO:0072330  BP   264  1 3.210648e-02
## GO:0050864  BP   264  1 3.210648e-02
## GO:0030336  BP   268  1 3.258758e-02
## GO:0030217  BP   269  1 3.270783e-02
## GO:0051716  BP  7810  3 3.277253e-02
## GO:0071902  BP   279  1 3.390979e-02
## GO:2000146  BP   281  1 3.415006e-02
## GO:0016032  BP   283  1 3.439029e-02
## GO:0007162  BP   284  1 3.451039e-02
## GO:1903037  BP   287  1 3.487063e-02
## GO:0045088  BP   289  1 3.511075e-02
## GO:0097193  BP   292  1 3.547084e-02
## GO:1902105  BP   294  1 3.571085e-02
## GO:0043405  BP   295  1 3.583084e-02
## GO:0060326  BP   299  1 3.631071e-02
## GO:0050863  BP   304  1 3.691031e-02
## GO:0070372  BP   306  1 3.715009e-02
## GO:0032103  BP   312  1 3.786917e-02
## GO:0048872  BP   315  1 3.822858e-02
## GO:0051271  BP   316  1 3.834836e-02
## GO:0032501  BP  8233  3 3.839192e-02
## GO:0007159  BP   319  1 3.870764e-02
## GO:0018108  BP   319  1 3.870764e-02
## GO:0018212  BP   322  1 3.906684e-02
## GO:0070371  BP   323  1 3.918655e-02
## GO:0007204  BP   327  1 3.966531e-02
## GO:0040013  BP   332  1 4.026352e-02
## GO:0019216  BP   338  1 4.098105e-02
## GO:0050900  BP   340  1 4.122015e-02
## GO:0019221  BP   341  1 4.133968e-02
## GO:0044403  BP   343  1 4.157872e-02
## GO:0002440  BP   345  1 4.181772e-02
## GO:0062012  BP   359  1 4.348959e-02
## GO:0046394  BP   362  1 4.384760e-02
## GO:0016053  BP   363  1 4.396691e-02
## GO:0031349  BP   370  1 4.480184e-02
## GO:0051480  BP   374  1 4.527872e-02
## GO:0006631  BP   376  1 4.551711e-02
## GO:0051260  BP   383  1 4.635113e-02
## GO:0043900  BP   391  1 4.730371e-02
## GO:0051251  BP   394  1 4.766076e-02
## GO:0022407  BP   395  1 4.777976e-02
## GO:0030099  BP   401  1 4.849354e-02
## GO:1903706  BP   407  1 4.920696e-02
## GO:0044419  BP   408  1 4.932583e-02
## GO:0045785  BP   411  1 4.968238e-02
## GO:2001233  BP   414  1 5.003883e-02
## GO:0002697  BP   420  1 5.075148e-02
## GO:0006816  BP   423  1 5.110767e-02
## GO:0002449  BP   425  1 5.134508e-02
## GO:0071900  BP   427  1 5.158246e-02
## GO:0045860  BP   438  1 5.288729e-02
## GO:0002460  BP   441  1 5.324295e-02
## GO:0002696  BP   446  1 5.383551e-02
## GO:0001819  BP   449  1 5.419093e-02
## GO:0050867  BP   461  1 5.561171e-02
## GO:0070838  BP   472  1 5.691285e-02
## GO:0006874  BP   473  1 5.703108e-02
## GO:0002683  BP   473  1 5.703108e-02
## GO:0072511  BP   475  1 5.726750e-02
## GO:0033674  BP   476  1 5.738569e-02
## GO:0055074  BP   489  1 5.892134e-02
## GO:0042110  BP   491  1 5.915745e-02
## GO:0050896  BP  9531  3 5.956655e-02
## GO:0072503  BP   497  1 5.986553e-02
## GO:0002443  BP   507  1 6.104488e-02
## GO:0043410  BP   519  1 6.245879e-02
## GO:0072507  BP   521  1 6.269430e-02
## GO:1902532  BP   527  1 6.340061e-02
## GO:0002791  BP   529  1 6.363596e-02
## GO:0030335  BP   539  1 6.481215e-02
## GO:0051051  BP   540  1 6.492972e-02
## GO:0008610  BP   545  1 6.551739e-02
## GO:0051347  BP   551  1 6.622228e-02
## GO:0051249  BP   555  1 6.669200e-02
## GO:2000147  BP   561  1 6.739630e-02
## GO:0032787  BP   570  1 6.845208e-02
## GO:0051272  BP   580  1 6.962423e-02
## GO:0006875  BP   582  1 6.985854e-02
## GO:0040017  BP   593  1 7.114655e-02
## GO:0006935  BP   597  1 7.161463e-02
## GO:0042330  BP   600  1 7.196558e-02
## GO:0097190  BP   605  1 7.255030e-02
## GO:0065008  BP  4051  2 7.351151e-02
## GO:0031347  BP   640  1 7.663649e-02
## GO:0030003  BP   641  1 7.675307e-02
## GO:0044283  BP   650  1 7.780177e-02
## GO:0002790  BP   652  1 7.803470e-02
## GO:0002694  BP   652  1 7.803470e-02
## GO:0006873  BP   655  1 7.838404e-02
## GO:0045859  BP   662  1 7.919880e-02
## GO:0055065  BP   664  1 7.943150e-02
## GO:0080135  BP   666  1 7.966417e-02
## GO:0001817  BP   679  1 8.117552e-02
## GO:0030155  BP   686  1 8.198864e-02
## GO:0050865  BP   693  1 8.280128e-02
## GO:0006810  BP  4398  2 8.572263e-02
## GO:0098609  BP   720  1 8.593125e-02
## GO:0050794  BP 10774  3 8.604660e-02
## GO:0043549  BP   728  1 8.685728e-02
## GO:0055080  BP   732  1 8.732006e-02
## GO:0043408  BP   737  1 8.789832e-02
## GO:0006974  BP   740  1 8.824515e-02
## GO:0098771  BP   746  1 8.893856e-02
## GO:0090087  BP   749  1 8.928513e-02
## GO:0001816  BP   755  1 8.997801e-02
## GO:0051234  BP  4538  2 9.087094e-02
## GO:0032101  BP   770  1 9.170868e-02
## GO:0000165  BP   793  1 9.435810e-02
## GO:0045596  BP   799  1 9.504840e-02
## GO:0055082  BP   810  1 9.631305e-02
## GO:0023014  BP   810  1 9.631305e-02
## GO:0050801  BP   812  1 9.654286e-02
## GO:0051338  BP   832  1 9.883881e-02
## GO:0030001  BP   839  1 9.964147e-02
## GO:0045087  BP   842  1 9.998533e-02
## GO:0002252  BP   879  1 1.042190e-01
## GO:0006886  BP   882  1 1.045617e-01
## GO:0050789  BP 11520  3 1.051885e-01
## GO:0030334  BP   892  1 1.057033e-01
## GO:0019752  BP   902  1 1.068440e-01
## GO:0071345  BP   907  1 1.074140e-01
## GO:0009617  BP   907  1 1.074140e-01
## GO:0051046  BP   911  1 1.078698e-01
## GO:0043066  BP   921  1 1.090086e-01
## GO:0019725  BP   930  1 1.100328e-01
## GO:0044255  BP   932  1 1.102602e-01
## GO:0043069  BP   939  1 1.110561e-01
## GO:2000145  BP   939  1 1.110561e-01
## GO:0043436  BP   941  1 1.112834e-01
## GO:0006082  BP   968  1 1.143482e-01
## GO:0008284  BP   972  1 1.148016e-01
## GO:0001934  BP   989  1 1.167271e-01
## GO:0034097  BP  1004  1 1.184236e-01
## GO:1902533  BP  1005  1 1.185367e-01
## GO:0040012  BP  1018  1 1.200051e-01
## GO:0051270  BP  1028  1 1.211336e-01
## GO:0042327  BP  1043  1 1.228245e-01
## GO:0065007  BP 12135  3 1.229520e-01
## GO:0060548  BP  1049  1 1.235003e-01
## GO:0043085  BP  1051  1 1.237255e-01
## GO:0051093  BP  1070  1 1.258627e-01
## GO:0045597  BP  1097  1 1.288939e-01
## GO:0006812  BP  1101  1 1.293424e-01
## GO:0045937  BP  1112  1 1.305749e-01
## GO:0010562  BP  1112  1 1.305749e-01
## GO:0018193  BP  1137  1 1.333716e-01
## GO:0051707  BP  1172  1 1.372770e-01
## GO:0043207  BP  1174  1 1.374998e-01
## GO:0009968  BP  1175  1 1.376112e-01
## GO:0048878  BP  1182  1 1.383907e-01
## GO:0009607  BP  1208  1 1.412818e-01
## GO:0031401  BP  1210  1 1.415039e-01
## GO:0046903  BP  1227  1 1.433904e-01
## GO:0006629  BP  1258  1 1.468233e-01
## GO:0051179  BP  5950  2 1.493464e-01
## GO:0007155  BP  1298  1 1.512393e-01
## GO:0010648  BP  1306  1 1.521207e-01
## GO:0022610  BP  1310  1 1.525611e-01
## GO:0023057  BP  1310  1 1.525611e-01
## GO:0080134  BP  1337  1 1.555302e-01
## GO:0051241  BP  1343  1 1.561891e-01
## GO:0001932  BP  1410  1 1.635230e-01
## GO:0044093  BP  1429  1 1.655951e-01
## GO:0016477  BP  1447  1 1.675549e-01
## GO:0046907  BP  1502  1 1.735241e-01
## GO:0009967  BP  1504  1 1.737407e-01
## GO:0042981  BP  1516  1 1.750390e-01
## GO:0032270  BP  1532  1 1.767680e-01
## GO:0042325  BP  1533  1 1.768760e-01
## GO:0045893  BP  1536  1 1.771999e-01
## GO:0043067  BP  1537  1 1.773079e-01
## GO:0051094  BP  1540  1 1.776316e-01
## GO:1903508  BP  1540  1 1.776316e-01
## GO:1902680  BP  1541  1 1.777395e-01
## GO:0006811  BP  1565  1 1.803265e-01
## GO:0048585  BP  1576  1 1.815104e-01
## GO:0048870  BP  1595  1 1.835526e-01
## GO:0051674  BP  1595  1 1.835526e-01
## GO:1901566  BP  1599  1 1.839821e-01
## GO:0006952  BP  1601  1 1.841968e-01
## GO:0051254  BP  1638  1 1.881618e-01
## GO:0051247  BP  1639  1 1.882688e-01
## GO:0042127  BP  1649  1 1.893382e-01
## GO:0034613  BP  1676  1 1.922207e-01
## GO:0010941  BP  1685  1 1.931800e-01
## GO:0070727  BP  1686  1 1.932865e-01
## GO:0019220  BP  1692  1 1.939256e-01
## GO:0051174  BP  1693  1 1.940321e-01
## GO:1902531  BP  1710  1 1.958408e-01
## GO:0015031  BP  1746  1 1.996620e-01
## GO:0044281  BP  1753  1 2.004036e-01
## GO:0031399  BP  1760  1 2.011448e-01
## GO:0033554  BP  1763  1 2.014623e-01
## GO:0015833  BP  1797  1 2.050547e-01
## GO:0010557  BP  1799  1 2.052656e-01
## GO:0050790  BP  1807  1 2.061092e-01
## GO:0006468  BP  1815  1 2.069522e-01
## GO:0042886  BP  1817  1 2.071628e-01
## GO:0040011  BP  1817  1 2.071628e-01
## GO:0045935  BP  1833  1 2.088466e-01
## GO:0010647  BP  1854  1 2.110530e-01
## GO:0045184  BP  1856  1 2.112630e-01
## GO:0023056  BP  1860  1 2.116827e-01
## GO:0006915  BP  1867  1 2.124168e-01
## GO:0031328  BP  1903  1 2.161853e-01
## GO:0012501  BP  1908  1 2.167078e-01
## GO:0045595  BP  1909  1 2.168123e-01
## GO:0051240  BP  1929  1 2.188996e-01
## GO:0009891  BP  1943  1 2.203584e-01
## GO:0051049  BP  1946  1 2.206708e-01
## GO:0010628  BP  1981  1 2.243092e-01
## GO:0006928  BP  2014  1 2.277292e-01
## GO:0008219  BP  2065  1 2.329949e-01
## GO:0071705  BP  2133  1 2.399785e-01
## GO:0016310  BP  2166  1 2.433523e-01
## GO:2000026  BP  2184  1 2.451883e-01
## GO:0071310  BP  2433  1 2.702828e-01
## GO:0009987  BP 15803  3 2.715563e-01
## GO:0065009  BP  2477  1 2.746585e-01
## GO:0032268  BP  2494  1 2.763444e-01
## GO:0071702  BP  2505  1 2.774339e-01
## GO:0008104  BP  2578  1 2.846365e-01
## GO:0035556  BP  2608  1 2.875825e-01
## GO:0051246  BP  2687  1 2.953017e-01
## GO:0050793  BP  2721  1 2.986066e-01
## GO:0009966  BP  2780  1 3.043171e-01
## GO:0006355  BP  2784  1 3.047031e-01
## GO:1903506  BP  2792  1 3.054748e-01
## GO:2001141  BP  2801  1 3.063422e-01
## GO:0032879  BP  2835  1 3.096125e-01
## GO:0006351  BP  2875  1 3.134467e-01
## GO:0097659  BP  2883  1 3.142118e-01
## GO:0032774  BP  2896  1 3.154540e-01
## GO:0033036  BP  2901  1 3.159313e-01
## GO:0006796  BP  2933  1 3.189811e-01
## GO:0006793  BP  2955  1 3.210725e-01
## GO:0070887  BP  3023  1 3.275099e-01
## GO:0051252  BP  3049  1 3.299605e-01
## GO:0051173  BP  3061  1 3.310895e-01
## GO:0010033  BP  3070  1 3.319354e-01
## GO:0031325  BP  3201  1 3.441677e-01
## GO:0010604  BP  3212  1 3.451880e-01
## GO:2000112  BP  3219  1 3.458368e-01
## GO:0051239  BP  3248  1 3.485198e-01
## GO:0034654  BP  3310  1 3.542313e-01
## GO:0010556  BP  3311  1 3.543231e-01
## GO:0010646  BP  3338  1 3.567997e-01
## GO:0019219  BP  3352  1 3.580813e-01
## GO:0023051  BP  3360  1 3.588129e-01
## GO:0018130  BP  3374  1 3.600919e-01
## GO:0019438  BP  3386  1 3.611868e-01
## GO:0006464  BP  3453  1 3.672770e-01
## GO:0036211  BP  3453  1 3.672770e-01
## GO:0031326  BP  3470  1 3.688161e-01
## GO:0009893  BP  3486  1 3.702624e-01
## GO:1901362  BP  3510  1 3.724277e-01
## GO:0009889  BP  3542  1 3.753070e-01
## GO:0043412  BP  3634  1 3.835359e-01
## GO:0006950  BP  3640  1 3.840701e-01
## GO:0016070  BP  3761  1 3.947763e-01
## GO:0010468  BP  3860  1 4.034431e-01
## GO:0044271  BP  3993  1 4.149555e-01
## GO:0034645  BP  4022  1 4.174459e-01
## GO:0009059  BP  4121  1 4.258943e-01
## GO:0042221  BP  4136  1 4.271672e-01
## GO:0090304  BP  4277  1 4.390406e-01
## GO:0044267  BP  4569  1 4.631055e-01
## GO:0048523  BP  4687  1 4.726316e-01
## GO:0006139  BP  4813  1 4.826785e-01
## GO:0010467  BP  4814  1 4.827577e-01
## GO:0044249  BP  4938  1 4.925187e-01
## GO:0046483  BP  4940  1 4.926751e-01
## GO:0006725  BP  5012  1 4.982849e-01
## GO:1901576  BP  5031  1 4.997583e-01
## GO:0051171  BP  5104  1 5.053926e-01
## GO:0009058  BP  5125  1 5.070055e-01
## GO:1901360  BP  5208  1 5.133461e-01
## GO:0080090  BP  5248  1 5.163823e-01
## GO:0048519  BP  5278  1 5.186512e-01
## GO:0019538  BP  5344  1 5.236176e-01
## GO:0031323  BP  5401  1 5.278792e-01
## GO:0048522  BP  5469  1 5.329299e-01
## GO:0060255  BP  5486  1 5.341870e-01
## GO:0034641  BP  5547  1 5.386789e-01
## GO:0019222  BP  5953  1 5.678423e-01
## GO:1901564  BP  6234  1 5.872899e-01
## GO:0044260  BP  7099  1 6.434767e-01
## GO:0043170  BP  8488  1 7.226285e-01
## GO:0006807  BP  8923  1 7.447578e-01
## GO:0044237  BP  9374  1 7.664245e-01
## GO:0044238  BP  9443  1 7.696271e-01
## GO:0071704  BP 10008  1 7.947571e-01
## GO:0008152  BP 10485  1 8.144929e-01
## GO:0008150  BP 23210  3 8.603854e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:0032743  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0032663  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0032623  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051341  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0042102  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0007584  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0032649  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0032609  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0002456  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:2001236  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0042129  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0045766  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0043491  BP   186  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0002822  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0050679  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0007160  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0051224  BP   204  0 1.000000e+00
## GO:1904018  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0042098  BP   205  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:1904950  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050707  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0051607  BP   227  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:0097191  BP   229  0 1.000000e+00
## GO:1901617  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:1903531  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:0050663  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0031330  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0090068  BP   249  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0001818  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0002366  BP   269  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0009615  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0002263  BP   273  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0030072  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:0009895  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0046883  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0045765  BP   307  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0042063  BP   323  0 1.000000e+00
## GO:0043434  BP   324  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0032102  BP   336  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0031589  BP   339  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:1901342  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045861  BP   349  0 1.000000e+00
## GO:0045787  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0050727  BP   354  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0050678  BP   358  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0046879  BP   365  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031667  BP   371  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0009914  BP   373  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0042176  BP   378  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0035690  BP   380  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0001503  BP   381  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:1901652  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0060249  BP   392  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0006979  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0009991  BP   401  0 1.000000e+00
## GO:0051346  BP   402  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0050673  BP   425  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0051222  BP   435  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0048608  BP   449  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0061458  BP   453  0 1.000000e+00
## GO:1904951  BP   454  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0048732  BP   467  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:1901615  BP   481  0 1.000000e+00
## GO:0071407  BP   482  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0048871  BP   486  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0050708  BP   490  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0001525  BP   513  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0032870  BP   518  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0023061  BP   523  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0001701  BP   538  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0007169  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0010817  BP   557  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0010564  BP   585  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:0044057  BP   596  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0009306  BP   605  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0071396  BP   612  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0048514  BP   622  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0043065  BP   632  0 1.000000e+00
## GO:0007420  BP   634  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0048598  BP   637  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0043068  BP   637  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0098542  BP   667  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0008285  BP   681  0 1.000000e+00
## GO:0097435  BP   681  0 1.000000e+00
## GO:0043086  BP   682  0 1.000000e+00
## GO:0060322  BP   688  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0006954  BP   691  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0010942  BP   695  0 1.000000e+00
## GO:0031329  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0051603  BP   696  0 1.000000e+00
## GO:0009725  BP   697  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0051223  BP   708  0 1.000000e+00
## GO:0030162  BP   716  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0001568  BP   719  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0014070  BP   734  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0044257  BP   740  0 1.000000e+00
## GO:0070201  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0030029  BP   746  0 1.000000e+00
## GO:0001944  BP   752  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0072358  BP   765  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0045664  BP   776  0 1.000000e+00
## GO:0061024  BP   780  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0003006  BP   791  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0009894  BP   821  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0033993  BP   822  0 1.000000e+00
## GO:0043009  BP   824  0 1.000000e+00
## GO:1903530  BP   831  0 1.000000e+00
## GO:0009792  BP   841  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0010243  BP   883  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007417  BP   888  0 1.000000e+00
## GO:0007167  BP   890  0 1.000000e+00
## GO:0042493  BP   894  0 1.000000e+00
## GO:0030163  BP   898  0 1.000000e+00
## GO:0035239  BP   905  0 1.000000e+00
## GO:0006259  BP   915  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0051726  BP   955  0 1.000000e+00
## GO:0050767  BP   956  0 1.000000e+00
## GO:0060341  BP   958  0 1.000000e+00
## GO:1901698  BP   982  0 1.000000e+00
## GO:0051336  BP   985  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:0032269  BP  1003  0 1.000000e+00
## GO:0044092  BP  1006  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044265  BP  1013  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0032880  BP  1038  0 1.000000e+00
## GO:0051248  BP  1070  0 1.000000e+00
## GO:0032940  BP  1070  0 1.000000e+00
## GO:0051960  BP  1071  0 1.000000e+00
## GO:0022603  BP  1076  0 1.000000e+00
## GO:0051050  BP  1081  0 1.000000e+00
## GO:0031175  BP  1083  0 1.000000e+00
## GO:0009887  BP  1090  0 1.000000e+00
## GO:0060284  BP  1093  0 1.000000e+00
## GO:0040007  BP  1097  0 1.000000e+00
## GO:0000902  BP  1100  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0022402  BP  1108  0 1.000000e+00
## GO:0035295  BP  1122  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0072359  BP  1143  0 1.000000e+00
## GO:1901565  BP  1151  0 1.000000e+00
## GO:0048646  BP  1157  0 1.000000e+00
## GO:0060429  BP  1172  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:1901701  BP  1206  0 1.000000e+00
## GO:0032989  BP  1211  0 1.000000e+00
## GO:0009057  BP  1218  0 1.000000e+00
## GO:0048666  BP  1222  0 1.000000e+00
## GO:0071495  BP  1223  0 1.000000e+00
## GO:0045944  BP  1226  0 1.000000e+00
## GO:0009790  BP  1231  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051253  BP  1269  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0007010  BP  1305  0 1.000000e+00
## GO:2000113  BP  1379  0 1.000000e+00
## GO:0045934  BP  1395  0 1.000000e+00
## GO:0009719  BP  1409  0 1.000000e+00
## GO:0010558  BP  1414  0 1.000000e+00
## GO:0031327  BP  1471  0 1.000000e+00
## GO:0022414  BP  1471  0 1.000000e+00
## GO:0000003  BP  1472  0 1.000000e+00
## GO:0030182  BP  1494  0 1.000000e+00
## GO:0016192  BP  1501  0 1.000000e+00
## GO:0009890  BP  1509  0 1.000000e+00
## GO:0120036  BP  1526  0 1.000000e+00
## GO:0030030  BP  1572  0 1.000000e+00
## GO:1901700  BP  1589  0 1.000000e+00
## GO:0007267  BP  1596  0 1.000000e+00
## GO:0007049  BP  1639  0 1.000000e+00
## GO:0006508  BP  1657  0 1.000000e+00
## GO:0048699  BP  1672  0 1.000000e+00
## GO:0022008  BP  1778  0 1.000000e+00
## GO:0010629  BP  1783  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:1901575  BP  1857  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0009888  BP  1956  0 1.000000e+00
## GO:0006357  BP  1993  0 1.000000e+00
## GO:0044248  BP  1996  0 1.000000e+00
## GO:0006366  BP  2049  0 1.000000e+00
## GO:0009056  BP  2257  0 1.000000e+00
## GO:0051172  BP  2271  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0007399  BP  2333  0 1.000000e+00
## GO:0048468  BP  2406  0 1.000000e+00
## GO:0031324  BP  2449  0 1.000000e+00
## GO:0051128  BP  2558  0 1.000000e+00
## GO:0010605  BP  2584  0 1.000000e+00
## GO:0009653  BP  2744  0 1.000000e+00
## GO:0009892  BP  2843  0 1.000000e+00
## GO:0003008  BP  2939  0 1.000000e+00
## GO:0006996  BP  3568  0 1.000000e+00
## 
## [[1]][[4]]
##                                                                                                                                                           Term
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0042113                                                                                                                                   B cell activation
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0002250                                                                                                                            adaptive immune response
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0050776                                                                                                                       regulation of immune response
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0042100                                                                                                                                B cell proliferation
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0045321                                                                                                                                leukocyte activation
## GO:0002520                                                                                                                           immune system development
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0001775                                                                                                                                     cell activation
## GO:0030183                                                                                                                              B cell differentiation
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0051262                                                                                                                             protein tetramerization
## GO:0002682                                                                                                                 regulation of immune system process
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:0006955                                                                                                                                     immune response
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0002376                                                                                                                               immune system process
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:0002253                                                                                                                       activation of immune response
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:0022607                                                                                                                         cellular component assembly
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0043383                                                                                                                           negative T cell selection
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:0048513                                                                                                                            animal organ development
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0042092                                                                                                                              type 2 immune response
## GO:0043368                                                                                                                           positive T cell selection
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0030154                                                                                                                                cell differentiation
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048869                                                                                                                      cellular developmental process
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0048731                                                                                                                                  system development
## GO:0070206                                                                                                                               protein trimerization
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0032637                                                                                                                            interleukin-8 production
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:0048524                                                                                                                positive regulation of viral process
## GO:0007275                                                                                                                  multicellular organism development
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0032602                                                                                                                                chemokine production
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0048856                                                                                                                    anatomical structure development
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0051701                                                                                                                               interaction with host
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:1990266                                                                                                                                neutrophil migration
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0007165                                                                                                                                 signal transduction
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0016043                                                                                                                     cellular component organization
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0048518                                                                                                           positive regulation of biological process
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0032502                                                                                                                               developmental process
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0006457                                                                                                                                     protein folding
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0008283                                                                                                                                  cell proliferation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0023052                                                                                                                                           signaling
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0007154                                                                                                                                  cell communication
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0050792                                                                                                                         regulation of viral process
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0019058                                                                                                                                    viral life cycle
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0051704                                                                                                                              multi-organism process
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0009605                                                                                                                       response to external stimulus
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0016032                                                                                                                                       viral process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0044403                                                                                                                                    symbiont process
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0042110                                                                                                                                   T cell activation
## GO:0050896                                                                                                                                response to stimulus
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0031347                                                                                                                      regulation of defense response
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0002790                                                                                                                                   peptide secretion
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0001816                                                                                                                                 cytokine production
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0045087                                                                                                                              innate immune response
## GO:0002252                                                                                                                             immune effector process
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0050789                                                                                                                    regulation of biological process
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0065007                                                                                                                               biological regulation
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0046903                                                                                                                                           secretion
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0007155                                                                                                                                       cell adhesion
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016477                                                                                                                                      cell migration
## GO:0046907                                                                                                                             intracellular transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0006952                                                                                                                                    defense response
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0034613                                                                                                                       cellular protein localization
## GO:0010941                                                                                                                            regulation of cell death
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0015031                                                                                                                                   protein transport
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0015833                                                                                                                                   peptide transport
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0042886                                                                                                                                     amide transport
## GO:0040011                                                                                                                                          locomotion
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0045184                                                                                                               establishment of protein localization
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0006915                                                                                                                                   apoptotic process
## GO:0042592                                                                                                                                 homeostatic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0012501                                                                                                                               programmed cell death
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0051049                                                                                                                             regulation of transport
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0008219                                                                                                                                          cell death
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0016310                                                                                                                                     phosphorylation
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0009987                                                                                                                                    cellular process
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0071702                                                                                                                         organic substance transport
## GO:0008104                                                                                                                                protein localization
## GO:0051641                                                                                                                               cellular localization
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0032879                                                                                                                          regulation of localization
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0033036                                                                                                                          macromolecule localization
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0010033                                                                                                                       response to organic substance
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0023051                                                                                                                             regulation of signaling
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0006950                                                                                                                                  response to stress
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0042221                                                                                                                                response to chemical
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0006810                                                                                                                                           transport
## GO:0051234                                                                                                                       establishment of localization
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0019538                                                                                                                           protein metabolic process
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0051179                                                                                                                                        localization
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0044238                                                                                                                           primary metabolic process
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:0008150                                                                                                                                  biological_process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0050886                                                                                                                                   endocrine process
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0006417                                                                                                                           regulation of translation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0032259                                                                                                                                         methylation
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006887                                                                                                                                          exocytosis
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0007015                                                                                                                         actin filament organization
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0051301                                                                                                                                       cell division
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0009306                                                                                                                                   protein secretion
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0006954                                                                                                                               inflammatory response
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0009725                                                                                                                                 response to hormone
## GO:0061061                                                                                                                        muscle structure development
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0006396                                                                                                                                      RNA processing
## GO:0033993                                                                                                                                   response to lipid
## GO:0043009                                                                                                                      chordate embryonic development
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0030001                                                                                                                                 metal ion transport
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007417                                                                                                                  central nervous system development
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0030163                                                                                                                           protein catabolic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0031175                                                                                                                       neuron projection development
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0060284                                                                                                                      regulation of cell development
## GO:0040007                                                                                                                                              growth
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0035295                                                                                                                                    tube development
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0072359                                                                                                                      circulatory system development
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0060429                                                                                                                              epithelium development
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0048666                                                                                                                                  neuron development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0009790                                                                                                                                  embryo development
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0030182                                                                                                                              neuron differentiation
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0006811                                                                                                                                       ion transport
## GO:0030030                                                                                                                        cell projection organization
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0007049                                                                                                                                          cell cycle
## GO:0006508                                                                                                                                         proteolysis
## GO:0048699                                                                                                                               generation of neurons
## GO:0022008                                                                                                                                        neurogenesis
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0007600                                                                                                                                  sensory perception
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0009888                                                                                                                                  tissue development
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0009056                                                                                                                                   catabolic process
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0050877                                                                                                                              nervous system process
## GO:0007399                                                                                                                          nervous system development
## GO:0048468                                                                                                                                    cell development
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0003008                                                                                                                                      system process
## GO:0006996                                                                                                                              organelle organization
##            Ont     N DE         P.DE
## GO:0030098  BP   395  3 4.209297e-06
## GO:0042113  BP   405  3 4.538007e-06
## GO:0002521  BP   567  3 1.247877e-05
## GO:0002250  BP   583  3 1.356724e-05
## GO:0051259  BP   617  3 1.608662e-05
## GO:0050778  BP   747  3 2.857192e-05
## GO:0046649  BP   841  3 4.079068e-05
## GO:0050776  BP   903  3 5.050598e-05
## GO:0030097  BP   921  3 5.359036e-05
## GO:0042100  BP   112  2 6.244339e-05
## GO:0048534  BP   972  3 6.300586e-05
## GO:0045321  BP   994  3 6.738621e-05
## GO:0002520  BP  1030  3 7.498415e-05
## GO:0002684  BP  1072  3 8.454575e-05
## GO:0001775  BP  1098  3 9.085383e-05
## GO:0030183  BP   149  2 1.106504e-04
## GO:0050853  BP   181  2 1.633332e-04
## GO:0051262  BP   183  2 1.669637e-04
## GO:0002682  BP  1473  3 2.195063e-04
## GO:2000448  BP     2  1 2.458613e-04
## GO:0006955  BP  1652  3 3.097168e-04
## GO:0065003  BP  1729  3 3.551034e-04
## GO:0035691  BP     3  1 3.687769e-04
## GO:2000446  BP     3  1 3.687769e-04
## GO:0050851  BP   295  2 4.334424e-04
## GO:0046651  BP   308  2 4.723845e-04
## GO:0032943  BP   310  2 4.785229e-04
## GO:0043933  BP  1956  3 5.142377e-04
## GO:0002429  BP   326  2 5.290443e-04
## GO:0070661  BP   331  2 5.453473e-04
## GO:0002768  BP   338  2 5.685832e-04
## GO:0002901  BP     5  1 6.145778e-04
## GO:0002906  BP     5  1 6.145778e-04
## GO:0002905  BP     5  1 6.145778e-04
## GO:0051260  BP   383  2 7.294076e-04
## GO:0002606  BP     6  1 7.374631e-04
## GO:0048584  BP  2294  3 8.297281e-04
## GO:0031394  BP     8  1 9.832035e-04
## GO:0002757  BP   450  2 1.005456e-03
## GO:0002764  BP   463  2 1.064072e-03
## GO:0007166  BP  2497  3 1.070181e-03
## GO:0045657  BP     9  1 1.106059e-03
## GO:0046598  BP     9  1 1.106059e-03
## GO:0002604  BP     9  1 1.106059e-03
## GO:0060907  BP    10  1 1.228904e-03
## GO:2001280  BP    10  1 1.228904e-03
## GO:0002376  BP  2664  3 1.299682e-03
## GO:0002468  BP    11  1 1.351739e-03
## GO:1902166  BP    11  1 1.351739e-03
## GO:0002579  BP    11  1 1.351739e-03
## GO:2000343  BP    11  1 1.351739e-03
## GO:0045416  BP    11  1 1.351739e-03
## GO:0031392  BP    11  1 1.351739e-03
## GO:0002253  BP   526  2 1.371309e-03
## GO:0045080  BP    12  1 1.474564e-03
## GO:0022607  BP  2807  3 1.520501e-03
## GO:2001279  BP    13  1 1.597378e-03
## GO:0019886  BP    14  1 1.720183e-03
## GO:0045060  BP    14  1 1.720183e-03
## GO:2000341  BP    14  1 1.720183e-03
## GO:0072567  BP    15  1 1.842978e-03
## GO:0042033  BP    15  1 1.842978e-03
## GO:0043383  BP    15  1 1.842978e-03
## GO:0045073  BP    15  1 1.842978e-03
## GO:0045414  BP    15  1 1.842978e-03
## GO:1902165  BP    15  1 1.842978e-03
## GO:0010935  BP    15  1 1.842978e-03
## GO:0044085  BP  3041  3 1.933501e-03
## GO:0042228  BP    16  1 1.965762e-03
## GO:0043518  BP    16  1 1.965762e-03
## GO:0002830  BP    16  1 1.965762e-03
## GO:0045059  BP    16  1 1.965762e-03
## GO:0045655  BP    16  1 1.965762e-03
## GO:0050755  BP    17  1 2.088537e-03
## GO:0010934  BP    17  1 2.088537e-03
## GO:0045410  BP    17  1 2.088537e-03
## GO:0002495  BP    19  1 2.334056e-03
## GO:0061081  BP    19  1 2.334056e-03
## GO:0002504  BP    20  1 2.456800e-03
## GO:1902254  BP    20  1 2.456800e-03
## GO:0002577  BP    20  1 2.456800e-03
## GO:0002903  BP    23  1 2.824973e-03
## GO:0045723  BP    24  1 2.947677e-03
## GO:0048513  BP  3504  3 2.958313e-03
## GO:0002478  BP    25  1 3.070371e-03
## GO:1902230  BP    25  1 3.070371e-03
## GO:0090023  BP    25  1 3.070371e-03
## GO:0001516  BP    25  1 3.070371e-03
## GO:0046457  BP    25  1 3.070371e-03
## GO:0071624  BP    27  1 3.315729e-03
## GO:0045408  BP    27  1 3.315729e-03
## GO:0045061  BP    27  1 3.315729e-03
## GO:0042226  BP    28  1 3.438392e-03
## GO:0030224  BP    29  1 3.561046e-03
## GO:1903131  BP    29  1 3.561046e-03
## GO:0051085  BP    30  1 3.683690e-03
## GO:0061082  BP    30  1 3.683690e-03
## GO:0002902  BP    30  1 3.683690e-03
## GO:1902253  BP    30  1 3.683690e-03
## GO:0019884  BP    31  1 3.806323e-03
## GO:1901797  BP    31  1 3.806323e-03
## GO:0090022  BP    31  1 3.806323e-03
## GO:0002828  BP    31  1 3.806323e-03
## GO:0048583  BP  3883  3 4.026153e-03
## GO:0046596  BP    33  1 4.051560e-03
## GO:1902624  BP    34  1 4.174164e-03
## GO:0051084  BP    35  1 4.296757e-03
## GO:0043516  BP    35  1 4.296757e-03
## GO:0006458  BP    36  1 4.419341e-03
## GO:0001782  BP    37  1 4.541914e-03
## GO:1902229  BP    37  1 4.541914e-03
## GO:0042092  BP    37  1 4.541914e-03
## GO:0043368  BP    38  1 4.664477e-03
## GO:0006636  BP    38  1 4.664477e-03
## GO:0046456  BP    40  1 4.909573e-03
## GO:0006693  BP    40  1 4.909573e-03
## GO:0006692  BP    40  1 4.909573e-03
## GO:0001783  BP    41  1 5.032106e-03
## GO:0042304  BP    41  1 5.032106e-03
## GO:0045923  BP    42  1 5.154629e-03
## GO:1902622  BP    42  1 5.154629e-03
## GO:0030154  BP  4218  3 5.161008e-03
## GO:0042771  BP    43  1 5.277142e-03
## GO:0030890  BP    45  1 5.522137e-03
## GO:0001961  BP    45  1 5.522137e-03
## GO:0032757  BP    46  1 5.644620e-03
## GO:0045581  BP    47  1 5.767093e-03
## GO:0070229  BP    49  1 6.012008e-03
## GO:0048869  BP  4443  3 6.031973e-03
## GO:0071622  BP    50  1 6.134450e-03
## GO:0060760  BP    51  1 6.256883e-03
## GO:0061077  BP    52  1 6.379305e-03
## GO:1901570  BP    52  1 6.379305e-03
## GO:0002720  BP    53  1 6.501717e-03
## GO:0051290  BP    54  1 6.624120e-03
## GO:0046718  BP    54  1 6.624120e-03
## GO:0045058  BP    55  1 6.746512e-03
## GO:0045620  BP    56  1 6.868894e-03
## GO:0051806  BP    58  1 7.113628e-03
## GO:0044409  BP    58  1 7.113628e-03
## GO:0030260  BP    58  1 7.113628e-03
## GO:0051828  BP    58  1 7.113628e-03
## GO:1903902  BP    58  1 7.113628e-03
## GO:0048731  BP  4746  3 7.352455e-03
## GO:0070206  BP    62  1 7.602976e-03
## GO:0030330  BP    63  1 7.725288e-03
## GO:0032722  BP    63  1 7.725288e-03
## GO:0032677  BP    63  1 7.725288e-03
## GO:0002763  BP    64  1 7.847589e-03
## GO:0048002  BP    68  1 8.336696e-03
## GO:0032637  BP    69  1 8.458947e-03
## GO:2000107  BP    69  1 8.458947e-03
## GO:0048146  BP    69  1 8.458947e-03
## GO:0030888  BP    69  1 8.458947e-03
## GO:2001021  BP    70  1 8.581189e-03
## GO:1901796  BP    70  1 8.581189e-03
## GO:0042108  BP    74  1 9.070054e-03
## GO:0070228  BP    76  1 9.314426e-03
## GO:0072332  BP    77  1 9.436597e-03
## GO:0002260  BP    78  1 9.558759e-03
## GO:0002718  BP    82  1 1.004730e-02
## GO:0048524  BP    84  1 1.029151e-02
## GO:0007275  BP  5362  3 1.060379e-02
## GO:0002690  BP    87  1 1.065776e-02
## GO:0033077  BP    88  1 1.077982e-02
## GO:0032642  BP    88  1 1.077982e-02
## GO:0019217  BP    88  1 1.077982e-02
## GO:0042770  BP    90  1 1.102391e-02
## GO:0032602  BP    92  1 1.126796e-02
## GO:0046889  BP    93  1 1.138997e-02
## GO:0045582  BP    95  1 1.163396e-02
## GO:2001243  BP    97  1 1.187791e-02
## GO:0070227  BP    98  1 1.199987e-02
## GO:0032755  BP    99  1 1.212182e-02
## GO:0045639  BP    99  1 1.212182e-02
## GO:0030593  BP   100  1 1.224376e-02
## GO:0002702  BP   100  1 1.224376e-02
## GO:0033559  BP   101  1 1.236569e-02
## GO:0002367  BP   102  1 1.248761e-02
## GO:1902106  BP   102  1 1.248761e-02
## GO:0051289  BP   103  1 1.260952e-02
## GO:0048145  BP   107  1 1.309706e-02
## GO:0045621  BP   108  1 1.321892e-02
## GO:0001959  BP   108  1 1.321892e-02
## GO:2000106  BP   108  1 1.321892e-02
## GO:0048144  BP   109  1 1.334077e-02
## GO:0042035  BP   109  1 1.334077e-02
## GO:0019882  BP   110  1 1.346261e-02
## GO:0006690  BP   110  1 1.346261e-02
## GO:0001776  BP   110  1 1.346261e-02
## GO:0002688  BP   111  1 1.358444e-02
## GO:0008630  BP   112  1 1.370626e-02
## GO:0043123  BP   112  1 1.370626e-02
## GO:0048856  BP  5871  3 1.391996e-02
## GO:0000187  BP   115  1 1.407166e-02
## GO:0051701  BP   117  1 1.431521e-02
## GO:0060759  BP   118  1 1.443697e-02
## GO:0050868  BP   119  1 1.455872e-02
## GO:1990266  BP   119  1 1.455872e-02
## GO:0042089  BP   121  1 1.480219e-02
## GO:0071621  BP   123  1 1.504562e-02
## GO:0007165  BP  6028  3 1.506702e-02
## GO:0042107  BP   125  1 1.528901e-02
## GO:0002761  BP   125  1 1.528901e-02
## GO:0016043  BP  6083  3 1.548328e-02
## GO:0010565  BP   127  1 1.553236e-02
## GO:1903038  BP   131  1 1.601893e-02
## GO:0071887  BP   132  1 1.614055e-02
## GO:0048518  BP  6171  3 1.616513e-02
## GO:1901568  BP   133  1 1.626216e-02
## GO:0006633  BP   134  1 1.638376e-02
## GO:0072331  BP   135  1 1.650535e-02
## GO:0050671  BP   136  1 1.662693e-02
## GO:0032502  BP  6258  3 1.685863e-02
## GO:0032946  BP   138  1 1.687006e-02
## GO:0071840  BP  6266  3 1.692337e-02
## GO:0050921  BP   140  1 1.711315e-02
## GO:0002687  BP   144  1 1.759920e-02
## GO:0070665  BP   145  1 1.772069e-02
## GO:1903900  BP   145  1 1.772069e-02
## GO:0097530  BP   146  1 1.784217e-02
## GO:0002821  BP   147  1 1.796364e-02
## GO:0002700  BP   148  1 1.808510e-02
## GO:0045580  BP   150  1 1.832799e-02
## GO:0051250  BP   152  1 1.857083e-02
## GO:0006457  BP   153  1 1.869224e-02
## GO:0032675  BP   153  1 1.869224e-02
## GO:0008283  BP  1994  2 1.893135e-02
## GO:0062013  BP   155  1 1.893503e-02
## GO:0045834  BP   157  1 1.917778e-02
## GO:1903707  BP   158  1 1.929914e-02
## GO:0051291  BP   160  1 1.954182e-02
## GO:0023052  BP  6579  3 1.958869e-02
## GO:0032635  BP   162  1 1.978447e-02
## GO:0002792  BP   162  1 1.978447e-02
## GO:0043122  BP   165  1 2.014837e-02
## GO:0007154  BP  6648  3 2.021160e-02
## GO:1902107  BP   168  1 2.051217e-02
## GO:2001242  BP   169  1 2.063342e-02
## GO:0046890  BP   170  1 2.075466e-02
## GO:0043902  BP   175  1 2.136071e-02
## GO:0002695  BP   182  1 2.220875e-02
## GO:0045619  BP   182  1 2.220875e-02
## GO:0050792  BP   183  1 2.232986e-02
## GO:0022408  BP   187  1 2.281419e-02
## GO:0050870  BP   187  1 2.281419e-02
## GO:0007249  BP   193  1 2.354039e-02
## GO:0042180  BP   195  1 2.378238e-02
## GO:0050731  BP   195  1 2.378238e-02
## GO:0043903  BP   198  1 2.414529e-02
## GO:0019058  BP   199  1 2.426623e-02
## GO:0002685  BP   201  1 2.450810e-02
## GO:0050866  BP   203  1 2.474993e-02
## GO:1903039  BP   203  1 2.474993e-02
## GO:0002819  BP   205  1 2.499172e-02
## GO:0097529  BP   207  1 2.523346e-02
## GO:1903708  BP   208  1 2.535432e-02
## GO:2001020  BP   209  1 2.547517e-02
## GO:0030595  BP   211  1 2.571684e-02
## GO:0050920  BP   213  1 2.595847e-02
## GO:0050871  BP   215  1 2.620006e-02
## GO:0045637  BP   215  1 2.620006e-02
## GO:0002573  BP   216  1 2.632083e-02
## GO:0070374  BP   218  1 2.656236e-02
## GO:0043406  BP   220  1 2.680385e-02
## GO:0051704  BP  2389  2 2.686670e-02
## GO:0050670  BP   225  1 2.740740e-02
## GO:0032944  BP   227  1 2.764874e-02
## GO:2001234  BP   231  1 2.813132e-02
## GO:0045089  BP   232  1 2.825194e-02
## GO:0070663  BP   238  1 2.897544e-02
## GO:0022409  BP   242  1 2.945758e-02
## GO:0009605  BP  2515  2 2.966640e-02
## GO:0032147  BP   248  1 3.018049e-02
## GO:0016064  BP   259  1 3.150488e-02
## GO:0002699  BP   259  1 3.150488e-02
## GO:0051048  BP   261  1 3.174555e-02
## GO:0019724  BP   263  1 3.198618e-02
## GO:0050730  BP   263  1 3.198618e-02
## GO:0072330  BP   264  1 3.210648e-02
## GO:0050864  BP   264  1 3.210648e-02
## GO:0030336  BP   268  1 3.258758e-02
## GO:0030217  BP   269  1 3.270783e-02
## GO:0051716  BP  7810  3 3.277253e-02
## GO:0071902  BP   279  1 3.390979e-02
## GO:2000146  BP   281  1 3.415006e-02
## GO:0016032  BP   283  1 3.439029e-02
## GO:0007162  BP   284  1 3.451039e-02
## GO:1903037  BP   287  1 3.487063e-02
## GO:0045088  BP   289  1 3.511075e-02
## GO:0097193  BP   292  1 3.547084e-02
## GO:1902105  BP   294  1 3.571085e-02
## GO:0043405  BP   295  1 3.583084e-02
## GO:0060326  BP   299  1 3.631071e-02
## GO:0050863  BP   304  1 3.691031e-02
## GO:0070372  BP   306  1 3.715009e-02
## GO:0032103  BP   312  1 3.786917e-02
## GO:0048872  BP   315  1 3.822858e-02
## GO:0051271  BP   316  1 3.834836e-02
## GO:0032501  BP  8233  3 3.839192e-02
## GO:0007159  BP   319  1 3.870764e-02
## GO:0018108  BP   319  1 3.870764e-02
## GO:0018212  BP   322  1 3.906684e-02
## GO:0070371  BP   323  1 3.918655e-02
## GO:0040013  BP   332  1 4.026352e-02
## GO:0019216  BP   338  1 4.098105e-02
## GO:0050900  BP   340  1 4.122015e-02
## GO:0019221  BP   341  1 4.133968e-02
## GO:0044403  BP   343  1 4.157872e-02
## GO:0002440  BP   345  1 4.181772e-02
## GO:0062012  BP   359  1 4.348959e-02
## GO:0046394  BP   362  1 4.384760e-02
## GO:0016053  BP   363  1 4.396691e-02
## GO:0031349  BP   370  1 4.480184e-02
## GO:0006631  BP   376  1 4.551711e-02
## GO:0043900  BP   391  1 4.730371e-02
## GO:0051251  BP   394  1 4.766076e-02
## GO:0022407  BP   395  1 4.777976e-02
## GO:0030099  BP   401  1 4.849354e-02
## GO:1903706  BP   407  1 4.920696e-02
## GO:0044419  BP   408  1 4.932583e-02
## GO:0045785  BP   411  1 4.968238e-02
## GO:2001233  BP   414  1 5.003883e-02
## GO:0002697  BP   420  1 5.075148e-02
## GO:0002449  BP   425  1 5.134508e-02
## GO:0071900  BP   427  1 5.158246e-02
## GO:0045860  BP   438  1 5.288729e-02
## GO:0002460  BP   441  1 5.324295e-02
## GO:0002696  BP   446  1 5.383551e-02
## GO:0001819  BP   449  1 5.419093e-02
## GO:0050867  BP   461  1 5.561171e-02
## GO:0002683  BP   473  1 5.703108e-02
## GO:0033674  BP   476  1 5.738569e-02
## GO:0042110  BP   491  1 5.915745e-02
## GO:0050896  BP  9531  3 5.956655e-02
## GO:0002443  BP   507  1 6.104488e-02
## GO:0043410  BP   519  1 6.245879e-02
## GO:1902532  BP   527  1 6.340061e-02
## GO:0002791  BP   529  1 6.363596e-02
## GO:0030335  BP   539  1 6.481215e-02
## GO:0051051  BP   540  1 6.492972e-02
## GO:0008610  BP   545  1 6.551739e-02
## GO:0051347  BP   551  1 6.622228e-02
## GO:0051249  BP   555  1 6.669200e-02
## GO:2000147  BP   561  1 6.739630e-02
## GO:0032787  BP   570  1 6.845208e-02
## GO:0051272  BP   580  1 6.962423e-02
## GO:0040017  BP   593  1 7.114655e-02
## GO:0006935  BP   597  1 7.161463e-02
## GO:0042330  BP   600  1 7.196558e-02
## GO:0097190  BP   605  1 7.255030e-02
## GO:0031347  BP   640  1 7.663649e-02
## GO:0044283  BP   650  1 7.780177e-02
## GO:0002790  BP   652  1 7.803470e-02
## GO:0002694  BP   652  1 7.803470e-02
## GO:0045859  BP   662  1 7.919880e-02
## GO:0080135  BP   666  1 7.966417e-02
## GO:0001817  BP   679  1 8.117552e-02
## GO:0030155  BP   686  1 8.198864e-02
## GO:0050865  BP   693  1 8.280128e-02
## GO:0098609  BP   720  1 8.593125e-02
## GO:0050794  BP 10774  3 8.604660e-02
## GO:0043549  BP   728  1 8.685728e-02
## GO:0043408  BP   737  1 8.789832e-02
## GO:0006974  BP   740  1 8.824515e-02
## GO:0090087  BP   749  1 8.928513e-02
## GO:0001816  BP   755  1 8.997801e-02
## GO:0032101  BP   770  1 9.170868e-02
## GO:0000165  BP   793  1 9.435810e-02
## GO:0045596  BP   799  1 9.504840e-02
## GO:0023014  BP   810  1 9.631305e-02
## GO:0051338  BP   832  1 9.883881e-02
## GO:0045087  BP   842  1 9.998533e-02
## GO:0002252  BP   879  1 1.042190e-01
## GO:0006886  BP   882  1 1.045617e-01
## GO:0050789  BP 11520  3 1.051885e-01
## GO:0030334  BP   892  1 1.057033e-01
## GO:0019752  BP   902  1 1.068440e-01
## GO:0071345  BP   907  1 1.074140e-01
## GO:0009617  BP   907  1 1.074140e-01
## GO:0051046  BP   911  1 1.078698e-01
## GO:0043066  BP   921  1 1.090086e-01
## GO:0044255  BP   932  1 1.102602e-01
## GO:0043069  BP   939  1 1.110561e-01
## GO:2000145  BP   939  1 1.110561e-01
## GO:0043436  BP   941  1 1.112834e-01
## GO:0006082  BP   968  1 1.143482e-01
## GO:0008284  BP   972  1 1.148016e-01
## GO:0001934  BP   989  1 1.167271e-01
## GO:0034097  BP  1004  1 1.184236e-01
## GO:1902533  BP  1005  1 1.185367e-01
## GO:0040012  BP  1018  1 1.200051e-01
## GO:0051270  BP  1028  1 1.211336e-01
## GO:0042327  BP  1043  1 1.228245e-01
## GO:0065007  BP 12135  3 1.229520e-01
## GO:0060548  BP  1049  1 1.235003e-01
## GO:0043085  BP  1051  1 1.237255e-01
## GO:0051093  BP  1070  1 1.258627e-01
## GO:0045597  BP  1097  1 1.288939e-01
## GO:0045937  BP  1112  1 1.305749e-01
## GO:0010562  BP  1112  1 1.305749e-01
## GO:0018193  BP  1137  1 1.333716e-01
## GO:0051707  BP  1172  1 1.372770e-01
## GO:0043207  BP  1174  1 1.374998e-01
## GO:0009968  BP  1175  1 1.376112e-01
## GO:0009607  BP  1208  1 1.412818e-01
## GO:0031401  BP  1210  1 1.415039e-01
## GO:0046903  BP  1227  1 1.433904e-01
## GO:0006629  BP  1258  1 1.468233e-01
## GO:0007155  BP  1298  1 1.512393e-01
## GO:0010648  BP  1306  1 1.521207e-01
## GO:0022610  BP  1310  1 1.525611e-01
## GO:0023057  BP  1310  1 1.525611e-01
## GO:0080134  BP  1337  1 1.555302e-01
## GO:0051241  BP  1343  1 1.561891e-01
## GO:0001932  BP  1410  1 1.635230e-01
## GO:0044093  BP  1429  1 1.655951e-01
## GO:0016477  BP  1447  1 1.675549e-01
## GO:0046907  BP  1502  1 1.735241e-01
## GO:0009967  BP  1504  1 1.737407e-01
## GO:0042981  BP  1516  1 1.750390e-01
## GO:0032270  BP  1532  1 1.767680e-01
## GO:0042325  BP  1533  1 1.768760e-01
## GO:0045893  BP  1536  1 1.771999e-01
## GO:0043067  BP  1537  1 1.773079e-01
## GO:0051094  BP  1540  1 1.776316e-01
## GO:1903508  BP  1540  1 1.776316e-01
## GO:1902680  BP  1541  1 1.777395e-01
## GO:0048585  BP  1576  1 1.815104e-01
## GO:0048870  BP  1595  1 1.835526e-01
## GO:0051674  BP  1595  1 1.835526e-01
## GO:1901566  BP  1599  1 1.839821e-01
## GO:0006952  BP  1601  1 1.841968e-01
## GO:0051254  BP  1638  1 1.881618e-01
## GO:0051247  BP  1639  1 1.882688e-01
## GO:0042127  BP  1649  1 1.893382e-01
## GO:0034613  BP  1676  1 1.922207e-01
## GO:0010941  BP  1685  1 1.931800e-01
## GO:0070727  BP  1686  1 1.932865e-01
## GO:0019220  BP  1692  1 1.939256e-01
## GO:0051174  BP  1693  1 1.940321e-01
## GO:1902531  BP  1710  1 1.958408e-01
## GO:0015031  BP  1746  1 1.996620e-01
## GO:0044281  BP  1753  1 2.004036e-01
## GO:0031399  BP  1760  1 2.011448e-01
## GO:0033554  BP  1763  1 2.014623e-01
## GO:0015833  BP  1797  1 2.050547e-01
## GO:0010557  BP  1799  1 2.052656e-01
## GO:0050790  BP  1807  1 2.061092e-01
## GO:0006468  BP  1815  1 2.069522e-01
## GO:0042886  BP  1817  1 2.071628e-01
## GO:0040011  BP  1817  1 2.071628e-01
## GO:0045935  BP  1833  1 2.088466e-01
## GO:0010647  BP  1854  1 2.110530e-01
## GO:0045184  BP  1856  1 2.112630e-01
## GO:0023056  BP  1860  1 2.116827e-01
## GO:0006915  BP  1867  1 2.124168e-01
## GO:0042592  BP  1887  1 2.145119e-01
## GO:0031328  BP  1903  1 2.161853e-01
## GO:0051649  BP  1906  1 2.164988e-01
## GO:0012501  BP  1908  1 2.167078e-01
## GO:0045595  BP  1909  1 2.168123e-01
## GO:0051240  BP  1929  1 2.188996e-01
## GO:0009891  BP  1943  1 2.203584e-01
## GO:0051049  BP  1946  1 2.206708e-01
## GO:0010628  BP  1981  1 2.243092e-01
## GO:0006928  BP  2014  1 2.277292e-01
## GO:0008219  BP  2065  1 2.329949e-01
## GO:0071705  BP  2133  1 2.399785e-01
## GO:0016310  BP  2166  1 2.433523e-01
## GO:2000026  BP  2184  1 2.451883e-01
## GO:0071310  BP  2433  1 2.702828e-01
## GO:0009987  BP 15803  3 2.715563e-01
## GO:0065009  BP  2477  1 2.746585e-01
## GO:0032268  BP  2494  1 2.763444e-01
## GO:0071702  BP  2505  1 2.774339e-01
## GO:0008104  BP  2578  1 2.846365e-01
## GO:0051641  BP  2592  1 2.860123e-01
## GO:0035556  BP  2608  1 2.875825e-01
## GO:0051246  BP  2687  1 2.953017e-01
## GO:0050793  BP  2721  1 2.986066e-01
## GO:0009966  BP  2780  1 3.043171e-01
## GO:0006355  BP  2784  1 3.047031e-01
## GO:1903506  BP  2792  1 3.054748e-01
## GO:2001141  BP  2801  1 3.063422e-01
## GO:0032879  BP  2835  1 3.096125e-01
## GO:0006351  BP  2875  1 3.134467e-01
## GO:0097659  BP  2883  1 3.142118e-01
## GO:0032774  BP  2896  1 3.154540e-01
## GO:0033036  BP  2901  1 3.159313e-01
## GO:0006796  BP  2933  1 3.189811e-01
## GO:0006793  BP  2955  1 3.210725e-01
## GO:0070887  BP  3023  1 3.275099e-01
## GO:0051252  BP  3049  1 3.299605e-01
## GO:0051173  BP  3061  1 3.310895e-01
## GO:0010033  BP  3070  1 3.319354e-01
## GO:0031325  BP  3201  1 3.441677e-01
## GO:0010604  BP  3212  1 3.451880e-01
## GO:2000112  BP  3219  1 3.458368e-01
## GO:0051239  BP  3248  1 3.485198e-01
## GO:0034654  BP  3310  1 3.542313e-01
## GO:0010556  BP  3311  1 3.543231e-01
## GO:0010646  BP  3338  1 3.567997e-01
## GO:0019219  BP  3352  1 3.580813e-01
## GO:0023051  BP  3360  1 3.588129e-01
## GO:0018130  BP  3374  1 3.600919e-01
## GO:0019438  BP  3386  1 3.611868e-01
## GO:0006464  BP  3453  1 3.672770e-01
## GO:0036211  BP  3453  1 3.672770e-01
## GO:0031326  BP  3470  1 3.688161e-01
## GO:0009893  BP  3486  1 3.702624e-01
## GO:1901362  BP  3510  1 3.724277e-01
## GO:0009889  BP  3542  1 3.753070e-01
## GO:0043412  BP  3634  1 3.835359e-01
## GO:0006950  BP  3640  1 3.840701e-01
## GO:0016070  BP  3761  1 3.947763e-01
## GO:0010468  BP  3860  1 4.034431e-01
## GO:0044271  BP  3993  1 4.149555e-01
## GO:0034645  BP  4022  1 4.174459e-01
## GO:0065008  BP  4051  1 4.199292e-01
## GO:0009059  BP  4121  1 4.258943e-01
## GO:0042221  BP  4136  1 4.271672e-01
## GO:0090304  BP  4277  1 4.390406e-01
## GO:0006810  BP  4398  1 4.490981e-01
## GO:0051234  BP  4538  1 4.605840e-01
## GO:0044267  BP  4569  1 4.631055e-01
## GO:0048523  BP  4687  1 4.726316e-01
## GO:0006139  BP  4813  1 4.826785e-01
## GO:0010467  BP  4814  1 4.827577e-01
## GO:0044249  BP  4938  1 4.925187e-01
## GO:0046483  BP  4940  1 4.926751e-01
## GO:0006725  BP  5012  1 4.982849e-01
## GO:1901576  BP  5031  1 4.997583e-01
## GO:0051171  BP  5104  1 5.053926e-01
## GO:0009058  BP  5125  1 5.070055e-01
## GO:1901360  BP  5208  1 5.133461e-01
## GO:0080090  BP  5248  1 5.163823e-01
## GO:0048519  BP  5278  1 5.186512e-01
## GO:0019538  BP  5344  1 5.236176e-01
## GO:0031323  BP  5401  1 5.278792e-01
## GO:0048522  BP  5469  1 5.329299e-01
## GO:0060255  BP  5486  1 5.341870e-01
## GO:0034641  BP  5547  1 5.386789e-01
## GO:0051179  BP  5950  1 5.676315e-01
## GO:0019222  BP  5953  1 5.678423e-01
## GO:1901564  BP  6234  1 5.872899e-01
## GO:0044260  BP  7099  1 6.434767e-01
## GO:0043170  BP  8488  1 7.226285e-01
## GO:0006807  BP  8923  1 7.447578e-01
## GO:0044237  BP  9374  1 7.664245e-01
## GO:0044238  BP  9443  1 7.696271e-01
## GO:0071704  BP 10008  1 7.947571e-01
## GO:0008152  BP 10485  1 8.144929e-01
## GO:0008150  BP 23210  3 8.603854e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:0032743  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0032663  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0032623  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051341  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0042102  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0007584  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0032649  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0032609  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0002456  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:2001236  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0042129  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0045766  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0043491  BP   186  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0002822  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0050679  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0007160  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0051224  BP   204  0 1.000000e+00
## GO:1904018  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0042098  BP   205  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:1904950  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050707  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0051607  BP   227  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:0097191  BP   229  0 1.000000e+00
## GO:1901617  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:1903531  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:0050663  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0031330  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0090068  BP   249  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0001818  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0002366  BP   269  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0009615  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0002263  BP   273  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0030072  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:0009895  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0046883  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0045765  BP   307  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0042063  BP   323  0 1.000000e+00
## GO:0043434  BP   324  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0032102  BP   336  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0031589  BP   339  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:1901342  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045861  BP   349  0 1.000000e+00
## GO:0045787  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0050727  BP   354  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0050678  BP   358  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0046879  BP   365  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031667  BP   371  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0009914  BP   373  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0042176  BP   378  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0035690  BP   380  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0001503  BP   381  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:1901652  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0060249  BP   392  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0006979  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0009991  BP   401  0 1.000000e+00
## GO:0051346  BP   402  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0050673  BP   425  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0051222  BP   435  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0048608  BP   449  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0061458  BP   453  0 1.000000e+00
## GO:1904951  BP   454  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0048732  BP   467  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0006874  BP   473  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:1901615  BP   481  0 1.000000e+00
## GO:0071407  BP   482  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0048871  BP   486  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0055074  BP   489  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0050708  BP   490  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0072503  BP   497  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0001525  BP   513  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0032870  BP   518  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0072507  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0023061  BP   523  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0001701  BP   538  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0007169  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0010817  BP   557  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0006875  BP   582  0 1.000000e+00
## GO:0010564  BP   585  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:0044057  BP   596  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0009306  BP   605  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0071396  BP   612  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0048514  BP   622  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0043065  BP   632  0 1.000000e+00
## GO:0007420  BP   634  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0048598  BP   637  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0043068  BP   637  0 1.000000e+00
## GO:0030003  BP   641  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0006873  BP   655  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0055065  BP   664  0 1.000000e+00
## GO:0098542  BP   667  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0008285  BP   681  0 1.000000e+00
## GO:0097435  BP   681  0 1.000000e+00
## GO:0043086  BP   682  0 1.000000e+00
## GO:0060322  BP   688  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0006954  BP   691  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0010942  BP   695  0 1.000000e+00
## GO:0031329  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0051603  BP   696  0 1.000000e+00
## GO:0009725  BP   697  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0051223  BP   708  0 1.000000e+00
## GO:0030162  BP   716  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0001568  BP   719  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0055080  BP   732  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0014070  BP   734  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0044257  BP   740  0 1.000000e+00
## GO:0070201  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0030029  BP   746  0 1.000000e+00
## GO:0098771  BP   746  0 1.000000e+00
## GO:0001944  BP   752  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0072358  BP   765  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0045664  BP   776  0 1.000000e+00
## GO:0061024  BP   780  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0003006  BP   791  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0055082  BP   810  0 1.000000e+00
## GO:0050801  BP   812  0 1.000000e+00
## GO:0009894  BP   821  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0033993  BP   822  0 1.000000e+00
## GO:0043009  BP   824  0 1.000000e+00
## GO:1903530  BP   831  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0009792  BP   841  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0010243  BP   883  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007417  BP   888  0 1.000000e+00
## GO:0007167  BP   890  0 1.000000e+00
## GO:0042493  BP   894  0 1.000000e+00
## GO:0030163  BP   898  0 1.000000e+00
## GO:0035239  BP   905  0 1.000000e+00
## GO:0006259  BP   915  0 1.000000e+00
## GO:0019725  BP   930  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0051726  BP   955  0 1.000000e+00
## GO:0050767  BP   956  0 1.000000e+00
## GO:0060341  BP   958  0 1.000000e+00
## GO:1901698  BP   982  0 1.000000e+00
## GO:0051336  BP   985  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:0032269  BP  1003  0 1.000000e+00
## GO:0044092  BP  1006  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044265  BP  1013  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0032880  BP  1038  0 1.000000e+00
## GO:0051248  BP  1070  0 1.000000e+00
## GO:0032940  BP  1070  0 1.000000e+00
## GO:0051960  BP  1071  0 1.000000e+00
## GO:0022603  BP  1076  0 1.000000e+00
## GO:0051050  BP  1081  0 1.000000e+00
## GO:0031175  BP  1083  0 1.000000e+00
## GO:0009887  BP  1090  0 1.000000e+00
## GO:0060284  BP  1093  0 1.000000e+00
## GO:0040007  BP  1097  0 1.000000e+00
## GO:0000902  BP  1100  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0022402  BP  1108  0 1.000000e+00
## GO:0035295  BP  1122  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0072359  BP  1143  0 1.000000e+00
## GO:1901565  BP  1151  0 1.000000e+00
## GO:0048646  BP  1157  0 1.000000e+00
## GO:0060429  BP  1172  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:0048878  BP  1182  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:1901701  BP  1206  0 1.000000e+00
## GO:0032989  BP  1211  0 1.000000e+00
## GO:0009057  BP  1218  0 1.000000e+00
## GO:0048666  BP  1222  0 1.000000e+00
## GO:0071495  BP  1223  0 1.000000e+00
## GO:0045944  BP  1226  0 1.000000e+00
## GO:0009790  BP  1231  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051253  BP  1269  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0007010  BP  1305  0 1.000000e+00
## GO:2000113  BP  1379  0 1.000000e+00
## GO:0045934  BP  1395  0 1.000000e+00
## GO:0009719  BP  1409  0 1.000000e+00
## GO:0010558  BP  1414  0 1.000000e+00
## GO:0031327  BP  1471  0 1.000000e+00
## GO:0022414  BP  1471  0 1.000000e+00
## GO:0000003  BP  1472  0 1.000000e+00
## GO:0030182  BP  1494  0 1.000000e+00
## GO:0016192  BP  1501  0 1.000000e+00
## GO:0009890  BP  1509  0 1.000000e+00
## GO:0120036  BP  1526  0 1.000000e+00
## GO:0006811  BP  1565  0 1.000000e+00
## GO:0030030  BP  1572  0 1.000000e+00
## GO:1901700  BP  1589  0 1.000000e+00
## GO:0007267  BP  1596  0 1.000000e+00
## GO:0007049  BP  1639  0 1.000000e+00
## GO:0006508  BP  1657  0 1.000000e+00
## GO:0048699  BP  1672  0 1.000000e+00
## GO:0022008  BP  1778  0 1.000000e+00
## GO:0010629  BP  1783  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:1901575  BP  1857  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0009888  BP  1956  0 1.000000e+00
## GO:0006357  BP  1993  0 1.000000e+00
## GO:0044248  BP  1996  0 1.000000e+00
## GO:0006366  BP  2049  0 1.000000e+00
## GO:0009056  BP  2257  0 1.000000e+00
## GO:0051172  BP  2271  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0007399  BP  2333  0 1.000000e+00
## GO:0048468  BP  2406  0 1.000000e+00
## GO:0031324  BP  2449  0 1.000000e+00
## GO:0051128  BP  2558  0 1.000000e+00
## GO:0010605  BP  2584  0 1.000000e+00
## GO:0009653  BP  2744  0 1.000000e+00
## GO:0009892  BP  2843  0 1.000000e+00
## GO:0003008  BP  2939  0 1.000000e+00
## GO:0006996  BP  3568  0 1.000000e+00
## 
## [[1]][[5]]
##                                                                                                                                                           Term
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0043368                                                                                                                           positive T cell selection
## GO:0030217                                                                                                                              T cell differentiation
## GO:0045058                                                                                                                                    T cell selection
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0042110                                                                                                                                   T cell activation
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0002250                                                                                                                            adaptive immune response
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0006955                                                                                                                                     immune response
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0045321                                                                                                                                leukocyte activation
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0002520                                                                                                                           immune system development
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0043383                                                                                                                           negative T cell selection
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0001775                                                                                                                                     cell activation
## GO:0007398                                                                                                                                ectoderm development
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0048856                                                                                                                    anatomical structure development
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0002507                                                                                                                                 tolerance induction
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0002376                                                                                                                               immune system process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0032502                                                                                                                               developmental process
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0034340                                                                                                                       response to type I interferon
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0050865                                                                                                                       regulation of cell activation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0006915                                                                                                                                   apoptotic process
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0012501                                                                                                                               programmed cell death
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0001756                                                                                                                                       somitogenesis
## GO:0007275                                                                                                                  multicellular organism development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0008219                                                                                                                                          cell death
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0061053                                                                                                                                  somite development
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0007584                                                                                                                                response to nutrient
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0021549                                                                                                                              cerebellum development
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0035282                                                                                                                                        segmentation
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0002252                                                                                                                             immune effector process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:0050776                                                                                                                       regulation of immune response
## GO:0022037                                                                                                                           metencephalon development
## GO:0051701                                                                                                                               interaction with host
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0007165                                                                                                                                 signal transduction
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:0030902                                                                                                                               hindbrain development
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0098727                                                                                                                          maintenance of cell number
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0001906                                                                                                                                        cell killing
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0050792                                                                                                                         regulation of viral process
## GO:0023052                                                                                                                                           signaling
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0097696                                                                                                                                        STAT cascade
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0007154                                                                                                                                  cell communication
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0019058                                                                                                                                    viral life cycle
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0042098                                                                                                                                T cell proliferation
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0007155                                                                                                                                       cell adhesion
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0051607                                                                                                                           defense response to virus
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0009615                                                                                                                                   response to virus
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0016032                                                                                                                                       viral process
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0016358                                                                                                                                dendrite development
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0023051                                                                                                                             regulation of signaling
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0044403                                                                                                                                    symbiont process
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0010941                                                                                                                            regulation of cell death
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0048513                                                                                                                            animal organ development
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0003002                                                                                                                                     regionalization
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0001503                                                                                                                                        ossification
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0042113                                                                                                                                   B cell activation
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0009888                                                                                                                                  tissue development
## GO:0007389                                                                                                                       pattern specification process
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0008283                                                                                                                                  cell proliferation
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0030154                                                                                                                                cell differentiation
## GO:0050789                                                                                                                    regulation of biological process
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0007420                                                                                                                                   brain development
## GO:0048869                                                                                                                      cellular developmental process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0098542                                                                                                                  defense response to other organism
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0060322                                                                                                                                    head development
## GO:0009605                                                                                                                       response to external stimulus
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0001816                                                                                                                                 cytokine production
## GO:0050896                                                                                                                                response to stimulus
## GO:0048731                                                                                                                                  system development
## GO:0065007                                                                                                                               biological regulation
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0045087                                                                                                                              innate immune response
## GO:0022607                                                                                                                         cellular component assembly
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0007417                                                                                                                  central nervous system development
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0034097                                                                                                                                response to cytokine
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0008152                                                                                                                                   metabolic process
## GO:0009987                                                                                                                                    cellular process
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0031175                                                                                                                       neuron projection development
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0060429                                                                                                                              epithelium development
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0048666                                                                                                                                  neuron development
## GO:0009790                                                                                                                                  embryo development
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0016043                                                                                                                     cellular component organization
## GO:0006950                                                                                                                                  response to stress
## GO:0080134                                                                                                                    regulation of response to stress
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0030182                                                                                                                              neuron differentiation
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0030030                                                                                                                        cell projection organization
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0006952                                                                                                                                    defense response
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0042221                                                                                                                                response to chemical
## GO:0048699                                                                                                                               generation of neurons
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0022008                                                                                                                                        neurogenesis
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0042592                                                                                                                                 homeostatic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0016310                                                                                                                                     phosphorylation
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:0007399                                                                                                                          nervous system development
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0051704                                                                                                                              multi-organism process
## GO:0048468                                                                                                                                    cell development
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0010033                                                                                                                       response to organic substance
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0044238                                                                                                                           primary metabolic process
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0019538                                                                                                                           protein metabolic process
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0008150                                                                                                                                  biological_process
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0032602                                                                                                                                chemokine production
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0050821                                                                                                                               protein stabilization
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0051262                                                                                                                             protein tetramerization
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0060348                                                                                                                                    bone development
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006417                                                                                                                           regulation of translation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0032259                                                                                                                                         methylation
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0007281                                                                                                                               germ cell development
## GO:0050900                                                                                                                                 leukocyte migration
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0007015                                                                                                                         actin filament organization
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006397                                                                                                                                     mRNA processing
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0051301                                                                                                                                       cell division
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0009306                                                                                                                                   protein secretion
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0031347                                                                                                                      regulation of defense response
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0002790                                                                                                                                   peptide secretion
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0006954                                                                                                                               inflammatory response
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0009725                                                                                                                                 response to hormone
## GO:0061061                                                                                                                        muscle structure development
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0006396                                                                                                                                      RNA processing
## GO:0033993                                                                                                                                   response to lipid
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0030001                                                                                                                                 metal ion transport
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0042493                                                                                                                                    response to drug
## GO:0030163                                                                                                                           protein catabolic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0060284                                                                                                                      regulation of cell development
## GO:0040007                                                                                                                                              growth
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0035295                                                                                                                                    tube development
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0072359                                                                                                                      circulatory system development
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0046903                                                                                                                                           secretion
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016477                                                                                                                                      cell migration
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0046907                                                                                                                             intracellular transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0007049                                                                                                                                          cell cycle
## GO:0006508                                                                                                                                         proteolysis
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0015031                                                                                                                                   protein transport
## GO:0007600                                                                                                                                  sensory perception
## GO:0015833                                                                                                                                   peptide transport
## GO:0042886                                                                                                                                     amide transport
## GO:0040011                                                                                                                                          locomotion
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0045184                                                                                                               establishment of protein localization
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0051049                                                                                                                             regulation of transport
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0009056                                                                                                                                   catabolic process
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0050877                                                                                                                              nervous system process
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0071702                                                                                                                         organic substance transport
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0008104                                                                                                                                protein localization
## GO:0051641                                                                                                                               cellular localization
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0032879                                                                                                                          regulation of localization
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0033036                                                                                                                          macromolecule localization
## GO:0003008                                                                                                                                      system process
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0006996                                                                                                                              organelle organization
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0006810                                                                                                                                           transport
## GO:0051234                                                                                                                       establishment of localization
## GO:0051179                                                                                                                                        localization
##            Ont     N DE         P.DE
## GO:0033077  BP    88  3 3.747044e-06
## GO:0045059  BP    16  2 1.447045e-05
## GO:0045061  BP    27  2 4.223710e-05
## GO:0043368  BP    38  2 8.441671e-05
## GO:0030217  BP   269  3 1.059342e-04
## GO:0045058  BP    55  2 1.777408e-04
## GO:0030098  BP   395  3 3.288237e-04
## GO:0042110  BP   491  3 6.213049e-04
## GO:0002521  BP   567  3 9.440896e-04
## GO:0002250  BP   583  3 1.023379e-03
## GO:2000384  BP     3  1 1.106059e-03
## GO:2000383  BP     3  1 1.106059e-03
## GO:0019244  BP     4  1 1.474503e-03
## GO:0002669  BP     4  1 1.474503e-03
## GO:0002913  BP     4  1 1.474503e-03
## GO:0001915  BP     5  1 1.842827e-03
## GO:0006955  BP  1652  4 2.000464e-03
## GO:0050870  BP   187  2 2.029606e-03
## GO:1903039  BP   203  2 2.385469e-03
## GO:0002870  BP     7  1 2.579112e-03
## GO:0002249  BP     7  1 2.579112e-03
## GO:0002666  BP     7  1 2.579112e-03
## GO:0033634  BP     7  1 2.579112e-03
## GO:0002667  BP     7  1 2.579112e-03
## GO:0002911  BP     7  1 2.579112e-03
## GO:0046649  BP   841  3 2.931846e-03
## GO:0019249  BP     9  1 3.314914e-03
## GO:0022409  BP   242  2 3.367554e-03
## GO:0051001  BP    10  1 3.682634e-03
## GO:0002645  BP    10  1 3.682634e-03
## GO:0030097  BP   921  3 3.794411e-03
## GO:0002664  BP    11  1 4.050234e-03
## GO:0045086  BP    12  1 4.417713e-03
## GO:0033632  BP    12  1 4.417713e-03
## GO:0048534  BP   972  3 4.418502e-03
## GO:1903037  BP   287  2 4.698787e-03
## GO:0045321  BP   994  3 4.706173e-03
## GO:0002517  BP    13  1 4.785071e-03
## GO:0032769  BP    14  1 5.152309e-03
## GO:0045060  BP    14  1 5.152309e-03
## GO:0002520  BP  1030  3 5.201439e-03
## GO:0050863  BP   304  2 5.255805e-03
## GO:0046651  BP   308  2 5.391122e-03
## GO:0032943  BP   310  2 5.459386e-03
## GO:0043383  BP    15  1 5.519427e-03
## GO:0033089  BP    15  1 5.519427e-03
## GO:0007159  BP   319  2 5.771548e-03
## GO:0033631  BP    16  1 5.886424e-03
## GO:0070661  BP   331  2 6.200370e-03
## GO:0001775  BP  1098  3 6.222045e-03
## GO:0007398  BP    18  1 6.620057e-03
## GO:0002710  BP    19  1 6.986693e-03
## GO:0045076  BP    19  1 6.986693e-03
## GO:0002643  BP    19  1 6.986693e-03
## GO:0006089  BP    20  1 7.353209e-03
## GO:0033630  BP    20  1 7.353209e-03
## GO:0042094  BP    21  1 7.719604e-03
## GO:0046597  BP    22  1 8.085880e-03
## GO:0046641  BP    22  1 8.085880e-03
## GO:0048856  BP  5871  6 8.170745e-03
## GO:0051260  BP   383  2 8.222589e-03
## GO:0001911  BP    23  1 8.452035e-03
## GO:0051251  BP   394  2 8.683988e-03
## GO:0022407  BP   395  2 8.726508e-03
## GO:0032753  BP    24  1 8.818070e-03
## GO:0035455  BP    24  1 8.818070e-03
## GO:1902230  BP    25  1 9.183984e-03
## GO:0045785  BP   411  2 9.419773e-03
## GO:0070233  BP    26  1 9.549779e-03
## GO:0031342  BP    27  1 9.915454e-03
## GO:0051354  BP    27  1 9.915454e-03
## GO:0002507  BP    28  1 1.028101e-02
## GO:0046039  BP    29  1 1.064644e-02
## GO:0031295  BP    29  1 1.064644e-02
## GO:0032673  BP    30  1 1.101176e-02
## GO:0002696  BP   446  2 1.102033e-02
## GO:0002376  BP  2664  4 1.135982e-02
## GO:0048535  BP    31  1 1.137695e-02
## GO:0031294  BP    31  1 1.137695e-02
## GO:0033081  BP    31  1 1.137695e-02
## GO:0050999  BP    31  1 1.137695e-02
## GO:0032502  BP  6258  6 1.138921e-02
## GO:0050867  BP   461  2 1.174110e-02
## GO:0032743  BP    32  1 1.174203e-02
## GO:0045879  BP    33  1 1.210698e-02
## GO:0046596  BP    33  1 1.210698e-02
## GO:1901068  BP    35  1 1.283653e-02
## GO:0032633  BP    37  1 1.356561e-02
## GO:0046640  BP    37  1 1.356561e-02
## GO:1902229  BP    37  1 1.356561e-02
## GO:0071357  BP    39  1 1.429420e-02
## GO:0060337  BP    39  1 1.429420e-02
## GO:0046633  BP    40  1 1.465832e-02
## GO:0033628  BP    41  1 1.502231e-02
## GO:0002823  BP    42  1 1.538619e-02
## GO:0032768  BP    42  1 1.538619e-02
## GO:0070232  BP    43  1 1.574995e-02
## GO:0034340  BP    44  1 1.611359e-02
## GO:0009117  BP   555  2 1.671938e-02
## GO:0051249  BP   555  2 1.671938e-02
## GO:0048585  BP  1576  3 1.682029e-02
## GO:0019674  BP    46  1 1.684051e-02
## GO:0002707  BP    46  1 1.684051e-02
## GO:0002820  BP    47  1 1.720379e-02
## GO:0006753  BP   564  2 1.723673e-02
## GO:0050850  BP    48  1 1.756695e-02
## GO:0070229  BP    49  1 1.793000e-02
## GO:0001954  BP    52  1 1.901841e-02
## GO:0097190  BP   605  2 1.968076e-02
## GO:0001914  BP    54  1 1.974342e-02
## GO:0046718  BP    54  1 1.974342e-02
## GO:0051259  BP   617  2 2.042278e-02
## GO:0002704  BP    56  1 2.046795e-02
## GO:0035456  BP    56  1 2.046795e-02
## GO:0045071  BP    57  1 2.083004e-02
## GO:1902531  BP  1710  3 2.094739e-02
## GO:0070231  BP    58  1 2.119201e-02
## GO:0051806  BP    58  1 2.119201e-02
## GO:0044409  BP    58  1 2.119201e-02
## GO:0030260  BP    58  1 2.119201e-02
## GO:0051828  BP    58  1 2.119201e-02
## GO:0046128  BP    58  1 2.119201e-02
## GO:0032663  BP    58  1 2.119201e-02
## GO:0055086  BP   630  2 2.124009e-02
## GO:0042278  BP    62  1 2.263871e-02
## GO:0002694  BP   652  2 2.265475e-02
## GO:0033627  BP    65  1 2.372248e-02
## GO:0032623  BP    66  1 2.408350e-02
## GO:0030155  BP   686  2 2.491781e-02
## GO:2000107  BP    69  1 2.516584e-02
## GO:0046635  BP    69  1 2.516584e-02
## GO:0050865  BP   693  2 2.539514e-02
## GO:2001021  BP    70  1 2.552639e-02
## GO:0009119  BP    70  1 2.552639e-02
## GO:0006915  BP  1867  3 2.646131e-02
## GO:0042108  BP    74  1 2.696739e-02
## GO:0048519  BP  5278  5 2.713683e-02
## GO:0098609  BP   720  2 2.727222e-02
## GO:0001913  BP    76  1 2.768717e-02
## GO:0070228  BP    76  1 2.768717e-02
## GO:0012501  BP  1908  3 2.802336e-02
## GO:0032729  BP    77  1 2.804689e-02
## GO:0001756  BP    77  1 2.804689e-02
## GO:0007275  BP  5362  5 2.896783e-02
## GO:1903901  BP    82  1 2.984370e-02
## GO:0008589  BP    84  1 3.056159e-02
## GO:0051341  BP    85  1 3.092036e-02
## GO:0009116  BP    88  1 3.199597e-02
## GO:0002709  BP    94  1 3.414399e-02
## GO:0045069  BP    94  1 3.414399e-02
## GO:0008219  BP  2065  3 3.447637e-02
## GO:0045582  BP    95  1 3.450158e-02
## GO:0061053  BP    96  1 3.485906e-02
## GO:2001243  BP    97  1 3.521642e-02
## GO:0048525  BP    97  1 3.521642e-02
## GO:0070227  BP    98  1 3.557365e-02
## GO:0042102  BP    98  1 3.557365e-02
## GO:0007584  BP   100  1 3.628778e-02
## GO:0050848  BP   101  1 3.664467e-02
## GO:0021549  BP   104  1 3.771462e-02
## GO:0046634  BP   104  1 3.771462e-02
## GO:0035282  BP   105  1 3.807104e-02
## GO:1904894  BP   106  1 3.842734e-02
## GO:0045621  BP   108  1 3.913958e-02
## GO:2000106  BP   108  1 3.913958e-02
## GO:0002252  BP   879  2 3.943428e-02
## GO:0042035  BP   109  1 3.949553e-02
## GO:0032649  BP   109  1 3.949553e-02
## GO:0001910  BP   109  1 3.949553e-02
## GO:1901657  BP   110  1 3.985136e-02
## GO:0019079  BP   111  1 4.020707e-02
## GO:0042100  BP   112  1 4.056267e-02
## GO:0008630  BP   112  1 4.056267e-02
## GO:0001952  BP   113  1 4.091815e-02
## GO:0050776  BP   903  2 4.142677e-02
## GO:0022037  BP   116  1 4.198388e-02
## GO:0051701  BP   117  1 4.233889e-02
## GO:0006090  BP   118  1 4.269379e-02
## GO:0043066  BP   921  2 4.294686e-02
## GO:0042089  BP   121  1 4.375777e-02
## GO:0032609  BP   122  1 4.411219e-02
## GO:0043069  BP   939  2 4.448866e-02
## GO:0032501  BP  8233  6 4.493004e-02
## GO:0042107  BP   125  1 4.517477e-02
## GO:0050852  BP   126  1 4.552873e-02
## GO:0019637  BP   954  2 4.578989e-02
## GO:0010811  BP   127  1 4.588257e-02
## GO:0007165  BP  6028  5 4.661147e-02
## GO:0031341  BP   131  1 4.729678e-02
## GO:0008284  BP   972  2 4.737079e-02
## GO:0071887  BP   132  1 4.765004e-02
## GO:0002698  BP   134  1 4.835621e-02
## GO:0050671  BP   136  1 4.906192e-02
## GO:0002456  BP   137  1 4.941459e-02
## GO:0034341  BP   137  1 4.941459e-02
## GO:0032946  BP   138  1 4.976716e-02
## GO:1902533  BP  1005  2 5.032325e-02
## GO:0001909  BP   141  1 5.082415e-02
## GO:0007224  BP   143  1 5.152822e-02
## GO:0070665  BP   145  1 5.223184e-02
## GO:1903900  BP   145  1 5.223184e-02
## GO:0045580  BP   150  1 5.398884e-02
## GO:0060548  BP  1049  2 5.436635e-02
## GO:0007166  BP  2497  3 5.609851e-02
## GO:0046631  BP   157  1 5.644379e-02
## GO:0002684  BP  1072  2 5.652702e-02
## GO:0050777  BP   158  1 5.679403e-02
## GO:0046496  BP   158  1 5.679403e-02
## GO:0019362  BP   160  1 5.749417e-02
## GO:0030902  BP   164  1 5.889307e-02
## GO:0043901  BP   165  1 5.924250e-02
## GO:0072524  BP   165  1 5.924250e-02
## GO:0019827  BP   165  1 5.924250e-02
## GO:1902107  BP   168  1 6.029012e-02
## GO:0098727  BP   169  1 6.063909e-02
## GO:2001242  BP   169  1 6.063909e-02
## GO:1904892  BP   170  1 6.098795e-02
## GO:0042129  BP   170  1 6.098795e-02
## GO:0035556  BP  2608  3 6.256046e-02
## GO:0006733  BP   177  1 6.342674e-02
## GO:0001906  BP   179  1 6.412250e-02
## GO:0045619  BP   182  1 6.516528e-02
## GO:0050792  BP   183  1 6.551265e-02
## GO:0023052  BP  6579  5 6.578551e-02
## GO:0009968  BP  1175  2 6.658410e-02
## GO:0097696  BP   187  1 6.690096e-02
## GO:0002822  BP   189  1 6.759443e-02
## GO:0007154  BP  6648  5 6.849885e-02
## GO:0050793  BP  2721  3 6.951131e-02
## GO:0050731  BP   195  1 6.967208e-02
## GO:0002706  BP   195  1 6.967208e-02
## GO:0043903  BP   198  1 7.070936e-02
## GO:0019058  BP   199  1 7.105490e-02
## GO:0007160  BP   204  1 7.278085e-02
## GO:0042098  BP   205  1 7.312569e-02
## GO:0002819  BP   205  1 7.312569e-02
## GO:0009966  BP  2780  3 7.328785e-02
## GO:1903708  BP   208  1 7.415955e-02
## GO:0019722  BP   209  1 7.450395e-02
## GO:0008361  BP   209  1 7.450395e-02
## GO:2001020  BP   209  1 7.450395e-02
## GO:0010810  BP   211  1 7.519239e-02
## GO:0007155  BP  1298  2 7.935904e-02
## GO:0050670  BP   225  1 7.999875e-02
## GO:0010648  BP  1306  2 8.021701e-02
## GO:0022610  BP  1310  2 8.064720e-02
## GO:0023057  BP  1310  2 8.064720e-02
## GO:0051607  BP   227  1 8.068356e-02
## GO:0032944  BP   227  1 8.068356e-02
## GO:1901617  BP   229  1 8.136791e-02
## GO:0009952  BP   231  1 8.205182e-02
## GO:2001234  BP   231  1 8.205182e-02
## GO:0006796  BP  2933  3 8.354370e-02
## GO:0070663  BP   238  1 8.444191e-02
## GO:0006793  BP  2955  3 8.507249e-02
## GO:0002703  BP   250  1 8.852635e-02
## GO:0002377  BP   252  1 8.920551e-02
## GO:0050730  BP   263  1 9.293287e-02
## GO:0072330  BP   264  1 9.327104e-02
## GO:0009615  BP   270  1 9.529776e-02
## GO:0009205  BP   272  1 9.597243e-02
## GO:0009199  BP   276  1 9.732044e-02
## GO:0002682  BP  1473  2 9.882238e-02
## GO:0009144  BP   281  1 9.900294e-02
## GO:0016032  BP   283  1 9.967516e-02
## GO:0009967  BP  1504  2 1.024137e-01
## GO:0097193  BP   292  1 1.026946e-01
## GO:0016358  BP   294  1 1.033644e-01
## GO:1902105  BP   294  1 1.033644e-01
## GO:0050851  BP   295  1 1.036991e-01
## GO:0042981  BP  1516  2 1.038147e-01
## GO:0009141  BP   298  1 1.047026e-01
## GO:0043067  BP  1537  2 1.062809e-01
## GO:0051094  BP  1540  2 1.066346e-01
## GO:0048872  BP   315  1 1.103702e-01
## GO:0018108  BP   319  1 1.116991e-01
## GO:0018212  BP   322  1 1.126946e-01
## GO:0010646  BP  3338  3 1.137785e-01
## GO:0002429  BP   326  1 1.140204e-01
## GO:0023051  BP  3360  3 1.155433e-01
## GO:0006732  BP   331  1 1.156752e-01
## GO:0002768  BP   338  1 1.179873e-01
## GO:0031589  BP   339  1 1.183172e-01
## GO:0019221  BP   341  1 1.189766e-01
## GO:0044403  BP   343  1 1.196356e-01
## GO:0042127  BP  1649  2 1.197278e-01
## GO:0002440  BP   345  1 1.202941e-01
## GO:0010941  BP  1685  2 1.241498e-01
## GO:0051716  BP  7810  5 1.252037e-01
## GO:0046394  BP   362  1 1.258738e-01
## GO:0016053  BP   363  1 1.262011e-01
## GO:0048513  BP  3504  3 1.273890e-01
## GO:0031667  BP   371  1 1.288150e-01
## GO:0003002  BP   373  1 1.294675e-01
## GO:0065003  BP  1729  2 1.296163e-01
## GO:0001503  BP   381  1 1.320728e-01
## GO:0044281  BP  1753  2 1.326257e-01
## GO:0043900  BP   391  1 1.353196e-01
## GO:0032535  BP   397  1 1.372626e-01
## GO:0009991  BP   401  1 1.385557e-01
## GO:0042113  BP   405  1 1.398471e-01
## GO:1903706  BP   407  1 1.404922e-01
## GO:0044419  BP   408  1 1.408146e-01
## GO:2001233  BP   414  1 1.427465e-01
## GO:0002697  BP   420  1 1.446746e-01
## GO:0010647  BP  1854  2 1.454926e-01
## GO:0009150  BP   423  1 1.456372e-01
## GO:0023056  BP  1860  2 1.462668e-01
## GO:0002449  BP   425  1 1.462784e-01
## GO:0019932  BP   427  1 1.469192e-01
## GO:0009259  BP   433  1 1.488389e-01
## GO:0002460  BP   441  1 1.513926e-01
## GO:0006163  BP   447  1 1.533034e-01
## GO:0001819  BP   449  1 1.539395e-01
## GO:0002757  BP   450  1 1.542574e-01
## GO:0019693  BP   450  1 1.542574e-01
## GO:0051240  BP  1929  2 1.552441e-01
## GO:0002764  BP   463  1 1.583802e-01
## GO:0043933  BP  1956  2 1.587927e-01
## GO:0009888  BP  1956  2 1.587927e-01
## GO:0007389  BP   468  1 1.599611e-01
## GO:0048583  BP  3883  3 1.608640e-01
## GO:0002683  BP   473  1 1.615394e-01
## GO:0010628  BP  1981  2 1.620955e-01
## GO:0008283  BP  1994  2 1.638193e-01
## GO:1901615  BP   481  1 1.640592e-01
## GO:0072521  BP   490  1 1.668859e-01
## GO:0002443  BP   507  1 1.722021e-01
## GO:0051186  BP   509  1 1.728256e-01
## GO:0002253  BP   526  1 1.781080e-01
## GO:1902532  BP   527  1 1.784178e-01
## GO:0005975  BP   546  1 1.842843e-01
## GO:0090066  BP   561  1 1.888894e-01
## GO:2000026  BP  2184  2 1.894639e-01
## GO:0032787  BP   570  1 1.916413e-01
## GO:0030154  BP  4218  3 1.929286e-01
## GO:0050789  BP 11520  6 2.020525e-01
## GO:0048584  BP  2294  2 2.046466e-01
## GO:0007420  BP   634  1 2.109725e-01
## GO:0048869  BP  4443  3 2.155877e-01
## GO:0044283  BP   650  1 2.157407e-01
## GO:0080135  BP   666  1 2.204831e-01
## GO:0098542  BP   667  1 2.207787e-01
## GO:0001817  BP   679  1 2.243176e-01
## GO:0043086  BP   682  1 2.252001e-01
## GO:0060322  BP   688  1 2.269624e-01
## GO:0009605  BP  2515  2 2.357223e-01
## GO:0048523  BP  4687  3 2.410341e-01
## GO:0006974  BP   740  1 2.420872e-01
## GO:0050778  BP   747  1 2.441031e-01
## GO:0001816  BP   755  1 2.464010e-01
## GO:0050896  BP  9531  5 2.471312e-01
## GO:0048731  BP  4746  3 2.473084e-01
## GO:0065007  BP 12135  6 2.485298e-01
## GO:0043009  BP   824  1 2.659645e-01
## GO:0009653  BP  2744  2 2.684919e-01
## GO:0009792  BP   841  1 2.707146e-01
## GO:0045087  BP   842  1 2.709932e-01
## GO:0022607  BP  2807  2 2.775729e-01
## GO:0055114  BP   872  1 2.793063e-01
## GO:0009892  BP  2843  2 2.827706e-01
## GO:0007417  BP   888  1 2.837054e-01
## GO:0019752  BP   902  1 2.875350e-01
## GO:0071345  BP   907  1 2.888984e-01
## GO:0043436  BP   941  1 2.981075e-01
## GO:0006082  BP   968  1 3.053450e-01
## GO:0001934  BP   989  1 3.109282e-01
## GO:0044085  BP  3041  2 3.114242e-01
## GO:1901135  BP  1003  1 3.146281e-01
## GO:0034097  BP  1004  1 3.148917e-01
## GO:0044092  BP  1006  1 3.154187e-01
## GO:0042327  BP  1043  1 3.251023e-01
## GO:0008152  BP 10485  5 3.313593e-01
## GO:0009987  BP 15803  7 3.316344e-01
## GO:0051093  BP  1070  1 3.320917e-01
## GO:0031175  BP  1083  1 3.354339e-01
## GO:0010604  BP  3212  2 3.361818e-01
## GO:0045597  BP  1097  1 3.390166e-01
## GO:0000902  BP  1100  1 3.397821e-01
## GO:0051239  BP  3248  2 3.413864e-01
## GO:0045937  BP  1112  1 3.428362e-01
## GO:0010562  BP  1112  1 3.428362e-01
## GO:0018193  BP  1137  1 3.491585e-01
## GO:0048646  BP  1157  1 3.541774e-01
## GO:0060429  BP  1172  1 3.579190e-01
## GO:0051707  BP  1172  1 3.579190e-01
## GO:0043207  BP  1174  1 3.584164e-01
## GO:0050794  BP 10774  5 3.586155e-01
## GO:0009607  BP  1208  1 3.668202e-01
## GO:0031401  BP  1210  1 3.673115e-01
## GO:0032989  BP  1211  1 3.675570e-01
## GO:0048666  BP  1222  1 3.702521e-01
## GO:0009790  BP  1231  1 3.724495e-01
## GO:0009893  BP  3486  2 3.756530e-01
## GO:0019222  BP  5953  3 3.823522e-01
## GO:0016043  BP  6083  3 3.972832e-01
## GO:0006950  BP  3640  2 3.976313e-01
## GO:0080134  BP  1337  1 3.978226e-01
## GO:1901564  BP  6234  3 4.146282e-01
## GO:0001932  BP  1410  1 4.147621e-01
## GO:0071840  BP  6266  3 4.183017e-01
## GO:0010468  BP  3860  2 4.286537e-01
## GO:0030182  BP  1494  1 4.337289e-01
## GO:0120036  BP  1526  1 4.408093e-01
## GO:0032270  BP  1532  1 4.421281e-01
## GO:0042325  BP  1533  1 4.423476e-01
## GO:0030030  BP  1572  1 4.508496e-01
## GO:1901566  BP  1599  1 4.566679e-01
## GO:0006952  BP  1601  1 4.570967e-01
## GO:0051247  BP  1639  1 4.651869e-01
## GO:0042221  BP  4136  2 4.667795e-01
## GO:0048699  BP  1672  1 4.721254e-01
## GO:0019220  BP  1692  1 4.762915e-01
## GO:0051174  BP  1693  1 4.764991e-01
## GO:0031399  BP  1760  1 4.902386e-01
## GO:0033554  BP  1763  1 4.908463e-01
## GO:0022008  BP  1778  1 4.938748e-01
## GO:0010629  BP  1783  1 4.948808e-01
## GO:0010557  BP  1799  1 4.980879e-01
## GO:0050790  BP  1807  1 4.996846e-01
## GO:0006468  BP  1815  1 5.012768e-01
## GO:0042592  BP  1887  1 5.154055e-01
## GO:0031328  BP  1903  1 5.184965e-01
## GO:0045595  BP  1909  1 5.196510e-01
## GO:0009891  BP  1943  1 5.261473e-01
## GO:0071704  BP 10008  4 5.426510e-01
## GO:0006139  BP  4813  2 5.554197e-01
## GO:0010467  BP  4814  2 5.555448e-01
## GO:0016310  BP  2166  1 5.668539e-01
## GO:0044249  BP  4938  2 5.709022e-01
## GO:0046483  BP  4940  2 5.711475e-01
## GO:0006725  BP  5012  2 5.799264e-01
## GO:1901576  BP  5031  2 5.822262e-01
## GO:0009058  BP  5125  2 5.934993e-01
## GO:0007399  BP  2333  1 5.952710e-01
## GO:1901360  BP  5208  2 6.033065e-01
## GO:0051704  BP  2389  1 6.044220e-01
## GO:0048468  BP  2406  1 6.071633e-01
## GO:0071310  BP  2433  1 6.114825e-01
## GO:0065009  BP  2477  1 6.184308e-01
## GO:0032268  BP  2494  1 6.210856e-01
## GO:0048522  BP  5469  2 6.332288e-01
## GO:0010605  BP  2584  1 6.348690e-01
## GO:0060255  BP  5486  2 6.351288e-01
## GO:0034641  BP  5547  2 6.418964e-01
## GO:0051246  BP  2687  1 6.500949e-01
## GO:0070887  BP  3023  1 6.959187e-01
## GO:0006807  BP  8923  3 6.981805e-01
## GO:0051173  BP  3061  1 7.007493e-01
## GO:0010033  BP  3070  1 7.018834e-01
## GO:0048518  BP  6171  2 7.065745e-01
## GO:0031325  BP  3201  1 7.179632e-01
## GO:0010556  BP  3311  1 7.308649e-01
## GO:0044237  BP  9374  3 7.372321e-01
## GO:0044238  BP  9443  3 7.429327e-01
## GO:0006464  BP  3453  1 7.467429e-01
## GO:0036211  BP  3453  1 7.467429e-01
## GO:0031326  BP  3470  1 7.485868e-01
## GO:0009889  BP  3542  1 7.562648e-01
## GO:0043412  BP  3634  1 7.657718e-01
## GO:0065008  BP  4051  1 8.048595e-01
## GO:0009059  BP  4121  1 8.108189e-01
## GO:0044267  BP  4569  1 8.452765e-01
## GO:0043170  BP  8488  2 8.762521e-01
## GO:0051171  BP  5104  1 8.790364e-01
## GO:0080090  BP  5248  1 8.869229e-01
## GO:0019538  BP  5344  1 8.919232e-01
## GO:0031323  BP  5401  1 8.947983e-01
## GO:0008150  BP 23210  8 9.315968e-01
## GO:0044260  BP  7099  1 9.547033e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0031394  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:2001280  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:0031392  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:2001279  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:0045723  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0001516  BP    25  0 1.000000e+00
## GO:0046457  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0006636  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0046456  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0006693  BP    40  0 1.000000e+00
## GO:0006692  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:0042304  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0045923  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071622  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:1901570  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0002720  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0032722  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0032677  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0002763  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0032637  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0002718  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:0048524  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0002690  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0032642  BP    88  0 1.000000e+00
## GO:0019217  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0032602  BP    92  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:0046889  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0032755  BP    99  0 1.000000e+00
## GO:0045639  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0030593  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0002702  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0033559  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0002367  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:1902106  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0006690  BP   110  0 1.000000e+00
## GO:0001776  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0002688  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0043123  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:1990266  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0071621  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0002761  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0010565  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:1901568  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0006633  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0050921  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002687  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:0097530  BP   146  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0002821  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:0002700  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0051250  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0032675  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0062013  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0045834  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:1903707  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:2001236  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0032635  BP   162  0 1.000000e+00
## GO:0002792  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043122  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:0046890  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0043902  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:0002695  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0051262  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0045766  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0043491  BP   186  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0022408  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:0007249  BP   193  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0042180  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0050679  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0002685  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0050866  BP   203  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0051224  BP   204  0 1.000000e+00
## GO:1904018  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0097529  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:1904950  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0030595  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050920  BP   213  0 1.000000e+00
## GO:0050707  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0045637  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0002573  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0070374  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:0097191  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:1903531  BP   232  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:0050663  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0031330  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0090068  BP   249  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0001818  BP   259  0 1.000000e+00
## GO:0002699  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0051048  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050864  BP   264  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0002366  BP   269  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0002263  BP   273  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0030072  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:2000146  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0007162  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0009895  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0060326  BP   299  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0046883  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0070372  BP   306  0 1.000000e+00
## GO:0045765  BP   307  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0032103  BP   312  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0051271  BP   316  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0070371  BP   323  0 1.000000e+00
## GO:0042063  BP   323  0 1.000000e+00
## GO:0043434  BP   324  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0040013  BP   332  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0032102  BP   336  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0019216  BP   338  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0050900  BP   340  0 1.000000e+00
## GO:1901342  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045861  BP   349  0 1.000000e+00
## GO:0045787  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0050727  BP   354  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0050678  BP   358  0 1.000000e+00
## GO:0062012  BP   359  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0046879  BP   365  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031349  BP   370  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0009914  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0006631  BP   376  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0042176  BP   378  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0035690  BP   380  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:1901652  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0060249  BP   392  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0006979  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0030099  BP   401  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0051346  BP   402  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0050673  BP   425  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0071900  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0051222  BP   435  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0048608  BP   449  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0061458  BP   453  0 1.000000e+00
## GO:1904951  BP   454  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0048732  BP   467  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0006874  BP   473  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:0071407  BP   482  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0048871  BP   486  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0055074  BP   489  0 1.000000e+00
## GO:0050708  BP   490  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0072503  BP   497  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0001525  BP   513  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0032870  BP   518  0 1.000000e+00
## GO:0043410  BP   519  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0072507  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0023061  BP   523  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0002791  BP   529  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0001701  BP   538  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0030335  BP   539  0 1.000000e+00
## GO:0051051  BP   540  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0008610  BP   545  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0007169  BP   553  0 1.000000e+00
## GO:0010817  BP   557  0 1.000000e+00
## GO:2000147  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0051272  BP   580  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0006875  BP   582  0 1.000000e+00
## GO:0010564  BP   585  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0040017  BP   593  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:0044057  BP   596  0 1.000000e+00
## GO:0006935  BP   597  0 1.000000e+00
## GO:0042330  BP   600  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0009306  BP   605  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0071396  BP   612  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0048514  BP   622  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0043065  BP   632  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0048598  BP   637  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0043068  BP   637  0 1.000000e+00
## GO:0031347  BP   640  0 1.000000e+00
## GO:0030003  BP   641  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0002790  BP   652  0 1.000000e+00
## GO:0006873  BP   655  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0045859  BP   662  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0055065  BP   664  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0008285  BP   681  0 1.000000e+00
## GO:0097435  BP   681  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0006954  BP   691  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0010942  BP   695  0 1.000000e+00
## GO:0031329  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0051603  BP   696  0 1.000000e+00
## GO:0009725  BP   697  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0051223  BP   708  0 1.000000e+00
## GO:0030162  BP   716  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0001568  BP   719  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043549  BP   728  0 1.000000e+00
## GO:0055080  BP   732  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0014070  BP   734  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0043408  BP   737  0 1.000000e+00
## GO:0044257  BP   740  0 1.000000e+00
## GO:0070201  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0030029  BP   746  0 1.000000e+00
## GO:0098771  BP   746  0 1.000000e+00
## GO:0090087  BP   749  0 1.000000e+00
## GO:0001944  BP   752  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0072358  BP   765  0 1.000000e+00
## GO:0032101  BP   770  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0045664  BP   776  0 1.000000e+00
## GO:0061024  BP   780  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0003006  BP   791  0 1.000000e+00
## GO:0000165  BP   793  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0045596  BP   799  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0055082  BP   810  0 1.000000e+00
## GO:0023014  BP   810  0 1.000000e+00
## GO:0050801  BP   812  0 1.000000e+00
## GO:0009894  BP   821  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0033993  BP   822  0 1.000000e+00
## GO:1903530  BP   831  0 1.000000e+00
## GO:0051338  BP   832  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0006886  BP   882  0 1.000000e+00
## GO:0010243  BP   883  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007167  BP   890  0 1.000000e+00
## GO:0030334  BP   892  0 1.000000e+00
## GO:0042493  BP   894  0 1.000000e+00
## GO:0030163  BP   898  0 1.000000e+00
## GO:0035239  BP   905  0 1.000000e+00
## GO:0009617  BP   907  0 1.000000e+00
## GO:0051046  BP   911  0 1.000000e+00
## GO:0006259  BP   915  0 1.000000e+00
## GO:0019725  BP   930  0 1.000000e+00
## GO:0044255  BP   932  0 1.000000e+00
## GO:2000145  BP   939  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0051726  BP   955  0 1.000000e+00
## GO:0050767  BP   956  0 1.000000e+00
## GO:0060341  BP   958  0 1.000000e+00
## GO:1901698  BP   982  0 1.000000e+00
## GO:0051336  BP   985  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:0032269  BP  1003  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044265  BP  1013  0 1.000000e+00
## GO:0040012  BP  1018  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0051270  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0032880  BP  1038  0 1.000000e+00
## GO:0043085  BP  1051  0 1.000000e+00
## GO:0051248  BP  1070  0 1.000000e+00
## GO:0032940  BP  1070  0 1.000000e+00
## GO:0051960  BP  1071  0 1.000000e+00
## GO:0022603  BP  1076  0 1.000000e+00
## GO:0051050  BP  1081  0 1.000000e+00
## GO:0009887  BP  1090  0 1.000000e+00
## GO:0060284  BP  1093  0 1.000000e+00
## GO:0040007  BP  1097  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0022402  BP  1108  0 1.000000e+00
## GO:0035295  BP  1122  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0072359  BP  1143  0 1.000000e+00
## GO:1901565  BP  1151  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:0048878  BP  1182  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:1901701  BP  1206  0 1.000000e+00
## GO:0009057  BP  1218  0 1.000000e+00
## GO:0071495  BP  1223  0 1.000000e+00
## GO:0045944  BP  1226  0 1.000000e+00
## GO:0046903  BP  1227  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0006629  BP  1258  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051253  BP  1269  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0007010  BP  1305  0 1.000000e+00
## GO:0051241  BP  1343  0 1.000000e+00
## GO:2000113  BP  1379  0 1.000000e+00
## GO:0045934  BP  1395  0 1.000000e+00
## GO:0009719  BP  1409  0 1.000000e+00
## GO:0010558  BP  1414  0 1.000000e+00
## GO:0044093  BP  1429  0 1.000000e+00
## GO:0016477  BP  1447  0 1.000000e+00
## GO:0031327  BP  1471  0 1.000000e+00
## GO:0022414  BP  1471  0 1.000000e+00
## GO:0000003  BP  1472  0 1.000000e+00
## GO:0016192  BP  1501  0 1.000000e+00
## GO:0046907  BP  1502  0 1.000000e+00
## GO:0009890  BP  1509  0 1.000000e+00
## GO:0045893  BP  1536  0 1.000000e+00
## GO:1903508  BP  1540  0 1.000000e+00
## GO:1902680  BP  1541  0 1.000000e+00
## GO:0006811  BP  1565  0 1.000000e+00
## GO:1901700  BP  1589  0 1.000000e+00
## GO:0048870  BP  1595  0 1.000000e+00
## GO:0051674  BP  1595  0 1.000000e+00
## GO:0007267  BP  1596  0 1.000000e+00
## GO:0051254  BP  1638  0 1.000000e+00
## GO:0007049  BP  1639  0 1.000000e+00
## GO:0006508  BP  1657  0 1.000000e+00
## GO:0034613  BP  1676  0 1.000000e+00
## GO:0070727  BP  1686  0 1.000000e+00
## GO:0015031  BP  1746  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0015833  BP  1797  0 1.000000e+00
## GO:0042886  BP  1817  0 1.000000e+00
## GO:0040011  BP  1817  0 1.000000e+00
## GO:0045935  BP  1833  0 1.000000e+00
## GO:0045184  BP  1856  0 1.000000e+00
## GO:1901575  BP  1857  0 1.000000e+00
## GO:0051649  BP  1906  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0051049  BP  1946  0 1.000000e+00
## GO:0006357  BP  1993  0 1.000000e+00
## GO:0044248  BP  1996  0 1.000000e+00
## GO:0006928  BP  2014  0 1.000000e+00
## GO:0006366  BP  2049  0 1.000000e+00
## GO:0071705  BP  2133  0 1.000000e+00
## GO:0009056  BP  2257  0 1.000000e+00
## GO:0051172  BP  2271  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0031324  BP  2449  0 1.000000e+00
## GO:0071702  BP  2505  0 1.000000e+00
## GO:0051128  BP  2558  0 1.000000e+00
## GO:0008104  BP  2578  0 1.000000e+00
## GO:0051641  BP  2592  0 1.000000e+00
## GO:0006355  BP  2784  0 1.000000e+00
## GO:1903506  BP  2792  0 1.000000e+00
## GO:2001141  BP  2801  0 1.000000e+00
## GO:0032879  BP  2835  0 1.000000e+00
## GO:0006351  BP  2875  0 1.000000e+00
## GO:0097659  BP  2883  0 1.000000e+00
## GO:0032774  BP  2896  0 1.000000e+00
## GO:0033036  BP  2901  0 1.000000e+00
## GO:0003008  BP  2939  0 1.000000e+00
## GO:0051252  BP  3049  0 1.000000e+00
## GO:2000112  BP  3219  0 1.000000e+00
## GO:0034654  BP  3310  0 1.000000e+00
## GO:0019219  BP  3352  0 1.000000e+00
## GO:0018130  BP  3374  0 1.000000e+00
## GO:0019438  BP  3386  0 1.000000e+00
## GO:1901362  BP  3510  0 1.000000e+00
## GO:0006996  BP  3568  0 1.000000e+00
## GO:0016070  BP  3761  0 1.000000e+00
## GO:0044271  BP  3993  0 1.000000e+00
## GO:0034645  BP  4022  0 1.000000e+00
## GO:0090304  BP  4277  0 1.000000e+00
## GO:0006810  BP  4398  0 1.000000e+00
## GO:0051234  BP  4538  0 1.000000e+00
## GO:0051179  BP  5950  0 1.000000e+00
## 
## [[1]][[6]]
##                                                                                                                                                           Term
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:0035936                                                                                                                              testosterone secretion
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0051046                                                                                                                             regulation of secretion
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:0032940                                                                                                                                   secretion by cell
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0032096                                                                                                             negative regulation of response to food
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0046903                                                                                                                                           secretion
## GO:0046879                                                                                                                                   hormone secretion
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0009914                                                                                                                                   hormone transport
## GO:0030220                                                                                                                                  platelet formation
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0032095                                                                                                                      regulation of response to food
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0002376                                                                                                                               immune system process
## GO:0007015                                                                                                                         actin filament organization
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0032098                                                                                                                              regulation of appetite
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0032879                                                                                                                          regulation of localization
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:0042110                                                                                                                                   T cell activation
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0032094                                                                                                                                    response to food
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0023061                                                                                                                                      signal release
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0002250                                                                                                                            adaptive immune response
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0001774                                                                                                                          microglial cell activation
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0023051                                                                                                                             regulation of signaling
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0031529                                                                                                                                 ruffle organization
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0061900                                                                                                                               glial cell activation
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0002790                                                                                                                                   peptide secretion
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0072678                                                                                                                                    T cell migration
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:0042592                                                                                                                                 homeostatic process
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0070206                                                                                                                               protein trimerization
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0009725                                                                                                                                 response to hormone
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0051049                                                                                                                             regulation of transport
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030029                                                                                                                        actin filament-based process
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0032602                                                                                                                                chemokine production
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0042116                                                                                                                               macrophage activation
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:0065007                                                                                                                               biological regulation
## GO:0014812                                                                                                                               muscle cell migration
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0019725                                                                                                                                cellular homeostasis
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0023052                                                                                                                                           signaling
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0007154                                                                                                                                  cell communication
## GO:0045321                                                                                                                                leukocyte activation
## GO:0034332                                                                                                                      adherens junction organization
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0009605                                                                                                                       response to external stimulus
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0002520                                                                                                                           immune system development
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0001775                                                                                                                                     cell activation
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0022607                                                                                                                         cellular component assembly
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030041                                                                                                                       actin filament polymerization
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0099173                                                                                                                            postsynapse organization
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0007155                                                                                                                                       cell adhesion
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0034329                                                                                                                              cell junction assembly
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0030258                                                                                                                                  lipid modification
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032868                                                                                                                                 response to insulin
## GO:0051607                                                                                                                           defense response to virus
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048519                                                                                                           negative regulation of biological process
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0034330                                                                                                                          cell junction organization
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0009615                                                                                                                                   response to virus
## GO:0051258                                                                                                                              protein polymerization
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:1901653                                                                                                                        cellular response to peptide
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0006952                                                                                                                                    defense response
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0006955                                                                                                                                     immune response
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0006869                                                                                                                                     lipid transport
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006909                                                                                                                                        phagocytosis
## GO:0051179                                                                                                                                        localization
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:0007165                                                                                                                                 signal transduction
## GO:0050789                                                                                                                    regulation of biological process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0015833                                                                                                                                   peptide transport
## GO:0042886                                                                                                                                     amide transport
## GO:0010876                                                                                                                                  lipid localization
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0035690                                                                                                                           cellular response to drug
## GO:0051260                                                                                                                         protein homooligomerization
## GO:1901652                                                                                                                                 response to peptide
## GO:0003012                                                                                                                               muscle system process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0032502                                                                                                                               developmental process
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0050808                                                                                                                                synapse organization
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0042221                                                                                                                                response to chemical
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0030154                                                                                                                                cell differentiation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0050896                                                                                                                                response to stimulus
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0006810                                                                                                                                           transport
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0048869                                                                                                                      cellular developmental process
## GO:0009987                                                                                                                                    cellular process
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051234                                                                                                                       establishment of localization
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0009306                                                                                                                                   protein secretion
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0071702                                                                                                                         organic substance transport
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0098542                                                                                                                  defense response to other organism
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0006954                                                                                                                               inflammatory response
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0040008                                                                                                                                regulation of growth
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0017144                                                                                                                              drug metabolic process
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0006897                                                                                                                                         endocytosis
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0001816                                                                                                                                 cytokine production
## GO:0061024                                                                                                                               membrane organization
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0033036                                                                                                                          macromolecule localization
## GO:0019538                                                                                                                           protein metabolic process
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0002252                                                                                                                             immune effector process
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0042493                                                                                                                                    response to drug
## GO:0030163                                                                                                                           protein catabolic process
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0010033                                                                                                                       response to organic substance
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0040007                                                                                                                                              growth
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0022402                                                                                                                                  cell cycle process
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0016043                                                                                                                     cellular component organization
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0048513                                                                                                                            animal organ development
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0048878                                                                                                                                chemical homeostasis
## GO:0006996                                                                                                                              organelle organization
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0006950                                                                                                                                  response to stress
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016477                                                                                                                                      cell migration
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0030030                                                                                                                        cell projection organization
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0007049                                                                                                                                          cell cycle
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0006508                                                                                                                                         proteolysis
## GO:0010941                                                                                                                            regulation of cell death
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0015031                                                                                                                                   protein transport
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0040011                                                                                                                                          locomotion
## GO:0045184                                                                                                               establishment of protein localization
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0006915                                                                                                                                   apoptotic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0012501                                                                                                                               programmed cell death
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0048731                                                                                                                                  system development
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0008283                                                                                                                                  cell proliferation
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0008219                                                                                                                                          cell death
## GO:0016310                                                                                                                                     phosphorylation
## GO:0009056                                                                                                                                   catabolic process
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0007275                                                                                                                  multicellular organism development
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0051704                                                                                                                              multi-organism process
## GO:0048468                                                                                                                                    cell development
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0008104                                                                                                                                protein localization
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0048856                                                                                                                    anatomical structure development
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0003008                                                                                                                                      system process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0044238                                                                                                                           primary metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0008150                                                                                                                                  biological_process
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0010467                                                                                                                                     gene expression
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0048477                                                                                                                                           oogenesis
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0021761                                                                                                                           limbic system development
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0051262                                                                                                                             protein tetramerization
## GO:0050792                                                                                                                         regulation of viral process
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0006364                                                                                                                                     rRNA processing
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0019058                                                                                                                                    viral life cycle
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0016032                                                                                                                                       viral process
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0042063                                                                                                                                         gliogenesis
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0006417                                                                                                                           regulation of translation
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0032259                                                                                                                                         methylation
## GO:0007281                                                                                                                               germ cell development
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:0044403                                                                                                                                    symbiont process
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006887                                                                                                                                          exocytosis
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0150063                                                                                                                           visual system development
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0042113                                                                                                                                   B cell activation
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0015711                                                                                                                             organic anion transport
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0048568                                                                                                                         embryonic organ development
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0002253                                                                                                                       activation of immune response
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0051301                                                                                                                                       cell division
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0031347                                                                                                                      regulation of defense response
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0061061                                                                                                                        muscle structure development
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0070925                                                                                                                                  organelle assembly
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0006396                                                                                                                                      RNA processing
## GO:0033993                                                                                                                                   response to lipid
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0030001                                                                                                                                 metal ion transport
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0045087                                                                                                                              innate immune response
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007417                                                                                                                  central nervous system development
## GO:0050776                                                                                                                       regulation of immune response
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0009617                                                                                                                               response to bacterium
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0034097                                                                                                                                response to cytokine
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0031175                                                                                                                       neuron projection development
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0060284                                                                                                                      regulation of cell development
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0035295                                                                                                                                    tube development
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0072359                                                                                                                      circulatory system development
## GO:0060429                                                                                                                              epithelium development
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0048666                                                                                                                                  neuron development
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0009790                                                                                                                                  embryo development
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0030182                                                                                                                              neuron differentiation
## GO:0046907                                                                                                                             intracellular transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0048699                                                                                                                               generation of neurons
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0022008                                                                                                                                        neurogenesis
## GO:0007600                                                                                                                                  sensory perception
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0009888                                                                                                                                  tissue development
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0050877                                                                                                                              nervous system process
## GO:0007399                                                                                                                          nervous system development
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0051641                                                                                                                               cellular localization
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
##            Ont     N DE         P.DE
## GO:0051764  BP    11  2 5.164654e-06
## GO:0014739  BP     1  1 3.278285e-04
## GO:1903532  BP   472  3 3.745423e-04
## GO:0051047  BP   527  3 5.172295e-04
## GO:2000845  BP     2  1 6.555630e-04
## GO:0014900  BP     3  1 9.832035e-04
## GO:0071672  BP     3  1 9.832035e-04
## GO:0014738  BP     3  1 9.832035e-04
## GO:2000843  BP     3  1 9.832035e-04
## GO:0035936  BP     3  1 9.832035e-04
## GO:0046887  BP   164  2 1.223988e-03
## GO:0051017  BP   165  2 1.238803e-03
## GO:0061572  BP   168  2 1.283767e-03
## GO:0045065  BP     4  1 1.310750e-03
## GO:0071673  BP     4  1 1.310750e-03
## GO:0090271  BP     5  1 1.638203e-03
## GO:1903530  BP   831  3 1.938024e-03
## GO:0070093  BP     6  1 1.965561e-03
## GO:0071671  BP     6  1 1.965561e-03
## GO:0030046  BP     7  1 2.292826e-03
## GO:0051046  BP   911  3 2.522344e-03
## GO:0014744  BP     8  1 2.619996e-03
## GO:0071670  BP     8  1 2.619996e-03
## GO:0051639  BP    10  1 3.274056e-03
## GO:0046543  BP    10  1 3.274056e-03
## GO:0090269  BP    10  1 3.274056e-03
## GO:1901142  BP    10  1 3.274056e-03
## GO:0090270  BP    10  1 3.274056e-03
## GO:0070092  BP    12  1 3.927741e-03
## GO:0032940  BP  1070  3 3.988072e-03
## GO:0046883  BP   302  2 4.068844e-03
## GO:0051050  BP  1081  3 4.105339e-03
## GO:0007213  BP    13  1 4.254442e-03
## GO:0045136  BP    13  1 4.254442e-03
## GO:0070091  BP    13  1 4.254442e-03
## GO:0032099  BP    13  1 4.254442e-03
## GO:0051271  BP   316  2 4.445242e-03
## GO:0032096  BP    14  1 4.581050e-03
## GO:0090197  BP    15  1 4.907564e-03
## GO:0032102  BP   336  2 5.010180e-03
## GO:0032105  BP    16  1 5.233985e-03
## GO:0032108  BP    16  1 5.233985e-03
## GO:0090196  BP    16  1 5.233985e-03
## GO:0090195  BP    17  1 5.560311e-03
## GO:0046903  BP  1227  3 5.868808e-03
## GO:0046879  BP   365  2 5.885611e-03
## GO:0046321  BP    18  1 5.886544e-03
## GO:0009914  BP   373  2 6.138714e-03
## GO:0030220  BP    19  1 6.212684e-03
## GO:0090026  BP    19  1 6.212684e-03
## GO:0032095  BP    19  1 6.212684e-03
## GO:0036344  BP    20  1 6.538729e-03
## GO:0060249  BP   392  2 6.759749e-03
## GO:0002376  BP  2664  4 6.903299e-03
## GO:0007015  BP   400  2 7.029571e-03
## GO:0014912  BP    22  1 7.190540e-03
## GO:0032098  BP    22  1 7.190540e-03
## GO:0019932  BP   427  2 7.976333e-03
## GO:0095500  BP    25  1 8.167554e-03
## GO:0070050  BP    25  1 8.167554e-03
## GO:0071677  BP    25  1 8.167554e-03
## GO:0032104  BP    25  1 8.167554e-03
## GO:0032107  BP    25  1 8.167554e-03
## GO:1903831  BP    25  1 8.167554e-03
## GO:0090025  BP    26  1 8.493039e-03
## GO:0032879  BP  2835  4 8.642418e-03
## GO:1905145  BP    27  1 8.818430e-03
## GO:1905144  BP    27  1 8.818430e-03
## GO:0043951  BP    29  1 9.468931e-03
## GO:2000778  BP    30  1 9.794042e-03
## GO:0042110  BP   491  2 1.043917e-02
## GO:2000406  BP    34  1 1.109355e-02
## GO:0032094  BP    34  1 1.109355e-02
## GO:0046320  BP    35  1 1.141820e-02
## GO:0032870  BP   518  2 1.156850e-02
## GO:0048585  BP  1576  3 1.177299e-02
## GO:0023061  BP   523  2 1.178341e-02
## GO:0002791  BP   529  2 1.204368e-02
## GO:0016601  BP    38  1 1.239157e-02
## GO:2000403  BP    38  1 1.239157e-02
## GO:1900087  BP    39  1 1.271584e-02
## GO:0070207  BP    40  1 1.304002e-02
## GO:0010817  BP   557  2 1.329216e-02
## GO:0046627  BP    41  1 1.336410e-02
## GO:0048873  BP    42  1 1.368809e-02
## GO:0045923  BP    42  1 1.368809e-02
## GO:0097178  BP    42  1 1.368809e-02
## GO:0002250  BP   583  2 1.450092e-02
## GO:0002269  BP    45  1 1.465951e-02
## GO:0001774  BP    45  1 1.465951e-02
## GO:1900077  BP    45  1 1.465951e-02
## GO:0072604  BP    46  1 1.498313e-02
## GO:2000404  BP    46  1 1.498313e-02
## GO:0045429  BP    47  1 1.530666e-02
## GO:0010646  BP  3338  4 1.545761e-02
## GO:0050850  BP    48  1 1.563009e-02
## GO:1902808  BP    48  1 1.563009e-02
## GO:1904407  BP    48  1 1.563009e-02
## GO:0023051  BP  3360  4 1.581891e-02
## GO:0030865  BP    50  1 1.627668e-02
## GO:0071675  BP    50  1 1.627668e-02
## GO:1901699  BP   631  2 1.685530e-02
## GO:0031529  BP    52  1 1.692290e-02
## GO:0071242  BP    53  1 1.724586e-02
## GO:0061900  BP    53  1 1.724586e-02
## GO:0048662  BP    53  1 1.724586e-02
## GO:0050922  BP    54  1 1.756874e-02
## GO:0045599  BP    54  1 1.756874e-02
## GO:0002548  BP    55  1 1.789152e-02
## GO:0002790  BP   652  2 1.793456e-02
## GO:0010647  BP  1854  3 1.833985e-02
## GO:0023056  BP  1860  3 1.850079e-02
## GO:0030036  BP   663  2 1.851166e-02
## GO:0072678  BP    58  1 1.885932e-02
## GO:2000401  BP    59  1 1.918173e-02
## GO:0042592  BP  1887  3 1.923528e-02
## GO:0097435  BP   681  2 1.947332e-02
## GO:1903428  BP    61  1 1.982628e-02
## GO:0014911  BP    62  1 2.014841e-02
## GO:0070206  BP    62  1 2.014841e-02
## GO:0043949  BP    62  1 2.014841e-02
## GO:0009725  BP   697  2 2.034601e-02
## GO:0032722  BP    63  1 2.047045e-02
## GO:0051049  BP  1946  3 2.089890e-02
## GO:0150076  BP    65  1 2.111426e-02
## GO:0090278  BP    66  1 2.143602e-02
## GO:0045428  BP    68  1 2.207927e-02
## GO:0032370  BP    69  1 2.240076e-02
## GO:0030029  BP   746  2 2.312169e-02
## GO:0090087  BP   749  2 2.329661e-02
## GO:0046626  BP    75  1 2.432773e-02
## GO:0032101  BP   770  2 2.453694e-02
## GO:0007045  BP    76  1 2.464857e-02
## GO:0048041  BP    76  1 2.464857e-02
## GO:0006809  BP    76  1 2.464857e-02
## GO:0046209  BP    80  1 2.593101e-02
## GO:0048583  BP  3883  4 2.614894e-02
## GO:0071674  BP    83  1 2.689186e-02
## GO:1901992  BP    83  1 2.689186e-02
## GO:2001057  BP    84  1 2.721196e-02
## GO:0034333  BP    85  1 2.753197e-02
## GO:0014910  BP    85  1 2.753197e-02
## GO:0007044  BP    86  1 2.785189e-02
## GO:0002690  BP    87  1 2.817171e-02
## GO:0032642  BP    88  1 2.849145e-02
## GO:0019217  BP    88  1 2.849145e-02
## GO:1905954  BP    89  1 2.881109e-02
## GO:1900076  BP    89  1 2.881109e-02
## GO:0046649  BP   841  2 2.893243e-02
## GO:0032602  BP    92  1 2.976946e-02
## GO:0014909  BP    92  1 2.976946e-02
## GO:0042116  BP    93  1 3.008873e-02
## GO:0065008  BP  4051  4 3.022073e-02
## GO:0046888  BP    95  1 3.072700e-02
## GO:1901989  BP    96  1 3.104600e-02
## GO:0072676  BP    97  1 3.136490e-02
## GO:0043502  BP    97  1 3.136490e-02
## GO:0019395  BP    98  1 3.168372e-02
## GO:0042102  BP    98  1 3.168372e-02
## GO:0032755  BP    99  1 3.200244e-02
## GO:0034440  BP   100  1 3.232107e-02
## GO:0060359  BP   100  1 3.232107e-02
## GO:0050848  BP   101  1 3.263961e-02
## GO:1903426  BP   103  1 3.327641e-02
## GO:0042136  BP   104  1 3.359467e-02
## GO:0065007  BP 12135  7 3.395820e-02
## GO:0014812  BP   106  1 3.423092e-02
## GO:0048661  BP   106  1 3.423092e-02
## GO:0030097  BP   921  2 3.424631e-02
## GO:0019725  BP   930  2 3.486733e-02
## GO:2000379  BP   109  1 3.518461e-02
## GO:0002688  BP   111  1 3.581995e-02
## GO:2000045  BP   114  1 3.677226e-02
## GO:0032368  BP   115  1 3.708952e-02
## GO:0023052  BP  6579  5 3.742177e-02
## GO:0043500  BP   117  1 3.772375e-02
## GO:0048534  BP   972  2 3.782584e-02
## GO:1901698  BP   982  2 3.854473e-02
## GO:0008286  BP   121  1 3.899113e-02
## GO:1903409  BP   121  1 3.899113e-02
## GO:0007154  BP  6648  5 3.907582e-02
## GO:0045321  BP   994  2 3.941467e-02
## GO:0034332  BP   126  1 4.057330e-02
## GO:0010565  BP   127  1 4.088946e-02
## GO:0009605  BP  2515  3 4.116847e-02
## GO:1902806  BP   128  1 4.120553e-02
## GO:0008277  BP   130  1 4.183739e-02
## GO:0051270  BP  1028  2 4.192203e-02
## GO:0002520  BP  1030  2 4.207146e-02
## GO:0045598  BP   135  1 4.341546e-02
## GO:0050671  BP   136  1 4.373080e-02
## GO:0002456  BP   137  1 4.404605e-02
## GO:0032946  BP   138  1 4.436121e-02
## GO:0050921  BP   140  1 4.499125e-02
## GO:0035556  BP  2608  3 4.521941e-02
## GO:0002687  BP   144  1 4.625025e-02
## GO:0070665  BP   145  1 4.656477e-02
## GO:1905952  BP   145  1 4.656477e-02
## GO:0042133  BP   147  1 4.719354e-02
## GO:0001775  BP  1098  2 4.727753e-02
## GO:0050715  BP   150  1 4.813602e-02
## GO:0032675  BP   153  1 4.907768e-02
## GO:0048523  BP  4687  4 4.926115e-02
## GO:0062013  BP   155  1 4.970501e-02
## GO:0045834  BP   157  1 5.033197e-02
## GO:0032635  BP   162  1 5.189778e-02
## GO:0002792  BP   162  1 5.189778e-02
## GO:0048660  BP   163  1 5.221067e-02
## GO:0045931  BP   166  1 5.314881e-02
## GO:0009966  BP  2780  3 5.325836e-02
## GO:0009968  BP  1175  2 5.345794e-02
## GO:0048659  BP   168  1 5.377378e-02
## GO:0042129  BP   170  1 5.439839e-02
## GO:0022607  BP  2807  3 5.458449e-02
## GO:0000082  BP   171  1 5.471056e-02
## GO:0030041  BP   174  1 5.564653e-02
## GO:1901701  BP  1206  2 5.602855e-02
## GO:0019933  BP   179  1 5.720468e-02
## GO:0071495  BP  1223  2 5.745779e-02
## GO:0044843  BP   185  1 5.907148e-02
## GO:0050870  BP   187  1 5.969303e-02
## GO:0006911  BP   189  1 6.031422e-02
## GO:0032869  BP   193  1 6.155552e-02
## GO:0099173  BP   194  1 6.186562e-02
## GO:0042180  BP   195  1 6.217564e-02
## GO:0099024  BP   198  1 6.310513e-02
## GO:2000377  BP   200  1 6.372435e-02
## GO:0007155  BP  1298  2 6.392416e-02
## GO:0008154  BP   201  1 6.403382e-02
## GO:0002685  BP   201  1 6.403382e-02
## GO:0007010  BP  1305  2 6.454078e-02
## GO:0010648  BP  1306  2 6.462904e-02
## GO:1903039  BP   203  1 6.465250e-02
## GO:0007160  BP   204  1 6.496171e-02
## GO:0022610  BP  1310  2 6.498256e-02
## GO:0023057  BP  1310  2 6.498256e-02
## GO:0042098  BP   205  1 6.527083e-02
## GO:0010324  BP   205  1 6.527083e-02
## GO:0034329  BP   206  1 6.557985e-02
## GO:0070887  BP  3023  3 6.581469e-02
## GO:0097529  BP   207  1 6.588879e-02
## GO:0019722  BP   209  1 6.650640e-02
## GO:0044085  BP  3041  3 6.680001e-02
## GO:0019935  BP   210  1 6.681507e-02
## GO:0030595  BP   211  1 6.712365e-02
## GO:0050920  BP   213  1 6.774054e-02
## GO:0050707  BP   213  1 6.774054e-02
## GO:0002274  BP   215  1 6.835708e-02
## GO:0043547  BP   217  1 6.897325e-02
## GO:0030258  BP   218  1 6.928121e-02
## GO:0050670  BP   225  1 7.143440e-02
## GO:0032868  BP   225  1 7.143440e-02
## GO:0051607  BP   227  1 7.204880e-02
## GO:0032944  BP   227  1 7.204880e-02
## GO:0090276  BP   228  1 7.235587e-02
## GO:0048519  BP  5278  4 7.241759e-02
## GO:1903531  BP   232  1 7.358324e-02
## GO:0001894  BP   232  1 7.358324e-02
## GO:0009719  BP  1409  2 7.395455e-02
## GO:0033002  BP   234  1 7.419639e-02
## GO:0045444  BP   238  1 7.542163e-02
## GO:0070663  BP   238  1 7.542163e-02
## GO:0015850  BP   239  1 7.572772e-02
## GO:0090257  BP   239  1 7.572772e-02
## GO:0022409  BP   242  1 7.664546e-02
## GO:0071375  BP   244  1 7.725683e-02
## GO:0050663  BP   244  1 7.725683e-02
## GO:0090068  BP   249  1 7.878373e-02
## GO:0034330  BP   255  1 8.061309e-02
## GO:0050794  BP 10774  6 8.070395e-02
## GO:0048522  BP  5469  4 8.106892e-02
## GO:1901990  BP   259  1 8.183090e-02
## GO:0051048  BP   261  1 8.243927e-02
## GO:0034599  BP   268  1 8.456580e-02
## GO:0030336  BP   268  1 8.456580e-02
## GO:0030217  BP   269  1 8.486924e-02
## GO:0009615  BP   270  1 8.517259e-02
## GO:0051258  BP   274  1 8.638511e-02
## GO:0030072  BP   278  1 8.759623e-02
## GO:2000146  BP   281  1 8.850364e-02
## GO:1901653  BP   287  1 9.031610e-02
## GO:1903037  BP   287  1 9.031610e-02
## GO:0072593  BP   288  1 9.061786e-02
## GO:1901987  BP   290  1 9.122114e-02
## GO:1901700  BP  1589  2 9.129359e-02
## GO:0007267  BP  1596  2 9.199287e-02
## GO:0006952  BP  1601  2 9.249344e-02
## GO:0043087  BP   295  1 9.272780e-02
## GO:0060326  BP   299  1 9.393155e-02
## GO:0050714  BP   302  1 9.483345e-02
## GO:0050863  BP   304  1 9.543428e-02
## GO:0046651  BP   308  1 9.663489e-02
## GO:0032943  BP   310  1 9.723467e-02
## GO:0006955  BP  1652  2 9.765044e-02
## GO:0032103  BP   312  1 9.783410e-02
## GO:0048872  BP   315  1 9.873260e-02
## GO:0007159  BP   319  1 9.992938e-02
## GO:0043434  BP   324  1 1.014234e-01
## GO:0006869  BP   330  1 1.032133e-01
## GO:0070661  BP   331  1 1.035114e-01
## GO:0002793  BP   331  1 1.035114e-01
## GO:1902531  BP  1710  2 1.036253e-01
## GO:0040013  BP   332  1 1.038093e-01
## GO:0006909  BP   336  1 1.050002e-01
## GO:0051179  BP  5950  4 1.054054e-01
## GO:0019216  BP   338  1 1.055951e-01
## GO:0065003  BP  1729  2 1.056072e-01
## GO:0031589  BP   339  1 1.058924e-01
## GO:0050900  BP   340  1 1.061897e-01
## GO:0045787  BP   349  1 1.088610e-01
## GO:0007165  BP  6028  4 1.096943e-01
## GO:0050789  BP 11520  6 1.108642e-01
## GO:0044772  BP   356  1 1.109338e-01
## GO:0062012  BP   359  1 1.118209e-01
## GO:0015833  BP  1797  2 1.127963e-01
## GO:0042886  BP  1817  2 1.149384e-01
## GO:0010876  BP   370  1 1.150669e-01
## GO:0031667  BP   371  1 1.153614e-01
## GO:0001505  BP   372  1 1.156559e-01
## GO:0006631  BP   376  1 1.168330e-01
## GO:0048518  BP  6171  4 1.178029e-01
## GO:0035690  BP   380  1 1.180087e-01
## GO:0051260  BP   383  1 1.188896e-01
## GO:1901652  BP   384  1 1.191831e-01
## GO:0003012  BP   392  1 1.215277e-01
## GO:0044770  BP   394  1 1.221130e-01
## GO:0051251  BP   394  1 1.221130e-01
## GO:0030098  BP   395  1 1.224055e-01
## GO:0022407  BP   395  1 1.224055e-01
## GO:0032502  BP  6258  4 1.228907e-01
## GO:0006979  BP   400  1 1.238668e-01
## GO:0030099  BP   401  1 1.241588e-01
## GO:0009991  BP   401  1 1.241588e-01
## GO:0045785  BP   411  1 1.270742e-01
## GO:0007265  BP   414  1 1.279472e-01
## GO:0043933  BP  1956  2 1.301536e-01
## GO:0002449  BP   425  1 1.311415e-01
## GO:0051222  BP   435  1 1.340365e-01
## GO:0002460  BP   441  1 1.357695e-01
## GO:0006928  BP  2014  2 1.366615e-01
## GO:0002696  BP   446  1 1.372113e-01
## GO:0001819  BP   449  1 1.380754e-01
## GO:0050808  BP   451  1 1.386511e-01
## GO:1904951  BP   454  1 1.395139e-01
## GO:0042221  BP  4136  3 1.401496e-01
## GO:0050867  BP   461  1 1.415242e-01
## GO:0006874  BP   473  1 1.449609e-01
## GO:0030154  BP  4218  3 1.466190e-01
## GO:0007264  BP   485  1 1.483855e-01
## GO:0048871  BP   486  1 1.486704e-01
## GO:0120031  BP   488  1 1.492398e-01
## GO:0055074  BP   489  1 1.495244e-01
## GO:0050708  BP   490  1 1.498089e-01
## GO:0071705  BP  2133  2 1.502809e-01
## GO:0007346  BP   493  1 1.506620e-01
## GO:0072503  BP   497  1 1.517982e-01
## GO:0030031  BP   501  1 1.529331e-01
## GO:0002443  BP   507  1 1.546329e-01
## GO:0051345  BP   510  1 1.554817e-01
## GO:0072507  BP   521  1 1.585876e-01
## GO:0050896  BP  9531  5 1.593728e-01
## GO:1902532  BP   527  1 1.602775e-01
## GO:0006810  BP  4398  3 1.612412e-01
## GO:0030335  BP   539  1 1.636484e-01
## GO:0051051  BP   540  1 1.639287e-01
## GO:0048869  BP  4443  3 1.649840e-01
## GO:0009987  BP 15803  7 1.655396e-01
## GO:0007169  BP   553  1 1.675661e-01
## GO:0051249  BP   555  1 1.681245e-01
## GO:0048584  BP  2294  2 1.692216e-01
## GO:2000147  BP   561  1 1.697976e-01
## GO:0002521  BP   567  1 1.714678e-01
## GO:0071417  BP   568  1 1.717459e-01
## GO:0032787  BP   570  1 1.723018e-01
## GO:0051234  BP  4538  3 1.729957e-01
## GO:0051272  BP   580  1 1.750764e-01
## GO:0006875  BP   582  1 1.756304e-01
## GO:0010564  BP   585  1 1.764607e-01
## GO:0040017  BP   593  1 1.786713e-01
## GO:0044057  BP   596  1 1.794990e-01
## GO:0006935  BP   597  1 1.797747e-01
## GO:0042330  BP   600  1 1.806013e-01
## GO:0009306  BP   605  1 1.819775e-01
## GO:0051259  BP   617  1 1.852720e-01
## GO:0071310  BP  2433  2 1.859870e-01
## GO:0030003  BP   641  1 1.918263e-01
## GO:1903047  BP   644  1 1.926423e-01
## GO:0007166  BP  2497  2 1.938189e-01
## GO:0071702  BP  2505  2 1.948024e-01
## GO:0002694  BP   652  1 1.948149e-01
## GO:0006873  BP   655  1 1.956282e-01
## GO:0055065  BP   664  1 1.980641e-01
## GO:0098542  BP   667  1 1.988746e-01
## GO:0001817  BP   679  1 2.021095e-01
## GO:0008285  BP   681  1 2.026475e-01
## GO:0030155  BP   686  1 2.039912e-01
## GO:0006954  BP   691  1 2.053329e-01
## GO:0050865  BP   693  1 2.058691e-01
## GO:0051603  BP   696  1 2.066727e-01
## GO:0051223  BP   708  1 2.098800e-01
## GO:0040008  BP   717  1 2.122780e-01
## GO:0098609  BP   720  1 2.130760e-01
## GO:0017144  BP   727  1 2.149351e-01
## GO:0055080  BP   732  1 2.162606e-01
## GO:0044257  BP   740  1 2.183774e-01
## GO:0070201  BP   740  1 2.183774e-01
## GO:0006897  BP   741  1 2.186417e-01
## GO:0098771  BP   746  1 2.199618e-01
## GO:0001816  BP   755  1 2.223330e-01
## GO:0061024  BP   780  1 2.288867e-01
## GO:0003006  BP   791  1 2.317550e-01
## GO:0051716  BP  7810  4 2.319574e-01
## GO:0000278  BP   799  1 2.338352e-01
## GO:0045596  BP   799  1 2.338352e-01
## GO:0000904  BP   804  1 2.351328e-01
## GO:0055082  BP   810  1 2.366873e-01
## GO:0050801  BP   812  1 2.372049e-01
## GO:0033036  BP  2901  2 2.445303e-01
## GO:0019538  BP  5344  3 2.462525e-01
## GO:0098657  BP   872  1 2.525901e-01
## GO:0055114  BP   872  1 2.525901e-01
## GO:0002252  BP   879  1 2.543672e-01
## GO:0010243  BP   883  1 2.553811e-01
## GO:0007167  BP   890  1 2.571524e-01
## GO:0030334  BP   892  1 2.576578e-01
## GO:0042493  BP   894  1 2.581629e-01
## GO:0030163  BP   898  1 2.591722e-01
## GO:0019752  BP   902  1 2.601804e-01
## GO:0043066  BP   921  1 2.649526e-01
## GO:0010033  BP  3070  2 2.662151e-01
## GO:0032501  BP  8233  4 2.669545e-01
## GO:0044255  BP   932  1 2.677031e-01
## GO:0043069  BP   939  1 2.694487e-01
## GO:2000145  BP   939  1 2.694487e-01
## GO:0043436  BP   941  1 2.699468e-01
## GO:0051726  BP   955  1 2.734251e-01
## GO:0006082  BP   968  1 2.766420e-01
## GO:0008284  BP   972  1 2.776292e-01
## GO:0051336  BP   985  1 2.808298e-01
## GO:0001934  BP   989  1 2.818121e-01
## GO:0031325  BP  3201  2 2.831407e-01
## GO:0034622  BP   996  1 2.835282e-01
## GO:1902533  BP  1005  1 2.857295e-01
## GO:0044265  BP  1013  1 2.876812e-01
## GO:0040012  BP  1018  1 2.888986e-01
## GO:0032880  BP  1038  1 2.937501e-01
## GO:0042327  BP  1043  1 2.949585e-01
## GO:0060548  BP  1049  1 2.964061e-01
## GO:0043085  BP  1051  1 2.968881e-01
## GO:0051093  BP  1070  1 3.014524e-01
## GO:0002684  BP  1072  1 3.019313e-01
## GO:0040007  BP  1097  1 3.078938e-01
## GO:0000902  BP  1100  1 3.086063e-01
## GO:0022402  BP  1108  1 3.105032e-01
## GO:0045937  BP  1112  1 3.114499e-01
## GO:0010562  BP  1112  1 3.114499e-01
## GO:0016043  BP  6083  3 3.196324e-01
## GO:0009893  BP  3486  2 3.201481e-01
## GO:1901565  BP  1151  1 3.206211e-01
## GO:0048646  BP  1157  1 3.220225e-01
## GO:0048513  BP  3504  2 3.224885e-01
## GO:0051707  BP  1172  1 3.255149e-01
## GO:0043207  BP  1174  1 3.259794e-01
## GO:0048878  BP  1182  1 3.278345e-01
## GO:0006996  BP  3568  2 3.308090e-01
## GO:0009607  BP  1208  1 3.338327e-01
## GO:0031401  BP  1210  1 3.342922e-01
## GO:0032989  BP  1211  1 3.345218e-01
## GO:1901564  BP  6234  3 3.350986e-01
## GO:0009057  BP  1218  1 3.361272e-01
## GO:0071840  BP  6266  3 3.383907e-01
## GO:0006950  BP  3640  2 3.401645e-01
## GO:0006629  BP  1258  1 3.452362e-01
## GO:0001932  BP  1410  1 3.788610e-01
## GO:0044093  BP  1429  1 3.829559e-01
## GO:0016477  BP  1447  1 3.868135e-01
## GO:0022414  BP  1471  1 3.919242e-01
## GO:0000003  BP  1472  1 3.921363e-01
## GO:0002682  BP  1473  1 3.923484e-01
## GO:0016192  BP  1501  1 3.982600e-01
## GO:0009967  BP  1504  1 3.988904e-01
## GO:0042981  BP  1516  1 4.014062e-01
## GO:0120036  BP  1526  1 4.034957e-01
## GO:0032270  BP  1532  1 4.047463e-01
## GO:0042325  BP  1533  1 4.049545e-01
## GO:0043067  BP  1537  1 4.057868e-01
## GO:0030030  BP  1572  1 4.130253e-01
## GO:0048870  BP  1595  1 4.177399e-01
## GO:0051674  BP  1595  1 4.177399e-01
## GO:0007049  BP  1639  1 4.266670e-01
## GO:0051247  BP  1639  1 4.266670e-01
## GO:0042127  BP  1649  1 4.286790e-01
## GO:0006508  BP  1657  1 4.302843e-01
## GO:0010941  BP  1685  1 4.358715e-01
## GO:0019220  BP  1692  1 4.372608e-01
## GO:0051174  BP  1693  1 4.374590e-01
## GO:0015031  BP  1746  1 4.478780e-01
## GO:0044281  BP  1753  1 4.492414e-01
## GO:0031399  BP  1760  1 4.506018e-01
## GO:0033554  BP  1763  1 4.511839e-01
## GO:0010629  BP  1783  1 4.550511e-01
## GO:0044267  BP  4569  2 4.586449e-01
## GO:0050790  BP  1807  1 4.596603e-01
## GO:0006468  BP  1815  1 4.611890e-01
## GO:0040011  BP  1817  1 4.615706e-01
## GO:0045184  BP  1856  1 4.689648e-01
## GO:1901575  BP  1857  1 4.691532e-01
## GO:0006915  BP  1867  1 4.710342e-01
## GO:0031328  BP  1903  1 4.777575e-01
## GO:0012501  BP  1908  1 4.786853e-01
## GO:0045595  BP  1909  1 4.788707e-01
## GO:0048731  BP  4746  2 4.804021e-01
## GO:0007186  BP  1921  1 4.810910e-01
## GO:0051240  BP  1929  1 4.825666e-01
## GO:0009891  BP  1943  1 4.851400e-01
## GO:0008283  BP  1994  1 4.944202e-01
## GO:0044248  BP  1996  1 4.947811e-01
## GO:0008219  BP  2065  1 5.070959e-01
## GO:0016310  BP  2166  1 5.246481e-01
## GO:0009056  BP  2257  1 5.399916e-01
## GO:0080090  BP  5248  2 5.400399e-01
## GO:0007275  BP  5362  2 5.531076e-01
## GO:0031323  BP  5401  2 5.575348e-01
## GO:0051704  BP  2389  1 5.614775e-01
## GO:0048468  BP  2406  1 5.641798e-01
## GO:0043170  BP  8488  3 5.670056e-01
## GO:0065009  BP  2477  1 5.753088e-01
## GO:0032268  BP  2494  1 5.779364e-01
## GO:0008104  BP  2578  1 5.907116e-01
## GO:0010605  BP  2584  1 5.916111e-01
## GO:0051246  BP  2687  1 6.067840e-01
## GO:0006807  BP  8923  3 6.089731e-01
## GO:0048856  BP  5871  2 6.090589e-01
## GO:0050793  BP  2721  1 6.116830e-01
## GO:0009653  BP  2744  1 6.149667e-01
## GO:0019222  BP  5953  2 6.176885e-01
## GO:0009892  BP  2843  1 6.288251e-01
## GO:0006796  BP  2933  1 6.410429e-01
## GO:0003008  BP  2939  1 6.418448e-01
## GO:0006793  BP  2955  1 6.439754e-01
## GO:0044237  BP  9374  3 6.506172e-01
## GO:0044238  BP  9443  3 6.568024e-01
## GO:0051173  BP  3061  1 6.578129e-01
## GO:0008150  BP 23210  8 6.696220e-01
## GO:0010604  BP  3212  1 6.767115e-01
## GO:0051239  BP  3248  1 6.810799e-01
## GO:0006464  BP  3453  1 7.049849e-01
## GO:0036211  BP  3453  1 7.049849e-01
## GO:0071704  BP 10008  3 7.054190e-01
## GO:0031326  BP  3470  1 7.068949e-01
## GO:0009889  BP  3542  1 7.148650e-01
## GO:0043412  BP  3634  1 7.247726e-01
## GO:0044260  BP  7099  2 7.263441e-01
## GO:0008152  BP 10485  3 7.434523e-01
## GO:0010468  BP  3860  1 7.478427e-01
## GO:0044271  BP  3993  1 7.606129e-01
## GO:0010467  BP  4814  1 8.276426e-01
## GO:0044249  BP  4938  1 8.361815e-01
## GO:0051171  BP  5104  1 8.470319e-01
## GO:0009058  BP  5125  1 8.483587e-01
## GO:0060255  BP  5486  1 8.696450e-01
## GO:0034641  BP  5547  1 8.729706e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0031394  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:2001280  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:0031392  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:2001279  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0045060  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0043383  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0045059  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:0045723  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:1902230  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0001516  BP    25  0 1.000000e+00
## GO:0046457  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0045061  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:0032743  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:1902229  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0043368  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0006636  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0046456  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0006693  BP    40  0 1.000000e+00
## GO:0006692  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:0042304  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0070229  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071622  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:1901570  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0002720  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0045058  BP    55  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0032663  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0032677  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0002763  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0032623  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0032637  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:2000107  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:2001021  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0042108  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0070228  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0002718  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:0048524  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051341  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0033077  BP    88  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:0046889  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0045582  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:2001243  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0070227  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0045639  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0030593  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0002702  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0007584  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0033559  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0002367  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:1902106  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0045621  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:2000106  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0042035  BP   109  0 1.000000e+00
## GO:0032649  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0006690  BP   110  0 1.000000e+00
## GO:0001776  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0042100  BP   112  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0008630  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0043123  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:1990266  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0042089  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0032609  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0071621  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0042107  BP   125  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0002761  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0071887  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:1901568  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0006633  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1903900  BP   145  0 1.000000e+00
## GO:0097530  BP   146  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0002821  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:0002700  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0045580  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0051250  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:1903707  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:2001236  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0043122  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:1902107  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:2001242  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0046890  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0043902  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:0002695  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0045619  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0051262  BP   183  0 1.000000e+00
## GO:0050792  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0045766  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0043491  BP   186  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0022408  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0002822  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:0007249  BP   193  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:0050731  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0043903  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0050679  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0019058  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0050866  BP   203  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0051224  BP   204  0 1.000000e+00
## GO:1904018  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0002819  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903708  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:1904950  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:2001020  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0045637  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0002573  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0070374  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:0097191  BP   229  0 1.000000e+00
## GO:1901617  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:2001234  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0031330  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0001818  BP   259  0 1.000000e+00
## GO:0002699  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050730  BP   263  0 1.000000e+00
## GO:0072330  BP   264  0 1.000000e+00
## GO:0050864  BP   264  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0002366  BP   269  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0002263  BP   273  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0016032  BP   283  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0007162  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0097193  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:0009895  BP   294  0 1.000000e+00
## GO:1902105  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0050851  BP   295  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0070372  BP   306  0 1.000000e+00
## GO:0045765  BP   307  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0018108  BP   319  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0018212  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0070371  BP   323  0 1.000000e+00
## GO:0042063  BP   323  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0002429  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0002768  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0019221  BP   341  0 1.000000e+00
## GO:1901342  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:0044403  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0002440  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045861  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0050727  BP   354  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0050678  BP   358  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0046394  BP   362  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0016053  BP   363  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0031349  BP   370  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0042176  BP   378  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0001503  BP   381  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0043900  BP   391  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0051346  BP   402  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0042113  BP   405  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:1903706  BP   407  0 1.000000e+00
## GO:0044419  BP   408  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:2001233  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0002697  BP   420  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0050673  BP   425  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0071900  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0048608  BP   449  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0002757  BP   450  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0061458  BP   453  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0002764  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0048732  BP   467  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0002683  BP   473  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:1901615  BP   481  0 1.000000e+00
## GO:0071407  BP   482  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0001525  BP   513  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0043410  BP   519  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0002253  BP   526  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0001701  BP   538  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0008610  BP   545  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0097190  BP   605  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0071396  BP   612  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0048514  BP   622  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:0043065  BP   632  0 1.000000e+00
## GO:0007420  BP   634  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0048598  BP   637  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0043068  BP   637  0 1.000000e+00
## GO:0031347  BP   640  0 1.000000e+00
## GO:0044283  BP   650  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0045859  BP   662  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0080135  BP   666  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0043086  BP   682  0 1.000000e+00
## GO:0060322  BP   688  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0010942  BP   695  0 1.000000e+00
## GO:0031329  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0030162  BP   716  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0001568  BP   719  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043549  BP   728  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0014070  BP   734  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0043408  BP   737  0 1.000000e+00
## GO:0006974  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0050778  BP   747  0 1.000000e+00
## GO:0001944  BP   752  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0072358  BP   765  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0045664  BP   776  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0000165  BP   793  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0023014  BP   810  0 1.000000e+00
## GO:0009894  BP   821  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0033993  BP   822  0 1.000000e+00
## GO:0043009  BP   824  0 1.000000e+00
## GO:0051338  BP   832  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0009792  BP   841  0 1.000000e+00
## GO:0045087  BP   842  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0006886  BP   882  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007417  BP   888  0 1.000000e+00
## GO:0050776  BP   903  0 1.000000e+00
## GO:0035239  BP   905  0 1.000000e+00
## GO:0071345  BP   907  0 1.000000e+00
## GO:0009617  BP   907  0 1.000000e+00
## GO:0006259  BP   915  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0050767  BP   956  0 1.000000e+00
## GO:0060341  BP   958  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:0032269  BP  1003  0 1.000000e+00
## GO:0034097  BP  1004  0 1.000000e+00
## GO:0044092  BP  1006  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0051248  BP  1070  0 1.000000e+00
## GO:0051960  BP  1071  0 1.000000e+00
## GO:0022603  BP  1076  0 1.000000e+00
## GO:0031175  BP  1083  0 1.000000e+00
## GO:0009887  BP  1090  0 1.000000e+00
## GO:0060284  BP  1093  0 1.000000e+00
## GO:0045597  BP  1097  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0035295  BP  1122  0 1.000000e+00
## GO:0018193  BP  1137  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0072359  BP  1143  0 1.000000e+00
## GO:0060429  BP  1172  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:0048666  BP  1222  0 1.000000e+00
## GO:0045944  BP  1226  0 1.000000e+00
## GO:0009790  BP  1231  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051253  BP  1269  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0080134  BP  1337  0 1.000000e+00
## GO:0051241  BP  1343  0 1.000000e+00
## GO:2000113  BP  1379  0 1.000000e+00
## GO:0045934  BP  1395  0 1.000000e+00
## GO:0010558  BP  1414  0 1.000000e+00
## GO:0031327  BP  1471  0 1.000000e+00
## GO:0030182  BP  1494  0 1.000000e+00
## GO:0046907  BP  1502  0 1.000000e+00
## GO:0009890  BP  1509  0 1.000000e+00
## GO:0045893  BP  1536  0 1.000000e+00
## GO:0051094  BP  1540  0 1.000000e+00
## GO:1903508  BP  1540  0 1.000000e+00
## GO:1902680  BP  1541  0 1.000000e+00
## GO:0006811  BP  1565  0 1.000000e+00
## GO:1901566  BP  1599  0 1.000000e+00
## GO:0051254  BP  1638  0 1.000000e+00
## GO:0048699  BP  1672  0 1.000000e+00
## GO:0034613  BP  1676  0 1.000000e+00
## GO:0070727  BP  1686  0 1.000000e+00
## GO:0022008  BP  1778  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0010557  BP  1799  0 1.000000e+00
## GO:0045935  BP  1833  0 1.000000e+00
## GO:0051649  BP  1906  0 1.000000e+00
## GO:0009888  BP  1956  0 1.000000e+00
## GO:0010628  BP  1981  0 1.000000e+00
## GO:0006357  BP  1993  0 1.000000e+00
## GO:0006366  BP  2049  0 1.000000e+00
## GO:2000026  BP  2184  0 1.000000e+00
## GO:0051172  BP  2271  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0007399  BP  2333  0 1.000000e+00
## GO:0031324  BP  2449  0 1.000000e+00
## GO:0051128  BP  2558  0 1.000000e+00
## GO:0051641  BP  2592  0 1.000000e+00
## GO:0006355  BP  2784  0 1.000000e+00
## GO:1903506  BP  2792  0 1.000000e+00
## GO:2001141  BP  2801  0 1.000000e+00
## GO:0006351  BP  2875  0 1.000000e+00
## GO:0097659  BP  2883  0 1.000000e+00
## GO:0032774  BP  2896  0 1.000000e+00
## GO:0051252  BP  3049  0 1.000000e+00
## GO:2000112  BP  3219  0 1.000000e+00
## GO:0034654  BP  3310  0 1.000000e+00
## GO:0010556  BP  3311  0 1.000000e+00
## GO:0019219  BP  3352  0 1.000000e+00
## GO:0018130  BP  3374  0 1.000000e+00
## GO:0019438  BP  3386  0 1.000000e+00
## GO:1901362  BP  3510  0 1.000000e+00
## GO:0016070  BP  3761  0 1.000000e+00
## GO:0034645  BP  4022  0 1.000000e+00
## GO:0009059  BP  4121  0 1.000000e+00
## GO:0090304  BP  4277  0 1.000000e+00
## GO:0006139  BP  4813  0 1.000000e+00
## GO:0046483  BP  4940  0 1.000000e+00
## GO:0006725  BP  5012  0 1.000000e+00
## GO:1901576  BP  5031  0 1.000000e+00
## GO:1901360  BP  5208  0 1.000000e+00
## 
## [[1]][[7]]
##                                                                                                                                                           Term
## GO:0019835                                                                                                                                           cytolysis
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0006952                                                                                                                                    defense response
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0006508                                                                                                                                         proteolysis
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0050904                                                                                                                                          diapedesis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0051607                                                                                                                           defense response to virus
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0002252                                                                                                                             immune effector process
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0031620                                                                                                                      regulation of fever generation
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0009615                                                                                                                                   response to virus
## GO:0072683                                                                                                                                T cell extravasation
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0045321                                                                                                                                leukocyte activation
## GO:0001660                                                                                                                                    fever generation
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0019538                                                                                                                           protein metabolic process
## GO:0097531                                                                                                                                 mast cell migration
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:0031650                                                                                                                       regulation of heat generation
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:0001775                                                                                                                                     cell activation
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0031649                                                                                                                                     heat generation
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0072677                                                                                                                                eosinophil migration
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0009605                                                                                                                       response to external stimulus
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0002347                                                                                                                              response to tumor cell
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0042119                                                                                                                               neutrophil activation
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0002376                                                                                                                               immune system process
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0036230                                                                                                                              granulocyte activation
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0019083                                                                                                                                 viral transcription
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0001774                                                                                                                          microglial cell activation
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0006955                                                                                                                                     immune response
## GO:0061900                                                                                                                               glial cell activation
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:1905517                                                                                                                                macrophage migration
## GO:0031641                                                                                                                           regulation of myelination
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0019080                                                                                                                               viral gene expression
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0031347                                                                                                                      regulation of defense response
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0098542                                                                                                                  defense response to other organism
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0006954                                                                                                                               inflammatory response
## GO:0050865                                                                                                                       regulation of cell activation
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:1990868                                                                                                                               response to chemokine
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0006915                                                                                                                                   apoptotic process
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0012501                                                                                                                               programmed cell death
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0006950                                                                                                                                  response to stress
## GO:0032602                                                                                                                                chemokine production
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0008219                                                                                                                                          cell death
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0045087                                                                                                                              innate immune response
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0014812                                                                                                                               muscle cell migration
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0019079                                                                                                                            viral genome replication
## GO:0030163                                                                                                                           protein catabolic process
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0009617                                                                                                                               response to bacterium
## GO:1990266                                                                                                                                neutrophil migration
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0051704                                                                                                                              multi-organism process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0042552                                                                                                                                         myelination
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0001906                                                                                                                                        cell killing
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:0051262                                                                                                                             protein tetramerization
## GO:0050792                                                                                                                         regulation of viral process
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0097696                                                                                                                                        STAT cascade
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0019058                                                                                                                                    viral life cycle
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0042098                                                                                                                                T cell proliferation
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0030073                                                                                                                                   insulin secretion
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0016485                                                                                                                                  protein processing
## GO:0044238                                                                                                                           primary metabolic process
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0008037                                                                                                                                    cell recognition
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0016032                                                                                                                                       viral process
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:0048511                                                                                                                                    rhythmic process
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0051604                                                                                                                                  protein maturation
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0044403                                                                                                                                    symbiont process
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0009636                                                                                                                         response to toxic substance
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0010941                                                                                                                            regulation of cell death
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0046879                                                                                                                                   hormone secretion
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0009914                                                                                                                                   hormone transport
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0006887                                                                                                                                          exocytosis
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0008152                                                                                                                                   metabolic process
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0051098                                                                                                                               regulation of binding
## GO:0070997                                                                                                                                        neuron death
## GO:0006468                                                                                                                             protein phosphorylation
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0006816                                                                                                                               calcium ion transport
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0008283                                                                                                                                  cell proliferation
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0042110                                                                                                                                   T cell activation
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0023061                                                                                                                                      signal release
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0016310                                                                                                                                     phosphorylation
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0002250                                                                                                                            adaptive immune response
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0009056                                                                                                                                   catabolic process
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0009306                                                                                                                                   protein secretion
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0007399                                                                                                                          nervous system development
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:0002790                                                                                                                                   peptide secretion
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0001568                                                                                                                            blood vessel development
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0001944                                                                                                                             vasculature development
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0001816                                                                                                                                 cytokine production
## GO:0050896                                                                                                                                response to stimulus
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0033993                                                                                                                                   response to lipid
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0030001                                                                                                                                 metal ion transport
## GO:0022607                                                                                                                         cellular component assembly
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0051046                                                                                                                             regulation of secretion
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0002520                                                                                                                           immune system development
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0060284                                                                                                                      regulation of cell development
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0006812                                                                                                                                    cation transport
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0035295                                                                                                                                    tube development
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0072359                                                                                                                      circulatory system development
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0046903                                                                                                                                           secretion
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0007155                                                                                                                                       cell adhesion
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0043412                                                                                                                          macromolecule modification
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016477                                                                                                                                      cell migration
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0050789                                                                                                                    regulation of biological process
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0030182                                                                                                                              neuron differentiation
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0006811                                                                                                                                       ion transport
## GO:0030030                                                                                                                        cell projection organization
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0048699                                                                                                                               generation of neurons
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0015031                                                                                                                                   protein transport
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0065007                                                                                                                               biological regulation
## GO:0022008                                                                                                                                        neurogenesis
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0015833                                                                                                                                   peptide transport
## GO:0042886                                                                                                                                     amide transport
## GO:0040011                                                                                                                                          locomotion
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0045184                                                                                                               establishment of protein localization
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0042592                                                                                                                                 homeostatic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0051049                                                                                                                             regulation of transport
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0048731                                                                                                                                  system development
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0050877                                                                                                                              nervous system process
## GO:0009987                                                                                                                                    cellular process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0048468                                                                                                                                    cell development
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0007275                                                                                                                  multicellular organism development
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0071702                                                                                                                         organic substance transport
## GO:0008104                                                                                                                                protein localization
## GO:0008150                                                                                                                                  biological_process
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0032879                                                                                                                          regulation of localization
## GO:0048856                                                                                                                    anatomical structure development
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0033036                                                                                                                          macromolecule localization
## GO:0003008                                                                                                                                      system process
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0016043                                                                                                                     cellular component organization
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0010033                                                                                                                       response to organic substance
## GO:0032502                                                                                                                               developmental process
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0023051                                                                                                                             regulation of signaling
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0048513                                                                                                                            animal organ development
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0042221                                                                                                                                response to chemical
## GO:0030154                                                                                                                                cell differentiation
## GO:0006810                                                                                                                                           transport
## GO:0048869                                                                                                                      cellular developmental process
## GO:0051234                                                                                                                       establishment of localization
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:0051179                                                                                                                                        localization
## GO:0007165                                                                                                                                 signal transduction
## GO:0023052                                                                                                                                           signaling
## GO:0007154                                                                                                                                  cell communication
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0106027                                                                                                                      neuron projection organization
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0042100                                                                                                                                B cell proliferation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006417                                                                                                                           regulation of translation
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0032259                                                                                                                                         methylation
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0016311                                                                                                                                   dephosphorylation
## GO:0010876                                                                                                                                  lipid localization
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0007015                                                                                                                         actin filament organization
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0048880                                                                                                                          sensory system development
## GO:0042113                                                                                                                                   B cell activation
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0015711                                                                                                                             organic anion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0007423                                                                                                                           sensory organ development
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0009725                                                                                                                                 response to hormone
## GO:0061061                                                                                                                        muscle structure development
## GO:0040008                                                                                                                                regulation of growth
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0006325                                                                                                                              chromatin organization
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0006396                                                                                                                                      RNA processing
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007417                                                                                                                  central nervous system development
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0050776                                                                                                                       regulation of immune response
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0031175                                                                                                                       neuron projection development
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0040007                                                                                                                                              growth
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0060429                                                                                                                              epithelium development
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0048666                                                                                                                                  neuron development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0009790                                                                                                                                  embryo development
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0046907                                                                                                                             intracellular transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0007049                                                                                                                                          cell cycle
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0007600                                                                                                                                  sensory perception
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0009888                                                                                                                                  tissue development
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0051641                                                                                                                               cellular localization
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0006996                                                                                                                              organelle organization
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
##            Ont     N DE         P.DE
## GO:0019835  BP    35  2 7.148902e-05
## GO:0035688  BP     1  1 3.688071e-04
## GO:0035687  BP     1  1 3.688071e-04
## GO:0032078  BP     1  1 3.688071e-04
## GO:0032076  BP     2  1 7.374933e-04
## GO:0002357  BP     3  1 1.106059e-03
## GO:0035685  BP     3  1 1.106059e-03
## GO:0035697  BP     4  1 1.474503e-03
## GO:0035684  BP     4  1 1.474503e-03
## GO:2000503  BP     4  1 1.474503e-03
## GO:0035821  BP   160  2 1.492174e-03
## GO:0006952  BP  1601  4 1.779928e-03
## GO:0035747  BP     5  1 1.842827e-03
## GO:2000501  BP     5  1 1.842827e-03
## GO:0006508  BP  1657  4 2.023079e-03
## GO:0031584  BP     6  1 2.211030e-03
## GO:2000110  BP     6  1 2.211030e-03
## GO:0034112  BP     6  1 2.211030e-03
## GO:0050904  BP     7  1 2.579112e-03
## GO:1903979  BP     7  1 2.579112e-03
## GO:0032074  BP     7  1 2.579112e-03
## GO:0033634  BP     7  1 2.579112e-03
## GO:0060754  BP     7  1 2.579112e-03
## GO:0032071  BP     7  1 2.579112e-03
## GO:0002274  BP   215  2 2.670426e-03
## GO:0060753  BP     8  1 2.947073e-03
## GO:0051607  BP   227  2 2.970738e-03
## GO:0097340  BP     9  1 3.314914e-03
## GO:0031622  BP     9  1 3.314914e-03
## GO:0032070  BP     9  1 3.314914e-03
## GO:0097341  BP     9  1 3.314914e-03
## GO:0002252  BP   879  3 3.324222e-03
## GO:0071888  BP    10  1 3.682634e-03
## GO:0043922  BP    10  1 3.682634e-03
## GO:0031620  BP    10  1 3.682634e-03
## GO:2000109  BP    10  1 3.682634e-03
## GO:0150079  BP    11  1 4.050234e-03
## GO:2000343  BP    11  1 4.050234e-03
## GO:0009615  BP   270  2 4.171272e-03
## GO:0072683  BP    12  1 4.417713e-03
## GO:0033632  BP    12  1 4.417713e-03
## GO:0051336  BP   985  3 4.587127e-03
## GO:0045321  BP   994  3 4.706173e-03
## GO:0001660  BP    13  1 4.785071e-03
## GO:0002551  BP    13  1 4.785071e-03
## GO:0031652  BP    13  1 4.785071e-03
## GO:0031269  BP    13  1 4.785071e-03
## GO:0019538  BP  5344  6 4.974224e-03
## GO:0097531  BP    14  1 5.152309e-03
## GO:0043031  BP    14  1 5.152309e-03
## GO:0010820  BP    14  1 5.152309e-03
## GO:2000341  BP    14  1 5.152309e-03
## GO:0072567  BP    15  1 5.519427e-03
## GO:0001771  BP    15  1 5.519427e-03
## GO:0070234  BP    15  1 5.519427e-03
## GO:0051712  BP    15  1 5.519427e-03
## GO:0031268  BP    15  1 5.519427e-03
## GO:0010819  BP    15  1 5.519427e-03
## GO:0031650  BP    15  1 5.519427e-03
## GO:1903978  BP    15  1 5.519427e-03
## GO:0033631  BP    16  1 5.886424e-03
## GO:0051709  BP    16  1 5.886424e-03
## GO:0001775  BP  1098  3 6.222045e-03
## GO:0140131  BP    17  1 6.253301e-03
## GO:0010818  BP    19  1 6.986693e-03
## GO:0090026  BP    19  1 6.986693e-03
## GO:0050727  BP   354  2 7.062182e-03
## GO:0048245  BP    20  1 7.353209e-03
## GO:0033033  BP    20  1 7.353209e-03
## GO:0033630  BP    20  1 7.353209e-03
## GO:0051707  BP  1172  3 7.463119e-03
## GO:0043207  BP  1174  3 7.498592e-03
## GO:0070230  BP    21  1 7.719604e-03
## GO:0010759  BP    21  1 7.719604e-03
## GO:1901623  BP    21  1 7.719604e-03
## GO:0031649  BP    22  1 8.085880e-03
## GO:0032897  BP    22  1 8.085880e-03
## GO:0031643  BP    22  1 8.085880e-03
## GO:0009607  BP  1208  3 8.117429e-03
## GO:0043900  BP   391  2 8.557002e-03
## GO:0072677  BP    24  1 8.818070e-03
## GO:0002418  BP    24  1 8.818070e-03
## GO:0052472  BP    24  1 8.818070e-03
## GO:0043921  BP    24  1 8.818070e-03
## GO:0052312  BP    24  1 8.818070e-03
## GO:0051346  BP   402  2 9.026818e-03
## GO:0006925  BP    25  1 9.183984e-03
## GO:0071677  BP    25  1 9.183984e-03
## GO:0150077  BP    25  1 9.183984e-03
## GO:0009605  BP  2515  4 9.262320e-03
## GO:0044419  BP   408  2 9.287935e-03
## GO:0070233  BP    26  1 9.549779e-03
## GO:1905523  BP    26  1 9.549779e-03
## GO:0090025  BP    26  1 9.549779e-03
## GO:0051354  BP    27  1 9.915454e-03
## GO:0032069  BP    27  1 9.915454e-03
## GO:0002347  BP    27  1 9.915454e-03
## GO:0002449  BP   425  2 1.004624e-02
## GO:0042119  BP    29  1 1.064644e-02
## GO:0002230  BP    29  1 1.064644e-02
## GO:0034110  BP    30  1 1.101176e-02
## GO:1901564  BP  6234  6 1.116510e-02
## GO:0002376  BP  2664  4 1.135982e-02
## GO:0010758  BP    31  1 1.137695e-02
## GO:0045672  BP    32  1 1.174203e-02
## GO:2000108  BP    33  1 1.210698e-02
## GO:2000406  BP    34  1 1.247182e-02
## GO:0033032  BP    34  1 1.247182e-02
## GO:0036230  BP    35  1 1.283653e-02
## GO:0033028  BP    37  1 1.356561e-02
## GO:1903318  BP    37  1 1.356561e-02
## GO:0010955  BP    37  1 1.356561e-02
## GO:0002675  BP    37  1 1.356561e-02
## GO:2000403  BP    38  1 1.392996e-02
## GO:0002443  BP   507  2 1.407914e-02
## GO:0044364  BP    39  1 1.429420e-02
## GO:0031640  BP    39  1 1.429420e-02
## GO:0044267  BP  4569  5 1.477982e-02
## GO:0006953  BP    41  1 1.502231e-02
## GO:0033628  BP    41  1 1.502231e-02
## GO:1905521  BP    41  1 1.502231e-02
## GO:0046782  BP    41  1 1.502231e-02
## GO:0010518  BP    42  1 1.538619e-02
## GO:0050691  BP    42  1 1.538619e-02
## GO:0048246  BP    43  1 1.574995e-02
## GO:0070232  BP    43  1 1.574995e-02
## GO:0019083  BP    44  1 1.611359e-02
## GO:0002269  BP    45  1 1.647711e-02
## GO:0001774  BP    45  1 1.647711e-02
## GO:2000404  BP    46  1 1.684051e-02
## GO:0070229  BP    49  1 1.793000e-02
## GO:0031663  BP    50  1 1.829292e-02
## GO:0071622  BP    50  1 1.829292e-02
## GO:0071675  BP    50  1 1.829292e-02
## GO:0048247  BP    52  1 1.901841e-02
## GO:0006955  BP  1652  3 1.909624e-02
## GO:0061900  BP    53  1 1.938097e-02
## GO:0043392  BP    53  1 1.938097e-02
## GO:0010517  BP    53  1 1.938097e-02
## GO:0060193  BP    54  1 1.974342e-02
## GO:0043030  BP    54  1 1.974342e-02
## GO:0002548  BP    55  1 2.010575e-02
## GO:0042531  BP    55  1 2.010575e-02
## GO:0051259  BP   617  2 2.042278e-02
## GO:1905517  BP    56  1 2.046795e-02
## GO:0031641  BP    56  1 2.046795e-02
## GO:0045071  BP    57  1 2.083004e-02
## GO:0019080  BP    57  1 2.083004e-02
## GO:0070231  BP    58  1 2.119201e-02
## GO:0072678  BP    58  1 2.119201e-02
## GO:0043065  BP   632  2 2.136706e-02
## GO:2000401  BP    59  1 2.155387e-02
## GO:0043068  BP   637  2 2.168593e-02
## GO:0031347  BP   640  2 2.187823e-02
## GO:0070098  BP    60  1 2.191560e-02
## GO:0045744  BP    60  1 2.191560e-02
## GO:0051962  BP   651  2 2.258959e-02
## GO:0014911  BP    62  1 2.263871e-02
## GO:0002694  BP   652  2 2.265475e-02
## GO:0032722  BP    63  1 2.300008e-02
## GO:0009988  BP    64  1 2.336134e-02
## GO:0002763  BP    64  1 2.336134e-02
## GO:0098542  BP   667  2 2.364176e-02
## GO:0033627  BP    65  1 2.372248e-02
## GO:0045123  BP    65  1 2.372248e-02
## GO:0150076  BP    65  1 2.372248e-02
## GO:0002228  BP    66  1 2.408350e-02
## GO:0050790  BP  1807  3 2.426682e-02
## GO:0002673  BP    67  1 2.444440e-02
## GO:0043086  BP   682  2 2.464678e-02
## GO:0034109  BP    68  1 2.480518e-02
## GO:2000107  BP    69  1 2.516584e-02
## GO:0006954  BP   691  2 2.525837e-02
## GO:0050865  BP   693  2 2.539514e-02
## GO:1990869  BP    70  1 2.552639e-02
## GO:1990868  BP    70  1 2.552639e-02
## GO:0010942  BP   695  2 2.553223e-02
## GO:0051603  BP   696  2 2.560089e-02
## GO:0014068  BP    71  1 2.588682e-02
## GO:0042509  BP    71  1 2.588682e-02
## GO:0006915  BP  1867  3 2.646131e-02
## GO:0051851  BP    73  1 2.660731e-02
## GO:0060191  BP    73  1 2.660731e-02
## GO:0045670  BP    73  1 2.660731e-02
## GO:0007260  BP    75  1 2.732734e-02
## GO:0001913  BP    76  1 2.768717e-02
## GO:0070228  BP    76  1 2.768717e-02
## GO:0012501  BP  1908  3 2.802336e-02
## GO:0071347  BP    77  1 2.804689e-02
## GO:0050688  BP    77  1 2.804689e-02
## GO:0044257  BP   740  2 2.869900e-02
## GO:0051702  BP    79  1 2.876597e-02
## GO:0070613  BP    80  1 2.912533e-02
## GO:0031646  BP    81  1 2.948457e-02
## GO:1903901  BP    82  1 2.984370e-02
## GO:1903317  BP    82  1 2.984370e-02
## GO:0071674  BP    83  1 3.020270e-02
## GO:0032101  BP   770  2 3.089618e-02
## GO:0051341  BP    85  1 3.092036e-02
## GO:0014910  BP    85  1 3.092036e-02
## GO:2000117  BP    87  1 3.163755e-02
## GO:0002690  BP    87  1 3.163755e-02
## GO:0032642  BP    88  1 3.199597e-02
## GO:0006950  BP  3640  4 3.327516e-02
## GO:0032602  BP    92  1 3.342846e-02
## GO:0014909  BP    92  1 3.342846e-02
## GO:0042116  BP    93  1 3.378628e-02
## GO:0051817  BP    93  1 3.378628e-02
## GO:0045069  BP    94  1 3.414399e-02
## GO:0070555  BP    94  1 3.414399e-02
## GO:0008219  BP  2065  3 3.447637e-02
## GO:0014066  BP    96  1 3.485906e-02
## GO:0072676  BP    97  1 3.521642e-02
## GO:0048525  BP    97  1 3.521642e-02
## GO:0070227  BP    98  1 3.557365e-02
## GO:0042102  BP    98  1 3.557365e-02
## GO:0045639  BP    99  1 3.593078e-02
## GO:0030593  BP   100  1 3.628778e-02
## GO:0031343  BP   100  1 3.628778e-02
## GO:0046649  BP   841  2 3.636116e-02
## GO:0045087  BP   842  2 3.644073e-02
## GO:0046427  BP   102  1 3.700144e-02
## GO:0014812  BP   106  1 3.842734e-02
## GO:1904894  BP   106  1 3.842734e-02
## GO:0048661  BP   106  1 3.842734e-02
## GO:0030316  BP   108  1 3.913958e-02
## GO:2000106  BP   108  1 3.913958e-02
## GO:0002688  BP   111  1 4.020707e-02
## GO:0019079  BP   111  1 4.020707e-02
## GO:0030163  BP   898  2 4.100842e-02
## GO:0071346  BP   115  1 4.162876e-02
## GO:0009617  BP   907  2 4.176268e-02
## GO:1990266  BP   119  1 4.304856e-02
## GO:0002526  BP   122  1 4.411219e-02
## GO:0071621  BP   123  1 4.446650e-02
## GO:0002761  BP   125  1 4.517477e-02
## GO:0014065  BP   127  1 4.588257e-02
## GO:0051101  BP   129  1 4.658991e-02
## GO:0008277  BP   130  1 4.694340e-02
## GO:0031341  BP   131  1 4.729678e-02
## GO:0071887  BP   132  1 4.765004e-02
## GO:0051928  BP   134  1 4.835621e-02
## GO:0050671  BP   136  1 4.906192e-02
## GO:0002456  BP   137  1 4.941459e-02
## GO:0034341  BP   137  1 4.941459e-02
## GO:0032946  BP   138  1 4.976716e-02
## GO:0051704  BP  2389  3 5.016386e-02
## GO:0044092  BP  1006  2 5.041380e-02
## GO:0050921  BP   140  1 5.047193e-02
## GO:0001909  BP   141  1 5.082415e-02
## GO:0044265  BP  1013  2 5.104940e-02
## GO:0050729  BP   142  1 5.117624e-02
## GO:0002687  BP   144  1 5.188009e-02
## GO:0043170  BP  8488  6 5.199207e-02
## GO:0070665  BP   145  1 5.223184e-02
## GO:1903900  BP   145  1 5.223184e-02
## GO:0097530  BP   146  1 5.258347e-02
## GO:0002831  BP   147  1 5.293499e-02
## GO:0050728  BP   149  1 5.363767e-02
## GO:0065009  BP  2477  3 5.497314e-02
## GO:0051053  BP   153  1 5.504166e-02
## GO:0051960  BP  1071  2 5.643242e-02
## GO:0048015  BP   157  1 5.644379e-02
## GO:0042552  BP   159  1 5.714416e-02
## GO:0048017  BP   160  1 5.749417e-02
## GO:0008366  BP   162  1 5.819385e-02
## GO:0071356  BP   162  1 5.819385e-02
## GO:0007272  BP   162  1 5.819385e-02
## GO:0048660  BP   163  1 5.854352e-02
## GO:0043901  BP   165  1 5.924250e-02
## GO:0046425  BP   165  1 5.924250e-02
## GO:1902107  BP   168  1 6.029012e-02
## GO:0048659  BP   168  1 6.029012e-02
## GO:1904892  BP   170  1 6.098795e-02
## GO:0042129  BP   170  1 6.098795e-02
## GO:0051100  BP   173  1 6.203383e-02
## GO:0031644  BP   173  1 6.203383e-02
## GO:0043902  BP   175  1 6.273052e-02
## GO:0010951  BP   178  1 6.377468e-02
## GO:0001906  BP   179  1 6.412250e-02
## GO:0034612  BP   179  1 6.412250e-02
## GO:0001659  BP   179  1 6.412250e-02
## GO:1901565  BP  1151  2 6.418649e-02
## GO:0007259  BP   182  1 6.516528e-02
## GO:0002695  BP   182  1 6.516528e-02
## GO:0051262  BP   183  1 6.551265e-02
## GO:0050792  BP   183  1 6.551265e-02
## GO:0006807  BP  8923  6 6.581241e-02
## GO:0045766  BP   185  1 6.620703e-02
## GO:0050796  BP   185  1 6.620703e-02
## GO:0043491  BP   186  1 6.655405e-02
## GO:0097696  BP   187  1 6.690096e-02
## GO:0050870  BP   187  1 6.690096e-02
## GO:0050731  BP   195  1 6.967208e-02
## GO:0043903  BP   198  1 7.070936e-02
## GO:0009057  BP  1218  2 7.095910e-02
## GO:0050679  BP   199  1 7.105490e-02
## GO:0019058  BP   199  1 7.105490e-02
## GO:0002685  BP   201  1 7.174562e-02
## GO:0050866  BP   203  1 7.243588e-02
## GO:1903039  BP   203  1 7.243588e-02
## GO:1904018  BP   204  1 7.278085e-02
## GO:0042098  BP   205  1 7.312569e-02
## GO:0097529  BP   207  1 7.381505e-02
## GO:0007623  BP   208  1 7.415955e-02
## GO:1903708  BP   208  1 7.415955e-02
## GO:0030595  BP   211  1 7.519239e-02
## GO:0050920  BP   213  1 7.588037e-02
## GO:0045637  BP   215  1 7.656791e-02
## GO:0002573  BP   216  1 7.691150e-02
## GO:0043547  BP   217  1 7.725498e-02
## GO:0070374  BP   218  1 7.759835e-02
## GO:0031348  BP   220  1 7.828475e-02
## GO:0030073  BP   223  1 7.931349e-02
## GO:0050670  BP   225  1 7.999875e-02
## GO:2000116  BP   226  1 8.034121e-02
## GO:0032944  BP   227  1 8.068356e-02
## GO:0090276  BP   228  1 8.102579e-02
## GO:0033002  BP   234  1 8.307682e-02
## GO:0080134  BP  1337  2 8.357153e-02
## GO:0070663  BP   238  1 8.444191e-02
## GO:0016485  BP   239  1 8.478290e-02
## GO:0044238  BP  9443  6 8.548085e-02
## GO:0010466  BP   242  1 8.580519e-02
## GO:0022409  BP   242  1 8.580519e-02
## GO:1901215  BP   244  1 8.648616e-02
## GO:0044260  BP  7099  5 8.801329e-02
## GO:0050730  BP   263  1 9.293287e-02
## GO:0008037  BP   267  1 9.428490e-02
## GO:0051924  BP   272  1 9.597243e-02
## GO:0030072  BP   278  1 9.799378e-02
## GO:0002682  BP  1473  2 9.882238e-02
## GO:0071222  BP   282  1 9.933911e-02
## GO:0016032  BP   283  1 9.967516e-02
## GO:1903037  BP   287  1 1.010183e-01
## GO:0071219  BP   290  1 1.020244e-01
## GO:0048511  BP   291  1 1.023596e-01
## GO:1902105  BP   294  1 1.033644e-01
## GO:0043087  BP   295  1 1.036991e-01
## GO:0042981  BP  1516  2 1.038147e-01
## GO:0060326  BP   299  1 1.050369e-01
## GO:0051604  BP   300  1 1.053710e-01
## GO:0046883  BP   302  1 1.060390e-01
## GO:0043067  BP  1537  2 1.062809e-01
## GO:0051094  BP  1540  2 1.066346e-01
## GO:0050863  BP   304  1 1.067066e-01
## GO:0070372  BP   306  1 1.073737e-01
## GO:0045765  BP   307  1 1.077071e-01
## GO:0046651  BP   308  1 1.080404e-01
## GO:0032943  BP   310  1 1.087066e-01
## GO:0032103  BP   312  1 1.093724e-01
## GO:0071216  BP   313  1 1.097051e-01
## GO:0048585  BP  1576  2 1.109081e-01
## GO:0071704  BP 10008  6 1.110151e-01
## GO:0007159  BP   319  1 1.116991e-01
## GO:0018108  BP   319  1 1.116991e-01
## GO:0018212  BP   322  1 1.126946e-01
## GO:0043270  BP   322  1 1.126946e-01
## GO:0070371  BP   323  1 1.130262e-01
## GO:0070661  BP   331  1 1.156752e-01
## GO:0032102  BP   336  1 1.173273e-01
## GO:0052548  BP   337  1 1.176574e-01
## GO:0050900  BP   340  1 1.186470e-01
## GO:0019221  BP   341  1 1.189766e-01
## GO:1901342  BP   341  1 1.189766e-01
## GO:0044403  BP   343  1 1.196356e-01
## GO:0042127  BP  1649  2 1.197278e-01
## GO:0009636  BP   344  1 1.199649e-01
## GO:0045861  BP   349  1 1.216098e-01
## GO:0010941  BP  1685  2 1.241498e-01
## GO:0050678  BP   358  1 1.245638e-01
## GO:0032496  BP   359  1 1.248915e-01
## GO:0046879  BP   365  1 1.268552e-01
## GO:1901214  BP   368  1 1.278356e-01
## GO:0031349  BP   370  1 1.284887e-01
## GO:0009914  BP   373  1 1.294675e-01
## GO:0065003  BP  1729  2 1.296163e-01
## GO:0006887  BP   375  1 1.301194e-01
## GO:0002237  BP   377  1 1.307710e-01
## GO:0051260  BP   383  1 1.327230e-01
## GO:0008152  BP 10485  6 1.361186e-01
## GO:0051251  BP   394  1 1.362916e-01
## GO:0022407  BP   395  1 1.366154e-01
## GO:0030099  BP   401  1 1.385557e-01
## GO:0051098  BP   403  1 1.392016e-01
## GO:0070997  BP   405  1 1.398471e-01
## GO:0006468  BP  1815  2 1.404866e-01
## GO:1903706  BP   407  1 1.404922e-01
## GO:0045785  BP   411  1 1.417810e-01
## GO:0052547  BP   411  1 1.417810e-01
## GO:0002697  BP   420  1 1.446746e-01
## GO:0010959  BP   421  1 1.449956e-01
## GO:0006816  BP   423  1 1.456372e-01
## GO:1901575  BP  1857  2 1.458796e-01
## GO:0050673  BP   425  1 1.462784e-01
## GO:0051052  BP   440  1 1.510738e-01
## GO:0002460  BP   441  1 1.513926e-01
## GO:0002696  BP   446  1 1.529852e-01
## GO:0001819  BP   449  1 1.539395e-01
## GO:0051240  BP  1929  2 1.552441e-01
## GO:0050867  BP   461  1 1.577471e-01
## GO:0045666  BP   461  1 1.577471e-01
## GO:0043933  BP  1956  2 1.587927e-01
## GO:0070838  BP   472  1 1.612240e-01
## GO:0006874  BP   473  1 1.615394e-01
## GO:0002683  BP   473  1 1.615394e-01
## GO:0072511  BP   475  1 1.621700e-01
## GO:0008283  BP  1994  2 1.638193e-01
## GO:0044248  BP  1996  2 1.640849e-01
## GO:0071407  BP   482  1 1.643737e-01
## GO:0048871  BP   486  1 1.656307e-01
## GO:0120031  BP   488  1 1.662585e-01
## GO:0055074  BP   489  1 1.665723e-01
## GO:0050708  BP   490  1 1.668859e-01
## GO:0042110  BP   491  1 1.671995e-01
## GO:0072503  BP   497  1 1.690786e-01
## GO:0030031  BP   501  1 1.703293e-01
## GO:0048518  BP  6171  4 1.711085e-01
## GO:0051345  BP   510  1 1.731371e-01
## GO:0001525  BP   513  1 1.740712e-01
## GO:0043410  BP   519  1 1.759365e-01
## GO:0072507  BP   521  1 1.765575e-01
## GO:0023061  BP   523  1 1.771780e-01
## GO:0002791  BP   529  1 1.790371e-01
## GO:0030335  BP   539  1 1.821273e-01
## GO:0016310  BP  2166  2 1.870011e-01
## GO:0051249  BP   555  1 1.870501e-01
## GO:0010817  BP   557  1 1.876636e-01
## GO:2000147  BP   561  1 1.888894e-01
## GO:2000026  BP  2184  2 1.894639e-01
## GO:0002521  BP   567  1 1.907249e-01
## GO:0051272  BP   580  1 1.946893e-01
## GO:0050769  BP   580  1 1.946893e-01
## GO:0006875  BP   582  1 1.952977e-01
## GO:0002250  BP   583  1 1.956017e-01
## GO:0040017  BP   593  1 1.986364e-01
## GO:0009056  BP  2257  2 1.995155e-01
## GO:0044057  BP   596  1 1.995448e-01
## GO:0006935  BP   597  1 1.998474e-01
## GO:0042330  BP   600  1 2.007546e-01
## GO:0051172  BP  2271  2 2.014543e-01
## GO:0009306  BP   605  1 2.022646e-01
## GO:0071396  BP   612  1 2.043743e-01
## GO:0048514  BP   622  1 2.073795e-01
## GO:0007399  BP  2333  2 2.100796e-01
## GO:0030003  BP   641  1 2.130617e-01
## GO:0002790  BP   652  1 2.163349e-01
## GO:0006873  BP   655  1 2.172254e-01
## GO:0010720  BP   659  1 2.184115e-01
## GO:0055065  BP   664  1 2.198917e-01
## GO:0001817  BP   679  1 2.243176e-01
## GO:0031324  BP  2449  2 2.263733e-01
## GO:0030155  BP   686  1 2.263754e-01
## GO:0032268  BP  2494  2 2.327421e-01
## GO:0051223  BP   708  1 2.328111e-01
## GO:0044237  BP  9374  5 2.342759e-01
## GO:0030162  BP   716  1 2.351396e-01
## GO:0001568  BP   719  1 2.360111e-01
## GO:0098609  BP   720  1 2.363014e-01
## GO:0055080  BP   732  1 2.397776e-01
## GO:0043269  BP   732  1 2.397776e-01
## GO:0014070  BP   734  1 2.403556e-01
## GO:0048523  BP  4687  3 2.410341e-01
## GO:0043408  BP   737  1 2.412219e-01
## GO:0070201  BP   740  1 2.420872e-01
## GO:0098771  BP   746  1 2.438154e-01
## GO:0090087  BP   749  1 2.446781e-01
## GO:0001944  BP   752  1 2.455400e-01
## GO:0010605  BP  2584  2 2.455477e-01
## GO:0001816  BP   755  1 2.464010e-01
## GO:0050896  BP  9531  5 2.471312e-01
## GO:0072358  BP   765  1 2.492647e-01
## GO:0045664  BP   776  1 2.524036e-01
## GO:0000165  BP   793  1 2.572317e-01
## GO:0051246  BP  2687  2 2.602961e-01
## GO:0055082  BP   810  1 2.620320e-01
## GO:0023014  BP   810  1 2.620320e-01
## GO:0050801  BP   812  1 2.625949e-01
## GO:0050793  BP  2721  2 2.651823e-01
## GO:0033993  BP   822  1 2.654039e-01
## GO:1903530  BP   831  1 2.679237e-01
## GO:0030001  BP   839  1 2.701572e-01
## GO:0022607  BP  2807  2 2.775729e-01
## GO:0009892  BP  2843  2 2.827706e-01
## GO:0030334  BP   892  1 2.848015e-01
## GO:0051171  BP  5104  3 2.862336e-01
## GO:0035239  BP   905  1 2.883533e-01
## GO:0071345  BP   907  1 2.888984e-01
## GO:0051046  BP   911  1 2.899873e-01
## GO:0006259  BP   915  1 2.910748e-01
## GO:0030097  BP   921  1 2.927033e-01
## GO:0043066  BP   921  1 2.927033e-01
## GO:0019725  BP   930  1 2.951397e-01
## GO:0006796  BP  2933  2 2.957849e-01
## GO:0043069  BP   939  1 2.975687e-01
## GO:2000145  BP   939  1 2.975687e-01
## GO:0006793  BP  2955  2 2.989694e-01
## GO:0050767  BP   956  1 3.021366e-01
## GO:0080090  BP  5248  3 3.022390e-01
## GO:0048519  BP  5278  3 3.055942e-01
## GO:0048534  BP   972  1 3.064115e-01
## GO:0008284  BP   972  1 3.064115e-01
## GO:0001934  BP   989  1 3.109282e-01
## GO:0044085  BP  3041  2 3.114242e-01
## GO:0032269  BP  1003  1 3.146281e-01
## GO:0034097  BP  1004  1 3.148917e-01
## GO:1902533  BP  1005  1 3.151553e-01
## GO:0040012  BP  1018  1 3.185728e-01
## GO:0031323  BP  5401  3 3.194164e-01
## GO:0051270  BP  1028  1 3.211913e-01
## GO:0002520  BP  1030  1 3.217139e-01
## GO:0032880  BP  1038  1 3.238009e-01
## GO:0042327  BP  1043  1 3.251023e-01
## GO:0060548  BP  1049  1 3.266611e-01
## GO:0048522  BP  5469  3 3.270991e-01
## GO:0043085  BP  1051  1 3.271800e-01
## GO:0060255  BP  5486  3 3.290238e-01
## GO:0051248  BP  1070  1 3.320917e-01
## GO:0032940  BP  1070  1 3.320917e-01
## GO:0002684  BP  1072  1 3.326068e-01
## GO:0022603  BP  1076  1 3.336361e-01
## GO:0051050  BP  1081  1 3.349207e-01
## GO:0060284  BP  1093  1 3.379947e-01
## GO:0045597  BP  1097  1 3.390166e-01
## GO:0006812  BP  1101  1 3.400371e-01
## GO:0051239  BP  3248  2 3.413864e-01
## GO:0045937  BP  1112  1 3.428362e-01
## GO:0010562  BP  1112  1 3.428362e-01
## GO:0035295  BP  1122  1 3.453716e-01
## GO:0018193  BP  1137  1 3.491585e-01
## GO:0072359  BP  1143  1 3.506678e-01
## GO:0048646  BP  1157  1 3.541774e-01
## GO:0019219  BP  3352  2 3.563954e-01
## GO:0009968  BP  1175  1 3.586650e-01
## GO:0048878  BP  1182  1 3.604026e-01
## GO:1901701  BP  1206  1 3.663286e-01
## GO:0031401  BP  1210  1 3.673115e-01
## GO:0006464  BP  3453  2 3.709206e-01
## GO:0036211  BP  3453  2 3.709206e-01
## GO:0046903  BP  1227  1 3.714737e-01
## GO:0019222  BP  5953  3 3.823522e-01
## GO:0007155  BP  1298  1 3.885953e-01
## GO:0010648  BP  1306  1 3.904983e-01
## GO:0022610  BP  1310  1 3.914478e-01
## GO:0023057  BP  1310  1 3.914478e-01
## GO:0043412  BP  3634  2 3.967786e-01
## GO:0045934  BP  1395  1 4.113163e-01
## GO:0001932  BP  1410  1 4.147621e-01
## GO:0044093  BP  1429  1 4.191009e-01
## GO:0016477  BP  1447  1 4.231850e-01
## GO:0010468  BP  3860  2 4.286537e-01
## GO:0050789  BP 11520  5 4.315476e-01
## GO:0048583  BP  3883  2 4.318670e-01
## GO:0030182  BP  1494  1 4.337289e-01
## GO:0016192  BP  1501  1 4.352845e-01
## GO:0009967  BP  1504  1 4.359500e-01
## GO:0120036  BP  1526  1 4.408093e-01
## GO:0032270  BP  1532  1 4.421281e-01
## GO:0042325  BP  1533  1 4.423476e-01
## GO:0006811  BP  1565  1 4.493321e-01
## GO:0030030  BP  1572  1 4.508496e-01
## GO:1901700  BP  1589  1 4.545194e-01
## GO:0048870  BP  1595  1 4.558094e-01
## GO:0051674  BP  1595  1 4.558094e-01
## GO:0007267  BP  1596  1 4.560241e-01
## GO:0051247  BP  1639  1 4.651869e-01
## GO:0048699  BP  1672  1 4.721254e-01
## GO:0019220  BP  1692  1 4.762915e-01
## GO:0051174  BP  1693  1 4.764991e-01
## GO:1902531  BP  1710  1 4.800160e-01
## GO:0090304  BP  4277  2 4.858541e-01
## GO:0015031  BP  1746  1 4.873945e-01
## GO:0031399  BP  1760  1 4.902386e-01
## GO:0065007  BP 12135  5 4.932929e-01
## GO:0022008  BP  1778  1 4.938748e-01
## GO:0010629  BP  1783  1 4.948808e-01
## GO:0015833  BP  1797  1 4.976880e-01
## GO:0042886  BP  1817  1 5.016742e-01
## GO:0040011  BP  1817  1 5.016742e-01
## GO:0010647  BP  1854  1 5.089747e-01
## GO:0045184  BP  1856  1 5.093666e-01
## GO:0023056  BP  1860  1 5.101495e-01
## GO:0042592  BP  1887  1 5.154055e-01
## GO:0031328  BP  1903  1 5.184965e-01
## GO:0045595  BP  1909  1 5.196510e-01
## GO:0007186  BP  1921  1 5.219528e-01
## GO:0009891  BP  1943  1 5.261473e-01
## GO:0051049  BP  1946  1 5.267167e-01
## GO:0010628  BP  1981  1 5.333153e-01
## GO:0006928  BP  2014  1 5.394618e-01
## GO:0048731  BP  4746  2 5.470002e-01
## GO:0006139  BP  4813  2 5.554197e-01
## GO:0010467  BP  4814  2 5.555448e-01
## GO:0071705  BP  2133  1 5.610333e-01
## GO:0046483  BP  4940  2 5.711475e-01
## GO:0006725  BP  5012  2 5.799264e-01
## GO:0048584  BP  2294  1 5.887874e-01
## GO:0050877  BP  2299  1 5.896238e-01
## GO:0009987  BP 15803  6 6.028407e-01
## GO:1901360  BP  5208  2 6.033065e-01
## GO:0048468  BP  2406  1 6.071633e-01
## GO:0071310  BP  2433  1 6.114825e-01
## GO:0050794  BP 10774  4 6.188049e-01
## GO:0007275  BP  5362  2 6.211319e-01
## GO:0007166  BP  2497  1 6.215524e-01
## GO:0071702  BP  2505  1 6.227947e-01
## GO:0008104  BP  2578  1 6.339642e-01
## GO:0008150  BP 23210  9 6.368752e-01
## GO:0035556  BP  2608  1 6.384685e-01
## GO:0034641  BP  5547  2 6.418964e-01
## GO:0009653  BP  2744  1 6.582760e-01
## GO:0009966  BP  2780  1 6.633550e-01
## GO:2001141  BP  2801  1 6.662866e-01
## GO:0032879  BP  2835  1 6.709850e-01
## GO:0048856  BP  5871  2 6.765204e-01
## GO:0032774  BP  2896  1 6.792673e-01
## GO:0033036  BP  2901  1 6.799379e-01
## GO:0003008  BP  2939  1 6.849937e-01
## GO:0070887  BP  3023  1 6.959187e-01
## GO:0016043  BP  6083  2 6.979593e-01
## GO:0051252  BP  3049  1 6.992313e-01
## GO:0051173  BP  3061  1 7.007493e-01
## GO:0010033  BP  3070  1 7.018834e-01
## GO:0032502  BP  6258  2 7.149280e-01
## GO:0071840  BP  6266  2 7.156880e-01
## GO:0031325  BP  3201  1 7.179632e-01
## GO:0010604  BP  3212  1 7.192777e-01
## GO:0034654  BP  3310  1 7.307501e-01
## GO:0010556  BP  3311  1 7.308649e-01
## GO:0010646  BP  3338  1 7.339504e-01
## GO:0023051  BP  3360  1 7.364412e-01
## GO:0018130  BP  3374  1 7.380154e-01
## GO:0019438  BP  3386  1 7.393581e-01
## GO:0031326  BP  3470  1 7.485868e-01
## GO:0009893  BP  3486  1 7.503114e-01
## GO:0048513  BP  3504  1 7.522389e-01
## GO:1901362  BP  3510  1 7.528785e-01
## GO:0009889  BP  3542  1 7.562648e-01
## GO:0016070  BP  3761  1 7.783538e-01
## GO:0044271  BP  3993  1 7.997960e-01
## GO:0065008  BP  4051  1 8.048595e-01
## GO:0009059  BP  4121  1 8.108189e-01
## GO:0042221  BP  4136  1 8.120746e-01
## GO:0030154  BP  4218  1 8.188093e-01
## GO:0006810  BP  4398  1 8.328459e-01
## GO:0048869  BP  4443  1 8.362003e-01
## GO:0051234  BP  4538  1 8.430860e-01
## GO:0032501  BP  8233  2 8.625736e-01
## GO:0044249  BP  4938  1 8.693414e-01
## GO:1901576  BP  5031  1 8.748546e-01
## GO:0009058  BP  5125  1 8.802161e-01
## GO:0051179  BP  5950  1 9.192008e-01
## GO:0007165  BP  6028  1 9.222238e-01
## GO:0023052  BP  6579  1 9.408682e-01
## GO:0007154  BP  6648  1 9.428972e-01
## GO:0051716  BP  7810  1 9.689520e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0031394  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:2001280  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:0031392  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:2001279  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0045060  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0043383  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0045059  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:0045723  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:1902230  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0001516  BP    25  0 1.000000e+00
## GO:0046457  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0045061  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:0032743  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:1902229  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0043368  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0006636  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0046456  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0006693  BP    40  0 1.000000e+00
## GO:0006692  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:0042304  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0045923  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:1901570  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0002720  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0045058  BP    55  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0032663  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0032677  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0032623  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0032637  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:2001021  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0042108  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0002718  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:0048524  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0033077  BP    88  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0019217  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:0046889  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0045582  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:2001243  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0032755  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0002702  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0007584  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0033559  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0002367  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:1902106  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0045621  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0042035  BP   109  0 1.000000e+00
## GO:0032649  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0006690  BP   110  0 1.000000e+00
## GO:0001776  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0042100  BP   112  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0008630  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0043123  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0042089  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0032609  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0042107  BP   125  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0010565  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:1901568  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0006633  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0002821  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:0002700  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0045580  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0051250  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0032675  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0062013  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0045834  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:1903707  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:2001236  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0032635  BP   162  0 1.000000e+00
## GO:0002792  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0032680  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0043122  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:1903555  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0032640  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:2001242  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:0046890  BP   170  0 1.000000e+00
## GO:0071706  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0045619  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0022408  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0002822  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:0007249  BP   193  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0042180  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0007160  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0051224  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0002819  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:1904950  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:2001020  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050707  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:0097191  BP   229  0 1.000000e+00
## GO:1901617  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:2001234  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:1903531  BP   232  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:0050663  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0031330  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0090068  BP   249  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0001818  BP   259  0 1.000000e+00
## GO:0002699  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0051048  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0072330  BP   264  0 1.000000e+00
## GO:0050864  BP   264  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0030217  BP   269  0 1.000000e+00
## GO:0002366  BP   269  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0002263  BP   273  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:2000146  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0007162  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0097193  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:0009895  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0050851  BP   295  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0048872  BP   315  0 1.000000e+00
## GO:0051271  BP   316  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0042063  BP   323  0 1.000000e+00
## GO:0043434  BP   324  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0002429  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0040013  BP   332  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0002768  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0019216  BP   338  0 1.000000e+00
## GO:0031589  BP   339  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0002440  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045787  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0062012  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0046394  BP   362  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0016053  BP   363  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031667  BP   371  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006631  BP   376  0 1.000000e+00
## GO:0042176  BP   378  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0035690  BP   380  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0001503  BP   381  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:1901652  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0060249  BP   392  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0030098  BP   395  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0006979  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0009991  BP   401  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0042113  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:2001233  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0071900  BP   427  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0051222  BP   435  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0032386  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0048608  BP   449  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0002757  BP   450  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0061458  BP   453  0 1.000000e+00
## GO:1904951  BP   454  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0002764  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0048732  BP   467  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:1901615  BP   481  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0032870  BP   518  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0002253  BP   526  0 1.000000e+00
## GO:1902532  BP   527  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0001701  BP   538  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0051051  BP   540  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0008610  BP   545  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0007169  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0032787  BP   570  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0010564  BP   585  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0097190  BP   605  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0007420  BP   634  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0048598  BP   637  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0044283  BP   650  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0045859  BP   662  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0080135  BP   666  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0008285  BP   681  0 1.000000e+00
## GO:0097435  BP   681  0 1.000000e+00
## GO:0060322  BP   688  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0031329  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0009725  BP   697  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043549  BP   728  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0006974  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0030029  BP   746  0 1.000000e+00
## GO:0050778  BP   747  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0061024  BP   780  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0003006  BP   791  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0045596  BP   799  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0009894  BP   821  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0043009  BP   824  0 1.000000e+00
## GO:0051338  BP   832  0 1.000000e+00
## GO:0009792  BP   841  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0006886  BP   882  0 1.000000e+00
## GO:0010243  BP   883  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007417  BP   888  0 1.000000e+00
## GO:0007167  BP   890  0 1.000000e+00
## GO:0042493  BP   894  0 1.000000e+00
## GO:0019752  BP   902  0 1.000000e+00
## GO:0050776  BP   903  0 1.000000e+00
## GO:0044255  BP   932  0 1.000000e+00
## GO:0043436  BP   941  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0051726  BP   955  0 1.000000e+00
## GO:0060341  BP   958  0 1.000000e+00
## GO:0006082  BP   968  0 1.000000e+00
## GO:1901698  BP   982  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0051093  BP  1070  0 1.000000e+00
## GO:0031175  BP  1083  0 1.000000e+00
## GO:0009887  BP  1090  0 1.000000e+00
## GO:0040007  BP  1097  0 1.000000e+00
## GO:0000902  BP  1100  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0022402  BP  1108  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0060429  BP  1172  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:0032989  BP  1211  0 1.000000e+00
## GO:0048666  BP  1222  0 1.000000e+00
## GO:0071495  BP  1223  0 1.000000e+00
## GO:0045944  BP  1226  0 1.000000e+00
## GO:0009790  BP  1231  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0006629  BP  1258  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051253  BP  1269  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0007010  BP  1305  0 1.000000e+00
## GO:0051241  BP  1343  0 1.000000e+00
## GO:2000113  BP  1379  0 1.000000e+00
## GO:0009719  BP  1409  0 1.000000e+00
## GO:0010558  BP  1414  0 1.000000e+00
## GO:0031327  BP  1471  0 1.000000e+00
## GO:0022414  BP  1471  0 1.000000e+00
## GO:0000003  BP  1472  0 1.000000e+00
## GO:0046907  BP  1502  0 1.000000e+00
## GO:0009890  BP  1509  0 1.000000e+00
## GO:0045893  BP  1536  0 1.000000e+00
## GO:1903508  BP  1540  0 1.000000e+00
## GO:1902680  BP  1541  0 1.000000e+00
## GO:1901566  BP  1599  0 1.000000e+00
## GO:0051254  BP  1638  0 1.000000e+00
## GO:0007049  BP  1639  0 1.000000e+00
## GO:0034613  BP  1676  0 1.000000e+00
## GO:0070727  BP  1686  0 1.000000e+00
## GO:0044281  BP  1753  0 1.000000e+00
## GO:0033554  BP  1763  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0010557  BP  1799  0 1.000000e+00
## GO:0045935  BP  1833  0 1.000000e+00
## GO:0051649  BP  1906  0 1.000000e+00
## GO:0009888  BP  1956  0 1.000000e+00
## GO:0006357  BP  1993  0 1.000000e+00
## GO:0006366  BP  2049  0 1.000000e+00
## GO:0051128  BP  2558  0 1.000000e+00
## GO:0051641  BP  2592  0 1.000000e+00
## GO:0006355  BP  2784  0 1.000000e+00
## GO:1903506  BP  2792  0 1.000000e+00
## GO:0006351  BP  2875  0 1.000000e+00
## GO:0097659  BP  2883  0 1.000000e+00
## GO:2000112  BP  3219  0 1.000000e+00
## GO:0006996  BP  3568  0 1.000000e+00
## GO:0034645  BP  4022  0 1.000000e+00
## 
## [[1]][[8]]
##                                                                                                                                                           Term
## GO:0006997                                                                                                                                nucleus organization
## GO:0030575                                                                                                                           nuclear body organization
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0002432                                                                                                                                 granuloma formation
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0006396                                                                                                                                      RNA processing
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0008283                                                                                                                                  cell proliferation
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0002467                                                                                                                           germinal center formation
## GO:0030238                                                                                                                              male sex determination
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0051450                                                                                                                              myoblast proliferation
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0008380                                                                                                                                        RNA splicing
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0007530                                                                                                                                   sex determination
## GO:0002507                                                                                                                                 tolerance induction
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0051642                                                                                                                             centrosome localization
## GO:0007097                                                                                                                                   nuclear migration
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0006397                                                                                                                                     mRNA processing
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0051647                                                                                                                                nucleus localization
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0009611                                                                                                                                response to wounding
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0010761                                                                                                                                fibroblast migration
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0008347                                                                                                                                glial cell migration
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0007049                                                                                                                                          cell cycle
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0034613                                                                                                                       cellular protein localization
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0033365                                                                                                                   protein localization to organelle
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0048513                                                                                                                            animal organ development
## GO:0030048                                                                                                                       actin filament-based movement
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0006996                                                                                                                              organelle organization
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:0008584                                                                                                                              male gonad development
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0001889                                                                                                                                   liver development
## GO:0006611                                                                                                                         protein export from nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0051592                                                                                                                             response to calcium ion
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0030183                                                                                                                              B cell differentiation
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0021543                                                                                                                                 pallium development
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0010970                                                                                                                         transport along microtubule
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0002218                                                                                                                activation of innate immune response
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0007369                                                                                                                                        gastrulation
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0042221                                                                                                                                response to chemical
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0016043                                                                                                                     cellular component organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0030154                                                                                                                                cell differentiation
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0008104                                                                                                                                protein localization
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0051641                                                                                                                               cellular localization
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0048518                                                                                                           positive regulation of biological process
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0009987                                                                                                                                    cellular process
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0048869                                                                                                                      cellular developmental process
## GO:0050794                                                                                                                      regulation of cellular process
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0050663                                                                                                                                  cytokine secretion
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0021537                                                                                                                           telencephalon development
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0002377                                                                                                                           immunoglobulin production
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0032879                                                                                                                          regulation of localization
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0033036                                                                                                                          macromolecule localization
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0048731                                                                                                                                  system development
## GO:0007548                                                                                                                                 sex differentiation
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0016477                                                                                                                                      cell migration
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0060271                                                                                                                                     cilium assembly
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0046677                                                                                                                              response to antibiotic
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0010033                                                                                                                       response to organic substance
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0046907                                                                                                                             intracellular transport
## GO:0051235                                                                                                                             maintenance of location
## GO:0042063                                                                                                                                         gliogenesis
## GO:0044782                                                                                                                                 cilium organization
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0050789                                                                                                                    regulation of biological process
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0009636                                                                                                                         response to toxic substance
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0009058                                                                                                                                biosynthetic process
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0035690                                                                                                                           cellular response to drug
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0042113                                                                                                                                   B cell activation
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0015031                                                                                                                                   protein transport
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0007275                                                                                                                  multicellular organism development
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0015833                                                                                                                                   peptide transport
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0065007                                                                                                                               biological regulation
## GO:0042886                                                                                                                                     amide transport
## GO:0040011                                                                                                                                          locomotion
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0045184                                                                                                               establishment of protein localization
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0048732                                                                                                                                   gland development
## GO:0060537                                                                                                                           muscle tissue development
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0051049                                                                                                                             regulation of transport
## GO:0030031                                                                                                                            cell projection assembly
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0048856                                                                                                                    anatomical structure development
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0002250                                                                                                                            adaptive immune response
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0051640                                                                                                                              organelle localization
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0016310                                                                                                                                     phosphorylation
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0009306                                                                                                                                   protein secretion
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0007420                                                                                                                                   brain development
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0031347                                                                                                                      regulation of defense response
## GO:0002790                                                                                                                                   peptide secretion
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0032502                                                                                                                               developmental process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0060322                                                                                                                                    head development
## GO:0006954                                                                                                                               inflammatory response
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0061061                                                                                                                        muscle structure development
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0006810                                                                                                                                           transport
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0001816                                                                                                                                 cytokine production
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0007017                                                                                                                           microtubule-based process
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0071702                                                                                                                         organic substance transport
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0051234                                                                                                                       establishment of localization
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0070925                                                                                                                                  organelle assembly
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0033993                                                                                                                                   response to lipid
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0045087                                                                                                                              innate immune response
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0002252                                                                                                                             immune effector process
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0007417                                                                                                                  central nervous system development
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0042493                                                                                                                                    response to drug
## GO:0030163                                                                                                                           protein catabolic process
## GO:0050776                                                                                                                       regulation of immune response
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0044238                                                                                                                           primary metabolic process
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0045321                                                                                                                                leukocyte activation
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0034097                                                                                                                                response to cytokine
## GO:0050896                                                                                                                                response to stimulus
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0002520                                                                                                                           immune system development
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0001775                                                                                                                                     cell activation
## GO:0022402                                                                                                                                  cell cycle process
## GO:0048519                                                                                                           negative regulation of biological process
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0046903                                                                                                                                           secretion
## GO:0009790                                                                                                                                  embryo development
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0023051                                                                                                                             regulation of signaling
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0007155                                                                                                                                       cell adhesion
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0022610                                                                                                                                 biological adhesion
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0008152                                                                                                                                   metabolic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0006950                                                                                                                                  response to stress
## GO:0051179                                                                                                                                        localization
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0007165                                                                                                                                 signal transduction
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0030030                                                                                                                        cell projection organization
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0006952                                                                                                                                    defense response
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0006955                                                                                                                                     immune response
## GO:0006508                                                                                                                                         proteolysis
## GO:0010941                                                                                                                            regulation of cell death
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0033554                                                                                                                         cellular response to stress
## GO:0022008                                                                                                                                        neurogenesis
## GO:0023052                                                                                                                                           signaling
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0007154                                                                                                                                  cell communication
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0006915                                                                                                                                   apoptotic process
## GO:0042592                                                                                                                                 homeostatic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0012501                                                                                                                               programmed cell death
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0009888                                                                                                                                  tissue development
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0008219                                                                                                                                          cell death
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0008150                                                                                                                                  biological_process
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0009056                                                                                                                                   catabolic process
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0007399                                                                                                                          nervous system development
## GO:0051704                                                                                                                              multi-organism process
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0009605                                                                                                                       response to external stimulus
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0019538                                                                                                                           protein metabolic process
## GO:0002376                                                                                                                               immune system process
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0022607                                                                                                                         cellular component assembly
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0051937                                                                                                                             catecholamine transport
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0032602                                                                                                                                chemokine production
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0001841                                                                                                                               neural tube formation
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0001824                                                                                                                              blastocyst development
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0051262                                                                                                                             protein tetramerization
## GO:0050792                                                                                                                         regulation of viral process
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0099173                                                                                                                            postsynapse organization
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0019058                                                                                                                                    viral life cycle
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0007254                                                                                                                                         JNK cascade
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0017038                                                                                                                                      protein import
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:0043543                                                                                                                                   protein acylation
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0016032                                                                                                                                       viral process
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0006936                                                                                                                                  muscle contraction
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0045927                                                                                                                       positive regulation of growth
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006417                                                                                                                           regulation of translation
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0032259                                                                                                                                         methylation
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:0050900                                                                                                                                 leukocyte migration
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:0044403                                                                                                                                    symbiont process
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0006959                                                                                                                             humoral immune response
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0003002                                                                                                                                     regionalization
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0007015                                                                                                                         actin filament organization
## GO:0150063                                                                                                                           visual system development
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0000280                                                                                                                                    nuclear division
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0042110                                                                                                                                   T cell activation
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0003013                                                                                                                          circulatory system process
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0048232                                                                                                                              male gamete generation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0007423                                                                                                                           sensory organ development
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0009725                                                                                                                                 response to hormone
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0030001                                                                                                                                 metal ion transport
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0031175                                                                                                                       neuron projection development
## GO:0060284                                                                                                                      regulation of cell development
## GO:0040007                                                                                                                                              growth
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0035295                                                                                                                                    tube development
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0072359                                                                                                                      circulatory system development
## GO:0060429                                                                                                                              epithelium development
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0048666                                                                                                                                  neuron development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0030182                                                                                                                              neuron differentiation
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0048699                                                                                                                               generation of neurons
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0007600                                                                                                                                  sensory perception
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0050877                                                                                                                              nervous system process
## GO:0048468                                                                                                                                    cell development
## GO:0003008                                                                                                                                      system process
##            Ont     N DE         P.DE
## GO:0006997  BP   122  3 1.425930e-05
## GO:0030575  BP    17  2 2.048749e-05
## GO:0048662  BP    53  2 2.059591e-04
## GO:0000079  BP    72  2 3.804421e-04
## GO:0002632  BP     1  1 4.097857e-04
## GO:0070429  BP     1  1 4.097857e-04
## GO:0034148  BP     1  1 4.097857e-04
## GO:0002631  BP     1  1 4.097857e-04
## GO:0034147  BP     1  1 4.097857e-04
## GO:1904029  BP    76  2 4.238310e-04
## GO:2000349  BP     2  1 8.194202e-04
## GO:0031022  BP     2  1 8.194202e-04
## GO:0072573  BP     2  1 8.194202e-04
## GO:0034146  BP     2  1 8.194202e-04
## GO:0002432  BP     3  1 1.228904e-03
## GO:0070433  BP     3  1 1.228904e-03
## GO:0070425  BP     3  1 1.228904e-03
## GO:0034140  BP     3  1 1.228904e-03
## GO:0021817  BP     3  1 1.228904e-03
## GO:0070428  BP     3  1 1.228904e-03
## GO:0021815  BP     4  1 1.638236e-03
## GO:1905205  BP     4  1 1.638236e-03
## GO:1990168  BP     4  1 1.638236e-03
## GO:0048660  BP   163  2 1.926452e-03
## GO:0048659  BP   168  2 2.044591e-03
## GO:0001922  BP     5  1 2.047418e-03
## GO:0070427  BP     5  1 2.047418e-03
## GO:0035523  BP     5  1 2.047418e-03
## GO:0071947  BP     5  1 2.047418e-03
## GO:0070432  BP     5  1 2.047418e-03
## GO:0070424  BP     5  1 2.047418e-03
## GO:0008285  BP   681  3 2.242215e-03
## GO:0002677  BP     6  1 2.456448e-03
## GO:2000348  BP     6  1 2.456448e-03
## GO:1905203  BP     6  1 2.456448e-03
## GO:0021814  BP     7  1 2.865328e-03
## GO:0030473  BP     7  1 2.865328e-03
## GO:0042127  BP  1649  4 3.135160e-03
## GO:0023035  BP     8  1 3.274056e-03
## GO:0099515  BP     8  1 3.274056e-03
## GO:0031665  BP     8  1 3.274056e-03
## GO:0090286  BP     9  1 3.682634e-03
## GO:0050713  BP     9  1 3.682634e-03
## GO:0034139  BP     9  1 3.682634e-03
## GO:0006396  BP   822  3 3.826702e-03
## GO:0033002  BP   234  2 3.916362e-03
## GO:0002315  BP    10  1 4.091062e-03
## GO:2000347  BP    10  1 4.091062e-03
## GO:0035871  BP    10  1 4.091062e-03
## GO:0002634  BP    10  1 4.091062e-03
## GO:0033327  BP    11  1 4.499338e-03
## GO:0097709  BP    11  1 4.499338e-03
## GO:0034115  BP    11  1 4.499338e-03
## GO:2000288  BP    11  1 4.499338e-03
## GO:0070587  BP    11  1 4.499338e-03
## GO:0002676  BP    11  1 4.499338e-03
## GO:0000375  BP   256  2 4.666606e-03
## GO:0000377  BP   256  2 4.666606e-03
## GO:0000398  BP   256  2 4.666606e-03
## GO:0070586  BP    12  1 4.907464e-03
## GO:0070431  BP    12  1 4.907464e-03
## GO:0070423  BP    12  1 4.907464e-03
## GO:0050711  BP    13  1 5.315439e-03
## GO:0035872  BP    13  1 5.315439e-03
## GO:0010457  BP    14  1 5.723264e-03
## GO:0030111  BP   292  2 6.026657e-03
## GO:0008283  BP  1994  4 6.246777e-03
## GO:0002544  BP    16  1 6.538462e-03
## GO:0002467  BP    16  1 6.538462e-03
## GO:0030238  BP    16  1 6.538462e-03
## GO:2000291  BP    16  1 6.538462e-03
## GO:0034138  BP    18  1 7.353059e-03
## GO:0046827  BP    19  1 7.760131e-03
## GO:2000345  BP    19  1 7.760131e-03
## GO:0031664  BP    19  1 7.760131e-03
## GO:0002313  BP    20  1 8.167054e-03
## GO:0032495  BP    20  1 8.167054e-03
## GO:0051450  BP    21  1 8.573826e-03
## GO:0032691  BP    22  1 8.980448e-03
## GO:0008380  BP   364  2 9.225013e-03
## GO:0045736  BP    23  1 9.386920e-03
## GO:0021801  BP    25  1 1.019941e-02
## GO:1904030  BP    25  1 1.019941e-02
## GO:0032703  BP    25  1 1.019941e-02
## GO:0034114  BP    25  1 1.019941e-02
## GO:0022030  BP    25  1 1.019941e-02
## GO:0072575  BP    26  1 1.060544e-02
## GO:0072574  BP    26  1 1.060544e-02
## GO:0002335  BP    27  1 1.101131e-02
## GO:0071108  BP    27  1 1.101131e-02
## GO:0016070  BP  3761  5 1.107455e-02
## GO:0072576  BP    28  1 1.141703e-02
## GO:0007530  BP    28  1 1.141703e-02
## GO:0002507  BP    28  1 1.141703e-02
## GO:1902042  BP    29  1 1.182260e-02
## GO:0032692  BP    30  1 1.222803e-02
## GO:0071900  BP   427  2 1.252590e-02
## GO:0016055  BP   428  2 1.258196e-02
## GO:2000352  BP    31  1 1.263330e-02
## GO:0070536  BP    31  1 1.263330e-02
## GO:0198738  BP   430  2 1.269440e-02
## GO:0051642  BP    32  1 1.303842e-02
## GO:0007097  BP    32  1 1.303842e-02
## GO:0061842  BP    33  1 1.344340e-02
## GO:0006397  BP   448  2 1.372654e-02
## GO:0050869  BP    34  1 1.384822e-02
## GO:0048147  BP    35  1 1.425290e-02
## GO:0034122  BP    35  1 1.425290e-02
## GO:0001782  BP    37  1 1.506180e-02
## GO:0021799  BP    37  1 1.506180e-02
## GO:0002753  BP    37  1 1.506180e-02
## GO:0051647  BP    37  1 1.506180e-02
## GO:0006998  BP    39  1 1.587010e-02
## GO:0034105  BP    40  1 1.627403e-02
## GO:0010470  BP    40  1 1.627403e-02
## GO:0050706  BP    40  1 1.627403e-02
## GO:0046825  BP    40  1 1.627403e-02
## GO:0010035  BP   493  2 1.646305e-02
## GO:0009611  BP   495  2 1.658977e-02
## GO:0002832  BP    41  1 1.667781e-02
## GO:0072666  BP    43  1 1.748492e-02
## GO:0043124  BP    44  1 1.788825e-02
## GO:1905114  BP   521  2 1.827586e-02
## GO:0090304  BP  4277  5 1.906616e-02
## GO:0050702  BP    47  1 1.909735e-02
## GO:1902041  BP    47  1 1.909735e-02
## GO:0050704  BP    47  1 1.909735e-02
## GO:1904036  BP    49  1 1.990267e-02
## GO:0010761  BP    50  1 2.030511e-02
## GO:0031663  BP    50  1 2.030511e-02
## GO:0032715  BP    50  1 2.030511e-02
## GO:0034113  BP    53  1 2.151153e-02
## GO:2000351  BP    54  1 2.191337e-02
## GO:0021795  BP    55  1 2.231507e-02
## GO:0050701  BP    55  1 2.231507e-02
## GO:0072577  BP    57  1 2.311801e-02
## GO:0043954  BP    58  1 2.351926e-02
## GO:0072665  BP    58  1 2.351926e-02
## GO:0032663  BP    58  1 2.351926e-02
## GO:0008347  BP    59  1 2.392036e-02
## GO:0070936  BP    59  1 2.392036e-02
## GO:0045824  BP    60  1 2.432132e-02
## GO:1902017  BP    60  1 2.432132e-02
## GO:0032720  BP    62  1 2.512278e-02
## GO:0007049  BP  1639  3 2.539304e-02
## GO:1903556  BP    63  1 2.552328e-02
## GO:0034121  BP    63  1 2.552328e-02
## GO:0046824  BP    64  1 2.592364e-02
## GO:0000381  BP    64  1 2.592364e-02
## GO:0070887  BP  3023  4 2.661810e-02
## GO:0016071  BP   637  2 2.664436e-02
## GO:0032623  BP    66  1 2.672392e-02
## GO:0034613  BP  1676  3 2.693141e-02
## GO:0050710  BP    67  1 2.712384e-02
## GO:0070727  BP  1686  3 2.735597e-02
## GO:0051252  BP  3049  4 2.739431e-02
## GO:0022029  BP    70  1 2.832270e-02
## GO:0045859  BP   662  2 2.862143e-02
## GO:0021885  BP    73  1 2.952023e-02
## GO:0031397  BP    73  1 2.952023e-02
## GO:0002637  BP    73  1 2.952023e-02
## GO:0050810  BP    73  1 2.952023e-02
## GO:0010507  BP    74  1 2.991911e-02
## GO:0032651  BP    74  1 2.991911e-02
## GO:0008625  BP    75  1 3.031785e-02
## GO:0032507  BP    75  1 3.031785e-02
## GO:0000380  BP    76  1 3.071643e-02
## GO:0006139  BP  4813  5 3.096921e-02
## GO:0010467  BP  4814  5 3.099525e-02
## GO:0071277  BP    77  1 3.111487e-02
## GO:0032088  BP    77  1 3.111487e-02
## GO:0002260  BP    78  1 3.151317e-02
## GO:0002312  BP    80  1 3.230931e-02
## GO:0051223  BP   708  2 3.241237e-02
## GO:0072384  BP    81  1 3.270716e-02
## GO:1903321  BP    83  1 3.350242e-02
## GO:0034103  BP    84  1 3.389982e-02
## GO:0043549  BP   728  2 3.412104e-02
## GO:0046483  BP  4940  5 3.439805e-02
## GO:0032611  BP    86  1 3.469420e-02
## GO:0070201  BP   740  2 3.516346e-02
## GO:0035914  BP    88  1 3.548799e-02
## GO:0070301  BP    89  1 3.588466e-02
## GO:1904035  BP    89  1 3.588466e-02
## GO:0090087  BP   749  2 3.595366e-02
## GO:0006725  BP  5012  5 3.645231e-02
## GO:0032652  BP    91  1 3.667757e-02
## GO:0019219  BP  3352  4 3.751687e-02
## GO:0033365  BP   774  2 3.818589e-02
## GO:2001237  BP    98  1 3.944812e-02
## GO:0051651  BP   101  1 4.063331e-02
## GO:0110110  BP   101  1 4.063331e-02
## GO:0019218  BP   102  1 4.102808e-02
## GO:0002224  BP   103  1 4.142270e-02
## GO:0032612  BP   104  1 4.181717e-02
## GO:0048024  BP   105  1 4.221150e-02
## GO:1901360  BP  5208  5 4.246116e-02
## GO:0045185  BP   106  1 4.260569e-02
## GO:0048145  BP   107  1 4.299973e-02
## GO:0048513  BP  3504  4 4.336363e-02
## GO:0030048  BP   108  1 4.339362e-02
## GO:0051338  BP   832  2 4.357040e-02
## GO:1901362  BP  3510  4 4.360521e-02
## GO:0080090  BP  5248  5 4.376395e-02
## GO:0021987  BP   109  1 4.378736e-02
## GO:0048144  BP   109  1 4.378736e-02
## GO:0001776  BP   110  1 4.418096e-02
## GO:0071901  BP   111  1 4.457442e-02
## GO:0009889  BP  3542  4 4.490755e-02
## GO:0046822  BP   112  1 4.496773e-02
## GO:1904019  BP   113  1 4.536089e-02
## GO:0006996  BP  3568  4 4.598303e-02
## GO:0016579  BP   115  1 4.614678e-02
## GO:0090090  BP   119  1 4.771681e-02
## GO:0008584  BP   120  1 4.810896e-02
## GO:0046546  BP   121  1 4.850095e-02
## GO:0001889  BP   121  1 4.850095e-02
## GO:0006611  BP   121  1 4.850095e-02
## GO:0042542  BP   121  1 4.850095e-02
## GO:0007098  BP   122  1 4.889281e-02
## GO:0061008  BP   124  1 4.967608e-02
## GO:0051592  BP   127  1 5.084990e-02
## GO:0045995  BP   129  1 5.163172e-02
## GO:0031023  BP   130  1 5.202241e-02
## GO:0090316  BP   131  1 5.241296e-02
## GO:0030177  BP   132  1 5.280336e-02
## GO:0002698  BP   134  1 5.358374e-02
## GO:0051168  BP   135  1 5.397371e-02
## GO:1903364  BP   135  1 5.397371e-02
## GO:0070646  BP   135  1 5.397371e-02
## GO:0034641  BP  5547  5 5.435096e-02
## GO:0002221  BP   137  1 5.475321e-02
## GO:0002758  BP   139  1 5.553214e-02
## GO:0043484  BP   139  1 5.553214e-02
## GO:0051726  BP   955  2 5.588847e-02
## GO:0050684  BP   144  1 5.747693e-02
## GO:0008284  BP   972  2 5.768187e-02
## GO:0002831  BP   147  1 5.864207e-02
## GO:0002700  BP   148  1 5.903016e-02
## GO:0010468  BP  3860  4 5.913970e-02
## GO:0030183  BP   149  1 5.941811e-02
## GO:0050728  BP   149  1 5.941811e-02
## GO:0034614  BP   150  1 5.980592e-02
## GO:0022612  BP   150  1 5.980592e-02
## GO:0030178  BP   151  1 6.019358e-02
## GO:0046661  BP   152  1 6.058109e-02
## GO:0051250  BP   152  1 6.058109e-02
## GO:0050709  BP   152  1 6.058109e-02
## GO:0032675  BP   153  1 6.096847e-02
## GO:0071248  BP   154  1 6.135570e-02
## GO:0006694  BP   156  1 6.212972e-02
## GO:0050777  BP   158  1 6.290318e-02
## GO:0021543  BP   158  1 6.290318e-02
## GO:0099111  BP   159  1 6.328969e-02
## GO:0010970  BP   159  1 6.328969e-02
## GO:0043433  BP   160  1 6.367606e-02
## GO:2001236  BP   161  1 6.406228e-02
## GO:0032635  BP   162  1 6.444836e-02
## GO:0002792  BP   162  1 6.444836e-02
## GO:0032880  BP  1038  2 6.484158e-02
## GO:0002218  BP   164  1 6.522010e-02
## GO:0032680  BP   164  1 6.522010e-02
## GO:0043901  BP   165  1 6.560575e-02
## GO:0043122  BP   165  1 6.560575e-02
## GO:1903555  BP   166  1 6.599125e-02
## GO:0032640  BP   167  1 6.637662e-02
## GO:0097237  BP   170  1 6.753186e-02
## GO:0007369  BP   170  1 6.753186e-02
## GO:0046890  BP   170  1 6.753186e-02
## GO:0071706  BP   170  1 6.753186e-02
## GO:0030705  BP   171  1 6.791665e-02
## GO:0071310  BP  2433  3 6.963791e-02
## GO:0019222  BP  5953  5 7.121363e-02
## GO:0002695  BP   182  1 7.213995e-02
## GO:0120032  BP   182  1 7.213995e-02
## GO:0060491  BP   184  1 7.290596e-02
## GO:0042221  BP  4136  4 7.341685e-02
## GO:0022408  BP   187  1 7.405393e-02
## GO:0007166  BP  2497  3 7.420900e-02
## GO:0002822  BP   189  1 7.481852e-02
## GO:0007249  BP   193  1 7.634601e-02
## GO:0002285  BP   193  1 7.634601e-02
## GO:0048771  BP   193  1 7.634601e-02
## GO:0006469  BP   194  1 7.672753e-02
## GO:0000209  BP   194  1 7.672753e-02
## GO:0016043  BP  6083  5 7.723848e-02
## GO:0007519  BP   197  1 7.787123e-02
## GO:0030154  BP  4218  4 7.800524e-02
## GO:0071236  BP   199  1 7.863299e-02
## GO:0030522  BP   199  1 7.863299e-02
## GO:0050679  BP   199  1 7.863299e-02
## GO:0031396  BP   199  1 7.863299e-02
## GO:0032388  BP   200  1 7.901366e-02
## GO:0000302  BP   201  1 7.939418e-02
## GO:0098742  BP   202  1 7.977457e-02
## GO:0050866  BP   203  1 8.015481e-02
## GO:0008104  BP  2578  3 8.019921e-02
## GO:0051224  BP   204  1 8.053491e-02
## GO:0009968  BP  1175  2 8.064095e-02
## GO:0002819  BP   205  1 8.091487e-02
## GO:0051641  BP  2592  3 8.125749e-02
## GO:1902115  BP   206  1 8.129469e-02
## GO:0060538  BP   206  1 8.129469e-02
## GO:0048518  BP  6171  5 8.149209e-02
## GO:1904950  BP   209  1 8.243330e-02
## GO:2000027  BP   209  1 8.243330e-02
## GO:0045732  BP   210  1 8.281255e-02
## GO:0033157  BP   210  1 8.281255e-02
## GO:0009987  BP 15803  9 8.351361e-02
## GO:0050707  BP   213  1 8.394947e-02
## GO:0008406  BP   214  1 8.432816e-02
## GO:0033673  BP   214  1 8.432816e-02
## GO:0007163  BP   216  1 8.508512e-02
## GO:0045137  BP   218  1 8.584151e-02
## GO:0071840  BP  6266  5 8.624389e-02
## GO:0031348  BP   220  1 8.659734e-02
## GO:0060828  BP   224  1 8.810731e-02
## GO:0071241  BP   225  1 8.848446e-02
## GO:0097191  BP   229  1 8.999162e-02
## GO:1903320  BP   229  1 8.999162e-02
## GO:2001234  BP   231  1 9.074437e-02
## GO:1903531  BP   232  1 9.112053e-02
## GO:0045089  BP   232  1 9.112053e-02
## GO:0048869  BP  4443  4 9.140801e-02
## GO:0050794  BP 10774  7 9.241664e-02
## GO:1903362  BP   239  1 9.374973e-02
## GO:0050663  BP   244  1 9.562354e-02
## GO:0051348  BP   246  1 9.637209e-02
## GO:0006355  BP  2784  3 9.643711e-02
## GO:0007010  BP  1305  2 9.668896e-02
## GO:0031330  BP   247  1 9.674615e-02
## GO:0010506  BP   247  1 9.674615e-02
## GO:0010648  BP  1306  2 9.681606e-02
## GO:1903506  BP  2792  3 9.709602e-02
## GO:0023057  BP  1310  2 9.732498e-02
## GO:0021537  BP   249  1 9.749387e-02
## GO:2001141  BP  2801  3 9.783978e-02
## GO:0002377  BP   252  1 9.861439e-02
## GO:1903311  BP   253  1 9.898762e-02
## GO:0032879  BP  2835  3 1.006731e-01
## GO:0001818  BP   259  1 1.012241e-01
## GO:0051048  BP   261  1 1.019684e-01
## GO:0050864  BP   264  1 1.030840e-01
## GO:0050807  BP   266  1 1.038270e-01
## GO:0006351  BP  2875  3 1.040537e-01
## GO:0034599  BP   268  1 1.045694e-01
## GO:0097659  BP  2883  3 1.047359e-01
## GO:0002366  BP   269  1 1.049404e-01
## GO:0010038  BP   269  1 1.049404e-01
## GO:0032774  BP  2896  3 1.058487e-01
## GO:0034504  BP   272  1 1.060526e-01
## GO:0033036  BP  2901  3 1.062782e-01
## GO:0002263  BP   273  1 1.064231e-01
## GO:0007018  BP   275  1 1.071635e-01
## GO:0050803  BP   276  1 1.075336e-01
## GO:0060070  BP   279  1 1.086429e-01
## GO:0071222  BP   282  1 1.097509e-01
## GO:0001932  BP  1410  2 1.103155e-01
## GO:0007162  BP   284  1 1.104890e-01
## GO:0048731  BP  4746  4 1.113164e-01
## GO:0007548  BP   288  1 1.119633e-01
## GO:0051169  BP   289  1 1.123316e-01
## GO:0006913  BP   289  1 1.123316e-01
## GO:0045088  BP   289  1 1.123316e-01
## GO:0071219  BP   290  1 1.126997e-01
## GO:0009895  BP   294  1 1.141708e-01
## GO:0016477  BP  1447  2 1.152460e-01
## GO:1903829  BP   297  1 1.152726e-01
## GO:0060271  BP   299  1 1.160065e-01
## GO:0008202  BP   301  1 1.167399e-01
## GO:0046677  BP   305  1 1.182049e-01
## GO:0071216  BP   313  1 1.211285e-01
## GO:0010033  BP  3070  3 1.212447e-01
## GO:0048872  BP   315  1 1.218580e-01
## GO:0046907  BP  1502  2 1.226908e-01
## GO:0051235  BP   322  1 1.244070e-01
## GO:0042063  BP   323  1 1.247706e-01
## GO:0044782  BP   327  1 1.262237e-01
## GO:0042325  BP  1533  2 1.269451e-01
## GO:0032102  BP   336  1 1.294851e-01
## GO:0050789  BP 11520  7 1.298316e-01
## GO:0019216  BP   338  1 1.302084e-01
## GO:0019221  BP   341  1 1.312923e-01
## GO:1901576  BP  5031  4 1.319367e-01
## GO:0009636  BP   344  1 1.323750e-01
## GO:0002440  BP   345  1 1.327356e-01
## GO:0048585  BP  1576  2 1.329123e-01
## GO:2000112  BP  3219  3 1.351399e-01
## GO:0048870  BP  1595  2 1.355726e-01
## GO:0051674  BP  1595  2 1.355726e-01
## GO:0007267  BP  1596  2 1.357130e-01
## GO:0050727  BP   354  1 1.359752e-01
## GO:0031331  BP   355  1 1.363344e-01
## GO:0050678  BP   358  1 1.374115e-01
## GO:0051171  BP  5104  4 1.375046e-01
## GO:0032496  BP   359  1 1.377702e-01
## GO:0009058  BP  5125  4 1.391274e-01
## GO:0031349  BP   370  1 1.417075e-01
## GO:0072594  BP   374  1 1.431352e-01
## GO:0034654  BP  3310  3 1.439316e-01
## GO:0010556  BP  3311  3 1.440295e-01
## GO:0002237  BP   377  1 1.442046e-01
## GO:0042176  BP   378  1 1.445608e-01
## GO:0035690  BP   380  1 1.452728e-01
## GO:0010256  BP   384  1 1.466951e-01
## GO:1901652  BP   384  1 1.466951e-01
## GO:0006914  BP   386  1 1.474055e-01
## GO:0030900  BP   386  1 1.474055e-01
## GO:0061919  BP   386  1 1.474055e-01
## GO:0043900  BP   391  1 1.491792e-01
## GO:0019220  BP  1692  2 1.493656e-01
## GO:0051174  BP  1693  2 1.495095e-01
## GO:0018130  BP  3374  3 1.502477e-01
## GO:0030098  BP   395  1 1.505957e-01
## GO:0022407  BP   395  1 1.505957e-01
## GO:0051090  BP   396  1 1.509495e-01
## GO:0019438  BP  3386  3 1.514438e-01
## GO:0006979  BP   400  1 1.523634e-01
## GO:0042113  BP   405  1 1.541278e-01
## GO:0001667  BP   406  1 1.544802e-01
## GO:0001933  BP   408  1 1.551848e-01
## GO:0015031  BP  1746  2 1.571869e-01
## GO:2001233  BP   414  1 1.572953e-01
## GO:0007275  BP  5362  4 1.580825e-01
## GO:0031399  BP  1760  2 1.592302e-01
## GO:0002697  BP   420  1 1.594010e-01
## GO:0031326  BP  3470  3 1.599194e-01
## GO:0009896  BP   422  1 1.601019e-01
## GO:0007517  BP   424  1 1.608022e-01
## GO:0050673  BP   425  1 1.611522e-01
## GO:0031323  BP  5401  4 1.613118e-01
## GO:0051222  BP   435  1 1.646447e-01
## GO:0015833  BP  1797  2 1.646596e-01
## GO:0032386  BP   438  1 1.656899e-01
## GO:0050790  BP  1807  2 1.661342e-01
## GO:0002460  BP   441  1 1.667339e-01
## GO:0048522  BP  5469  4 1.670149e-01
## GO:0006468  BP  1815  2 1.673159e-01
## GO:0065007  BP 12135  7 1.673903e-01
## GO:0042886  BP  1817  2 1.676116e-01
## GO:0040011  BP  1817  2 1.676116e-01
## GO:0060255  BP  5486  4 1.684549e-01
## GO:0048608  BP   449  1 1.695122e-01
## GO:0014706  BP   449  1 1.695122e-01
## GO:0002757  BP   450  1 1.698589e-01
## GO:0050808  BP   451  1 1.702055e-01
## GO:0045786  BP   452  1 1.705519e-01
## GO:0042326  BP   452  1 1.705519e-01
## GO:0061458  BP   453  1 1.708983e-01
## GO:1904951  BP   454  1 1.712444e-01
## GO:0045184  BP  1856  2 1.734011e-01
## GO:0002764  BP   463  1 1.743542e-01
## GO:0048732  BP   467  1 1.757330e-01
## GO:0060537  BP   472  1 1.774535e-01
## GO:0051656  BP   473  1 1.777972e-01
## GO:0002683  BP   473  1 1.777972e-01
## GO:0051649  BP  1906  2 1.808842e-01
## GO:0120031  BP   488  1 1.829374e-01
## GO:0050708  BP   490  1 1.836206e-01
## GO:0051240  BP  1929  2 1.843481e-01
## GO:0051049  BP  1946  2 1.869167e-01
## GO:0030031  BP   501  1 1.873689e-01
## GO:1903827  BP   520  1 1.938068e-01
## GO:0006357  BP  1993  2 1.940534e-01
## GO:0002253  BP   526  1 1.958302e-01
## GO:1902532  BP   527  1 1.961670e-01
## GO:0002791  BP   529  1 1.968402e-01
## GO:0006928  BP  2014  2 1.972582e-01
## GO:0030335  BP   539  1 2.001987e-01
## GO:0051051  BP   540  1 2.005338e-01
## GO:0008610  BP   545  1 2.022077e-01
## GO:0048856  BP  5871  4 2.025215e-01
## GO:0045936  BP   546  1 2.025421e-01
## GO:0010563  BP   546  1 2.025421e-01
## GO:0006366  BP  2049  2 2.026202e-01
## GO:0051249  BP   555  1 2.055459e-01
## GO:2000147  BP   561  1 2.075428e-01
## GO:0031400  BP   564  1 2.085396e-01
## GO:0002521  BP   567  1 2.095352e-01
## GO:0000226  BP   568  1 2.098669e-01
## GO:0016567  BP   568  1 2.098669e-01
## GO:0051272  BP   580  1 2.138366e-01
## GO:0006511  BP   580  1 2.138366e-01
## GO:0002250  BP   583  1 2.148263e-01
## GO:0071705  BP  2133  2 2.155859e-01
## GO:0044271  BP  3993  3 2.163087e-01
## GO:0019941  BP   592  1 2.177884e-01
## GO:0040017  BP   593  1 2.181169e-01
## GO:0051640  BP   596  1 2.191017e-01
## GO:0034645  BP  4022  3 2.195958e-01
## GO:0016310  BP  2166  2 2.207135e-01
## GO:0071363  BP   602  1 2.210679e-01
## GO:0043632  BP   602  1 2.210679e-01
## GO:0032501  BP  8233  5 2.214440e-01
## GO:0097190  BP   605  1 2.220494e-01
## GO:0009306  BP   605  1 2.220494e-01
## GO:0065008  BP  4051  3 2.228977e-01
## GO:0071396  BP   612  1 2.243351e-01
## GO:0070848  BP   615  1 2.253128e-01
## GO:0032446  BP   620  1 2.269399e-01
## GO:0009059  BP  4121  3 2.309262e-01
## GO:0007420  BP   634  1 2.314794e-01
## GO:0048598  BP   637  1 2.324490e-01
## GO:0031347  BP   640  1 2.334175e-01
## GO:0002790  BP   652  1 2.372806e-01
## GO:0002694  BP   652  1 2.372806e-01
## GO:0032502  BP  6258  4 2.393332e-01
## GO:0043170  BP  8488  5 2.437159e-01
## GO:0001817  BP   679  1 2.459085e-01
## GO:0043086  BP   682  1 2.468618e-01
## GO:0030155  BP   686  1 2.481310e-01
## GO:0060322  BP   688  1 2.487649e-01
## GO:0006954  BP   691  1 2.497149e-01
## GO:0050865  BP   693  1 2.503476e-01
## GO:0031329  BP   695  1 2.509798e-01
## GO:0051603  BP   696  1 2.512958e-01
## GO:0061061  BP   701  1 2.528737e-01
## GO:0098609  BP   720  1 2.588423e-01
## GO:0006810  BP  4398  3 2.634293e-01
## GO:0044257  BP   740  1 2.650788e-01
## GO:0070647  BP   741  1 2.653894e-01
## GO:0030029  BP   746  1 2.669405e-01
## GO:0050778  BP   747  1 2.672503e-01
## GO:0001816  BP   755  1 2.697251e-01
## GO:0065009  BP  2477  2 2.697253e-01
## GO:0007017  BP   759  1 2.709596e-01
## GO:0032268  BP  2494  2 2.724297e-01
## GO:0071702  BP  2505  2 2.741806e-01
## GO:0032101  BP   770  1 2.743449e-01
## GO:0120035  BP   772  1 2.749589e-01
## GO:0061024  BP   780  1 2.774102e-01
## GO:0031344  BP   781  1 2.777160e-01
## GO:0051234  BP  4538  3 2.802394e-01
## GO:0003006  BP   791  1 2.807685e-01
## GO:0070925  BP   796  1 2.822903e-01
## GO:0051128  BP  2558  2 2.826249e-01
## GO:0006807  BP  8923  5 2.837683e-01
## GO:0009894  BP   821  1 2.898563e-01
## GO:0033993  BP   822  1 2.901574e-01
## GO:1903530  BP   831  1 2.928625e-01
## GO:0046649  BP   841  1 2.958572e-01
## GO:0045087  BP   842  1 2.961561e-01
## GO:0048523  BP  4687  3 2.983595e-01
## GO:0051246  BP  2687  2 3.032164e-01
## GO:0002252  BP   879  1 3.071335e-01
## GO:0006886  BP   882  1 3.080168e-01
## GO:0010243  BP   883  1 3.083109e-01
## GO:0007417  BP   888  1 3.097803e-01
## GO:0030334  BP   892  1 3.109537e-01
## GO:0042493  BP   894  1 3.115397e-01
## GO:0030163  BP   898  1 3.127104e-01
## GO:0050776  BP   903  1 3.141713e-01
## GO:0071345  BP   907  1 3.153380e-01
## GO:0009617  BP   907  1 3.153380e-01
## GO:0051046  BP   911  1 3.165029e-01
## GO:0009966  BP  2780  2 3.180710e-01
## GO:0030097  BP   921  1 3.194074e-01
## GO:0043066  BP   921  1 3.194074e-01
## GO:0043069  BP   939  1 3.246075e-01
## GO:2000145  BP   939  1 3.246075e-01
## GO:0044087  BP   948  1 3.271941e-01
## GO:0044237  BP  9374  5 3.276576e-01
## GO:0044249  BP  4938  3 3.293027e-01
## GO:0060341  BP   958  1 3.300576e-01
## GO:0048534  BP   972  1 3.340482e-01
## GO:0044238  BP  9443  5 3.345536e-01
## GO:1901698  BP   982  1 3.368855e-01
## GO:0045321  BP   994  1 3.402758e-01
## GO:0006796  BP  2933  2 3.424699e-01
## GO:0032269  BP  1003  1 3.428083e-01
## GO:0034097  BP  1004  1 3.430892e-01
## GO:0050896  BP  9531  5 3.434101e-01
## GO:0044092  BP  1006  1 3.436506e-01
## GO:0044265  BP  1013  1 3.456120e-01
## GO:0006793  BP  2955  2 3.459704e-01
## GO:0040012  BP  1018  1 3.470098e-01
## GO:0051270  BP  1028  1 3.497973e-01
## GO:0002520  BP  1030  1 3.503535e-01
## GO:0060548  BP  1049  1 3.556163e-01
## GO:0051248  BP  1070  1 3.613883e-01
## GO:0032940  BP  1070  1 3.613883e-01
## GO:0002684  BP  1072  1 3.619356e-01
## GO:0051173  BP  3061  2 3.627950e-01
## GO:0022603  BP  1076  1 3.630289e-01
## GO:0051050  BP  1081  1 3.643931e-01
## GO:0009887  BP  1090  1 3.668422e-01
## GO:0001775  BP  1098  1 3.690120e-01
## GO:0022402  BP  1108  1 3.717148e-01
## GO:0048519  BP  5278  3 3.717496e-01
## GO:1901565  BP  1151  1 3.832186e-01
## GO:0048646  BP  1157  1 3.848086e-01
## GO:0031325  BP  3201  2 3.848814e-01
## GO:0010604  BP  3212  2 3.866090e-01
## GO:0051707  BP  1172  1 3.887675e-01
## GO:0043207  BP  1174  1 3.892936e-01
## GO:0051239  BP  3248  2 3.922538e-01
## GO:0071704  BP 10008  5 3.924457e-01
## GO:1901701  BP  1206  1 3.976563e-01
## GO:0009607  BP  1208  1 3.981755e-01
## GO:0009057  BP  1218  1 4.007656e-01
## GO:0045944  BP  1226  1 4.028305e-01
## GO:0046903  BP  1227  1 4.030881e-01
## GO:0009790  BP  1231  1 4.041178e-01
## GO:0051716  BP  7810  4 4.044719e-01
## GO:0010646  BP  3338  2 4.063017e-01
## GO:0033043  BP  1242  1 4.069410e-01
## GO:0023051  BP  3360  2 4.097207e-01
## GO:0006629  BP  1258  1 4.110260e-01
## GO:0007155  BP  1298  1 4.211280e-01
## GO:0006464  BP  3453  2 4.241033e-01
## GO:0036211  BP  3453  2 4.241033e-01
## GO:0022610  BP  1310  1 4.241281e-01
## GO:0009893  BP  3486  2 4.291778e-01
## GO:0080134  BP  1337  1 4.308271e-01
## GO:0051241  BP  1343  1 4.323062e-01
## GO:0008152  BP 10485  5 4.427219e-01
## GO:0043412  BP  3634  2 4.517328e-01
## GO:0006950  BP  3640  2 4.526398e-01
## GO:0051179  BP  5950  3 4.557945e-01
## GO:0022414  BP  1471  1 4.630477e-01
## GO:0000003  BP  1472  1 4.632818e-01
## GO:0002682  BP  1473  1 4.635159e-01
## GO:0007165  BP  6028  3 4.654501e-01
## GO:0009967  BP  1504  1 4.707262e-01
## GO:0042981  BP  1516  1 4.734939e-01
## GO:0120036  BP  1526  1 4.757903e-01
## GO:0032270  BP  1532  1 4.771638e-01
## GO:0045893  BP  1536  1 4.780776e-01
## GO:0043067  BP  1537  1 4.783059e-01
## GO:0051094  BP  1540  1 4.789901e-01
## GO:1903508  BP  1540  1 4.789901e-01
## GO:1902680  BP  1541  1 4.792179e-01
## GO:0030030  BP  1572  1 4.862380e-01
## GO:0048583  BP  3883  2 4.888389e-01
## GO:1901700  BP  1589  1 4.900514e-01
## GO:0006952  BP  1601  1 4.927279e-01
## GO:0051254  BP  1638  1 5.009010e-01
## GO:0051247  BP  1639  1 5.011202e-01
## GO:0006955  BP  1652  1 5.039625e-01
## GO:0006508  BP  1657  1 5.050518e-01
## GO:0010941  BP  1685  1 5.111120e-01
## GO:1902531  BP  1710  1 5.164665e-01
## GO:0033554  BP  1763  1 5.276438e-01
## GO:0022008  BP  1778  1 5.307646e-01
## GO:0023052  BP  6579  3 5.323706e-01
## GO:0010557  BP  1799  1 5.351027e-01
## GO:0007154  BP  6648  3 5.405513e-01
## GO:0045935  BP  1833  1 5.420497e-01
## GO:0010647  BP  1854  1 5.462937e-01
## GO:1901575  BP  1857  1 5.468971e-01
## GO:0023056  BP  1860  1 5.474998e-01
## GO:0006915  BP  1867  1 5.489032e-01
## GO:0042592  BP  1887  1 5.528914e-01
## GO:0031328  BP  1903  1 5.560590e-01
## GO:0012501  BP  1908  1 5.570448e-01
## GO:0009891  BP  1943  1 5.638900e-01
## GO:0009888  BP  1956  1 5.664082e-01
## GO:0010628  BP  1981  1 5.712141e-01
## GO:0044248  BP  1996  1 5.740746e-01
## GO:0044267  BP  4569  2 5.844590e-01
## GO:0008219  BP  2065  1 5.870128e-01
## GO:0044260  BP  7099  3 5.926301e-01
## GO:0008150  BP 23210 10 6.057285e-01
## GO:2000026  BP  2184  1 6.084979e-01
## GO:0009056  BP  2257  1 6.211746e-01
## GO:0051172  BP  2271  1 6.235631e-01
## GO:0048584  BP  2294  1 6.274576e-01
## GO:0007399  BP  2333  1 6.339786e-01
## GO:0051704  BP  2389  1 6.431625e-01
## GO:0031324  BP  2449  1 6.527718e-01
## GO:0009605  BP  2515  1 6.630724e-01
## GO:0010605  BP  2584  1 6.735465e-01
## GO:0035556  BP  2608  1 6.771203e-01
## GO:0019538  BP  5344  2 6.788356e-01
## GO:0002376  BP  2664  1 6.853228e-01
## GO:0050793  BP  2721  1 6.934787e-01
## GO:0009653  BP  2744  1 6.967154e-01
## GO:0022607  BP  2807  1 7.054243e-01
## GO:0009892  BP  2843  1 7.102992e-01
## GO:0044085  BP  3041  1 7.358365e-01
## GO:1901564  BP  6234  2 7.681094e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0031394  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:2001280  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:0031392  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:2001279  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0045060  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0043383  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0045059  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:1903019  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:0045723  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:1902230  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0001516  BP    25  0 1.000000e+00
## GO:0046457  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0045061  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0033198  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:0032743  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:1902229  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0043368  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0006636  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0046456  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0006693  BP    40  0 1.000000e+00
## GO:0006692  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:0042304  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0045923  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:1903018  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:0070229  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071622  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:1901570  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0002720  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0045058  BP    55  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0032722  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0032677  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0002763  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0032637  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:2000107  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:2001021  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0042108  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0046626  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:0070228  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0002718  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:0048524  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051341  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0002690  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0033077  BP    88  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0032642  BP    88  0 1.000000e+00
## GO:0019217  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1900076  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:0001938  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0046683  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0032602  BP    92  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:0046889  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0045582  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:2001243  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0070227  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0042102  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0032755  BP    99  0 1.000000e+00
## GO:0045639  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0030593  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0002702  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0007584  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0033559  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0002367  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:1902106  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0014074  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0045621  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:2000106  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0042035  BP   109  0 1.000000e+00
## GO:0032649  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0006690  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0002688  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0042100  BP   112  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0008630  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0043123  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:1990266  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0042089  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0008286  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0032609  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0071621  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0042107  BP   125  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0002761  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0010565  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0042177  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0001936  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0071887  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:1901568  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0006633  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0050671  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0002456  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0032946  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0050921  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0001935  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002687  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0070665  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:1903900  BP   145  0 1.000000e+00
## GO:0097530  BP   146  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0002821  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0045580  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0062013  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0045834  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:1903707  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:1902107  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:2001242  BP   169  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0042129  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0043902  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0045619  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0051262  BP   183  0 1.000000e+00
## GO:0050792  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0045766  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0043491  BP   186  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0050870  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0032869  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0042180  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:0050731  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0043903  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0019058  BP   199  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0002685  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:1903039  BP   203  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0007160  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:1904018  BP   204  0 1.000000e+00
## GO:0001666  BP   204  0 1.000000e+00
## GO:0042098  BP   205  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0097529  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903708  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:2001020  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0030595  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050920  BP   213  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0045637  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0002573  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0070374  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0050670  BP   225  0 1.000000e+00
## GO:0032868  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0051607  BP   227  0 1.000000e+00
## GO:0032944  BP   227  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:1901617  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0036293  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0070663  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0022409  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0071375  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0090068  BP   249  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0002699  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0045665  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050730  BP   263  0 1.000000e+00
## GO:0072330  BP   264  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0030217  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0009615  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0009101  BP   278  0 1.000000e+00
## GO:0030072  BP   278  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:2000146  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0070482  BP   282  0 1.000000e+00
## GO:0016032  BP   283  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1901653  BP   287  0 1.000000e+00
## GO:1903037  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0097193  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:1902105  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0050851  BP   295  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060326  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0046883  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0050863  BP   304  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0070372  BP   306  0 1.000000e+00
## GO:0045765  BP   307  0 1.000000e+00
## GO:0046651  BP   308  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:0032943  BP   310  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0032103  BP   312  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0051271  BP   316  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0007159  BP   319  0 1.000000e+00
## GO:0018108  BP   319  0 1.000000e+00
## GO:0018212  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0070371  BP   323  0 1.000000e+00
## GO:0043434  BP   324  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0002429  BP   326  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0070661  BP   331  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0040013  BP   332  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0050768  BP   337  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0009100  BP   338  0 1.000000e+00
## GO:0002768  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0031589  BP   339  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0050900  BP   340  0 1.000000e+00
## GO:1901342  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:0044403  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045861  BP   349  0 1.000000e+00
## GO:0045787  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0062012  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0051961  BP   361  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0046394  BP   362  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0016053  BP   363  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0046879  BP   365  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031667  BP   371  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0009914  BP   373  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0006631  BP   376  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0001503  BP   381  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0051260  BP   383  0 1.000000e+00
## GO:0010721  BP   387  0 1.000000e+00
## GO:0060249  BP   392  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0051251  BP   394  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0030099  BP   401  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0009991  BP   401  0 1.000000e+00
## GO:0051346  BP   402  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:1903706  BP   407  0 1.000000e+00
## GO:0044419  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0045785  BP   411  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0002449  BP   425  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0002696  BP   446  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0001819  BP   449  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0050867  BP   461  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0006874  BP   473  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:1901615  BP   481  0 1.000000e+00
## GO:0071407  BP   482  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0048871  BP   486  0 1.000000e+00
## GO:0055074  BP   489  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0042110  BP   491  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0072503  BP   497  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0002443  BP   507  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0001525  BP   513  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:0032870  BP   518  0 1.000000e+00
## GO:0043410  BP   519  0 1.000000e+00
## GO:0072507  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0023061  BP   523  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0001501  BP   530  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0001701  BP   538  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0007169  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0010817  BP   557  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0071417  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0032787  BP   570  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0006875  BP   582  0 1.000000e+00
## GO:0010564  BP   585  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0044057  BP   596  0 1.000000e+00
## GO:0006935  BP   597  0 1.000000e+00
## GO:0042330  BP   600  0 1.000000e+00
## GO:1901137  BP   601  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0051259  BP   617  0 1.000000e+00
## GO:0048514  BP   622  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:1901699  BP   631  0 1.000000e+00
## GO:0043065  BP   632  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0043068  BP   637  0 1.000000e+00
## GO:0030003  BP   641  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0044283  BP   650  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0006873  BP   655  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0055065  BP   664  0 1.000000e+00
## GO:0080135  BP   666  0 1.000000e+00
## GO:0098542  BP   667  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0097435  BP   681  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0010942  BP   695  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0009725  BP   697  0 1.000000e+00
## GO:0030162  BP   716  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0001568  BP   719  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0055080  BP   732  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0014070  BP   734  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0043408  BP   737  0 1.000000e+00
## GO:0006974  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0098771  BP   746  0 1.000000e+00
## GO:0001944  BP   752  0 1.000000e+00
## GO:0051129  BP   755  0 1.000000e+00
## GO:0072358  BP   765  0 1.000000e+00
## GO:0045664  BP   776  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0000165  BP   793  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0045596  BP   799  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0055082  BP   810  0 1.000000e+00
## GO:0023014  BP   810  0 1.000000e+00
## GO:0050801  BP   812  0 1.000000e+00
## GO:0043009  BP   824  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0009792  BP   841  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0007167  BP   890  0 1.000000e+00
## GO:0019752  BP   902  0 1.000000e+00
## GO:0035239  BP   905  0 1.000000e+00
## GO:0006259  BP   915  0 1.000000e+00
## GO:0019725  BP   930  0 1.000000e+00
## GO:0044255  BP   932  0 1.000000e+00
## GO:0043436  BP   941  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0050767  BP   956  0 1.000000e+00
## GO:0006082  BP   968  0 1.000000e+00
## GO:0051336  BP   985  0 1.000000e+00
## GO:0001934  BP   989  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:1901135  BP  1003  0 1.000000e+00
## GO:1902533  BP  1005  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0009628  BP  1030  0 1.000000e+00
## GO:0042327  BP  1043  0 1.000000e+00
## GO:0043085  BP  1051  0 1.000000e+00
## GO:0051093  BP  1070  0 1.000000e+00
## GO:0051960  BP  1071  0 1.000000e+00
## GO:0031175  BP  1083  0 1.000000e+00
## GO:0060284  BP  1093  0 1.000000e+00
## GO:0040007  BP  1097  0 1.000000e+00
## GO:0045597  BP  1097  0 1.000000e+00
## GO:0000902  BP  1100  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0045937  BP  1112  0 1.000000e+00
## GO:0010562  BP  1112  0 1.000000e+00
## GO:0035295  BP  1122  0 1.000000e+00
## GO:0018193  BP  1137  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0072359  BP  1143  0 1.000000e+00
## GO:0060429  BP  1172  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:0048878  BP  1182  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:0031401  BP  1210  0 1.000000e+00
## GO:0032989  BP  1211  0 1.000000e+00
## GO:0048666  BP  1222  0 1.000000e+00
## GO:0071495  BP  1223  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051253  BP  1269  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:2000113  BP  1379  0 1.000000e+00
## GO:0045934  BP  1395  0 1.000000e+00
## GO:0009719  BP  1409  0 1.000000e+00
## GO:0010558  BP  1414  0 1.000000e+00
## GO:0044093  BP  1429  0 1.000000e+00
## GO:0031327  BP  1471  0 1.000000e+00
## GO:0030182  BP  1494  0 1.000000e+00
## GO:0016192  BP  1501  0 1.000000e+00
## GO:0009890  BP  1509  0 1.000000e+00
## GO:0006811  BP  1565  0 1.000000e+00
## GO:1901566  BP  1599  0 1.000000e+00
## GO:0048699  BP  1672  0 1.000000e+00
## GO:0065003  BP  1729  0 1.000000e+00
## GO:0044281  BP  1753  0 1.000000e+00
## GO:0010629  BP  1783  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0045595  BP  1909  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0043933  BP  1956  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0048468  BP  2406  0 1.000000e+00
## GO:0003008  BP  2939  0 1.000000e+00
## 
## [[1]][[9]]
##                                                                                                                                                           Term
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0036503                                                                                                                                        ERAD pathway
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0006457                                                                                                                                     protein folding
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0048519                                                                                                           negative regulation of biological process
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0050789                                                                                                                    regulation of biological process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0065007                                                                                                                               biological regulation
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0071318                                                                                                                            cellular response to ATP
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0033622                                                                                                                                 integrin activation
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:0033198                                                                                                                                     response to ATP
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0042026                                                                                                                                   protein refolding
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:0010033                                                                                                                       response to organic substance
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0010941                                                                                                                            regulation of cell death
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0019538                                                                                                                           protein metabolic process
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0023051                                                                                                                             regulation of signaling
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0033554                                                                                                                         cellular response to stress
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0006915                                                                                                                                   apoptotic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0012501                                                                                                                               programmed cell death
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0043412                                                                                                                          macromolecule modification
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0048856                                                                                                                    anatomical structure development
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0008219                                                                                                                                          cell death
## GO:0051702                                                                                                                           interaction with symbiont
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0048524                                                                                                                positive regulation of viral process
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0048518                                                                                                           positive regulation of biological process
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:0046683                                                                                                                        response to organophosphorus
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0032502                                                                                                                               developmental process
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0009987                                                                                                                                    cellular process
## GO:0009056                                                                                                                                   catabolic process
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0007584                                                                                                                                response to nutrient
## GO:0042221                                                                                                                                response to chemical
## GO:0030163                                                                                                                           protein catabolic process
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0007154                                                                                                                                  cell communication
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0044238                                                                                                                           primary metabolic process
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0050896                                                                                                                                response to stimulus
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0050821                                                                                                                               protein stabilization
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0050792                                                                                                                         regulation of viral process
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0019058                                                                                                                                    viral life cycle
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0070085                                                                                                                                       glycosylation
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0007286                                                                                                                               spermatid development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032868                                                                                                                                 response to insulin
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0060348                                                                                                                                    bone development
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0007275                                                                                                                  multicellular organism development
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0002377                                                                                                                           immunoglobulin production
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0046907                                                                                                                             intracellular transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0016032                                                                                                                                       viral process
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:1901653                                                                                                                        cellular response to peptide
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0032501                                                                                                                    multicellular organismal process
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0045927                                                                                                                       positive regulation of growth
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0006508                                                                                                                                         proteolysis
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0006950                                                                                                                                  response to stress
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0007281                                                                                                                               germ cell development
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0044403                                                                                                                                    symbiont process
## GO:0015031                                                                                                                                   protein transport
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0007165                                                                                                                                 signal transduction
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0015833                                                                                                                                   peptide transport
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0016311                                                                                                                                   dephosphorylation
## GO:0042886                                                                                                                                     amide transport
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0035690                                                                                                                           cellular response to drug
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0045184                                                                                                               establishment of protein localization
## GO:1901652                                                                                                                                 response to peptide
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0007015                                                                                                                         actin filament organization
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0042113                                                                                                                                   B cell activation
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0008283                                                                                                                                  cell proliferation
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0023052                                                                                                                                           signaling
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0001525                                                                                                                                        angiogenesis
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:0001501                                                                                                                         skeletal system development
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0048232                                                                                                                              male gamete generation
## GO:0051704                                                                                                                              multi-organism process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0048468                                                                                                                                    cell development
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0048731                                                                                                                                  system development
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0071702                                                                                                                         organic substance transport
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0008104                                                                                                                                protein localization
## GO:0051641                                                                                                                               cellular localization
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0009725                                                                                                                                 response to hormone
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0030029                                                                                                                        actin filament-based process
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0001944                                                                                                                             vasculature development
## GO:0001816                                                                                                                                 cytokine production
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0022607                                                                                                                         cellular component assembly
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0033036                                                                                                                          macromolecule localization
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0002252                                                                                                                             immune effector process
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0045321                                                                                                                                leukocyte activation
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0031175                                                                                                                       neuron projection development
## GO:0060284                                                                                                                      regulation of cell development
## GO:0040007                                                                                                                                              growth
## GO:0001775                                                                                                                                     cell activation
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0035295                                                                                                                                    tube development
## GO:0072359                                                                                                                      circulatory system development
## GO:0016043                                                                                                                     cellular component organization
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0048666                                                                                                                                  neuron development
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0009790                                                                                                                                  embryo development
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0010468                                                                                                                       regulation of gene expression
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0030182                                                                                                                              neuron differentiation
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0030030                                                                                                                        cell projection organization
## GO:0030154                                                                                                                                cell differentiation
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0048699                                                                                                                               generation of neurons
## GO:0006810                                                                                                                                           transport
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0048869                                                                                                                      cellular developmental process
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0022008                                                                                                                                        neurogenesis
## GO:0051234                                                                                                                       establishment of localization
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0042592                                                                                                                                 homeostatic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0051049                                                                                                                             regulation of transport
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0016310                                                                                                                                     phosphorylation
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0007399                                                                                                                          nervous system development
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0009605                                                                                                                       response to external stimulus
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0002376                                                                                                                               immune system process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0051179                                                                                                                                        localization
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0032879                                                                                                                          regulation of localization
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0008150                                                                                                                                  biological_process
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0048513                                                                                                                            animal organ development
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0006996                                                                                                                              organelle organization
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0048864                                                                                                                               stem cell development
## GO:0032602                                                                                                                                chemokine production
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:0051262                                                                                                                             protein tetramerization
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0006260                                                                                                                                     DNA replication
## GO:0050663                                                                                                                                  cytokine secretion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0042063                                                                                                                                         gliogenesis
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0044782                                                                                                                                 cilium organization
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006417                                                                                                                           regulation of translation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0032259                                                                                                                                         methylation
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0010256                                                                                                                    endomembrane system organization
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0009314                                                                                                                               response to radiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0016570                                                                                                                                histone modification
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0042110                                                                                                                                   T cell activation
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0061564                                                                                                                                    axon development
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0016049                                                                                                                                         cell growth
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0002250                                                                                                                            adaptive immune response
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0009306                                                                                                                                   protein secretion
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0031347                                                                                                                      regulation of defense response
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0002790                                                                                                                                   peptide secretion
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0006954                                                                                                                               inflammatory response
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0061061                                                                                                                        muscle structure development
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0006325                                                                                                                              chromatin organization
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0007017                                                                                                                           microtubule-based process
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0061024                                                                                                                               membrane organization
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0006396                                                                                                                                      RNA processing
## GO:0033993                                                                                                                                   response to lipid
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0030001                                                                                                                                 metal ion transport
## GO:0045087                                                                                                                              innate immune response
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0007417                                                                                                                  central nervous system development
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0050776                                                                                                                       regulation of immune response
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:0034097                                                                                                                                response to cytokine
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0002520                                                                                                                           immune system development
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0032940                                                                                                                                   secretion by cell
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0060429                                                                                                                              epithelium development
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0046903                                                                                                                                           secretion
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0007155                                                                                                                                       cell adhesion
## GO:0022610                                                                                                                                 biological adhesion
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0016477                                                                                                                                      cell migration
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0006811                                                                                                                                       ion transport
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0006952                                                                                                                                    defense response
## GO:0007049                                                                                                                                          cell cycle
## GO:0006955                                                                                                                                     immune response
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0007600                                                                                                                                  sensory perception
## GO:0040011                                                                                                                                          locomotion
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0009888                                                                                                                                  tissue development
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0050877                                                                                                                              nervous system process
## GO:0003008                                                                                                                                      system process
##            Ont     N DE         P.DE
## GO:1903513  BP    27  2 3.287353e-05
## GO:0030970  BP    27  2 3.287353e-05
## GO:0034976  BP   237  3 4.886289e-05
## GO:1903573  BP    42  2 8.044036e-05
## GO:0032527  BP    43  2 8.435045e-05
## GO:0030433  BP    75  2 2.578594e-04
## GO:1905897  BP    77  2 2.718015e-04
## GO:0002642  BP     1  1 3.278285e-04
## GO:0002640  BP     1  1 3.278285e-04
## GO:0036503  BP    97  2 4.310873e-04
## GO:0031247  BP     2  1 6.555630e-04
## GO:1903895  BP     2  1 6.555630e-04
## GO:0048523  BP  4687  6 9.795549e-04
## GO:0006457  BP   153  2 1.066756e-03
## GO:0002378  BP     4  1 1.310750e-03
## GO:0048519  BP  5278  6 1.900597e-03
## GO:1903894  BP     6  1 1.965561e-03
## GO:0042985  BP     7  1 2.292826e-03
## GO:0010243  BP   883  3 2.306708e-03
## GO:0060255  BP  5486  6 2.354379e-03
## GO:0050789  BP 11520  8 2.463296e-03
## GO:0044829  BP     8  1 2.619996e-03
## GO:0031330  BP   247  2 2.744456e-03
## GO:1900102  BP     9  1 2.947073e-03
## GO:1904153  BP     9  1 2.947073e-03
## GO:1901698  BP   982  3 3.124977e-03
## GO:0070862  BP    10  1 3.274056e-03
## GO:0044265  BP  1013  3 3.414016e-03
## GO:0043170  BP  8488  7 3.423091e-03
## GO:0009101  BP   278  2 3.460476e-03
## GO:0019222  BP  5953  6 3.690928e-03
## GO:0048583  BP  3883  5 3.729161e-03
## GO:0065007  BP 12135  8 3.734810e-03
## GO:0009895  BP   294  2 3.860858e-03
## GO:0036498  BP    12  1 3.927741e-03
## GO:0071318  BP    12  1 3.927741e-03
## GO:1904152  BP    12  1 3.927741e-03
## GO:0042983  BP    13  1 4.254442e-03
## GO:1904293  BP    13  1 4.254442e-03
## GO:0042984  BP    13  1 4.254442e-03
## GO:0010561  BP    14  1 4.581050e-03
## GO:0044827  BP    15  1 4.907564e-03
## GO:0009100  BP   338  2 5.068424e-03
## GO:1903019  BP    17  1 5.560311e-03
## GO:0009057  BP  1218  3 5.748673e-03
## GO:0044794  BP    19  1 6.212684e-03
## GO:0018279  BP    20  1 6.538729e-03
## GO:1900101  BP    20  1 6.538729e-03
## GO:0043161  BP   394  2 6.826744e-03
## GO:0018196  BP    21  1 6.864681e-03
## GO:0000413  BP    21  1 6.864681e-03
## GO:0051246  BP  2687  4 7.121676e-03
## GO:0033622  BP    24  1 7.841976e-03
## GO:0009966  BP  2780  4 8.053507e-03
## GO:0070861  BP    25  1 8.167554e-03
## GO:0044788  BP    28  1 9.143727e-03
## GO:1904292  BP    28  1 9.143727e-03
## GO:0033198  BP    28  1 9.143727e-03
## GO:0010498  BP   459  2 9.169712e-03
## GO:0044260  BP  7099  6 9.573505e-03
## GO:0042026  BP    30  1 9.794042e-03
## GO:0042534  BP    30  1 9.794042e-03
## GO:0042533  BP    30  1 9.794042e-03
## GO:0071704  BP 10008  7 9.998647e-03
## GO:0042981  BP  1516  3 1.057860e-02
## GO:0045070  BP    33  1 1.076881e-02
## GO:0043067  BP  1537  3 1.098788e-02
## GO:0018208  BP    34  1 1.109355e-02
## GO:0010033  BP  3070  4 1.149350e-02
## GO:0051171  BP  5104  5 1.265335e-02
## GO:0008152  BP 10485  7 1.348303e-02
## GO:0048255  BP    42  1 1.368809e-02
## GO:0010559  BP    42  1 1.368809e-02
## GO:0071417  BP   568  2 1.379779e-02
## GO:0031670  BP    43  1 1.401199e-02
## GO:0090317  BP    43  1 1.401199e-02
## GO:0040018  BP    43  1 1.401199e-02
## GO:0051239  BP  3248  4 1.403738e-02
## GO:0010941  BP  1685  3 1.414255e-02
## GO:0080090  BP  5248  5 1.428827e-02
## GO:0006511  BP   580  2 1.435904e-02
## GO:0019941  BP   592  2 1.493031e-02
## GO:0010556  BP  3311  4 1.502183e-02
## GO:0002639  BP    47  1 1.530666e-02
## GO:1903018  BP    47  1 1.530666e-02
## GO:1901137  BP   601  2 1.536529e-02
## GO:0043632  BP   602  2 1.541397e-02
## GO:0010646  BP  3338  4 1.545761e-02
## GO:0019538  BP  5344  5 1.546054e-02
## GO:0043489  BP    48  1 1.563009e-02
## GO:0023051  BP  3360  4 1.581891e-02
## GO:0051716  BP  7810  6 1.587744e-02
## GO:0033554  BP  1763  3 1.599962e-02
## GO:0050794  BP 10774  7 1.603976e-02
## GO:0031323  BP  5401  5 1.618883e-02
## GO:1902373  BP    50  1 1.627668e-02
## GO:1901699  BP   631  2 1.685530e-02
## GO:1901799  BP    53  1 1.724586e-02
## GO:0043666  BP    53  1 1.724586e-02
## GO:0006464  BP  3453  4 1.740892e-02
## GO:0036211  BP  3453  4 1.740892e-02
## GO:1901575  BP  1857  3 1.842022e-02
## GO:0080135  BP   666  2 1.867045e-02
## GO:0006915  BP  1867  3 1.868960e-02
## GO:1902369  BP    58  1 1.885932e-02
## GO:1903902  BP    58  1 1.885932e-02
## GO:0009889  BP  3542  4 1.902744e-02
## GO:2001238  BP    59  1 1.918173e-02
## GO:0042982  BP    60  1 1.950405e-02
## GO:0012501  BP  1908  3 1.981818e-02
## GO:0031329  BP   695  2 2.023601e-02
## GO:0051603  BP   696  2 2.029098e-02
## GO:0045454  BP    63  1 2.047045e-02
## GO:0043412  BP  3634  4 2.080276e-02
## GO:0030968  BP    65  1 2.111426e-02
## GO:0006487  BP    65  1 2.111426e-02
## GO:0032387  BP    68  1 2.207927e-02
## GO:0044248  BP  1996  3 2.237212e-02
## GO:0030888  BP    69  1 2.240076e-02
## GO:0044257  BP   740  2 2.277356e-02
## GO:1903051  BP    71  1 2.304345e-02
## GO:0014068  BP    71  1 2.304345e-02
## GO:0048856  BP  5871  5 2.317481e-02
## GO:0051851  BP    73  1 2.368578e-02
## GO:0002637  BP    73  1 2.368578e-02
## GO:0046626  BP    75  1 2.432773e-02
## GO:0008219  BP  2065  3 2.450137e-02
## GO:0051702  BP    79  1 2.561053e-02
## GO:1903312  BP    81  1 2.625138e-02
## GO:0034620  BP    82  1 2.657167e-02
## GO:1903363  BP    83  1 2.689186e-02
## GO:0048524  BP    84  1 2.721196e-02
## GO:0009894  BP   821  2 2.766316e-02
## GO:0035304  BP    86  1 2.785189e-02
## GO:0048518  BP  6171  5 2.862756e-02
## GO:1900076  BP    89  1 2.881109e-02
## GO:0040014  BP    90  1 2.913064e-02
## GO:0001938  BP    91  1 2.945009e-02
## GO:0046683  BP    91  1 2.945009e-02
## GO:1901564  BP  6234  5 2.987871e-02
## GO:0051817  BP    93  1 3.008873e-02
## GO:0032502  BP  6258  5 3.036534e-02
## GO:0045069  BP    94  1 3.040791e-02
## GO:0009987  BP 15803  8 3.091002e-02
## GO:0009056  BP  2257  3 3.101962e-02
## GO:0014066  BP    96  1 3.104600e-02
## GO:0051172  BP  2271  3 3.152930e-02
## GO:0006886  BP   882  2 3.160903e-02
## GO:0006807  BP  8923  6 3.166139e-02
## GO:0043488  BP    98  1 3.168372e-02
## GO:0009059  BP  4121  4 3.203166e-02
## GO:0002702  BP   100  1 3.232107e-02
## GO:0007584  BP   100  1 3.232107e-02
## GO:0042221  BP  4136  4 3.242861e-02
## GO:0030163  BP   898  2 3.268035e-02
## GO:0051897  BP   102  1 3.295805e-02
## GO:0035967  BP   103  1 3.327641e-02
## GO:0043066  BP   921  2 3.424631e-02
## GO:0043487  BP   107  1 3.454891e-02
## GO:0014074  BP   107  1 3.454891e-02
## GO:0042035  BP   109  1 3.518461e-02
## GO:0043069  BP   939  2 3.549294e-02
## GO:0006986  BP   110  1 3.550232e-02
## GO:0019079  BP   111  1 3.581995e-02
## GO:0042100  BP   112  1 3.613748e-02
## GO:1903828  BP   116  1 3.740668e-02
## GO:0071310  BP  2433  3 3.776932e-02
## GO:0008284  BP   972  2 3.782584e-02
## GO:0031324  BP  2449  3 3.841986e-02
## GO:0042089  BP   121  1 3.899113e-02
## GO:0008286  BP   121  1 3.899113e-02
## GO:0007154  BP  6648  5 3.907582e-02
## GO:0061013  BP   122  1 3.930775e-02
## GO:0010921  BP   123  1 3.962427e-02
## GO:1901135  BP  1003  2 4.007229e-02
## GO:0042107  BP   125  1 4.025705e-02
## GO:0032268  BP  2494  3 4.028254e-02
## GO:0044237  BP  9374  6 4.065051e-02
## GO:0014065  BP   127  1 4.088946e-02
## GO:0042177  BP   129  1 4.152151e-02
## GO:0001936  BP   129  1 4.152151e-02
## GO:0044238  BP  9443  6 4.217790e-02
## GO:0035966  BP   133  1 4.278451e-02
## GO:0060548  BP  1049  2 4.350167e-02
## GO:0010605  BP  2584  3 4.415410e-02
## GO:0050896  BP  9531  6 4.418734e-02
## GO:0051248  BP  1070  2 4.510460e-02
## GO:0044267  BP  4569  4 4.527959e-02
## GO:0001935  BP   143  1 4.593563e-02
## GO:1903900  BP   145  1 4.656477e-02
## GO:0002700  BP   148  1 4.750779e-02
## GO:0051896  BP   155  1 4.970501e-02
## GO:0048015  BP   157  1 5.033197e-02
## GO:0018193  BP  1137  2 5.037085e-02
## GO:0050793  BP  2721  3 5.042104e-02
## GO:0048017  BP   160  1 5.127173e-02
## GO:0035821  BP   160  1 5.127173e-02
## GO:1901565  BP  1151  2 5.149990e-02
## GO:2001236  BP   161  1 5.158480e-02
## GO:0032680  BP   164  1 5.252348e-02
## GO:0051017  BP   165  1 5.283619e-02
## GO:1903555  BP   166  1 5.314881e-02
## GO:0035303  BP   167  1 5.346134e-02
## GO:0032640  BP   167  1 5.346134e-02
## GO:0061572  BP   168  1 5.377378e-02
## GO:0050821  BP   169  1 5.408613e-02
## GO:0071706  BP   170  1 5.439839e-02
## GO:0010977  BP   175  1 5.595834e-02
## GO:0043902  BP   175  1 5.595834e-02
## GO:1901701  BP  1206  2 5.602855e-02
## GO:0009892  BP  2843  3 5.637962e-02
## GO:0061136  BP   178  1 5.689323e-02
## GO:0071495  BP  1223  2 5.745779e-02
## GO:2001235  BP   183  1 5.844957e-02
## GO:0050792  BP   183  1 5.844957e-02
## GO:0045766  BP   185  1 5.907148e-02
## GO:0043491  BP   186  1 5.938230e-02
## GO:0032869  BP   193  1 6.155552e-02
## GO:0031669  BP   194  1 6.186562e-02
## GO:1901576  BP  5031  4 6.208014e-02
## GO:0043413  BP   196  1 6.248556e-02
## GO:0006486  BP   196  1 6.248556e-02
## GO:0043903  BP   198  1 6.310513e-02
## GO:0050679  BP   199  1 6.341479e-02
## GO:0019058  BP   199  1 6.341479e-02
## GO:0051224  BP   204  1 6.496171e-02
## GO:1904018  BP   204  1 6.496171e-02
## GO:0001666  BP   204  1 6.496171e-02
## GO:0031345  BP   205  1 6.527083e-02
## GO:0070887  BP  3023  3 6.581469e-02
## GO:0006402  BP   207  1 6.588879e-02
## GO:0009058  BP  5125  4 6.590164e-02
## GO:1903050  BP   208  1 6.619764e-02
## GO:1904950  BP   209  1 6.650640e-02
## GO:0070085  BP   210  1 6.681507e-02
## GO:0033157  BP   210  1 6.681507e-02
## GO:0080134  BP  1337  2 6.738736e-02
## GO:0035264  BP   212  1 6.743214e-02
## GO:0048639  BP   214  1 6.804885e-02
## GO:0007286  BP   218  1 6.928121e-02
## GO:0031668  BP   223  1 7.081965e-02
## GO:0050670  BP   225  1 7.143440e-02
## GO:0032868  BP   225  1 7.143440e-02
## GO:0032944  BP   227  1 7.204880e-02
## GO:0048515  BP   227  1 7.204880e-02
## GO:0097191  BP   229  1 7.266284e-02
## GO:0036293  BP   230  1 7.296973e-02
## GO:0060348  BP   231  1 7.327653e-02
## GO:0009719  BP  1409  2 7.395455e-02
## GO:0006401  BP   238  1 7.542163e-02
## GO:0006470  BP   238  1 7.542163e-02
## GO:0070663  BP   238  1 7.542163e-02
## GO:1903362  BP   239  1 7.572772e-02
## GO:0007275  BP  5362  4 7.615149e-02
## GO:0010604  BP  3212  3 7.653455e-02
## GO:0071375  BP   244  1 7.725683e-02
## GO:0002377  BP   252  1 7.969881e-02
## GO:1903311  BP   253  1 8.000366e-02
## GO:0002699  BP   259  1 8.183090e-02
## GO:0045665  BP   260  1 8.213513e-02
## GO:0046907  BP  1502  2 8.275512e-02
## GO:0009967  BP  1504  2 8.294817e-02
## GO:0050864  BP   264  1 8.335117e-02
## GO:0051094  BP  1540  2 8.644936e-02
## GO:0031647  BP   275  1 8.668802e-02
## GO:0070482  BP   282  1 8.880593e-02
## GO:0016032  BP   283  1 8.910814e-02
## GO:0071496  BP   285  1 8.971229e-02
## GO:0048585  BP  1576  2 8.999970e-02
## GO:1901653  BP   287  1 9.031610e-02
## GO:1901700  BP  1589  2 9.129359e-02
## GO:0032501  BP  8233  5 9.211262e-02
## GO:1901566  BP  1599  2 9.229310e-02
## GO:0031326  BP  3470  3 9.247654e-02
## GO:0009893  BP  3486  3 9.351373e-02
## GO:0045765  BP   307  1 9.633487e-02
## GO:0046651  BP   308  1 9.663489e-02
## GO:0045927  BP   308  1 9.663489e-02
## GO:0032943  BP   310  1 9.723467e-02
## GO:0042127  BP  1649  2 9.734454e-02
## GO:0006508  BP  1657  2 9.816097e-02
## GO:0034613  BP  1676  2 1.001089e-01
## GO:0070727  BP  1686  2 1.011390e-01
## GO:0043434  BP   324  1 1.014234e-01
## GO:0019220  BP  1692  2 1.017588e-01
## GO:0051174  BP  1693  2 1.018622e-01
## GO:0070661  BP   331  1 1.035114e-01
## GO:0006950  BP  3640  3 1.037790e-01
## GO:0050768  BP   337  1 1.052977e-01
## GO:0007281  BP   339  1 1.058924e-01
## GO:1901342  BP   341  1 1.064868e-01
## GO:0044403  BP   343  1 1.070809e-01
## GO:0015031  BP  1746  2 1.073905e-01
## GO:0002440  BP   345  1 1.076746e-01
## GO:0045861  BP   349  1 1.088610e-01
## GO:0031399  BP  1760  2 1.088662e-01
## GO:0007165  BP  6028  4 1.096943e-01
## GO:0050678  BP   358  1 1.115253e-01
## GO:0051961  BP   361  1 1.124118e-01
## GO:0015833  BP  1797  2 1.127963e-01
## GO:0010557  BP  1799  2 1.130099e-01
## GO:0016311  BP   366  1 1.138877e-01
## GO:0042886  BP  1817  2 1.149384e-01
## GO:0031667  BP   371  1 1.153614e-01
## GO:0042176  BP   378  1 1.174210e-01
## GO:0035690  BP   380  1 1.180087e-01
## GO:0010647  BP  1854  2 1.189335e-01
## GO:0045184  BP  1856  2 1.191506e-01
## GO:1901652  BP   384  1 1.191831e-01
## GO:0023056  BP  1860  2 1.195852e-01
## GO:0010721  BP   387  1 1.200629e-01
## GO:0043900  BP   391  1 1.212349e-01
## GO:0007015  BP   400  1 1.238668e-01
## GO:0048638  BP   401  1 1.241588e-01
## GO:0009991  BP   401  1 1.241588e-01
## GO:0051649  BP  1906  2 1.246166e-01
## GO:0042113  BP   405  1 1.253260e-01
## GO:0044419  BP   408  1 1.262005e-01
## GO:0051240  BP  1929  2 1.271550e-01
## GO:2001233  BP   414  1 1.279472e-01
## GO:0009891  BP  1943  2 1.287073e-01
## GO:0002697  BP   420  1 1.296908e-01
## GO:0050673  BP   425  1 1.311415e-01
## GO:0034655  BP   425  1 1.311415e-01
## GO:0034645  BP  4022  3 1.313629e-01
## GO:0010628  BP  1981  2 1.329478e-01
## GO:0065008  BP  4051  3 1.335748e-01
## GO:0022412  BP   436  1 1.343256e-01
## GO:0008283  BP  1994  2 1.344073e-01
## GO:0032386  BP   438  1 1.349034e-01
## GO:0044270  BP   463  1 1.420978e-01
## GO:0023052  BP  6579  4 1.426588e-01
## GO:0046700  BP   469  1 1.438167e-01
## GO:0071407  BP   482  1 1.475305e-01
## GO:0019439  BP   483  1 1.478156e-01
## GO:0071705  BP  2133  2 1.502809e-01
## GO:0010608  BP   504  1 1.537834e-01
## GO:2000026  BP  2184  2 1.562203e-01
## GO:0001525  BP   513  1 1.563297e-01
## GO:1901361  BP   513  1 1.563297e-01
## GO:0032870  BP   518  1 1.577415e-01
## GO:0043410  BP   519  1 1.580236e-01
## GO:1903827  BP   520  1 1.583056e-01
## GO:0001501  BP   530  1 1.611213e-01
## GO:0001701  BP   538  1 1.633679e-01
## GO:0051051  BP   540  1 1.639287e-01
## GO:0007169  BP   553  1 1.675661e-01
## GO:0051249  BP   555  1 1.681245e-01
## GO:0048584  BP  2294  2 1.692216e-01
## GO:0007283  BP   561  1 1.697976e-01
## GO:0048232  BP   581  1 1.753534e-01
## GO:0051704  BP  2389  2 1.806423e-01
## GO:0010975  BP   603  1 1.814273e-01
## GO:0097190  BP   605  1 1.819775e-01
## GO:0048468  BP  2406  2 1.827033e-01
## GO:0048514  BP   622  1 1.866413e-01
## GO:0043065  BP   632  1 1.893739e-01
## GO:0016071  BP   637  1 1.907371e-01
## GO:0043068  BP   637  1 1.907371e-01
## GO:0048731  BP  4746  3 1.910367e-01
## GO:0007166  BP  2497  2 1.938189e-01
## GO:0071702  BP  2505  2 1.948024e-01
## GO:0002694  BP   652  1 1.948149e-01
## GO:0030036  BP   663  1 1.977938e-01
## GO:0001817  BP   679  1 2.021095e-01
## GO:0097435  BP   681  1 2.026475e-01
## GO:0008104  BP  2578  2 2.038218e-01
## GO:0051641  BP  2592  2 2.055603e-01
## GO:0050865  BP   693  1 2.058691e-01
## GO:0010942  BP   695  1 2.064049e-01
## GO:0009725  BP   697  1 2.069404e-01
## GO:0044249  BP  4938  3 2.082578e-01
## GO:0051223  BP   708  1 2.098800e-01
## GO:0030162  BP   716  1 2.120119e-01
## GO:0040008  BP   717  1 2.122780e-01
## GO:0001568  BP   719  1 2.128101e-01
## GO:0007276  BP   719  1 2.128101e-01
## GO:0014070  BP   734  1 2.167903e-01
## GO:0043408  BP   737  1 2.175842e-01
## GO:0070201  BP   740  1 2.183774e-01
## GO:0030029  BP   746  1 2.199618e-01
## GO:0090087  BP   749  1 2.207529e-01
## GO:0001944  BP   752  1 2.215433e-01
## GO:0001816  BP   755  1 2.223330e-01
## GO:0051129  BP   755  1 2.223330e-01
## GO:0072358  BP   765  1 2.249603e-01
## GO:0120035  BP   772  1 2.267948e-01
## GO:0045664  BP   776  1 2.278414e-01
## GO:0031344  BP   781  1 2.291479e-01
## GO:0048589  BP   787  1 2.307131e-01
## GO:0003006  BP   791  1 2.317550e-01
## GO:0000165  BP   793  1 2.322755e-01
## GO:0022607  BP  2807  2 2.325677e-01
## GO:0045596  BP   799  1 2.338352e-01
## GO:0023014  BP   810  1 2.366873e-01
## GO:0043009  BP   824  1 2.403039e-01
## GO:0033036  BP  2901  2 2.445303e-01
## GO:0009792  BP   841  1 2.446753e-01
## GO:0046649  BP   841  1 2.446753e-01
## GO:0006796  BP  2933  2 2.486202e-01
## GO:0048609  BP   858  1 2.490247e-01
## GO:0006793  BP  2955  2 2.514368e-01
## GO:0032504  BP   869  1 2.518273e-01
## GO:0002252  BP   879  1 2.543672e-01
## GO:0019953  BP   883  1 2.553811e-01
## GO:0007167  BP   890  1 2.571524e-01
## GO:0042493  BP   894  1 2.581629e-01
## GO:0048522  BP  5469  3 2.583280e-01
## GO:0035239  BP   905  1 2.609357e-01
## GO:0044085  BP  3041  2 2.624803e-01
## GO:0051252  BP  3049  2 2.635101e-01
## GO:0019725  BP   930  1 2.672037e-01
## GO:0050767  BP   956  1 2.736730e-01
## GO:0060341  BP   958  1 2.741686e-01
## GO:0051336  BP   985  1 2.808298e-01
## GO:0001934  BP   989  1 2.818121e-01
## GO:0045321  BP   994  1 2.830383e-01
## GO:0032269  BP  1003  1 2.852408e-01
## GO:2000112  BP  3219  2 2.854722e-01
## GO:1902533  BP  1005  1 2.857295e-01
## GO:0044703  BP  1028  1 2.913280e-01
## GO:0009628  BP  1030  1 2.918130e-01
## GO:0032880  BP  1038  1 2.937501e-01
## GO:0042327  BP  1043  1 2.949585e-01
## GO:0051093  BP  1070  1 3.014524e-01
## GO:0051960  BP  1071  1 3.016919e-01
## GO:0002684  BP  1072  1 3.019313e-01
## GO:0019219  BP  3352  2 3.027298e-01
## GO:0022603  BP  1076  1 3.028883e-01
## GO:0031175  BP  1083  1 3.045603e-01
## GO:0060284  BP  1093  1 3.069428e-01
## GO:0040007  BP  1097  1 3.078938e-01
## GO:0001775  BP  1098  1 3.081314e-01
## GO:0045937  BP  1112  1 3.114499e-01
## GO:0010562  BP  1112  1 3.114499e-01
## GO:0035295  BP  1122  1 3.138118e-01
## GO:0072359  BP  1143  1 3.187486e-01
## GO:0016043  BP  6083  3 3.196324e-01
## GO:0048646  BP  1157  1 3.220225e-01
## GO:0009968  BP  1175  1 3.262115e-01
## GO:0031401  BP  1210  1 3.342922e-01
## GO:0048666  BP  1222  1 3.370431e-01
## GO:0045944  BP  1226  1 3.379578e-01
## GO:0071840  BP  6266  3 3.383907e-01
## GO:0009790  BP  1231  1 3.390997e-01
## GO:0051253  BP  1269  1 3.477220e-01
## GO:0007010  BP  1305  1 3.557994e-01
## GO:0016070  BP  3761  2 3.558633e-01
## GO:0010648  BP  1306  1 3.560226e-01
## GO:0023057  BP  1310  1 3.569144e-01
## GO:0051241  BP  1343  1 3.642306e-01
## GO:0010468  BP  3860  2 3.686736e-01
## GO:2000113  BP  1379  1 3.721287e-01
## GO:0045934  BP  1395  1 3.756114e-01
## GO:0001932  BP  1410  1 3.788610e-01
## GO:0010558  BP  1414  1 3.797251e-01
## GO:0031327  BP  1471  1 3.919242e-01
## GO:0022414  BP  1471  1 3.919242e-01
## GO:0000003  BP  1472  1 3.921363e-01
## GO:0002682  BP  1473  1 3.923484e-01
## GO:0030182  BP  1494  1 3.967869e-01
## GO:0009890  BP  1509  1 3.999398e-01
## GO:0120036  BP  1526  1 4.034957e-01
## GO:0032270  BP  1532  1 4.047463e-01
## GO:0042325  BP  1533  1 4.049545e-01
## GO:0045893  BP  1536  1 4.055788e-01
## GO:1903508  BP  1540  1 4.064102e-01
## GO:1902680  BP  1541  1 4.066179e-01
## GO:0030030  BP  1572  1 4.130253e-01
## GO:0030154  BP  4218  2 4.145794e-01
## GO:0090304  BP  4277  2 4.220619e-01
## GO:0051254  BP  1638  1 4.264654e-01
## GO:0051247  BP  1639  1 4.266670e-01
## GO:0048699  BP  1672  1 4.332834e-01
## GO:0006810  BP  4398  2 4.373168e-01
## GO:1902531  BP  1710  1 4.408195e-01
## GO:0048869  BP  4443  2 4.429568e-01
## GO:0065003  BP  1729  1 4.445546e-01
## GO:0022008  BP  1778  1 4.540866e-01
## GO:0051234  BP  4538  2 4.547998e-01
## GO:0010629  BP  1783  1 4.550511e-01
## GO:0050790  BP  1807  1 4.596603e-01
## GO:0006468  BP  1815  1 4.611890e-01
## GO:0045935  BP  1833  1 4.646150e-01
## GO:0042592  BP  1887  1 4.747786e-01
## GO:0031328  BP  1903  1 4.777575e-01
## GO:0045595  BP  1909  1 4.788707e-01
## GO:0051049  BP  1946  1 4.856900e-01
## GO:0043933  BP  1956  1 4.875196e-01
## GO:0006139  BP  4813  2 4.885455e-01
## GO:0010467  BP  4814  2 4.886667e-01
## GO:0006357  BP  1993  1 4.942397e-01
## GO:0046483  BP  4940  2 5.038331e-01
## GO:0006366  BP  2049  1 5.042639e-01
## GO:0006725  BP  5012  2 5.124102e-01
## GO:0016310  BP  2166  1 5.246481e-01
## GO:1901360  BP  5208  2 5.354108e-01
## GO:0007399  BP  2333  1 5.524720e-01
## GO:0034641  BP  5547  2 5.739067e-01
## GO:0065009  BP  2477  1 5.753088e-01
## GO:0009605  BP  2515  1 5.811624e-01
## GO:0051128  BP  2558  1 5.877010e-01
## GO:0035556  BP  2608  1 5.951915e-01
## GO:0002376  BP  2664  1 6.034393e-01
## GO:0009653  BP  2744  1 6.149667e-01
## GO:0051179  BP  5950  2 6.173747e-01
## GO:0006355  BP  2784  1 6.206196e-01
## GO:1903506  BP  2792  1 6.217414e-01
## GO:2001141  BP  2801  1 6.230000e-01
## GO:0032879  BP  2835  1 6.277217e-01
## GO:0006351  BP  2875  1 6.332103e-01
## GO:0097659  BP  2883  1 6.342995e-01
## GO:0032774  BP  2896  1 6.360633e-01
## GO:0051173  BP  3061  1 6.578129e-01
## GO:0008150  BP 23210  8 6.696220e-01
## GO:0031325  BP  3201  1 6.753663e-01
## GO:0034654  BP  3310  1 6.884822e-01
## GO:0018130  BP  3374  1 6.959652e-01
## GO:0019438  BP  3386  1 6.973507e-01
## GO:0048513  BP  3504  1 7.106825e-01
## GO:1901362  BP  3510  1 7.113464e-01
## GO:0006996  BP  3568  1 7.176961e-01
## GO:0044271  BP  3993  1 7.606129e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:1900035  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:0060311  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035505  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0060310  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:0035504  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:1990079  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:0035854  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0044467  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:1900168  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1900166  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0060309  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:1900041  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:0060559  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0071657  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:1901258  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060557  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:0010725  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0071611  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0036301  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0070164  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:2000173  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:0045917  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:0033092  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:2000259  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:0046136  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0071655  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1901256  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0030222  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0070487  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0033091  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1900034  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0070162  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0045650  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0034242  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000556  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0060319  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:2000554  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0070163  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000977  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0021902  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0051541  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0071971  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0070345  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0038001  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:0060558  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045654  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0031394  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0035234  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0014050  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903589  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:0031622  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:2001214  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:2000172  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0060556  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0035744  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:1900038  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:2001280  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0060215  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0031620  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0033084  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1900040  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0033080  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:0031392  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0060872  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0042368  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0070341  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0070970  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:0045080  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0032725  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0045086  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0071639  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:0032308  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0070344  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0033083  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0001660  BP    13  0 1.000000e+00
## GO:0021877  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0033079  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:0031652  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:0042482  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:1903587  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:2001279  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0097154  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0048755  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0042362  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0032604  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0030213  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0070486  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0045060  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048711  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0034116  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901550  BP    14  0 1.000000e+00
## GO:1903140  BP    14  0 1.000000e+00
## GO:0032645  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0032306  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:2001212  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0042033  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0043383  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0033089  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0051044  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0045073  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0031650  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0030656  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0030730  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:1905155  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:0060100  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0045059  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:1900037  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0030449  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0042359  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0050755  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002922  BP    17  0 1.000000e+00
## GO:0032305  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0045410  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0071636  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0032310  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:2000257  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0045019  BP    18  0 1.000000e+00
## GO:1904406  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0021514  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0002043  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0050650  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:0071605  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0051956  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:0030502  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0002726  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0046886  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0010623  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0045076  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0071637  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:0060099  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0048143  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0060252  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0045649  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1905153  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0097734  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0006516  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0042094  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0090050  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:2000193  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0015732  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0031649  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0033008  BP    22  0 1.000000e+00
## GO:0043306  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0032303  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0051043  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0009110  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0035743  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0140112  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0002827  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0060216  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0050995  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:0045723  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032352  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0032770  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:0032703  BP    25  0 1.000000e+00
## GO:1902230  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0045648  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0090023  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0010575  BP    25  0 1.000000e+00
## GO:0001516  BP    25  0 1.000000e+00
## GO:0046457  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:0014048  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0034114  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0071425  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0060716  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:0070168  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:0010829  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:0021533  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0030212  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0071624  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0050996  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0010954  BP    27  0 1.000000e+00
## GO:0010893  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0045408  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0045061  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:0035162  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0042226  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:2000178  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0032891  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:1902932  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:1900745  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:1903319  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0050654  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:2000778  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0033005  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:0002724  BP    30  0 1.000000e+00
## GO:0002825  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:0042481  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:2000352  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0043302  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0033081  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0045652  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0090022  BP    31  0 1.000000e+00
## GO:0050999  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0010574  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:0032743  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:2000191  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0006775  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:2001240  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:1901099  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0010573  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0014047  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1902624  BP    34  0 1.000000e+00
## GO:2000758  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0071634  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0032733  BP    35  0 1.000000e+00
## GO:1902895  BP    35  0 1.000000e+00
## GO:0045940  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0048710  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0043304  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0060142  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0051953  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:1903427  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0045601  BP    36  0 1.000000e+00
## GO:0002920  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0033006  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0071604  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0045746  BP    37  0 1.000000e+00
## GO:1903792  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0060674  BP    37  0 1.000000e+00
## GO:0002675  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:1902229  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0014002  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0030851  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0043368  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0006636  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:0021983  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090049  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:0060251  BP    39  0 1.000000e+00
## GO:0046885  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0002369  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0046456  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0030225  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0006693  BP    40  0 1.000000e+00
## GO:0006692  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0006953  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0006509  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:0046627  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:1903672  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:0042304  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:1900744  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0001709  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0048873  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:0045740  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0045923  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0050691  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0032768  BP    42  0 1.000000e+00
## GO:1902622  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0006024  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:1901985  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0061028  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:1900077  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0002888  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:1902893  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0072604  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:0032757  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0032309  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0010718  BP    47  0 1.000000e+00
## GO:0045429  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:2001239  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0042088  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0043303  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0002762  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0038066  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:1904407  BP    48  0 1.000000e+00
## GO:0032892  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0002279  BP    49  0 1.000000e+00
## GO:0002448  BP    49  0 1.000000e+00
## GO:0030195  BP    49  0 1.000000e+00
## GO:1904036  BP    49  0 1.000000e+00
## GO:0070229  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0051955  BP    49  0 1.000000e+00
## GO:0045646  BP    49  0 1.000000e+00
## GO:0043300  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0031663  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:1900047  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:1902930  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071622  BP    50  0 1.000000e+00
## GO:0033003  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0033619  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0050819  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0051353  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:1901570  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0061614  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0006023  BP    53  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:1901571  BP    53  0 1.000000e+00
## GO:0061900  BP    53  0 1.000000e+00
## GO:0034113  BP    53  0 1.000000e+00
## GO:0071715  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0051703  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0030219  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0002720  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0035176  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0014009  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0045599  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0045687  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0044060  BP    54  0 1.000000e+00
## GO:2000351  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0035065  BP    54  0 1.000000e+00
## GO:0032350  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0045058  BP    55  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0002042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0030166  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032653  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0035019  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0043536  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0072577  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0050994  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1903510  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0032663  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0021517  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0060986  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0032613  BP    59  0 1.000000e+00
## GO:0060711  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0021515  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0045840  BP    61  0 1.000000e+00
## GO:1903428  BP    61  0 1.000000e+00
## GO:1903307  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0015800  BP    62  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0032720  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:1903556  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0032722  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0032677  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:2000756  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0034605  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0002763  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0150076  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:1903793  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0002886  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0032623  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0140253  BP    67  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0001885  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0050710  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:2000378  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0002673  BP    67  0 1.000000e+00
## GO:0060688  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0000768  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0045428  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0021536  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0032637  BP    69  0 1.000000e+00
## GO:0043299  BP    69  0 1.000000e+00
## GO:0045576  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0043407  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:2000107  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0032370  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:1903670  BP    69  0 1.000000e+00
## GO:0006949  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006766  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0019915  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:2001021  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:0061045  BP    71  0 1.000000e+00
## GO:0002711  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0050810  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:1901224  BP    74  0 1.000000e+00
## GO:0042108  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:1901983  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0042446  BP    75  0 1.000000e+00
## GO:0032418  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0051705  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0021879  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0006809  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0070228  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0006835  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0032729  BP    77  0 1.000000e+00
## GO:0051785  BP    77  0 1.000000e+00
## GO:0050766  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0030193  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:0050688  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0043507  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:1900046  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0097192  BP    79  0 1.000000e+00
## GO:0048663  BP    79  0 1.000000e+00
## GO:0051781  BP    79  0 1.000000e+00
## GO:0043525  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0006029  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0032890  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0038034  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0050805  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:0046209  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0030500  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0070613  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0050818  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0002718  BP    82  0 1.000000e+00
## GO:1903317  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0030203  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:2001057  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0048708  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0002275  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0051341  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0015908  BP    86  0 1.000000e+00
## GO:0032611  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0008593  BP    86  0 1.000000e+00
## GO:0010827  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:0002690  BP    87  0 1.000000e+00
## GO:0010717  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0033077  BP    88  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:1903035  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0032642  BP    88  0 1.000000e+00
## GO:0019217  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0021872  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0014015  BP    89  0 1.000000e+00
## GO:1905954  BP    89  0 1.000000e+00
## GO:1904035  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:0045833  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0043535  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:0021954  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0045685  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0032602  BP    92  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:0046889  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0043506  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:0002709  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0070555  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0001570  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0046888  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0045582  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0071456  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0030279  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:0002444  BP    97  0 1.000000e+00
## GO:2001243  BP    97  0 1.000000e+00
## GO:0045638  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0010595  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0070167  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0070227  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:2001237  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0042102  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:0045921  BP    99  0 1.000000e+00
## GO:0032755  BP    99  0 1.000000e+00
## GO:0045639  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0030593  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0006022  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0110110  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:1901222  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0033559  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0002367  BP   102  0 1.000000e+00
## GO:0050886  BP   102  0 1.000000e+00
## GO:1902106  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0019218  BP   102  0 1.000000e+00
## GO:0021510  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:1903426  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0009408  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0032612  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:0042136  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0050764  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0045446  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0038061  BP   107  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0006275  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:1904659  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0045621  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:2000106  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0008645  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:2000379  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0032649  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0006690  BP   110  0 1.000000e+00
## GO:0001776  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0021782  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0015749  BP   111  0 1.000000e+00
## GO:0071901  BP   111  0 1.000000e+00
## GO:0002688  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0034219  BP   112  0 1.000000e+00
## GO:0001892  BP   112  0 1.000000e+00
## GO:0008630  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:0043123  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:1904019  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:2000177  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0043534  BP   114  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0042472  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0000187  BP   115  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0032368  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0030282  BP   116  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0002040  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0042476  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0051952  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0003158  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:1990266  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:1901136  BP   120  0 1.000000e+00
## GO:0002062  BP   120  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:1901216  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0044070  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0046717  BP   121  0 1.000000e+00
## GO:0036294  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:1903409  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0002526  BP   122  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0015837  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0032609  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0071621  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0002761  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0010565  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:0051092  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0045995  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0030218  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0071887  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0001837  BP   133  0 1.000000e+00
## GO:1901568  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0034763  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0006633  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0071453  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0045598  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0042471  BP   136  0 1.000000e+00
## GO:0035270  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0050671  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0002456  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0032946  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0016573  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0002824  BP   140  0 1.000000e+00
## GO:0050921  BP   140  0 1.000000e+00
## GO:0072089  BP   140  0 1.000000e+00
## GO:0046165  BP   141  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0061041  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0034101  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0050729  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0046330  BP   143  0 1.000000e+00
## GO:0010634  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0018393  BP   144  0 1.000000e+00
## GO:0007613  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0002687  BP   144  0 1.000000e+00
## GO:0002708  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0070665  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1905952  BP   145  0 1.000000e+00
## GO:0097530  BP   146  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0008643  BP   147  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:0006475  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0042133  BP   147  0 1.000000e+00
## GO:0002821  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0030856  BP   147  0 1.000000e+00
## GO:0002831  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0006865  BP   150  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0015718  BP   150  0 1.000000e+00
## GO:0050715  BP   150  0 1.000000e+00
## GO:0045580  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0014013  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0051250  BP   152  0 1.000000e+00
## GO:0050709  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0031056  BP   153  0 1.000000e+00
## GO:0032675  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0018394  BP   155  0 1.000000e+00
## GO:0062013  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0007596  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0051302  BP   156  0 1.000000e+00
## GO:0006694  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0045834  BP   157  0 1.000000e+00
## GO:0010594  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0007599  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:1903707  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0050817  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0031214  BP   160  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0032635  BP   162  0 1.000000e+00
## GO:0002792  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0007088  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0009266  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0030902  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0043122  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0019827  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0045931  BP   166  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:1902107  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0098727  BP   169  0 1.000000e+00
## GO:2001242  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:0001890  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0042129  BP   170  0 1.000000e+00
## GO:0046890  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0043409  BP   171  0 1.000000e+00
## GO:0043271  BP   171  0 1.000000e+00
## GO:0032874  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0070304  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0045807  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0002262  BP   176  0 1.000000e+00
## GO:0002705  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0007219  BP   177  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:1903034  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0001659  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:0002695  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0045619  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:0061351  BP   183  0 1.000000e+00
## GO:0051262  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0001764  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0050796  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:1903305  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0006956  BP   187  0 1.000000e+00
## GO:0022408  BP   187  0 1.000000e+00
## GO:0050870  BP   187  0 1.000000e+00
## GO:0006473  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0046328  BP   188  0 1.000000e+00
## GO:0006911  BP   189  0 1.000000e+00
## GO:0002822  BP   189  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:0007249  BP   193  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0006469  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0042180  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:0050731  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0002706  BP   195  0 1.000000e+00
## GO:0051783  BP   195  0 1.000000e+00
## GO:1902275  BP   197  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:0048469  BP   198  0 1.000000e+00
## GO:0043542  BP   198  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0099024  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0009743  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0072376  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0032388  BP   200  0 1.000000e+00
## GO:0008217  BP   200  0 1.000000e+00
## GO:2000377  BP   200  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0002685  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0007254  BP   202  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0050866  BP   203  0 1.000000e+00
## GO:1903039  BP   203  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0007160  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0042098  BP   205  0 1.000000e+00
## GO:0010324  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0002819  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0097529  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903708  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:2000027  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:2001020  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0045732  BP   210  0 1.000000e+00
## GO:0051216  BP   211  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0048839  BP   211  0 1.000000e+00
## GO:0030595  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0050920  BP   213  0 1.000000e+00
## GO:0050707  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0033673  BP   214  0 1.000000e+00
## GO:0002274  BP   215  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0045637  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048762  BP   216  0 1.000000e+00
## GO:0002573  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0042445  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0070374  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0043406  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0030073  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0021953  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010632  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0051607  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0090276  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:1901617  BP   229  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:2001234  BP   231  0 1.000000e+00
## GO:0043543  BP   231  0 1.000000e+00
## GO:1903531  BP   232  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0032872  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0001894  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0030278  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0070302  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0045444  BP   238  0 1.000000e+00
## GO:0010001  BP   239  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:0016485  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0001763  BP   240  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0043583  BP   242  0 1.000000e+00
## GO:0010466  BP   242  0 1.000000e+00
## GO:0022409  BP   242  0 1.000000e+00
## GO:0006260  BP   243  0 1.000000e+00
## GO:0050663  BP   244  0 1.000000e+00
## GO:1901215  BP   244  0 1.000000e+00
## GO:0051091  BP   244  0 1.000000e+00
## GO:0017157  BP   244  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0051054  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0051348  BP   246  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0002064  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0032147  BP   248  0 1.000000e+00
## GO:0090068  BP   249  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0002703  BP   250  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0045055  BP   256  0 1.000000e+00
## GO:0140014  BP   257  0 1.000000e+00
## GO:0051403  BP   257  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:0001818  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0016050  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0051048  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050730  BP   263  0 1.000000e+00
## GO:0072330  BP   264  0 1.000000e+00
## GO:0043523  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0030217  BP   269  0 1.000000e+00
## GO:0002366  BP   269  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0009615  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0060485  BP   272  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0002263  BP   273  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0030072  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0071902  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0010631  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:2000146  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0071222  BP   282  0 1.000000e+00
## GO:0090132  BP   282  0 1.000000e+00
## GO:0045165  BP   284  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0007162  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0090130  BP   284  0 1.000000e+00
## GO:0061448  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:1903037  BP   287  0 1.000000e+00
## GO:0072593  BP   288  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:0071219  BP   290  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:0031098  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0097193  BP   292  0 1.000000e+00
## GO:0007611  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0051402  BP   293  0 1.000000e+00
## GO:0030100  BP   293  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:1902105  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0050851  BP   295  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0043405  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060326  BP   299  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0051604  BP   300  0 1.000000e+00
## GO:0046942  BP   301  0 1.000000e+00
## GO:0090596  BP   301  0 1.000000e+00
## GO:0008202  BP   301  0 1.000000e+00
## GO:0015849  BP   302  0 1.000000e+00
## GO:0050714  BP   302  0 1.000000e+00
## GO:0046883  BP   302  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0050863  BP   304  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0016042  BP   306  0 1.000000e+00
## GO:0070372  BP   306  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0032103  BP   312  0 1.000000e+00
## GO:0071216  BP   313  0 1.000000e+00
## GO:0006066  BP   314  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0043062  BP   315  0 1.000000e+00
## GO:0048872  BP   315  0 1.000000e+00
## GO:0051271  BP   316  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0021700  BP   317  0 1.000000e+00
## GO:0048562  BP   318  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0007159  BP   319  0 1.000000e+00
## GO:0018108  BP   319  0 1.000000e+00
## GO:0051235  BP   322  0 1.000000e+00
## GO:0018212  BP   322  0 1.000000e+00
## GO:0043270  BP   322  0 1.000000e+00
## GO:0070371  BP   323  0 1.000000e+00
## GO:0042063  BP   323  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0050890  BP   326  0 1.000000e+00
## GO:0002429  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0007204  BP   327  0 1.000000e+00
## GO:0045862  BP   328  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006869  BP   330  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0002793  BP   331  0 1.000000e+00
## GO:0040013  BP   332  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0032102  BP   336  0 1.000000e+00
## GO:0006909  BP   336  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0002768  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0019216  BP   338  0 1.000000e+00
## GO:0031589  BP   339  0 1.000000e+00
## GO:0050900  BP   340  0 1.000000e+00
## GO:0019221  BP   341  0 1.000000e+00
## GO:0050878  BP   342  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0018205  BP   345  0 1.000000e+00
## GO:0001655  BP   346  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:0045787  BP   349  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0050727  BP   354  0 1.000000e+00
## GO:0006959  BP   355  0 1.000000e+00
## GO:0031331  BP   355  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0033044  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0062012  BP   359  0 1.000000e+00
## GO:0032496  BP   359  0 1.000000e+00
## GO:0042060  BP   360  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0046394  BP   362  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0016053  BP   363  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0046879  BP   365  0 1.000000e+00
## GO:1901214  BP   368  0 1.000000e+00
## GO:0010876  BP   370  0 1.000000e+00
## GO:0031349  BP   370  0 1.000000e+00
## GO:0001505  BP   372  0 1.000000e+00
## GO:0009914  BP   373  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0051480  BP   374  0 1.000000e+00
## GO:0006887  BP   375  0 1.000000e+00
## GO:0006631  BP   376  0 1.000000e+00
## GO:0002237  BP   377  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0001503  BP   381  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0051260  BP   383  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0030900  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0060249  BP   392  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0051251  BP   394  0 1.000000e+00
## GO:0030098  BP   395  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0022407  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0051090  BP   396  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0006979  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0030099  BP   401  0 1.000000e+00
## GO:0051346  BP   402  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0070997  BP   405  0 1.000000e+00
## GO:0001667  BP   406  0 1.000000e+00
## GO:1903706  BP   407  0 1.000000e+00
## GO:0001933  BP   408  0 1.000000e+00
## GO:0000280  BP   409  0 1.000000e+00
## GO:0045785  BP   411  0 1.000000e+00
## GO:0052547  BP   411  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0015711  BP   415  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0009896  BP   422  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0002449  BP   425  0 1.000000e+00
## GO:0016570  BP   427  0 1.000000e+00
## GO:0071900  BP   427  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0051222  BP   435  0 1.000000e+00
## GO:0045860  BP   438  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0051052  BP   440  0 1.000000e+00
## GO:0002460  BP   441  0 1.000000e+00
## GO:0016569  BP   444  0 1.000000e+00
## GO:0002696  BP   446  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0001819  BP   449  0 1.000000e+00
## GO:0048608  BP   449  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0002757  BP   450  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0042326  BP   452  0 1.000000e+00
## GO:0061458  BP   453  0 1.000000e+00
## GO:1904951  BP   454  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0048285  BP   456  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0050867  BP   461  0 1.000000e+00
## GO:0045666  BP   461  0 1.000000e+00
## GO:0002764  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0048732  BP   467  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:1903532  BP   472  0 1.000000e+00
## GO:0006874  BP   473  0 1.000000e+00
## GO:0051656  BP   473  0 1.000000e+00
## GO:0002683  BP   473  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0033674  BP   476  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:1901615  BP   481  0 1.000000e+00
## GO:0008015  BP   484  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0048871  BP   486  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0055074  BP   489  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0050708  BP   490  0 1.000000e+00
## GO:0042110  BP   491  0 1.000000e+00
## GO:0048568  BP   493  0 1.000000e+00
## GO:0007346  BP   493  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0003013  BP   495  0 1.000000e+00
## GO:0009611  BP   495  0 1.000000e+00
## GO:0072503  BP   497  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0002443  BP   507  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0072507  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0023061  BP   523  0 1.000000e+00
## GO:0002253  BP   526  0 1.000000e+00
## GO:1902532  BP   527  0 1.000000e+00
## GO:0051047  BP   527  0 1.000000e+00
## GO:0002791  BP   529  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0030335  BP   539  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0008610  BP   545  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0045936  BP   546  0 1.000000e+00
## GO:0010563  BP   546  0 1.000000e+00
## GO:0006820  BP   549  0 1.000000e+00
## GO:0051347  BP   551  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0010817  BP   557  0 1.000000e+00
## GO:2000147  BP   561  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0031400  BP   564  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0002521  BP   567  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0034762  BP   568  0 1.000000e+00
## GO:0060627  BP   568  0 1.000000e+00
## GO:0032787  BP   570  0 1.000000e+00
## GO:0051301  BP   574  0 1.000000e+00
## GO:0051272  BP   580  0 1.000000e+00
## GO:0050769  BP   580  0 1.000000e+00
## GO:0006875  BP   582  0 1.000000e+00
## GO:0002250  BP   583  0 1.000000e+00
## GO:0010564  BP   585  0 1.000000e+00
## GO:0040017  BP   593  0 1.000000e+00
## GO:0010638  BP   595  0 1.000000e+00
## GO:0051640  BP   596  0 1.000000e+00
## GO:0044057  BP   596  0 1.000000e+00
## GO:0006935  BP   597  0 1.000000e+00
## GO:0042330  BP   600  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0009306  BP   605  0 1.000000e+00
## GO:0007423  BP   606  0 1.000000e+00
## GO:0071396  BP   612  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0051259  BP   617  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0030855  BP   626  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:0007420  BP   634  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0048598  BP   637  0 1.000000e+00
## GO:0031347  BP   640  0 1.000000e+00
## GO:0030003  BP   641  0 1.000000e+00
## GO:1903047  BP   644  0 1.000000e+00
## GO:0044283  BP   650  0 1.000000e+00
## GO:0051962  BP   651  0 1.000000e+00
## GO:0002790  BP   652  0 1.000000e+00
## GO:0006873  BP   655  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0010720  BP   659  0 1.000000e+00
## GO:0050804  BP   661  0 1.000000e+00
## GO:0045859  BP   662  0 1.000000e+00
## GO:0099177  BP   662  0 1.000000e+00
## GO:0055065  BP   664  0 1.000000e+00
## GO:0098542  BP   667  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0008285  BP   681  0 1.000000e+00
## GO:0043086  BP   682  0 1.000000e+00
## GO:0030155  BP   686  0 1.000000e+00
## GO:0060322  BP   688  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0006954  BP   691  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0098609  BP   720  0 1.000000e+00
## GO:0017144  BP   727  0 1.000000e+00
## GO:0007610  BP   728  0 1.000000e+00
## GO:0043549  BP   728  0 1.000000e+00
## GO:0055080  BP   732  0 1.000000e+00
## GO:0043269  BP   732  0 1.000000e+00
## GO:0006325  BP   735  0 1.000000e+00
## GO:0006974  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0006897  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0098771  BP   746  0 1.000000e+00
## GO:0050778  BP   747  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0032101  BP   770  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0061024  BP   780  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0070925  BP   796  0 1.000000e+00
## GO:0000278  BP   799  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0055082  BP   810  0 1.000000e+00
## GO:0050801  BP   812  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0033993  BP   822  0 1.000000e+00
## GO:1903530  BP   831  0 1.000000e+00
## GO:0051338  BP   832  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0045087  BP   842  0 1.000000e+00
## GO:0098916  BP   856  0 1.000000e+00
## GO:0007268  BP   856  0 1.000000e+00
## GO:0000122  BP   857  0 1.000000e+00
## GO:0099537  BP   865  0 1.000000e+00
## GO:0098657  BP   872  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0099536  BP   874  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0007417  BP   888  0 1.000000e+00
## GO:0030334  BP   892  0 1.000000e+00
## GO:0019752  BP   902  0 1.000000e+00
## GO:0050776  BP   903  0 1.000000e+00
## GO:0071345  BP   907  0 1.000000e+00
## GO:0009617  BP   907  0 1.000000e+00
## GO:0051046  BP   911  0 1.000000e+00
## GO:0006259  BP   915  0 1.000000e+00
## GO:0030097  BP   921  0 1.000000e+00
## GO:0044255  BP   932  0 1.000000e+00
## GO:2000145  BP   939  0 1.000000e+00
## GO:0043436  BP   941  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0051726  BP   955  0 1.000000e+00
## GO:0006082  BP   968  0 1.000000e+00
## GO:0048534  BP   972  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:0034097  BP  1004  0 1.000000e+00
## GO:0044092  BP  1006  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0040012  BP  1018  0 1.000000e+00
## GO:0051270  BP  1028  0 1.000000e+00
## GO:0002520  BP  1030  0 1.000000e+00
## GO:0043085  BP  1051  0 1.000000e+00
## GO:0032940  BP  1070  0 1.000000e+00
## GO:0051050  BP  1081  0 1.000000e+00
## GO:0009887  BP  1090  0 1.000000e+00
## GO:0045597  BP  1097  0 1.000000e+00
## GO:0000902  BP  1100  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0051276  BP  1103  0 1.000000e+00
## GO:0022402  BP  1108  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0060429  BP  1172  0 1.000000e+00
## GO:0051707  BP  1172  0 1.000000e+00
## GO:0043207  BP  1174  0 1.000000e+00
## GO:0045892  BP  1177  0 1.000000e+00
## GO:1903507  BP  1181  0 1.000000e+00
## GO:0048878  BP  1182  0 1.000000e+00
## GO:1902679  BP  1182  0 1.000000e+00
## GO:0009607  BP  1208  0 1.000000e+00
## GO:0032989  BP  1211  0 1.000000e+00
## GO:0046903  BP  1227  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0033043  BP  1242  0 1.000000e+00
## GO:0006629  BP  1258  0 1.000000e+00
## GO:0055085  BP  1266  0 1.000000e+00
## GO:0051130  BP  1290  0 1.000000e+00
## GO:0007155  BP  1298  0 1.000000e+00
## GO:0022610  BP  1310  0 1.000000e+00
## GO:0044093  BP  1429  0 1.000000e+00
## GO:0016477  BP  1447  0 1.000000e+00
## GO:0016192  BP  1501  0 1.000000e+00
## GO:0006811  BP  1565  0 1.000000e+00
## GO:0048870  BP  1595  0 1.000000e+00
## GO:0051674  BP  1595  0 1.000000e+00
## GO:0007267  BP  1596  0 1.000000e+00
## GO:0006952  BP  1601  0 1.000000e+00
## GO:0007049  BP  1639  0 1.000000e+00
## GO:0006955  BP  1652  0 1.000000e+00
## GO:0044281  BP  1753  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0040011  BP  1817  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0009888  BP  1956  0 1.000000e+00
## GO:0006928  BP  2014  0 1.000000e+00
## GO:0050877  BP  2299  0 1.000000e+00
## GO:0003008  BP  2939  0 1.000000e+00
## 
## [[1]][[10]]
##                                                                                                                                                           Term
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:0045321                                                                                                                                leukocyte activation
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0001775                                                                                                                                     cell activation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:0051450                                                                                                                              myoblast proliferation
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0042113                                                                                                                                   B cell activation
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0002376                                                                                                                               immune system process
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0010467                                                                                                                                     gene expression
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0006955                                                                                                                                     immune response
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0006954                                                                                                                               inflammatory response
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0070509                                                                                                                                  calcium ion import
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0006413                                                                                                                            translational initiation
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016310                                                                                                                                     phosphorylation
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0050776                                                                                                                       regulation of immune response
## GO:0009617                                                                                                                               response to bacterium
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0034097                                                                                                                                response to cytokine
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0002520                                                                                                                           immune system development
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0030183                                                                                                                              B cell differentiation
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0021543                                                                                                                                 pallium development
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0050789                                                                                                                    regulation of biological process
## GO:0051262                                                                                                                             protein tetramerization
## GO:0001764                                                                                                                                    neuron migration
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0044237                                                                                                                          cellular metabolic process
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0050663                                                                                                                                  cytokine secretion
## GO:0065007                                                                                                                               biological regulation
## GO:0021537                                                                                                                           telencephalon development
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0050896                                                                                                                                response to stimulus
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0030217                                                                                                                              T cell differentiation
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0016358                                                                                                                                dendrite development
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0046677                                                                                                                              response to antibiotic
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0007275                                                                                                                  multicellular organism development
## GO:0006952                                                                                                                                    defense response
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0023051                                                                                                                             regulation of signaling
## GO:0006417                                                                                                                           regulation of translation
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0009987                                                                                                                                    cellular process
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0008380                                                                                                                                        RNA splicing
## GO:0048513                                                                                                                            animal organ development
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0030900                                                                                                                               forebrain development
## GO:0008152                                                                                                                                   metabolic process
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0007015                                                                                                                         actin filament organization
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0006816                                                                                                                               calcium ion transport
## GO:0048856                                                                                                                    anatomical structure development
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0006397                                                                                                                                     mRNA processing
## GO:0050808                                                                                                                                synapse organization
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0007165                                                                                                                                 signal transduction
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0042110                                                                                                                                   T cell activation
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0032502                                                                                                                               developmental process
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0051051                                                                                                                    negative regulation of transport
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0030154                                                                                                                                cell differentiation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0002250                                                                                                                            adaptive immune response
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0009306                                                                                                                                   protein secretion
## GO:0023052                                                                                                                                           signaling
## GO:0006412                                                                                                                                         translation
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007154                                                                                                                                  cell communication
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:0048869                                                                                                                      cellular developmental process
## GO:0002790                                                                                                                                   peptide secretion
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0051704                                                                                                                              multi-organism process
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0060322                                                                                                                                    head development
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0009605                                                                                                                       response to external stimulus
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0044238                                                                                                                           primary metabolic process
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0030029                                                                                                                        actin filament-based process
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0001816                                                                                                                                 cytokine production
## GO:0048731                                                                                                                                  system development
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0006396                                                                                                                                      RNA processing
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0030001                                                                                                                                 metal ion transport
## GO:0045087                                                                                                                              innate immune response
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0022607                                                                                                                         cellular component assembly
## GO:0002252                                                                                                                             immune effector process
## GO:0032879                                                                                                                          regulation of localization
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0007417                                                                                                                  central nervous system development
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0051046                                                                                                                             regulation of secretion
## GO:0019725                                                                                                                                cellular homeostasis
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0010033                                                                                                                       response to organic substance
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0031175                                                                                                                       neuron projection development
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:0060284                                                                                                                      regulation of cell development
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0048666                                                                                                                                  neuron development
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0046903                                                                                                                                           secretion
## GO:0009790                                                                                                                                  embryo development
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0051179                                                                                                                                        localization
## GO:0007155                                                                                                                                       cell adhesion
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0022610                                                                                                                                 biological adhesion
## GO:0016043                                                                                                                     cellular component organization
## GO:0006950                                                                                                                                  response to stress
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0016477                                                                                                                                      cell migration
## GO:0030182                                                                                                                              neuron differentiation
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0006811                                                                                                                                       ion transport
## GO:0030030                                                                                                                        cell projection organization
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0042221                                                                                                                                response to chemical
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0048699                                                                                                                               generation of neurons
## GO:0010941                                                                                                                            regulation of cell death
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0015031                                                                                                                                   protein transport
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0022008                                                                                                                                        neurogenesis
## GO:0015833                                                                                                                                   peptide transport
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0042886                                                                                                                                     amide transport
## GO:0040011                                                                                                                                          locomotion
## GO:0006810                                                                                                                                           transport
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0045184                                                                                                               establishment of protein localization
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0006915                                                                                                                                   apoptotic process
## GO:0042592                                                                                                                                 homeostatic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0012501                                                                                                                               programmed cell death
## GO:0051234                                                                                                                       establishment of localization
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0051049                                                                                                                             regulation of transport
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0008283                                                                                                                                  cell proliferation
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0008219                                                                                                                                          cell death
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0007399                                                                                                                          nervous system development
## GO:0048468                                                                                                                                    cell development
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0071702                                                                                                                         organic substance transport
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0008104                                                                                                                                protein localization
## GO:0051641                                                                                                                               cellular localization
## GO:0008150                                                                                                                                  biological_process
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0033036                                                                                                                          macromolecule localization
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0006996                                                                                                                              organelle organization
## GO:0043412                                                                                                                          macromolecule modification
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0019538                                                                                                                           protein metabolic process
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0048864                                                                                                                               stem cell development
## GO:0032602                                                                                                                                chemokine production
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0050792                                                                                                                         regulation of viral process
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0019058                                                                                                                                    viral life cycle
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0007254                                                                                                                                         JNK cascade
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0030073                                                                                                                                   insulin secretion
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0016032                                                                                                                                       viral process
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0090130                                                                                                                                    tissue migration
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0072001                                                                                                                            renal system development
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0045927                                                                                                                       positive regulation of growth
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0006909                                                                                                                                        phagocytosis
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0032259                                                                                                                                         methylation
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:0044403                                                                                                                                    symbiont process
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0001101                                                                                                                           response to acid chemical
## GO:0046879                                                                                                                                   hormone secretion
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0150063                                                                                                                           visual system development
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0015711                                                                                                                             organic anion transport
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0048608                                                                                                                  reproductive structure development
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0060537                                                                                                                           muscle tissue development
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0061564                                                                                                                                    axon development
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0001525                                                                                                                                        angiogenesis
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0001501                                                                                                                         skeletal system development
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0007423                                                                                                                           sensory organ development
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0070848                                                                                                                           response to growth factor
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0031347                                                                                                                      regulation of defense response
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0009725                                                                                                                                 response to hormone
## GO:0061061                                                                                                                        muscle structure development
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0006897                                                                                                                                         endocytosis
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0001944                                                                                                                             vasculature development
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0007017                                                                                                                           microtubule-based process
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0061024                                                                                                                               membrane organization
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0033993                                                                                                                                   response to lipid
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0030163                                                                                                                           protein catabolic process
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0040007                                                                                                                                              growth
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0035295                                                                                                                                    tube development
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0072359                                                                                                                      circulatory system development
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0060429                                                                                                                              epithelium development
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0046907                                                                                                                             intracellular transport
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0007049                                                                                                                                          cell cycle
## GO:0006508                                                                                                                                         proteolysis
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0033554                                                                                                                         cellular response to stress
## GO:0007600                                                                                                                                  sensory perception
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0009888                                                                                                                                  tissue development
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0009056                                                                                                                                   catabolic process
## GO:0050877                                                                                                                              nervous system process
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0003008                                                                                                                                      system process
## GO:0070887                                                                                                              cellular response to chemical stimulus
##            Ont     N DE        P.DE
## GO:0032485  BP     3  1 0.001106059
## GO:0051250  BP   152  2 0.001348305
## GO:0045341  BP     5  1 0.001842827
## GO:0032484  BP     5  1 0.001842827
## GO:0045345  BP     5  1 0.001842827
## GO:0045343  BP     5  1 0.001842827
## GO:0002695  BP   182  2 0.001924079
## GO:2000321  BP     6  1 0.002211030
## GO:0070245  BP     6  1 0.002211030
## GO:0050866  BP   203  2 0.002385469
## GO:0046649  BP   841  3 0.002931846
## GO:0140059  BP     8  1 0.002947073
## GO:0033085  BP    10  1 0.003682634
## GO:0045348  BP    10  1 0.003682634
## GO:2000318  BP    10  1 0.003682634
## GO:2000288  BP    11  1 0.004050234
## GO:1900165  BP    12  1 0.004417713
## GO:0045321  BP   994  3 0.004706173
## GO:0050851  BP   295  2 0.004957256
## GO:0045346  BP    14  1 0.005152309
## GO:0045342  BP    15  1 0.005519427
## GO:0070234  BP    15  1 0.005519427
## GO:0045947  BP    16  1 0.005886424
## GO:2000291  BP    16  1 0.005886424
## GO:0002429  BP   326  2 0.006019949
## GO:0001775  BP  1098  3 0.006222045
## GO:1902656  BP    17  1 0.006253301
## GO:0070243  BP    17  1 0.006253301
## GO:0002768  BP   338  2 0.006457130
## GO:2000319  BP    18  1 0.006620057
## GO:0051450  BP    21  1 0.007719604
## GO:0140058  BP    21  1 0.007719604
## GO:0070230  BP    21  1 0.007719604
## GO:0045624  BP    22  1 0.008085880
## GO:0002115  BP    22  1 0.008085880
## GO:0070242  BP    22  1 0.008085880
## GO:2000316  BP    23  1 0.008452035
## GO:0030098  BP   395  2 0.008726508
## GO:0042113  BP   405  2 0.009156950
## GO:0072539  BP    28  1 0.010281008
## GO:0043372  BP    30  1 0.011011758
## GO:0002757  BP   450  2 0.011210508
## GO:0002376  BP  2664  4 0.011359822
## GO:0033081  BP    31  1 0.011376953
## GO:0072538  BP    32  1 0.011742028
## GO:0002764  BP   463  2 0.011838767
## GO:2000108  BP    33  1 0.012106983
## GO:0002683  BP   473  2 0.012332570
## GO:0035116  BP    34  1 0.012471818
## GO:0050869  BP    34  1 0.012471818
## GO:2000516  BP    36  1 0.013201130
## GO:0045622  BP    38  1 0.013929962
## GO:0002682  BP  1473  3 0.014002934
## GO:0002253  BP   526  2 0.015100085
## GO:1902532  BP   527  2 0.015154701
## GO:0070232  BP    43  1 0.015749951
## GO:0043124  BP    44  1 0.016113590
## GO:0051898  BP    44  1 0.016113590
## GO:0051249  BP   555  2 0.016719381
## GO:0072604  BP    46  1 0.016840510
## GO:0045581  BP    47  1 0.017203791
## GO:0002521  BP   567  2 0.017410720
## GO:0046638  BP    49  1 0.017929995
## GO:0035137  BP    50  1 0.018292918
## GO:0032715  BP    50  1 0.018292918
## GO:0043370  BP    50  1 0.018292918
## GO:0010467  BP  4814  5 0.018457869
## GO:2001222  BP    52  1 0.019018407
## GO:0006955  BP  1652  3 0.019096235
## GO:0045620  BP    56  1 0.020467955
## GO:1902531  BP  1710  3 0.020947389
## GO:0070231  BP    58  1 0.021192014
## GO:0006446  BP    60  1 0.021915598
## GO:0002694  BP   652  2 0.022654748
## GO:0042093  BP    63  1 0.023000082
## GO:0002294  BP    64  1 0.023361340
## GO:2000514  BP    64  1 0.023361340
## GO:0000381  BP    64  1 0.023361340
## GO:0002293  BP    65  1 0.023722478
## GO:0002287  BP    66  1 0.024083498
## GO:0050710  BP    67  1 0.024444399
## GO:0046637  BP    68  1 0.024805181
## GO:0046635  BP    69  1 0.025165845
## GO:0006954  BP   691  2 0.025258365
## GO:0050865  BP   693  2 0.025395140
## GO:0002292  BP    71  1 0.025886817
## GO:0000380  BP    76  1 0.027687173
## GO:0070228  BP    76  1 0.027687173
## GO:0032088  BP    77  1 0.028046890
## GO:0050778  BP   747  2 0.029205598
## GO:0043367  BP    81  1 0.029484572
## GO:0031323  BP  5401  5 0.029846493
## GO:0070509  BP    86  1 0.031279016
## GO:0033077  BP    88  1 0.031995967
## GO:0034641  BP  5547  5 0.033300355
## GO:0045582  BP    95  1 0.034501585
## GO:0070227  BP    98  1 0.035573655
## GO:0035710  BP   100  1 0.036287780
## GO:0031532  BP   101  1 0.036644666
## GO:1902106  BP   102  1 0.037001435
## GO:0016070  BP  3761  4 0.037103380
## GO:0030038  BP   103  1 0.037358087
## GO:0043149  BP   103  1 0.037358087
## GO:0046634  BP   104  1 0.037714621
## GO:0006413  BP   104  1 0.037714621
## GO:0048024  BP   105  1 0.038071038
## GO:0016310  BP  2166  3 0.039024217
## GO:0045621  BP   108  1 0.039139584
## GO:2000106  BP   108  1 0.039139584
## GO:0021987  BP   109  1 0.039495531
## GO:0010468  BP  3860  4 0.040433393
## GO:0046632  BP   112  1 0.040562670
## GO:0002286  BP   113  1 0.040918149
## GO:0048583  BP  3883  4 0.041232827
## GO:0050776  BP   903  2 0.041426773
## GO:0009617  BP   907  2 0.041762677
## GO:0030097  BP   921  2 0.042946857
## GO:0050868  BP   119  1 0.043048565
## GO:0019222  BP  5953  5 0.044333251
## GO:0050794  BP 10774  7 0.044582659
## GO:0044271  BP  3993  4 0.045192077
## GO:0048584  BP  2294  3 0.045233908
## GO:0050852  BP   126  1 0.045528732
## GO:0034645  BP  4022  4 0.046273560
## GO:1903038  BP   131  1 0.047296780
## GO:0048534  BP   972  2 0.047370787
## GO:0071887  BP   132  1 0.047650040
## GO:0017148  BP   136  1 0.049061917
## GO:0034341  BP   137  1 0.049414595
## GO:0009059  BP  4121  4 0.050085002
## GO:0043484  BP   139  1 0.050119602
## GO:0034097  BP  1004  2 0.050232765
## GO:0002824  BP   140  1 0.050471932
## GO:0048518  BP  6171  5 0.051170887
## GO:0035113  BP   143  1 0.051528224
## GO:0030326  BP   143  1 0.051528224
## GO:0050684  BP   144  1 0.051880089
## GO:0002520  BP  1030  2 0.052605752
## GO:0002821  BP   147  1 0.052934988
## GO:0030183  BP   149  1 0.053637674
## GO:0045580  BP   150  1 0.053988843
## GO:0050709  BP   152  1 0.054690835
## GO:0032675  BP   153  1 0.055041656
## GO:0051896  BP   155  1 0.055742953
## GO:0034249  BP   156  1 0.056093428
## GO:0046631  BP   157  1 0.056443787
## GO:0060402  BP   157  1 0.056443787
## GO:0090304  BP  4277  4 0.056469295
## GO:0002684  BP  1072  2 0.056527022
## GO:1903707  BP   158  1 0.056794031
## GO:0021543  BP   158  1 0.056794031
## GO:0043433  BP   160  1 0.057494171
## GO:0032635  BP   162  1 0.058193850
## GO:0002792  BP   162  1 0.058193850
## GO:0051017  BP   165  1 0.059242502
## GO:0043122  BP   165  1 0.059242502
## GO:0061572  BP   168  1 0.060290116
## GO:1902107  BP   168  1 0.060290116
## GO:0060401  BP   170  1 0.060987949
## GO:0035556  BP  2608  3 0.062560456
## GO:0035107  BP   175  1 0.062730517
## GO:0035108  BP   175  1 0.062730517
## GO:0048813  BP   178  1 0.063774677
## GO:0034612  BP   179  1 0.064122501
## GO:0050853  BP   181  1 0.064817804
## GO:0045619  BP   182  1 0.065165283
## GO:0050789  BP 11520  7 0.065270087
## GO:0051262  BP   183  1 0.065512647
## GO:0001764  BP   185  1 0.066207032
## GO:0051707  BP  1172  2 0.066282642
## GO:0043207  BP  1174  2 0.066483557
## GO:0043491  BP   186  1 0.066554052
## GO:0009968  BP  1175  2 0.066584098
## GO:0022408  BP   187  1 0.066900958
## GO:0050870  BP   187  1 0.066900958
## GO:0002822  BP   189  1 0.067594425
## GO:0007249  BP   193  1 0.068979986
## GO:0002285  BP   193  1 0.068979986
## GO:0050731  BP   195  1 0.069672080
## GO:0009607  BP  1208  2 0.069932716
## GO:0048736  BP   201  1 0.071745618
## GO:0060173  BP   201  1 0.071745618
## GO:1903039  BP   203  1 0.072435884
## GO:0031032  BP   204  1 0.072780846
## GO:0051224  BP   204  1 0.072780846
## GO:0002819  BP   205  1 0.073125694
## GO:0009966  BP  2780  3 0.073287848
## GO:1903708  BP   208  1 0.074159553
## GO:1904950  BP   209  1 0.074503945
## GO:0050707  BP   213  1 0.075880375
## GO:0006351  BP  2875  3 0.079578040
## GO:0097659  BP  2883  3 0.080119415
## GO:0010648  BP  1306  2 0.080217015
## GO:0023057  BP  1310  2 0.080647195
## GO:0032774  BP  2896  3 0.081002990
## GO:0046578  BP   228  1 0.081025794
## GO:0006139  BP  4813  4 0.081988599
## GO:1903531  BP   232  1 0.082393598
## GO:0044237  BP  9374  6 0.082664893
## GO:0006796  BP  2933  3 0.083543698
## GO:0051241  BP  1343  2 0.084226204
## GO:0006793  BP  2955  3 0.085072486
## GO:0022409  BP   242  1 0.085805193
## GO:0050663  BP   244  1 0.086486157
## GO:0065007  BP 12135  7 0.087150490
## GO:0021537  BP   249  1 0.088186596
## GO:2000113  BP  1379  2 0.088190409
## GO:0044249  BP  4938  4 0.088743224
## GO:0046483  BP  4940  4 0.088853763
## GO:0050896  BP  9531  6 0.089166108
## GO:1903311  BP   253  1 0.089544921
## GO:0000375  BP   256  1 0.090562484
## GO:0000377  BP   256  1 0.090562484
## GO:0000398  BP   256  1 0.090562484
## GO:0001818  BP   259  1 0.091579036
## GO:0002699  BP   259  1 0.091579036
## GO:0051056  BP   259  1 0.091579036
## GO:0051252  BP  3049  3 0.091754963
## GO:0010558  BP  1414  2 0.092102610
## GO:0051048  BP   261  1 0.092256176
## GO:0006725  BP  5012  4 0.092884745
## GO:0050730  BP   263  1 0.092932867
## GO:0050864  BP   264  1 0.093271044
## GO:0050807  BP   266  1 0.093947063
## GO:1901576  BP  5031  4 0.093965193
## GO:0030217  BP   269  1 0.094960251
## GO:0002366  BP   269  1 0.094960251
## GO:0002263  BP   273  1 0.096309602
## GO:0050803  BP   276  1 0.097320441
## GO:0051171  BP  5104  4 0.098181140
## GO:0031327  BP  1471  2 0.098592094
## GO:0009058  BP  5125  4 0.099412938
## GO:0007162  BP   284  1 0.100011101
## GO:1903037  BP   287  1 0.101018259
## GO:0009890  BP  1509  2 0.102996719
## GO:0016358  BP   294  1 0.103364399
## GO:1902105  BP   294  1 0.103364399
## GO:1901360  BP  5208  4 0.104364208
## GO:2000112  BP  3219  3 0.104445785
## GO:0042325  BP  1533  2 0.105809730
## GO:0051239  BP  3248  3 0.106686674
## GO:0050863  BP   304  1 0.106706586
## GO:0080090  BP  5248  4 0.106797353
## GO:0046677  BP   305  1 0.107040195
## GO:0048585  BP  1576  2 0.110908101
## GO:0034654  BP  3310  3 0.111550099
## GO:0010556  BP  3311  3 0.111629345
## GO:0007159  BP   319  1 0.111699105
## GO:0018108  BP   319  1 0.111699105
## GO:0018212  BP   322  1 0.112694628
## GO:0010646  BP  3338  3 0.113778528
## GO:0007275  BP  5362  4 0.113898418
## GO:0006952  BP  1601  2 0.113905755
## GO:0007204  BP   327  1 0.114351628
## GO:0019219  BP  3352  3 0.114900144
## GO:0023051  BP  3360  3 0.115543271
## GO:0006417  BP   332  1 0.116005877
## GO:0018130  BP  3374  3 0.116672587
## GO:0019438  BP  3386  3 0.117644452
## GO:0009987  BP 15803  8 0.118084012
## GO:0048522  BP  5469  4 0.120786007
## GO:0060255  BP  5486  4 0.121899972
## GO:0031326  BP  3470  3 0.124546639
## GO:0019220  BP  1692  2 0.125014943
## GO:0051174  BP  1693  2 0.125138681
## GO:0008380  BP   364  1 0.126528188
## GO:0048513  BP  3504  3 0.127389018
## GO:1901362  BP  3510  3 0.127893485
## GO:0051480  BP   374  1 0.129793499
## GO:0009889  BP  3542  3 0.130598395
## GO:0034248  BP   382  1 0.132397932
## GO:0030900  BP   386  1 0.133697547
## GO:0008152  BP 10485  6 0.136118620
## GO:0051251  BP   394  1 0.136291589
## GO:0010629  BP  1783  2 0.136414083
## GO:0022407  BP   395  1 0.136615358
## GO:0051090  BP   396  1 0.136939020
## GO:0007015  BP   400  1 0.138232587
## GO:1903706  BP   407  1 0.140492183
## GO:0045785  BP   411  1 0.141781015
## GO:0007265  BP   414  1 0.142746511
## GO:0002697  BP   420  1 0.144674608
## GO:0006816  BP   423  1 0.145637210
## GO:0048856  BP  5871  4 0.148541324
## GO:0032501  BP  8233  5 0.151090845
## GO:0002460  BP   441  1 0.151392626
## GO:0045595  BP  1909  2 0.152628210
## GO:0002696  BP   446  1 0.152985224
## GO:0006397  BP   448  1 0.153621519
## GO:0050808  BP   451  1 0.154575165
## GO:0050867  BP   461  1 0.157747091
## GO:0007165  BP  6028  4 0.160160472
## GO:0070838  BP   472  1 0.161223987
## GO:0006874  BP   473  1 0.161539435
## GO:0072511  BP   475  1 0.162170014
## GO:0007264  BP   485  1 0.165316593
## GO:0055074  BP   489  1 0.166572280
## GO:0050708  BP   490  1 0.166885940
## GO:0042110  BP   491  1 0.167199494
## GO:0043170  BP  8488  5 0.168030074
## GO:0072503  BP   497  1 0.169078619
## GO:0010608  BP   504  1 0.171266166
## GO:0043410  BP   519  1 0.175936539
## GO:0072507  BP   521  1 0.176557484
## GO:0032502  BP  6258  4 0.177934819
## GO:0002791  BP   529  1 0.179037109
## GO:0051051  BP   540  1 0.182435754
## GO:2000026  BP  2184  2 0.189463940
## GO:0030154  BP  4218  3 0.192928571
## GO:0006875  BP   582  1 0.195297657
## GO:0002250  BP   583  1 0.195601688
## GO:0006807  BP  8923  5 0.199166234
## GO:0051172  BP  2271  2 0.201454258
## GO:0009306  BP   605  1 0.202264588
## GO:0023052  BP  6579  4 0.204157415
## GO:0006412  BP   614  1 0.204976150
## GO:0051259  BP   617  1 0.205878181
## GO:0048667  BP   628  1 0.209177852
## GO:0007154  BP  6648  4 0.209997763
## GO:0043065  BP   632  1 0.210374707
## GO:0007420  BP   634  1 0.210972530
## GO:0043043  BP   636  1 0.211569951
## GO:0048598  BP   637  1 0.211868511
## GO:0016071  BP   637  1 0.211868511
## GO:0043068  BP   637  1 0.211868511
## GO:0030003  BP   641  1 0.213061746
## GO:0048869  BP  4443  3 0.215587667
## GO:0002790  BP   652  1 0.216334865
## GO:0006873  BP   655  1 0.217225431
## GO:0051704  BP  2389  2 0.217921829
## GO:0030036  BP   663  1 0.219595877
## GO:0055065  BP   664  1 0.219891733
## GO:0048812  BP   677  1 0.223728808
## GO:0001817  BP   679  1 0.224317635
## GO:0097435  BP   681  1 0.224906066
## GO:0031324  BP  2449  2 0.226373316
## GO:0030155  BP   686  1 0.226375407
## GO:0060322  BP   688  1 0.226962450
## GO:0120039  BP   691  1 0.227842272
## GO:0010942  BP   695  1 0.229013983
## GO:0048858  BP   696  1 0.229306663
## GO:0051223  BP   708  1 0.232811136
## GO:0007166  BP  2497  2 0.233167540
## GO:0032990  BP   718  1 0.235720703
## GO:0009605  BP  2515  2 0.235722338
## GO:0098609  BP   720  1 0.236301437
## GO:0055080  BP   732  1 0.239777617
## GO:0044238  BP  9443  5 0.239886949
## GO:0048523  BP  4687  3 0.241034082
## GO:0043408  BP   737  1 0.241221869
## GO:0070201  BP   740  1 0.242087249
## GO:0043604  BP   741  1 0.242375514
## GO:0030029  BP   746  1 0.243815377
## GO:0098771  BP   746  1 0.243815377
## GO:0090087  BP   749  1 0.244678128
## GO:0010605  BP  2584  2 0.245547714
## GO:0001816  BP   755  1 0.246401003
## GO:0048731  BP  4746  3 0.247308422
## GO:0044260  BP  7099  4 0.249793521
## GO:0006518  BP   788  1 0.255814530
## GO:0000165  BP   793  1 0.257231666
## GO:0045596  BP   799  1 0.258929062
## GO:0000904  BP   804  1 0.260340924
## GO:0055082  BP   810  1 0.262032002
## GO:0023014  BP   810  1 0.262032002
## GO:0050801  BP   812  1 0.262594931
## GO:0050793  BP  2721  2 0.265182291
## GO:0006396  BP   822  1 0.265403852
## GO:1903530  BP   831  1 0.267923745
## GO:0009653  BP  2744  2 0.268491947
## GO:0030001  BP   839  1 0.270157196
## GO:0045087  BP   842  1 0.270993178
## GO:0006355  BP  2784  2 0.274255206
## GO:0000122  BP   857  1 0.275160331
## GO:1903506  BP  2792  2 0.275408880
## GO:2001141  BP  2801  2 0.276707142
## GO:0022607  BP  2807  2 0.277572865
## GO:0002252  BP   879  1 0.281233857
## GO:0032879  BP  2835  2 0.281615040
## GO:0009892  BP  2843  2 0.282770553
## GO:0007417  BP   888  1 0.283705414
## GO:0030334  BP   892  1 0.284801457
## GO:0071704  BP 10008  5 0.288022122
## GO:0051046  BP   911  1 0.289987329
## GO:0019725  BP   930  1 0.295139750
## GO:2000145  BP   939  1 0.297568749
## GO:0050767  BP   956  1 0.302136566
## GO:0048519  BP  5278  3 0.305594164
## GO:0008284  BP   972  1 0.306411549
## GO:0001934  BP   989  1 0.310928198
## GO:0044085  BP  3041  2 0.311424173
## GO:0051173  BP  3061  2 0.314321223
## GO:0032269  BP  1003  1 0.314628140
## GO:1902533  BP  1005  1 0.315155259
## GO:0044092  BP  1006  1 0.315418683
## GO:0010033  BP  3070  2 0.315624879
## GO:0043603  BP  1008  1 0.315945262
## GO:0051716  BP  7810  4 0.317360393
## GO:0040012  BP  1018  1 0.318572758
## GO:0051270  BP  1028  1 0.321191279
## GO:0032880  BP  1038  1 0.323800851
## GO:0042327  BP  1043  1 0.325102291
## GO:0051093  BP  1070  1 0.332091666
## GO:0051248  BP  1070  1 0.332091666
## GO:0032940  BP  1070  1 0.332091666
## GO:0051960  BP  1071  1 0.332349291
## GO:0031325  BP  3201  2 0.334590693
## GO:0031175  BP  1083  1 0.335433914
## GO:0010604  BP  3212  2 0.336181755
## GO:0060284  BP  1093  1 0.337994750
## GO:0045597  BP  1097  1 0.339016625
## GO:0000902  BP  1100  1 0.339782112
## GO:0006812  BP  1101  1 0.340037099
## GO:0045937  BP  1112  1 0.342836183
## GO:0010562  BP  1112  1 0.342836183
## GO:0018193  BP  1137  1 0.349158530
## GO:0045892  BP  1177  1 0.359161875
## GO:1903507  BP  1181  1 0.360154653
## GO:0048878  BP  1182  1 0.360402633
## GO:1902679  BP  1182  1 0.360402633
## GO:0031401  BP  1210  1 0.367311501
## GO:0032989  BP  1211  1 0.367557015
## GO:0048666  BP  1222  1 0.370252081
## GO:0045944  BP  1226  1 0.371229570
## GO:0046903  BP  1227  1 0.371473732
## GO:0009790  BP  1231  1 0.372449536
## GO:0009893  BP  3486  2 0.375653009
## GO:0051253  BP  1269  1 0.381652728
## GO:0051179  BP  5950  3 0.382007824
## GO:0007155  BP  1298  1 0.388595297
## GO:0007010  BP  1305  1 0.390260672
## GO:0022610  BP  1310  1 0.391447756
## GO:0016043  BP  6083  3 0.397283247
## GO:0006950  BP  3640  2 0.397631295
## GO:0045934  BP  1395  1 0.411316336
## GO:0001932  BP  1410  1 0.414762055
## GO:0071840  BP  6266  3 0.418301677
## GO:0016477  BP  1447  1 0.423184966
## GO:0030182  BP  1494  1 0.433728872
## GO:0009967  BP  1504  1 0.435950025
## GO:0042981  BP  1516  1 0.438605182
## GO:0120036  BP  1526  1 0.440809321
## GO:0032270  BP  1532  1 0.442128109
## GO:0045893  BP  1536  1 0.443005764
## GO:0043067  BP  1537  1 0.443224986
## GO:0051094  BP  1540  1 0.443882192
## GO:1903508  BP  1540  1 0.443882192
## GO:1902680  BP  1541  1 0.444101107
## GO:0006811  BP  1565  1 0.449332147
## GO:0030030  BP  1572  1 0.450849602
## GO:0065008  BP  4051  2 0.455143378
## GO:0048870  BP  1595  1 0.455809389
## GO:0051674  BP  1595  1 0.455809389
## GO:1901566  BP  1599  1 0.456667884
## GO:0051254  BP  1638  1 0.464975336
## GO:0051247  BP  1639  1 0.465186855
## GO:0042221  BP  4136  2 0.466779463
## GO:0042127  BP  1649  1 0.467297957
## GO:0048699  BP  1672  1 0.472125405
## GO:0010941  BP  1685  1 0.474836727
## GO:0065003  BP  1729  1 0.483921895
## GO:0015031  BP  1746  1 0.487394480
## GO:0031399  BP  1760  1 0.490238645
## GO:0022008  BP  1778  1 0.493874812
## GO:0015833  BP  1797  1 0.497687959
## GO:0010557  BP  1799  1 0.498087854
## GO:0006468  BP  1815  1 0.501276837
## GO:0042886  BP  1817  1 0.501674191
## GO:0040011  BP  1817  1 0.501674191
## GO:0006810  BP  4398  2 0.501981475
## GO:0045935  BP  1833  1 0.504842904
## GO:0010647  BP  1854  1 0.508974655
## GO:0045184  BP  1856  1 0.509366552
## GO:0023056  BP  1860  1 0.510149512
## GO:0006915  BP  1867  1 0.511517020
## GO:0042592  BP  1887  1 0.515405508
## GO:0031328  BP  1903  1 0.518496462
## GO:0051649  BP  1906  1 0.519074060
## GO:0012501  BP  1908  1 0.519458784
## GO:0051234  BP  4538  2 0.520344257
## GO:0051240  BP  1929  1 0.523481896
## GO:0009891  BP  1943  1 0.526147311
## GO:0051049  BP  1946  1 0.526716744
## GO:0043933  BP  1956  1 0.528610464
## GO:0010628  BP  1981  1 0.533315329
## GO:0006357  BP  1993  1 0.535558801
## GO:0008283  BP  1994  1 0.535745324
## GO:0006928  BP  2014  1 0.539461819
## GO:0006366  BP  2049  1 0.545902093
## GO:0008219  BP  2065  1 0.548819461
## GO:0071705  BP  2133  1 0.561033281
## GO:0007399  BP  2333  1 0.595271044
## GO:0048468  BP  2406  1 0.607163331
## GO:0065009  BP  2477  1 0.618430799
## GO:0032268  BP  2494  1 0.621085636
## GO:0071702  BP  2505  1 0.622794710
## GO:0051128  BP  2558  1 0.630933674
## GO:0008104  BP  2578  1 0.633964173
## GO:0051641  BP  2592  1 0.636072341
## GO:0008150  BP 23210  9 0.636875212
## GO:0051246  BP  2687  1 0.650094939
## GO:0033036  BP  2901  1 0.679937880
## GO:0006464  BP  3453  1 0.746742893
## GO:0036211  BP  3453  1 0.746742893
## GO:0006996  BP  3568  1 0.758985696
## GO:0043412  BP  3634  1 0.765771807
## GO:0044267  BP  4569  1 0.845276538
## GO:0019538  BP  5344  1 0.891923239
## GO:1901564  BP  6234  1 0.929729934
## GO:0044205  BP     1  0 1.000000000
## GO:0070060  BP     1  0 1.000000000
## GO:0006653  BP     1  0 1.000000000
## GO:0046360  BP     1  0 1.000000000
## GO:0019606  BP     1  0 1.000000000
## GO:0046963  BP     1  0 1.000000000
## GO:0006666  BP     1  0 1.000000000
## GO:0019470  BP     1  0 1.000000000
## GO:0042791  BP     1  0 1.000000000
## GO:0036261  BP     1  0 1.000000000
## GO:0034463  BP     1  0 1.000000000
## GO:0046032  BP     1  0 1.000000000
## GO:0006196  BP     1  0 1.000000000
## GO:0044209  BP     1  0 1.000000000
## GO:0080121  BP     1  0 1.000000000
## GO:0086072  BP     1  0 1.000000000
## GO:0097323  BP     1  0 1.000000000
## GO:0035769  BP     1  0 1.000000000
## GO:0002368  BP     1  0 1.000000000
## GO:1990117  BP     1  0 1.000000000
## GO:0002336  BP     1  0 1.000000000
## GO:0060803  BP     1  0 1.000000000
## GO:0071893  BP     1  0 1.000000000
## GO:0061151  BP     1  0 1.000000000
## GO:0021919  BP     1  0 1.000000000
## GO:0061149  BP     1  0 1.000000000
## GO:0038118  BP     1  0 1.000000000
## GO:0038159  BP     1  0 1.000000000
## GO:0018166  BP     1  0 1.000000000
## GO:0008208  BP     1  0 1.000000000
## GO:0035724  BP     1  0 1.000000000
## GO:0045222  BP     1  0 1.000000000
## GO:0002298  BP     1  0 1.000000000
## GO:0043375  BP     1  0 1.000000000
## GO:0002300  BP     1  0 1.000000000
## GO:0035780  BP     1  0 1.000000000
## GO:0046705  BP     1  0 1.000000000
## GO:0046704  BP     1  0 1.000000000
## GO:0061508  BP     1  0 1.000000000
## GO:0006657  BP     1  0 1.000000000
## GO:0016024  BP     1  0 1.000000000
## GO:0009224  BP     1  0 1.000000000
## GO:0046035  BP     1  0 1.000000000
## GO:0061566  BP     1  0 1.000000000
## GO:0006238  BP     1  0 1.000000000
## GO:0006055  BP     1  0 1.000000000
## GO:0015782  BP     1  0 1.000000000
## GO:0038160  BP     1  0 1.000000000
## GO:0021870  BP     1  0 1.000000000
## GO:0055130  BP     1  0 1.000000000
## GO:0046144  BP     1  0 1.000000000
## GO:0046436  BP     1  0 1.000000000
## GO:0042941  BP     1  0 1.000000000
## GO:0046437  BP     1  0 1.000000000
## GO:0042840  BP     1  0 1.000000000
## GO:0042839  BP     1  0 1.000000000
## GO:0019303  BP     1  0 1.000000000
## GO:0070179  BP     1  0 1.000000000
## GO:0036088  BP     1  0 1.000000000
## GO:0042843  BP     1  0 1.000000000
## GO:1904155  BP     1  0 1.000000000
## GO:1904156  BP     1  0 1.000000000
## GO:0098503  BP     1  0 1.000000000
## GO:0098504  BP     1  0 1.000000000
## GO:0098502  BP     1  0 1.000000000
## GO:0051102  BP     1  0 1.000000000
## GO:0032775  BP     1  0 1.000000000
## GO:0006274  BP     1  0 1.000000000
## GO:1902296  BP     1  0 1.000000000
## GO:1902983  BP     1  0 1.000000000
## GO:1902319  BP     1  0 1.000000000
## GO:0001112  BP     1  0 1.000000000
## GO:0001173  BP     1  0 1.000000000
## GO:0039695  BP     1  0 1.000000000
## GO:0106101  BP     1  0 1.000000000
## GO:0032581  BP     1  0 1.000000000
## GO:0038133  BP     1  0 1.000000000
## GO:0038130  BP     1  0 1.000000000
## GO:0006747  BP     1  0 1.000000000
## GO:0046443  BP     1  0 1.000000000
## GO:0009398  BP     1  0 1.000000000
## GO:0046444  BP     1  0 1.000000000
## GO:0002542  BP     1  0 1.000000000
## GO:0002774  BP     1  0 1.000000000
## GO:0035589  BP     1  0 1.000000000
## GO:0051318  BP     1  0 1.000000000
## GO:0021858  BP     1  0 1.000000000
## GO:0046711  BP     1  0 1.000000000
## GO:0046712  BP     1  0 1.000000000
## GO:0061568  BP     1  0 1.000000000
## GO:0042352  BP     1  0 1.000000000
## GO:0036085  BP     1  0 1.000000000
## GO:0015783  BP     1  0 1.000000000
## GO:0032263  BP     1  0 1.000000000
## GO:0006507  BP     1  0 1.000000000
## GO:0032468  BP     1  0 1.000000000
## GO:0070846  BP     1  0 1.000000000
## GO:0071612  BP     1  0 1.000000000
## GO:0006193  BP     1  0 1.000000000
## GO:0019481  BP     1  0 1.000000000
## GO:0019449  BP     1  0 1.000000000
## GO:1903185  BP     1  0 1.000000000
## GO:1903184  BP     1  0 1.000000000
## GO:1903803  BP     1  0 1.000000000
## GO:0089709  BP     1  0 1.000000000
## GO:1903801  BP     1  0 1.000000000
## GO:0019474  BP     1  0 1.000000000
## GO:0033514  BP     1  0 1.000000000
## GO:0046491  BP     1  0 1.000000000
## GO:0097640  BP     1  0 1.000000000
## GO:1904556  BP     1  0 1.000000000
## GO:0051160  BP     1  0 1.000000000
## GO:0051164  BP     1  0 1.000000000
## GO:0002399  BP     1  0 1.000000000
## GO:0002398  BP     1  0 1.000000000
## GO:0035660  BP     1  0 1.000000000
## GO:0006051  BP     1  0 1.000000000
## GO:0046380  BP     1  0 1.000000000
## GO:0036071  BP     1  0 1.000000000
## GO:0016256  BP     1  0 1.000000000
## GO:0018009  BP     1  0 1.000000000
## GO:0018011  BP     1  0 1.000000000
## GO:0018012  BP     1  0 1.000000000
## GO:0017190  BP     1  0 1.000000000
## GO:0018013  BP     1  0 1.000000000
## GO:0018016  BP     1  0 1.000000000
## GO:0035568  BP     1  0 1.000000000
## GO:0035572  BP     1  0 1.000000000
## GO:0035570  BP     1  0 1.000000000
## GO:0035573  BP     1  0 1.000000000
## GO:0034355  BP     1  0 1.000000000
## GO:0043132  BP     1  0 1.000000000
## GO:1904784  BP     1  0 1.000000000
## GO:0003270  BP     1  0 1.000000000
## GO:1903461  BP     1  0 1.000000000
## GO:0003168  BP     1  0 1.000000000
## GO:0106005  BP     1  0 1.000000000
## GO:1990884  BP     1  0 1.000000000
## GO:0000378  BP     1  0 1.000000000
## GO:0034337  BP     1  0 1.000000000
## GO:1990280  BP     1  0 1.000000000
## GO:1990114  BP     1  0 1.000000000
## GO:0015805  BP     1  0 1.000000000
## GO:0019510  BP     1  0 1.000000000
## GO:0046499  BP     1  0 1.000000000
## GO:0033477  BP     1  0 1.000000000
## GO:0036316  BP     1  0 1.000000000
## GO:0006617  BP     1  0 1.000000000
## GO:1990751  BP     1  0 1.000000000
## GO:0014011  BP     1  0 1.000000000
## GO:0061843  BP     1  0 1.000000000
## GO:0060010  BP     1  0 1.000000000
## GO:0060064  BP     1  0 1.000000000
## GO:0120117  BP     1  0 1.000000000
## GO:0002419  BP     1  0 1.000000000
## GO:0033371  BP     1  0 1.000000000
## GO:0035688  BP     1  0 1.000000000
## GO:0035687  BP     1  0 1.000000000
## GO:0035705  BP     1  0 1.000000000
## GO:0036399  BP     1  0 1.000000000
## GO:0061571  BP     1  0 1.000000000
## GO:0035665  BP     1  0 1.000000000
## GO:0035664  BP     1  0 1.000000000
## GO:0045553  BP     1  0 1.000000000
## GO:0034474  BP     1  0 1.000000000
## GO:0034477  BP     1  0 1.000000000
## GO:0006225  BP     1  0 1.000000000
## GO:0046048  BP     1  0 1.000000000
## GO:0061569  BP     1  0 1.000000000
## GO:0006049  BP     1  0 1.000000000
## GO:0006258  BP     1  0 1.000000000
## GO:0015786  BP     1  0 1.000000000
## GO:0006065  BP     1  0 1.000000000
## GO:0015790  BP     1  0 1.000000000
## GO:0044206  BP     1  0 1.000000000
## GO:1990731  BP     1  0 1.000000000
## GO:1904210  BP     1  0 1.000000000
## GO:1902378  BP     1  0 1.000000000
## GO:0044333  BP     1  0 1.000000000
## GO:1904887  BP     1  0 1.000000000
## GO:1904701  BP     1  0 1.000000000
## GO:1901639  BP     1  0 1.000000000
## GO:0009738  BP     1  0 1.000000000
## GO:0046186  BP     1  0 1.000000000
## GO:0006117  BP     1  0 1.000000000
## GO:0043438  BP     1  0 1.000000000
## GO:0006581  BP     1  0 1.000000000
## GO:0003069  BP     1  0 1.000000000
## GO:0090425  BP     1  0 1.000000000
## GO:1990863  BP     1  0 1.000000000
## GO:0002077  BP     1  0 1.000000000
## GO:0061573  BP     1  0 1.000000000
## GO:0031289  BP     1  0 1.000000000
## GO:0007014  BP     1  0 1.000000000
## GO:0002543  BP     1  0 1.000000000
## GO:0043006  BP     1  0 1.000000000
## GO:0060520  BP     1  0 1.000000000
## GO:0036155  BP     1  0 1.000000000
## GO:0015853  BP     1  0 1.000000000
## GO:0048855  BP     1  0 1.000000000
## GO:0071106  BP     1  0 1.000000000
## GO:0046086  BP     1  0 1.000000000
## GO:0086030  BP     1  0 1.000000000
## GO:0007192  BP     1  0 1.000000000
## GO:0086096  BP     1  0 1.000000000
## GO:0120179  BP     1  0 1.000000000
## GO:0044651  BP     1  0 1.000000000
## GO:0043390  BP     1  0 1.000000000
## GO:0001315  BP     1  0 1.000000000
## GO:0009820  BP     1  0 1.000000000
## GO:0046305  BP     1  0 1.000000000
## GO:0019428  BP     1  0 1.000000000
## GO:0000256  BP     1  0 1.000000000
## GO:0002299  BP     1  0 1.000000000
## GO:0015742  BP     1  0 1.000000000
## GO:0061143  BP     1  0 1.000000000
## GO:0015898  BP     1  0 1.000000000
## GO:0043041  BP     1  0 1.000000000
## GO:0032973  BP     1  0 1.000000000
## GO:0006579  BP     1  0 1.000000000
## GO:0106074  BP     1  0 1.000000000
## GO:0021541  BP     1  0 1.000000000
## GO:0097086  BP     1  0 1.000000000
## GO:0010021  BP     1  0 1.000000000
## GO:2000896  BP     1  0 1.000000000
## GO:0055048  BP     1  0 1.000000000
## GO:0035935  BP     1  0 1.000000000
## GO:0035476  BP     1  0 1.000000000
## GO:0010260  BP     1  0 1.000000000
## GO:0072165  BP     1  0 1.000000000
## GO:0060873  BP     1  0 1.000000000
## GO:0072099  BP     1  0 1.000000000
## GO:0099087  BP     1  0 1.000000000
## GO:0098972  BP     1  0 1.000000000
## GO:0043420  BP     1  0 1.000000000
## GO:1990262  BP     1  0 1.000000000
## GO:0002779  BP     1  0 1.000000000
## GO:0002406  BP     1  0 1.000000000
## GO:0002404  BP     1  0 1.000000000
## GO:0002412  BP     1  0 1.000000000
## GO:0002776  BP     1  0 1.000000000
## GO:0042868  BP     1  0 1.000000000
## GO:0071041  BP     1  0 1.000000000
## GO:0060183  BP     1  0 1.000000000
## GO:0019544  BP     1  0 1.000000000
## GO:0019493  BP     1  0 1.000000000
## GO:0010121  BP     1  0 1.000000000
## GO:0019546  BP     1  0 1.000000000
## GO:0009095  BP     1  0 1.000000000
## GO:1901684  BP     1  0 1.000000000
## GO:0001984  BP     1  0 1.000000000
## GO:0006529  BP     1  0 1.000000000
## GO:0006530  BP     1  0 1.000000000
## GO:0033345  BP     1  0 1.000000000
## GO:0006867  BP     1  0 1.000000000
## GO:0061528  BP     1  0 1.000000000
## GO:0006422  BP     1  0 1.000000000
## GO:0030954  BP     1  0 1.000000000
## GO:0036520  BP     1  0 1.000000000
## GO:0045167  BP     1  0 1.000000000
## GO:0086044  BP     1  0 1.000000000
## GO:0003167  BP     1  0 1.000000000
## GO:1905222  BP     1  0 1.000000000
## GO:0060929  BP     1  0 1.000000000
## GO:0042668  BP     1  0 1.000000000
## GO:0061910  BP     1  0 1.000000000
## GO:0061909  BP     1  0 1.000000000
## GO:0036331  BP     1  0 1.000000000
## GO:0048321  BP     1  0 1.000000000
## GO:0048322  BP     1  0 1.000000000
## GO:0048327  BP     1  0 1.000000000
## GO:0099088  BP     1  0 1.000000000
## GO:0060404  BP     1  0 1.000000000
## GO:0051638  BP     1  0 1.000000000
## GO:0045175  BP     1  0 1.000000000
## GO:0097510  BP     1  0 1.000000000
## GO:0006288  BP     1  0 1.000000000
## GO:0002575  BP     1  0 1.000000000
## GO:0002561  BP     1  0 1.000000000
## GO:0030221  BP     1  0 1.000000000
## GO:1990960  BP     1  0 1.000000000
## GO:0002560  BP     1  0 1.000000000
## GO:0051780  BP     1  0 1.000000000
## GO:1901787  BP     1  0 1.000000000
## GO:1901086  BP     1  0 1.000000000
## GO:0019483  BP     1  0 1.000000000
## GO:0033396  BP     1  0 1.000000000
## GO:0019484  BP     1  0 1.000000000
## GO:0001762  BP     1  0 1.000000000
## GO:1901810  BP     1  0 1.000000000
## GO:1904837  BP     1  0 1.000000000
## GO:1901805  BP     1  0 1.000000000
## GO:1901804  BP     1  0 1.000000000
## GO:0015759  BP     1  0 1.000000000
## GO:0030653  BP     1  0 1.000000000
## GO:0002152  BP     1  0 1.000000000
## GO:0002812  BP     1  0 1.000000000
## GO:0002815  BP     1  0 1.000000000
## GO:0006768  BP     1  0 1.000000000
## GO:0015878  BP     1  0 1.000000000
## GO:0072377  BP     1  0 1.000000000
## GO:0097497  BP     1  0 1.000000000
## GO:0002044  BP     1  0 1.000000000
## GO:0046713  BP     1  0 1.000000000
## GO:0002936  BP     1  0 1.000000000
## GO:0061114  BP     1  0 1.000000000
## GO:0016132  BP     1  0 1.000000000
## GO:0016131  BP     1  0 1.000000000
## GO:0060436  BP     1  0 1.000000000
## GO:0060503  BP     1  0 1.000000000
## GO:0086054  BP     1  0 1.000000000
## GO:0046359  BP     1  0 1.000000000
## GO:0019605  BP     1  0 1.000000000
## GO:0006198  BP     1  0 1.000000000
## GO:0010816  BP     1  0 1.000000000
## GO:0036161  BP     1  0 1.000000000
## GO:0090676  BP     1  0 1.000000000
## GO:1903515  BP     1  0 1.000000000
## GO:0061310  BP     1  0 1.000000000
## GO:0044335  BP     1  0 1.000000000
## GO:0060823  BP     1  0 1.000000000
## GO:0044329  BP     1  0 1.000000000
## GO:0044328  BP     1  0 1.000000000
## GO:0044330  BP     1  0 1.000000000
## GO:1905474  BP     1  0 1.000000000
## GO:0097310  BP     1  0 1.000000000
## GO:0070409  BP     1  0 1.000000000
## GO:0070408  BP     1  0 1.000000000
## GO:0033231  BP     1  0 1.000000000
## GO:0098704  BP     1  0 1.000000000
## GO:0035378  BP     1  0 1.000000000
## GO:0003210  BP     1  0 1.000000000
## GO:0060945  BP     1  0 1.000000000
## GO:0060927  BP     1  0 1.000000000
## GO:0003259  BP     1  0 1.000000000
## GO:0042684  BP     1  0 1.000000000
## GO:0042685  BP     1  0 1.000000000
## GO:0003260  BP     1  0 1.000000000
## GO:0060975  BP     1  0 1.000000000
## GO:0003142  BP     1  0 1.000000000
## GO:0042413  BP     1  0 1.000000000
## GO:1902603  BP     1  0 1.000000000
## GO:0035499  BP     1  0 1.000000000
## GO:0016117  BP     1  0 1.000000000
## GO:0061103  BP     1  0 1.000000000
## GO:0052353  BP     1  0 1.000000000
## GO:0052356  BP     1  0 1.000000000
## GO:0052362  BP     1  0 1.000000000
## GO:0052354  BP     1  0 1.000000000
## GO:0052342  BP     1  0 1.000000000
## GO:0052363  BP     1  0 1.000000000
## GO:0061984  BP     1  0 1.000000000
## GO:0090667  BP     1  0 1.000000000
## GO:0035212  BP     1  0 1.000000000
## GO:1902294  BP     1  0 1.000000000
## GO:0033301  BP     1  0 1.000000000
## GO:0043163  BP     1  0 1.000000000
## GO:0060582  BP     1  0 1.000000000
## GO:0071976  BP     1  0 1.000000000
## GO:0061381  BP     1  0 1.000000000
## GO:0060981  BP     1  0 1.000000000
## GO:0060980  BP     1  0 1.000000000
## GO:0090134  BP     1  0 1.000000000
## GO:0003318  BP     1  0 1.000000000
## GO:0097231  BP     1  0 1.000000000
## GO:0090247  BP     1  0 1.000000000
## GO:0090529  BP     1  0 1.000000000
## GO:0042546  BP     1  0 1.000000000
## GO:0006039  BP     1  0 1.000000000
## GO:0006037  BP     1  0 1.000000000
## GO:0031506  BP     1  0 1.000000000
## GO:0044038  BP     1  0 1.000000000
## GO:0000032  BP     1  0 1.000000000
## GO:0010383  BP     1  0 1.000000000
## GO:0021813  BP     1  0 1.000000000
## GO:0060495  BP     1  0 1.000000000
## GO:0099156  BP     1  0 1.000000000
## GO:0120180  BP     1  0 1.000000000
## GO:0043449  BP     1  0 1.000000000
## GO:0097275  BP     1  0 1.000000000
## GO:0006876  BP     1  0 1.000000000
## GO:0070589  BP     1  0 1.000000000
## GO:0097276  BP     1  0 1.000000000
## GO:0140041  BP     1  0 1.000000000
## GO:0030026  BP     1  0 1.000000000
## GO:0051692  BP     1  0 1.000000000
## GO:0051691  BP     1  0 1.000000000
## GO:0090346  BP     1  0 1.000000000
## GO:0090345  BP     1  0 1.000000000
## GO:1904566  BP     1  0 1.000000000
## GO:1905243  BP     1  0 1.000000000
## GO:1904682  BP     1  0 1.000000000
## GO:0071215  BP     1  0 1.000000000
## GO:0071418  BP     1  0 1.000000000
## GO:1903718  BP     1  0 1.000000000
## GO:0072740  BP     1  0 1.000000000
## GO:0071454  BP     1  0 1.000000000
## GO:0097185  BP     1  0 1.000000000
## GO:0072755  BP     1  0 1.000000000
## GO:0061433  BP     1  0 1.000000000
## GO:0071244  BP     1  0 1.000000000
## GO:1902350  BP     1  0 1.000000000
## GO:0071247  BP     1  0 1.000000000
## GO:0035874  BP     1  0 1.000000000
## GO:0071386  BP     1  0 1.000000000
## GO:0071387  BP     1  0 1.000000000
## GO:0072749  BP     1  0 1.000000000
## GO:0071324  BP     1  0 1.000000000
## GO:1904630  BP     1  0 1.000000000
## GO:0072721  BP     1  0 1.000000000
## GO:1905396  BP     1  0 1.000000000
## GO:1902618  BP     1  0 1.000000000
## GO:0071231  BP     1  0 1.000000000
## GO:0071240  BP     1  0 1.000000000
## GO:0071497  BP     1  0 1.000000000
## GO:1990792  BP     1  0 1.000000000
## GO:1904632  BP     1  0 1.000000000
## GO:1905631  BP     1  0 1.000000000
## GO:1905430  BP     1  0 1.000000000
## GO:1904588  BP     1  0 1.000000000
## GO:0036471  BP     1  0 1.000000000
## GO:0071486  BP     1  0 1.000000000
## GO:0071464  BP     1  0 1.000000000
## GO:0035903  BP     1  0 1.000000000
## GO:0071348  BP     1  0 1.000000000
## GO:0097398  BP     1  0 1.000000000
## GO:0071282  BP     1  0 1.000000000
## GO:0071284  BP     1  0 1.000000000
## GO:0071484  BP     1  0 1.000000000
## GO:0071449  BP     1  0 1.000000000
## GO:0071373  BP     1  0 1.000000000
## GO:0072705  BP     1  0 1.000000000
## GO:0072703  BP     1  0 1.000000000
## GO:1904609  BP     1  0 1.000000000
## GO:0035714  BP     1  0 1.000000000
## GO:0071471  BP     1  0 1.000000000
## GO:0071400  BP     1  0 1.000000000
## GO:0071444  BP     1  0 1.000000000
## GO:1903166  BP     1  0 1.000000000
## GO:1904586  BP     1  0 1.000000000
## GO:1905835  BP     1  0 1.000000000
## GO:0097403  BP     1  0 1.000000000
## GO:0071489  BP     1  0 1.000000000
## GO:1904015  BP     1  0 1.000000000
## GO:0072709  BP     1  0 1.000000000
## GO:0071329  BP     1  0 1.000000000
## GO:1905229  BP     1  0 1.000000000
## GO:0071401  BP     1  0 1.000000000
## GO:0071228  BP     1  0 1.000000000
## GO:1904577  BP     1  0 1.000000000
## GO:0090731  BP     1  0 1.000000000
## GO:1904568  BP     1  0 1.000000000
## GO:1990451  BP     1  0 1.000000000
## GO:0097277  BP     1  0 1.000000000
## GO:0007349  BP     1  0 1.000000000
## GO:0071529  BP     1  0 1.000000000
## GO:0002510  BP     1  0 1.000000000
## GO:0021956  BP     1  0 1.000000000
## GO:0002509  BP     1  0 1.000000000
## GO:1902389  BP     1  0 1.000000000
## GO:0099040  BP     1  0 1.000000000
## GO:0021686  BP     1  0 1.000000000
## GO:0021685  BP     1  0 1.000000000
## GO:0021688  BP     1  0 1.000000000
## GO:0021588  BP     1  0 1.000000000
## GO:0061301  BP     1  0 1.000000000
## GO:0051086  BP     1  0 1.000000000
## GO:1904764  BP     1  0 1.000000000
## GO:0061741  BP     1  0 1.000000000
## GO:0019988  BP     1  0 1.000000000
## GO:0036516  BP     1  0 1.000000000
## GO:0036517  BP     1  0 1.000000000
## GO:0071610  BP     1  0 1.000000000
## GO:0036392  BP     1  0 1.000000000
## GO:0071606  BP     1  0 1.000000000
## GO:0032600  BP     1  0 1.000000000
## GO:0033606  BP     1  0 1.000000000
## GO:0042466  BP     1  0 1.000000000
## GO:0021793  BP     1  0 1.000000000
## GO:0034670  BP     1  0 1.000000000
## GO:0042196  BP     1  0 1.000000000
## GO:0033488  BP     1  0 1.000000000
## GO:0033490  BP     1  0 1.000000000
## GO:0010879  BP     1  0 1.000000000
## GO:0042426  BP     1  0 1.000000000
## GO:0030207  BP     1  0 1.000000000
## GO:0050653  BP     1  0 1.000000000
## GO:1990141  BP     1  0 1.000000000
## GO:0031052  BP     1  0 1.000000000
## GO:0035853  BP     1  0 1.000000000
## GO:0001300  BP     1  0 1.000000000
## GO:1905349  BP     1  0 1.000000000
## GO:0061523  BP     1  0 1.000000000
## GO:0003243  BP     1  0 1.000000000
## GO:1990771  BP     1  0 1.000000000
## GO:0009236  BP     1  0 1.000000000
## GO:0042366  BP     1  0 1.000000000
## GO:0015938  BP     1  0 1.000000000
## GO:0035349  BP     1  0 1.000000000
## GO:0015880  BP     1  0 1.000000000
## GO:0048673  BP     1  0 1.000000000
## GO:0061580  BP     1  0 1.000000000
## GO:0021528  BP     1  0 1.000000000
## GO:0038178  BP     1  0 1.000000000
## GO:0048058  BP     1  0 1.000000000
## GO:0072027  BP     1  0 1.000000000
## GO:0051089  BP     1  0 1.000000000
## GO:0090246  BP     1  0 1.000000000
## GO:0036404  BP     1  0 1.000000000
## GO:0033168  BP     1  0 1.000000000
## GO:0071951  BP     1  0 1.000000000
## GO:0046814  BP     1  0 1.000000000
## GO:0060365  BP     1  0 1.000000000
## GO:0003178  BP     1  0 1.000000000
## GO:0003182  BP     1  0 1.000000000
## GO:0021972  BP     1  0 1.000000000
## GO:0097273  BP     1  0 1.000000000
## GO:0046449  BP     1  0 1.000000000
## GO:0006535  BP     1  0 1.000000000
## GO:1903712  BP     1  0 1.000000000
## GO:0018063  BP     1  0 1.000000000
## GO:0009691  BP     1  0 1.000000000
## GO:0009690  BP     1  0 1.000000000
## GO:0051838  BP     1  0 1.000000000
## GO:0051801  BP     1  0 1.000000000
## GO:0071629  BP     1  0 1.000000000
## GO:0071026  BP     1  0 1.000000000
## GO:0010938  BP     1  0 1.000000000
## GO:0043004  BP     1  0 1.000000000
## GO:0048789  BP     1  0 1.000000000
## GO:0021808  BP     1  0 1.000000000
## GO:0061725  BP     1  0 1.000000000
## GO:0046057  BP     1  0 1.000000000
## GO:0006174  BP     1  0 1.000000000
## GO:0061565  BP     1  0 1.000000000
## GO:0006175  BP     1  0 1.000000000
## GO:0006240  BP     1  0 1.000000000
## GO:0046062  BP     1  0 1.000000000
## GO:0061570  BP     1  0 1.000000000
## GO:0061567  BP     1  0 1.000000000
## GO:0006253  BP     1  0 1.000000000
## GO:0046065  BP     1  0 1.000000000
## GO:0006185  BP     1  0 1.000000000
## GO:0046067  BP     1  0 1.000000000
## GO:0006186  BP     1  0 1.000000000
## GO:0046054  BP     1  0 1.000000000
## GO:0035863  BP     1  0 1.000000000
## GO:0035862  BP     1  0 1.000000000
## GO:0046079  BP     1  0 1.000000000
## GO:0046081  BP     1  0 1.000000000
## GO:0046080  BP     1  0 1.000000000
## GO:0043215  BP     1  0 1.000000000
## GO:1902426  BP     1  0 1.000000000
## GO:0009816  BP     1  0 1.000000000
## GO:0009817  BP     1  0 1.000000000
## GO:0097188  BP     1  0 1.000000000
## GO:0006157  BP     1  0 1.000000000
## GO:0046090  BP     1  0 1.000000000
## GO:0006161  BP     1  0 1.000000000
## GO:0042453  BP     1  0 1.000000000
## GO:0006149  BP     1  0 1.000000000
## GO:0046094  BP     1  0 1.000000000
## GO:0009192  BP     1  0 1.000000000
## GO:0030209  BP     1  0 1.000000000
## GO:0035906  BP     1  0 1.000000000
## GO:0072022  BP     1  0 1.000000000
## GO:0035921  BP     1  0 1.000000000
## GO:0072421  BP     1  0 1.000000000
## GO:0009589  BP     1  0 1.000000000
## GO:0060245  BP     1  0 1.000000000
## GO:0060246  BP     1  0 1.000000000
## GO:0060248  BP     1  0 1.000000000
## GO:0090429  BP     1  0 1.000000000
## GO:0016046  BP     1  0 1.000000000
## GO:0003029  BP     1  0 1.000000000
## GO:0002007  BP     1  0 1.000000000
## GO:0070392  BP     1  0 1.000000000
## GO:0032498  BP     1  0 1.000000000
## GO:0070994  BP     1  0 1.000000000
## GO:0072394  BP     1  0 1.000000000
## GO:0050960  BP     1  0 1.000000000
## GO:0002355  BP     1  0 1.000000000
## GO:0014822  BP     1  0 1.000000000
## GO:0001879  BP     1  0 1.000000000
## GO:0050894  BP     1  0 1.000000000
## GO:0071908  BP     1  0 1.000000000
## GO:0071909  BP     1  0 1.000000000
## GO:0048264  BP     1  0 1.000000000
## GO:0071585  BP     1  0 1.000000000
## GO:0010312  BP     1  0 1.000000000
## GO:0044111  BP     1  0 1.000000000
## GO:0044115  BP     1  0 1.000000000
## GO:0015964  BP     1  0 1.000000000
## GO:0015962  BP     1  0 1.000000000
## GO:0060540  BP     1  0 1.000000000
## GO:0090472  BP     1  0 1.000000000
## GO:0019341  BP     1  0 1.000000000
## GO:0018900  BP     1  0 1.000000000
## GO:0060678  BP     1  0 1.000000000
## GO:0007502  BP     1  0 1.000000000
## GO:0051066  BP     1  0 1.000000000
## GO:0051068  BP     1  0 1.000000000
## GO:0140206  BP     1  0 1.000000000
## GO:0071544  BP     1  0 1.000000000
## GO:0046352  BP     1  0 1.000000000
## GO:0052338  BP     1  0 1.000000000
## GO:0052367  BP     1  0 1.000000000
## GO:0052339  BP     1  0 1.000000000
## GO:0052368  BP     1  0 1.000000000
## GO:0014828  BP     1  0 1.000000000
## GO:0000917  BP     1  0 1.000000000
## GO:0043048  BP     1  0 1.000000000
## GO:0006585  BP     1  0 1.000000000
## GO:1900753  BP     1  0 1.000000000
## GO:1990962  BP     1  0 1.000000000
## GO:0061772  BP     1  0 1.000000000
## GO:0036497  BP     1  0 1.000000000
## GO:0007499  BP     1  0 1.000000000
## GO:0001715  BP     1  0 1.000000000
## GO:0048567  BP     1  0 1.000000000
## GO:0048894  BP     1  0 1.000000000
## GO:0048613  BP     1  0 1.000000000
## GO:0036306  BP     1  0 1.000000000
## GO:0003144  BP     1  0 1.000000000
## GO:1990402  BP     1  0 1.000000000
## GO:0060957  BP     1  0 1.000000000
## GO:0061444  BP     1  0 1.000000000
## GO:0061445  BP     1  0 1.000000000
## GO:0038002  BP     1  0 1.000000000
## GO:1905267  BP     1  0 1.000000000
## GO:0000461  BP     1  0 1.000000000
## GO:0000472  BP     1  0 1.000000000
## GO:0061163  BP     1  0 1.000000000
## GO:0071788  BP     1  0 1.000000000
## GO:0002264  BP     1  0 1.000000000
## GO:0090668  BP     1  0 1.000000000
## GO:0090674  BP     1  0 1.000000000
## GO:0097102  BP     1  0 1.000000000
## GO:0034959  BP     1  0 1.000000000
## GO:0061736  BP     1  0 1.000000000
## GO:0035645  BP     1  0 1.000000000
## GO:0043354  BP     1  0 1.000000000
## GO:0090601  BP     1  0 1.000000000
## GO:0018323  BP     1  0 1.000000000
## GO:0018192  BP     1  0 1.000000000
## GO:0000455  BP     1  0 1.000000000
## GO:0072682  BP     1  0 1.000000000
## GO:1990959  BP     1  0 1.000000000
## GO:0060802  BP     1  0 1.000000000
## GO:0055113  BP     1  0 1.000000000
## GO:0007174  BP     1  0 1.000000000
## GO:0038168  BP     1  0 1.000000000
## GO:0038167  BP     1  0 1.000000000
## GO:1990134  BP     1  0 1.000000000
## GO:0060691  BP     1  0 1.000000000
## GO:0060517  BP     1  0 1.000000000
## GO:0060940  BP     1  0 1.000000000
## GO:0070987  BP     1  0 1.000000000
## GO:1902217  BP     1  0 1.000000000
## GO:0034102  BP     1  0 1.000000000
## GO:0043131  BP     1  0 1.000000000
## GO:0048773  BP     1  0 1.000000000
## GO:0051686  BP     1  0 1.000000000
## GO:0048561  BP     1  0 1.000000000
## GO:1990963  BP     1  0 1.000000000
## GO:0071964  BP     1  0 1.000000000
## GO:0099089  BP     1  0 1.000000000
## GO:0071516  BP     1  0 1.000000000
## GO:0075713  BP     1  0 1.000000000
## GO:0061966  BP     1  0 1.000000000
## GO:0051296  BP     1  0 1.000000000
## GO:0034640  BP     1  0 1.000000000
## GO:0072046  BP     1  0 1.000000000
## GO:0042247  BP     1  0 1.000000000
## GO:0035592  BP     1  0 1.000000000
## GO:0071206  BP     1  0 1.000000000
## GO:0090152  BP     1  0 1.000000000
## GO:0032254  BP     1  0 1.000000000
## GO:0016334  BP     1  0 1.000000000
## GO:0035937  BP     1  0 1.000000000
## GO:0060206  BP     1  0 1.000000000
## GO:0006580  BP     1  0 1.000000000
## GO:0030683  BP     1  0 1.000000000
## GO:0051807  BP     1  0 1.000000000
## GO:0030682  BP     1  0 1.000000000
## GO:0020012  BP     1  0 1.000000000
## GO:0051805  BP     1  0 1.000000000
## GO:0098817  BP     1  0 1.000000000
## GO:0061670  BP     1  0 1.000000000
## GO:1903259  BP     1  0 1.000000000
## GO:0021816  BP     1  0 1.000000000
## GO:0045229  BP     1  0 1.000000000
## GO:0072680  BP     1  0 1.000000000
## GO:0060082  BP     1  0 1.000000000
## GO:0008057  BP     1  0 1.000000000
## GO:0042441  BP     1  0 1.000000000
## GO:0098746  BP     1  0 1.000000000
## GO:0061040  BP     1  0 1.000000000
## GO:0019101  BP     1  0 1.000000000
## GO:0097707  BP     1  0 1.000000000
## GO:1903988  BP     1  0 1.000000000
## GO:1902178  BP     1  0 1.000000000
## GO:0035603  BP     1  0 1.000000000
## GO:0035602  BP     1  0 1.000000000
## GO:0035604  BP     1  0 1.000000000
## GO:2000699  BP     1  0 1.000000000
## GO:1905590  BP     1  0 1.000000000
## GO:0072681  BP     1  0 1.000000000
## GO:1905285  BP     1  0 1.000000000
## GO:0036058  BP     1  0 1.000000000
## GO:0072388  BP     1  0 1.000000000
## GO:0072389  BP     1  0 1.000000000
## GO:0042728  BP     1  0 1.000000000
## GO:0051552  BP     1  0 1.000000000
## GO:0018917  BP     1  0 1.000000000
## GO:0120181  BP     1  0 1.000000000
## GO:0002316  BP     1  0 1.000000000
## GO:0021905  BP     1  0 1.000000000
## GO:0046293  BP     1  0 1.000000000
## GO:0043606  BP     1  0 1.000000000
## GO:0015942  BP     1  0 1.000000000
## GO:0015724  BP     1  0 1.000000000
## GO:0010160  BP     1  0 1.000000000
## GO:0048689  BP     1  0 1.000000000
## GO:0043056  BP     1  0 1.000000000
## GO:0050751  BP     1  0 1.000000000
## GO:0050756  BP     1  0 1.000000000
## GO:0032603  BP     1  0 1.000000000
## GO:0032445  BP     1  0 1.000000000
## GO:1990539  BP     1  0 1.000000000
## GO:0019402  BP     1  0 1.000000000
## GO:0015757  BP     1  0 1.000000000
## GO:0051939  BP     1  0 1.000000000
## GO:0002365  BP     1  0 1.000000000
## GO:0007402  BP     1  0 1.000000000
## GO:1905572  BP     1  0 1.000000000
## GO:1901148  BP     1  0 1.000000000
## GO:0051867  BP     1  0 1.000000000
## GO:0071515  BP     1  0 1.000000000
## GO:0036321  BP     1  0 1.000000000
## GO:2000701  BP     1  0 1.000000000
## GO:0001576  BP     1  0 1.000000000
## GO:0072139  BP     1  0 1.000000000
## GO:1903210  BP     1  0 1.000000000
## GO:0006042  BP     1  0 1.000000000
## GO:1901073  BP     1  0 1.000000000
## GO:0042946  BP     1  0 1.000000000
## GO:0006064  BP     1  0 1.000000000
## GO:0006539  BP     1  0 1.000000000
## GO:0006540  BP     1  0 1.000000000
## GO:1905962  BP     1  0 1.000000000
## GO:0006542  BP     1  0 1.000000000
## GO:0010585  BP     1  0 1.000000000
## GO:0036531  BP     1  0 1.000000000
## GO:0015794  BP     1  0 1.000000000
## GO:0031456  BP     1  0 1.000000000
## GO:0019285  BP     1  0 1.000000000
## GO:0031455  BP     1  0 1.000000000
## GO:0031460  BP     1  0 1.000000000
## GO:1904983  BP     1  0 1.000000000
## GO:0072579  BP     1  0 1.000000000
## GO:0061536  BP     1  0 1.000000000
## GO:0061537  BP     1  0 1.000000000
## GO:0060709  BP     1  0 1.000000000
## GO:0046295  BP     1  0 1.000000000
## GO:0046296  BP     1  0 1.000000000
## GO:0034203  BP     1  0 1.000000000
## GO:0093001  BP     1  0 1.000000000
## GO:0061619  BP     1  0 1.000000000
## GO:0006426  BP     1  0 1.000000000
## GO:1903189  BP     1  0 1.000000000
## GO:0060016  BP     1  0 1.000000000
## GO:1990739  BP     1  0 1.000000000
## GO:0035746  BP     1  0 1.000000000
## GO:0033380  BP     1  0 1.000000000
## GO:0014843  BP     1  0 1.000000000
## GO:0003421  BP     1  0 1.000000000
## GO:0046099  BP     1  0 1.000000000
## GO:0006147  BP     1  0 1.000000000
## GO:0106044  BP     1  0 1.000000000
## GO:0106046  BP     1  0 1.000000000
## GO:0106045  BP     1  0 1.000000000
## GO:0006178  BP     1  0 1.000000000
## GO:0015854  BP     1  0 1.000000000
## GO:0046115  BP     1  0 1.000000000
## GO:0008617  BP     1  0 1.000000000
## GO:0015971  BP     1  0 1.000000000
## GO:0015969  BP     1  0 1.000000000
## GO:0042197  BP     1  0 1.000000000
## GO:0035704  BP     1  0 1.000000000
## GO:0035397  BP     1  0 1.000000000
## GO:0060217  BP     1  0 1.000000000
## GO:0097241  BP     1  0 1.000000000
## GO:0048034  BP     1  0 1.000000000
## GO:0048033  BP     1  0 1.000000000
## GO:0030211  BP     1  0 1.000000000
## GO:0061011  BP     1  0 1.000000000
## GO:0002384  BP     1  0 1.000000000
## GO:1990922  BP     1  0 1.000000000
## GO:0002194  BP     1  0 1.000000000
## GO:0048175  BP     1  0 1.000000000
## GO:0032605  BP     1  0 1.000000000
## GO:1902605  BP     1  0 1.000000000
## GO:0046458  BP     1  0 1.000000000
## GO:0019406  BP     1  0 1.000000000
## GO:0019407  BP     1  0 1.000000000
## GO:0021576  BP     1  0 1.000000000
## GO:0001695  BP     1  0 1.000000000
## GO:0051615  BP     1  0 1.000000000
## GO:0001697  BP     1  0 1.000000000
## GO:0019556  BP     1  0 1.000000000
## GO:0036351  BP     1  0 1.000000000
## GO:0036352  BP     1  0 1.000000000
## GO:0043977  BP     1  0 1.000000000
## GO:0043990  BP     1  0 1.000000000
## GO:1990245  BP     1  0 1.000000000
## GO:0043980  BP     1  0 1.000000000
## GO:0043979  BP     1  0 1.000000000
## GO:0043972  BP     1  0 1.000000000
## GO:0043973  BP     1  0 1.000000000
## GO:0044648  BP     1  0 1.000000000
## GO:0097692  BP     1  0 1.000000000
## GO:0034972  BP     1  0 1.000000000
## GO:0035407  BP     1  0 1.000000000
## GO:2000751  BP     1  0 1.000000000
## GO:0035409  BP     1  0 1.000000000
## GO:1990679  BP     1  0 1.000000000
## GO:1990678  BP     1  0 1.000000000
## GO:0071110  BP     1  0 1.000000000
## GO:0001207  BP     1  0 1.000000000
## GO:0035406  BP     1  0 1.000000000
## GO:0048877  BP     1  0 1.000000000
## GO:1902000  BP     1  0 1.000000000
## GO:1901999  BP     1  0 1.000000000
## GO:0051758  BP     1  0 1.000000000
## GO:0031619  BP     1  0 1.000000000
## GO:0035852  BP     1  0 1.000000000
## GO:0034050  BP     1  0 1.000000000
## GO:0048874  BP     1  0 1.000000000
## GO:1990384  BP     1  0 1.000000000
## GO:0034589  BP     1  0 1.000000000
## GO:0002149  BP     1  0 1.000000000
## GO:0002148  BP     1  0 1.000000000
## GO:0021566  BP     1  0 1.000000000
## GO:0021618  BP     1  0 1.000000000
## GO:0009114  BP     1  0 1.000000000
## GO:0006150  BP     1  0 1.000000000
## GO:0035344  BP     1  0 1.000000000
## GO:0020021  BP     1  0 1.000000000
## GO:0097281  BP     1  0 1.000000000
## GO:0002383  BP     1  0 1.000000000
## GO:0002379  BP     1  0 1.000000000
## GO:0071707  BP     1  0 1.000000000
## GO:0060820  BP     1  0 1.000000000
## GO:0009682  BP     1  0 1.000000000
## GO:0052251  BP     1  0 1.000000000
## GO:0052263  BP     1  0 1.000000000
## GO:0052558  BP     1  0 1.000000000
## GO:0052063  BP     1  0 1.000000000
## GO:0052559  BP     1  0 1.000000000
## GO:0039520  BP     1  0 1.000000000
## GO:0006948  BP     1  0 1.000000000
## GO:0050929  BP     1  0 1.000000000
## GO:0031129  BP     1  0 1.000000000
## GO:1905317  BP     1  0 1.000000000
## GO:0055111  BP     1  0 1.000000000
## GO:0021806  BP     1  0 1.000000000
## GO:0021993  BP     1  0 1.000000000
## GO:0030505  BP     1  0 1.000000000
## GO:0006148  BP     1  0 1.000000000
## GO:0006021  BP     1  0 1.000000000
## GO:0019310  BP     1  0 1.000000000
## GO:0017143  BP     1  0 1.000000000
## GO:0038016  BP     1  0 1.000000000
## GO:0038020  BP     1  0 1.000000000
## GO:0048219  BP     1  0 1.000000000
## GO:0052213  BP     1  0 1.000000000
## GO:0043063  BP     1  0 1.000000000
## GO:0050719  BP     1  0 1.000000000
## GO:0035772  BP     1  0 1.000000000
## GO:0042235  BP     1  0 1.000000000
## GO:0097400  BP     1  0 1.000000000
## GO:0072616  BP     1  0 1.000000000
## GO:0038155  BP     1  0 1.000000000
## GO:0070106  BP     1  0 1.000000000
## GO:0038172  BP     1  0 1.000000000
## GO:0035708  BP     1  0 1.000000000
## GO:0042225  BP     1  0 1.000000000
## GO:0038112  BP     1  0 1.000000000
## GO:0032638  BP     1  0 1.000000000
## GO:0072607  BP     1  0 1.000000000
## GO:0048391  BP     1  0 1.000000000
## GO:0048390  BP     1  0 1.000000000
## GO:0048392  BP     1  0 1.000000000
## GO:0071831  BP     1  0 1.000000000
## GO:0120012  BP     1  0 1.000000000
## GO:0035260  BP     1  0 1.000000000
## GO:0052097  BP     1  0 1.000000000
## GO:0044258  BP     1  0 1.000000000
## GO:0036335  BP     1  0 1.000000000
## GO:0038185  BP     1  0 1.000000000
## GO:1990953  BP     1  0 1.000000000
## GO:1990127  BP     1  0 1.000000000
## GO:1905877  BP     1  0 1.000000000
## GO:1905878  BP     1  0 1.000000000
## GO:1904200  BP     1  0 1.000000000
## GO:0033212  BP     1  0 1.000000000
## GO:1903414  BP     1  0 1.000000000
## GO:0034231  BP     1  0 1.000000000
## GO:0018153  BP     1  0 1.000000000
## GO:0018276  BP     1  0 1.000000000
## GO:0007630  BP     1  0 1.000000000
## GO:0018146  BP     1  0 1.000000000
## GO:0042465  BP     1  0 1.000000000
## GO:1903457  BP     1  0 1.000000000
## GO:0046722  BP     1  0 1.000000000
## GO:0001572  BP     1  0 1.000000000
## GO:0060366  BP     1  0 1.000000000
## GO:0003363  BP     1  0 1.000000000
## GO:0042140  BP     1  0 1.000000000
## GO:0099607  BP     1  0 1.000000000
## GO:0022018  BP     1  0 1.000000000
## GO:0021771  BP     1  0 1.000000000
## GO:0048892  BP     1  0 1.000000000
## GO:0048925  BP     1  0 1.000000000
## GO:0031271  BP     1  0 1.000000000
## GO:0060875  BP     1  0 1.000000000
## GO:0015692  BP     1  0 1.000000000
## GO:0098713  BP     1  0 1.000000000
## GO:0002522  BP     1  0 1.000000000
## GO:0061737  BP     1  0 1.000000000
## GO:0071716  BP     1  0 1.000000000
## GO:0060887  BP     1  0 1.000000000
## GO:0060007  BP     1  0 1.000000000
## GO:1901373  BP     1  0 1.000000000
## GO:0060989  BP     1  0 1.000000000
## GO:0009107  BP     1  0 1.000000000
## GO:0009104  BP     1  0 1.000000000
## GO:0008653  BP     1  0 1.000000000
## GO:2001306  BP     1  0 1.000000000
## GO:2001304  BP     1  0 1.000000000
## GO:0021703  BP     1  0 1.000000000
## GO:0036116  BP     1  0 1.000000000
## GO:0060427  BP     1  0 1.000000000
## GO:0060464  BP     1  0 1.000000000
## GO:0061100  BP     1  0 1.000000000
## GO:0060432  BP     1  0 1.000000000
## GO:0061115  BP     1  0 1.000000000
## GO:0035471  BP     1  0 1.000000000
## GO:0003017  BP     1  0 1.000000000
## GO:1904977  BP     1  0 1.000000000
## GO:0042109  BP     1  0 1.000000000
## GO:0032641  BP     1  0 1.000000000
## GO:0035752  BP     1  0 1.000000000
## GO:0006430  BP     1  0 1.000000000
## GO:0090625  BP     1  0 1.000000000
## GO:0070054  BP     1  0 1.000000000
## GO:0002472  BP     1  0 1.000000000
## GO:0061519  BP     1  0 1.000000000
## GO:0010931  BP     1  0 1.000000000
## GO:0072024  BP     1  0 1.000000000
## GO:0051685  BP     1  0 1.000000000
## GO:0033382  BP     1  0 1.000000000
## GO:0034090  BP     1  0 1.000000000
## GO:0035875  BP     1  0 1.000000000
## GO:0071960  BP     1  0 1.000000000
## GO:0048790  BP     1  0 1.000000000
## GO:0033379  BP     1  0 1.000000000
## GO:0033373  BP     1  0 1.000000000
## GO:0033377  BP     1  0 1.000000000
## GO:0033370  BP     1  0 1.000000000
## GO:0085018  BP     1  0 1.000000000
## GO:0001192  BP     1  0 1.000000000
## GO:0001193  BP     1  0 1.000000000
## GO:0036098  BP     1  0 1.000000000
## GO:0051308  BP     1  0 1.000000000
## GO:0007112  BP     1  0 1.000000000
## GO:0007065  BP     1  0 1.000000000
## GO:0035039  BP     1  0 1.000000000
## GO:0019102  BP     1  0 1.000000000
## GO:0090410  BP     1  0 1.000000000
## GO:2001295  BP     1  0 1.000000000
## GO:2001294  BP     1  0 1.000000000
## GO:0060649  BP     1  0 1.000000000
## GO:0060611  BP     1  0 1.000000000
## GO:0002174  BP     1  0 1.000000000
## GO:0061374  BP     1  0 1.000000000
## GO:0018924  BP     1  0 1.000000000
## GO:0061978  BP     1  0 1.000000000
## GO:0055071  BP     1  0 1.000000000
## GO:0046355  BP     1  0 1.000000000
## GO:0010412  BP     1  0 1.000000000
## GO:0015797  BP     1  0 1.000000000
## GO:0006057  BP     1  0 1.000000000
## GO:0006056  BP     1  0 1.000000000
## GO:0006050  BP     1  0 1.000000000
## GO:0019309  BP     1  0 1.000000000
## GO:0061611  BP     1  0 1.000000000
## GO:0048047  BP     1  0 1.000000000
## GO:0000481  BP     1  0 1.000000000
## GO:0035782  BP     1  0 1.000000000
## GO:0036114  BP     1  0 1.000000000
## GO:0021723  BP     1  0 1.000000000
## GO:0010780  BP     1  0 1.000000000
## GO:0000707  BP     1  0 1.000000000
## GO:0098768  BP     1  0 1.000000000
## GO:0007146  BP     1  0 1.000000000
## GO:0033316  BP     1  0 1.000000000
## GO:0044779  BP     1  0 1.000000000
## GO:0051232  BP     1  0 1.000000000
## GO:0051257  BP     1  0 1.000000000
## GO:0097326  BP     1  0 1.000000000
## GO:1902362  BP     1  0 1.000000000
## GO:0086052  BP     1  0 1.000000000
## GO:0086050  BP     1  0 1.000000000
## GO:0022614  BP     1  0 1.000000000
## GO:0061485  BP     1  0 1.000000000
## GO:0009234  BP     1  0 1.000000000
## GO:0042696  BP     1  0 1.000000000
## GO:0042697  BP     1  0 1.000000000
## GO:0015694  BP     1  0 1.000000000
## GO:1901146  BP     1  0 1.000000000
## GO:1901706  BP     1  0 1.000000000
## GO:0060781  BP     1  0 1.000000000
## GO:0060783  BP     1  0 1.000000000
## GO:0061235  BP     1  0 1.000000000
## GO:0072285  BP     1  0 1.000000000
## GO:0072036  BP     1  0 1.000000000
## GO:0060496  BP     1  0 1.000000000
## GO:0060739  BP     1  0 1.000000000
## GO:0090131  BP     1  0 1.000000000
## GO:0090133  BP     1  0 1.000000000
## GO:0048338  BP     1  0 1.000000000
## GO:0007500  BP     1  0 1.000000000
## GO:0061215  BP     1  0 1.000000000
## GO:0061228  BP     1  0 1.000000000
## GO:0061206  BP     1  0 1.000000000
## GO:0052406  BP     1  0 1.000000000
## GO:0052410  BP     1  0 1.000000000
## GO:0052417  BP     1  0 1.000000000
## GO:0052407  BP     1  0 1.000000000
## GO:0052411  BP     1  0 1.000000000
## GO:0052418  BP     1  0 1.000000000
## GO:0042040  BP     1  0 1.000000000
## GO:0072213  BP     1  0 1.000000000
## GO:0072266  BP     1  0 1.000000000
## GO:0072265  BP     1  0 1.000000000
## GO:0072267  BP     1  0 1.000000000
## GO:0072286  BP     1  0 1.000000000
## GO:0072220  BP     1  0 1.000000000
## GO:0072274  BP     1  0 1.000000000
## GO:0072264  BP     1  0 1.000000000
## GO:0072255  BP     1  0 1.000000000
## GO:0072254  BP     1  0 1.000000000
## GO:0072259  BP     1  0 1.000000000
## GO:0072258  BP     1  0 1.000000000
## GO:0072206  BP     1  0 1.000000000
## GO:0072227  BP     1  0 1.000000000
## GO:0072209  BP     1  0 1.000000000
## GO:0072229  BP     1  0 1.000000000
## GO:0072232  BP     1  0 1.000000000
## GO:0072230  BP     1  0 1.000000000
## GO:0072237  BP     1  0 1.000000000
## GO:0072208  BP     1  0 1.000000000
## GO:1990949  BP     1  0 1.000000000
## GO:0009087  BP     1  0 1.000000000
## GO:0061715  BP     1  0 1.000000000
## GO:0090172  BP     1  0 1.000000000
## GO:0099606  BP     1  0 1.000000000
## GO:0099098  BP     1  0 1.000000000
## GO:1904693  BP     1  0 1.000000000
## GO:0021547  BP     1  0 1.000000000
## GO:0021732  BP     1  0 1.000000000
## GO:0022004  BP     1  0 1.000000000
## GO:0060156  BP     1  0 1.000000000
## GO:0031959  BP     1  0 1.000000000
## GO:0070843  BP     1  0 1.000000000
## GO:0070716  BP     1  0 1.000000000
## GO:0072671  BP     1  0 1.000000000
## GO:0033955  BP     1  0 1.000000000
## GO:2000827  BP     1  0 1.000000000
## GO:0070143  BP     1  0 1.000000000
## GO:0070145  BP     1  0 1.000000000
## GO:0006843  BP     1  0 1.000000000
## GO:0097551  BP     1  0 1.000000000
## GO:0097552  BP     1  0 1.000000000
## GO:0070150  BP     1  0 1.000000000
## GO:0090616  BP     1  0 1.000000000
## GO:0097222  BP     1  0 1.000000000
## GO:0035946  BP     1  0 1.000000000
## GO:0045016  BP     1  0 1.000000000
## GO:0035945  BP     1  0 1.000000000
## GO:0090144  BP     1  0 1.000000000
## GO:0072684  BP     1  0 1.000000000
## GO:0070899  BP     1  0 1.000000000
## GO:1990546  BP     1  0 1.000000000
## GO:0070183  BP     1  0 1.000000000
## GO:0070184  BP     1  0 1.000000000
## GO:0034642  BP     1  0 1.000000000
## GO:0035695  BP     1  0 1.000000000
## GO:1902977  BP     1  0 1.000000000
## GO:1902979  BP     1  0 1.000000000
## GO:0000080  BP     1  0 1.000000000
## GO:0000085  BP     1  0 1.000000000
## GO:1903673  BP     1  0 1.000000000
## GO:1990386  BP     1  0 1.000000000
## GO:0061780  BP     1  0 1.000000000
## GO:1990758  BP     1  0 1.000000000
## GO:1990755  BP     1  0 1.000000000
## GO:1903087  BP     1  0 1.000000000
## GO:0052336  BP     1  0 1.000000000
## GO:0052187  BP     1  0 1.000000000
## GO:0052183  BP     1  0 1.000000000
## GO:0052333  BP     1  0 1.000000000
## GO:0052188  BP     1  0 1.000000000
## GO:0052185  BP     1  0 1.000000000
## GO:0099564  BP     1  0 1.000000000
## GO:1990968  BP     1  0 1.000000000
## GO:1990969  BP     1  0 1.000000000
## GO:0052255  BP     1  0 1.000000000
## GO:0052302  BP     1  0 1.000000000
## GO:0052552  BP     1  0 1.000000000
## GO:0052163  BP     1  0 1.000000000
## GO:0085032  BP     1  0 1.000000000
## GO:0052031  BP     1  0 1.000000000
## GO:0052553  BP     1  0 1.000000000
## GO:0052027  BP     1  0 1.000000000
## GO:0044495  BP     1  0 1.000000000
## GO:0044145  BP     1  0 1.000000000
## GO:0044501  BP     1  0 1.000000000
## GO:0052250  BP     1  0 1.000000000
## GO:0015689  BP     1  0 1.000000000
## GO:0018315  BP     1  0 1.000000000
## GO:0002280  BP     1  0 1.000000000
## GO:0016333  BP     1  0 1.000000000
## GO:0021837  BP     1  0 1.000000000
## GO:0044041  BP     1  0 1.000000000
## GO:0044040  BP     1  0 1.000000000
## GO:0044037  BP     1  0 1.000000000
## GO:0150089  BP     1  0 1.000000000
## GO:0150090  BP     1  0 1.000000000
## GO:0042694  BP     1  0 1.000000000
## GO:0007518  BP     1  0 1.000000000
## GO:0014844  BP     1  0 1.000000000
## GO:0070246  BP     1  0 1.000000000
## GO:0110008  BP     1  0 1.000000000
## GO:0043630  BP     1  0 1.000000000
## GO:0044790  BP     1  0 1.000000000
## GO:0032013  BP     1  0 1.000000000
## GO:2000984  BP     1  0 1.000000000
## GO:2000578  BP     1  0 1.000000000
## GO:1905290  BP     1  0 1.000000000
## GO:0045225  BP     1  0 1.000000000
## GO:1900280  BP     1  0 1.000000000
## GO:2000565  BP     1  0 1.000000000
## GO:1902163  BP     1  0 1.000000000
## GO:0120154  BP     1  0 1.000000000
## GO:0070377  BP     1  0 1.000000000
## GO:1902045  BP     1  0 1.000000000
## GO:0045221  BP     1  0 1.000000000
## GO:0043105  BP     1  0 1.000000000
## GO:0043002  BP     1  0 1.000000000
## GO:1903720  BP     1  0 1.000000000
## GO:0034128  BP     1  0 1.000000000
## GO:0060262  BP     1  0 1.000000000
## GO:0051141  BP     1  0 1.000000000
## GO:1905215  BP     1  0 1.000000000
## GO:0017055  BP     1  0 1.000000000
## GO:1900260  BP     1  0 1.000000000
## GO:0062026  BP     1  0 1.000000000
## GO:2000639  BP     1  0 1.000000000
## GO:1905045  BP     1  0 1.000000000
## GO:0002668  BP     1  0 1.000000000
## GO:0002626  BP     1  0 1.000000000
## GO:2000524  BP     1  0 1.000000000
## GO:2000408  BP     1  0 1.000000000
## GO:0046014  BP     1  0 1.000000000
## GO:0002853  BP     1  0 1.000000000
## GO:0002841  BP     1  0 1.000000000
## GO:0002665  BP     1  0 1.000000000
## GO:2000518  BP     1  0 1.000000000
## GO:1903940  BP     1  0 1.000000000
## GO:1903122  BP     1  0 1.000000000
## GO:1904240  BP     1  0 1.000000000
## GO:0061358  BP     1  0 1.000000000
## GO:2000057  BP     1  0 1.000000000
## GO:1904723  BP     1  0 1.000000000
## GO:0014058  BP     1  0 1.000000000
## GO:1901586  BP     1  0 1.000000000
## GO:1902225  BP     1  0 1.000000000
## GO:1904617  BP     1  0 1.000000000
## GO:1904530  BP     1  0 1.000000000
## GO:1904622  BP     1  0 1.000000000
## GO:1905403  BP     1  0 1.000000000
## GO:0002878  BP     1  0 1.000000000
## GO:0060169  BP     1  0 1.000000000
## GO:0140194  BP     1  0 1.000000000
## GO:1904604  BP     1  0 1.000000000
## GO:1903631  BP     1  0 1.000000000
## GO:2000798  BP     1  0 1.000000000
## GO:2000180  BP     1  0 1.000000000
## GO:1903743  BP     1  0 1.000000000
## GO:1902613  BP     1  0 1.000000000
## GO:0002787  BP     1  0 1.000000000
## GO:1905035  BP     1  0 1.000000000
## GO:1904283  BP     1  0 1.000000000
## GO:0008348  BP     1  0 1.000000000
## GO:0002785  BP     1  0 1.000000000
## GO:2000657  BP     1  0 1.000000000
## GO:2000426  BP     1  0 1.000000000
## GO:1900082  BP     1  0 1.000000000
## GO:1905652  BP     1  0 1.000000000
## GO:0045769  BP     1  0 1.000000000
## GO:0048692  BP     1  0 1.000000000
## GO:2000986  BP     1  0 1.000000000
## GO:1904864  BP     1  0 1.000000000
## GO:1903770  BP     1  0 1.000000000
## GO:1904171  BP     1  0 1.000000000
## GO:0110059  BP     1  0 1.000000000
## GO:0031552  BP     1  0 1.000000000
## GO:0072096  BP     1  0 1.000000000
## GO:0072097  BP     1  0 1.000000000
## GO:0061048  BP     1  0 1.000000000
## GO:1903444  BP     1  0 1.000000000
## GO:0070348  BP     1  0 1.000000000
## GO:1905913  BP     1  0 1.000000000
## GO:1903611  BP     1  0 1.000000000
## GO:0051042  BP     1  0 1.000000000
## GO:1903280  BP     1  0 1.000000000
## GO:1901296  BP     1  0 1.000000000
## GO:2000080  BP     1  0 1.000000000
## GO:1905067  BP     1  0 1.000000000
## GO:0060829  BP     1  0 1.000000000
## GO:1905240  BP     1  0 1.000000000
## GO:2000044  BP     1  0 1.000000000
## GO:1901211  BP     1  0 1.000000000
## GO:2000691  BP     1  0 1.000000000
## GO:1905305  BP     1  0 1.000000000
## GO:2000723  BP     1  0 1.000000000
## GO:1904413  BP     1  0 1.000000000
## GO:0009997  BP     1  0 1.000000000
## GO:0051945  BP     1  0 1.000000000
## GO:0106089  BP     1  0 1.000000000
## GO:1904848  BP     1  0 1.000000000
## GO:0060806  BP     1  0 1.000000000
## GO:1905934  BP     1  0 1.000000000
## GO:0060243  BP     1  0 1.000000000
## GO:0021822  BP     1  0 1.000000000
## GO:1903769  BP     1  0 1.000000000
## GO:1904934  BP     1  0 1.000000000
## GO:2000607  BP     1  0 1.000000000
## GO:1900387  BP     1  0 1.000000000
## GO:0033242  BP     1  0 1.000000000
## GO:2000283  BP     1  0 1.000000000
## GO:2001030  BP     1  0 1.000000000
## GO:0032848  BP     1  0 1.000000000
## GO:1900035  BP     1  0 1.000000000
## GO:2001113  BP     1  0 1.000000000
## GO:2000655  BP     1  0 1.000000000
## GO:1905892  BP     1  0 1.000000000
## GO:1905895  BP     1  0 1.000000000
## GO:1903723  BP     1  0 1.000000000
## GO:1903126  BP     1  0 1.000000000
## GO:1903645  BP     1  0 1.000000000
## GO:0071644  BP     1  0 1.000000000
## GO:0090198  BP     1  0 1.000000000
## GO:0060621  BP     1  0 1.000000000
## GO:0060695  BP     1  0 1.000000000
## GO:0002875  BP     1  0 1.000000000
## GO:0002881  BP     1  0 1.000000000
## GO:1904326  BP     1  0 1.000000000
## GO:1903249  BP     1  0 1.000000000
## GO:1905469  BP     1  0 1.000000000
## GO:0033342  BP     1  0 1.000000000
## GO:0048698  BP     1  0 1.000000000
## GO:1903815  BP     1  0 1.000000000
## GO:0045959  BP     1  0 1.000000000
## GO:1904597  BP     1  0 1.000000000
## GO:1903434  BP     1  0 1.000000000
## GO:1901233  BP     1  0 1.000000000
## GO:1904797  BP     1  0 1.000000000
## GO:0051460  BP     1  0 1.000000000
## GO:1900011  BP     1  0 1.000000000
## GO:0051463  BP     1  0 1.000000000
## GO:1904042  BP     1  0 1.000000000
## GO:0010607  BP     1  0 1.000000000
## GO:1900248  BP     1  0 1.000000000
## GO:1904689  BP     1  0 1.000000000
## GO:1903073  BP     1  0 1.000000000
## GO:2000509  BP     1  0 1.000000000
## GO:0002731  BP     1  0 1.000000000
## GO:2000706  BP     1  0 1.000000000
## GO:1905414  BP     1  0 1.000000000
## GO:0061185  BP     1  0 1.000000000
## GO:2000971  BP     1  0 1.000000000
## GO:1905788  BP     1  0 1.000000000
## GO:0044147  BP     1  0 1.000000000
## GO:0048086  BP     1  0 1.000000000
## GO:0051585  BP     1  0 1.000000000
## GO:1901291  BP     1  0 1.000000000
## GO:1905768  BP     1  0 1.000000000
## GO:1904336  BP     1  0 1.000000000
## GO:0042666  BP     1  0 1.000000000
## GO:0051545  BP     1  0 1.000000000
## GO:0060311  BP     1  0 1.000000000
## GO:1904733  BP     1  0 1.000000000
## GO:2001136  BP     1  0 1.000000000
## GO:0032078  BP     1  0 1.000000000
## GO:1904979  BP     1  0 1.000000000
## GO:1904988  BP     1  0 1.000000000
## GO:2000545  BP     1  0 1.000000000
## GO:1904905  BP     1  0 1.000000000
## GO:1904471  BP     1  0 1.000000000
## GO:2000536  BP     1  0 1.000000000
## GO:0043310  BP     1  0 1.000000000
## GO:2000420  BP     1  0 1.000000000
## GO:2000795  BP     1  0 1.000000000
## GO:1905042  BP     1  0 1.000000000
## GO:0034119  BP     1  0 1.000000000
## GO:1902251  BP     1  0 1.000000000
## GO:0034107  BP     1  0 1.000000000
## GO:1904911  BP     1  0 1.000000000
## GO:1904445  BP     1  0 1.000000000
## GO:1903904  BP     1  0 1.000000000
## GO:1904850  BP     1  0 1.000000000
## GO:0001100  BP     1  0 1.000000000
## GO:1901202  BP     1  0 1.000000000
## GO:0048074  BP     1  0 1.000000000
## GO:1904736  BP     1  0 1.000000000
## GO:1903366  BP     1  0 1.000000000
## GO:0110076  BP     1  0 1.000000000
## GO:1904439  BP     1  0 1.000000000
## GO:2000703  BP     1  0 1.000000000
## GO:1905943  BP     1  0 1.000000000
## GO:1901194  BP     1  0 1.000000000
## GO:1903597  BP     1  0 1.000000000
## GO:2000734  BP     1  0 1.000000000
## GO:0003106  BP     1  0 1.000000000
## GO:2000212  BP     1  0 1.000000000
## GO:2000486  BP     1  0 1.000000000
## GO:2000466  BP     1  0 1.000000000
## GO:1904227  BP     1  0 1.000000000
## GO:0071656  BP     1  0 1.000000000
## GO:0032685  BP     1  0 1.000000000
## GO:0002632  BP     1  0 1.000000000
## GO:1904709  BP     1  0 1.000000000
## GO:0061914  BP     1  0 1.000000000
## GO:0031283  BP     1  0 1.000000000
## GO:0061170  BP     1  0 1.000000000
## GO:1901320  BP     1  0 1.000000000
## GO:0003136  BP     1  0 1.000000000
## GO:1901208  BP     1  0 1.000000000
## GO:0001985  BP     1  0 1.000000000
## GO:0031651  BP     1  0 1.000000000
## GO:0046986  BP     1  0 1.000000000
## GO:0061875  BP     1  0 1.000000000
## GO:0070367  BP     1  0 1.000000000
## GO:0048178  BP     1  0 1.000000000
## GO:0032686  BP     1  0 1.000000000
## GO:1902203  BP     1  0 1.000000000
## GO:1990787  BP     1  0 1.000000000
## GO:0010987  BP     1  0 1.000000000
## GO:0071441  BP     1  0 1.000000000
## GO:1901675  BP     1  0 1.000000000
## GO:2001161  BP     1  0 1.000000000
## GO:2000616  BP     1  0 1.000000000
## GO:2000296  BP     1  0 1.000000000
## GO:0045355  BP     1  0 1.000000000
## GO:0045083  BP     1  0 1.000000000
## GO:1902206  BP     1  0 1.000000000
## GO:0032712  BP     1  0 1.000000000
## GO:0045403  BP     1  0 1.000000000
## GO:1902215  BP     1  0 1.000000000
## GO:2000663  BP     1  0 1.000000000
## GO:1902939  BP     1  0 1.000000000
## GO:0032384  BP     1  0 1.000000000
## GO:0032378  BP     1  0 1.000000000
## GO:0032381  BP     1  0 1.000000000
## GO:1905366  BP     1  0 1.000000000
## GO:1902239  BP     1  0 1.000000000
## GO:1904213  BP     1  0 1.000000000
## GO:1904202  BP     1  0 1.000000000
## GO:0045827  BP     1  0 1.000000000
## GO:0048297  BP     1  0 1.000000000
## GO:2000357  BP     1  0 1.000000000
## GO:1903488  BP     1  0 1.000000000
## GO:1902823  BP     1  0 1.000000000
## GO:1902747  BP     1  0 1.000000000
## GO:1903634  BP     1  0 1.000000000
## GO:1904998  BP     1  0 1.000000000
## GO:0051352  BP     1  0 1.000000000
## GO:1900131  BP     1  0 1.000000000
## GO:0110114  BP     1  0 1.000000000
## GO:0060588  BP     1  0 1.000000000
## GO:0034443  BP     1  0 1.000000000
## GO:1904060  BP     1  0 1.000000000
## GO:1905596  BP     1  0 1.000000000
## GO:1905598  BP     1  0 1.000000000
## GO:0061767  BP     1  0 1.000000000
## GO:0002912  BP     1  0 1.000000000
## GO:1905672  BP     1  0 1.000000000
## GO:1904572  BP     1  0 1.000000000
## GO:1904766  BP     1  0 1.000000000
## GO:0002617  BP     1  0 1.000000000
## GO:1901257  BP     1  0 1.000000000
## GO:0034240  BP     1  0 1.000000000
## GO:2000719  BP     1  0 1.000000000
## GO:1905604  BP     1  0 1.000000000
## GO:0060377  BP     1  0 1.000000000
## GO:1904145  BP     1  0 1.000000000
## GO:1900826  BP     1  0 1.000000000
## GO:1902631  BP     1  0 1.000000000
## GO:1905032  BP     1  0 1.000000000
## GO:1905025  BP     1  0 1.000000000
## GO:1903526  BP     1  0 1.000000000
## GO:0043381  BP     1  0 1.000000000
## GO:0061296  BP     1  0 1.000000000
## GO:0072200  BP     1  0 1.000000000
## GO:2000005  BP     1  0 1.000000000
## GO:2000007  BP     1  0 1.000000000
## GO:0072302  BP     1  0 1.000000000
## GO:0072299  BP     1  0 1.000000000
## GO:2000590  BP     1  0 1.000000000
## GO:2000626  BP     1  0 1.000000000
## GO:1904140  BP     1  0 1.000000000
## GO:1903697  BP     1  0 1.000000000
## GO:0061886  BP     1  0 1.000000000
## GO:1905447  BP     1  0 1.000000000
## GO:1902957  BP     1  0 1.000000000
## GO:0070130  BP     1  0 1.000000000
## GO:1904924  BP     1  0 1.000000000
## GO:1904290  BP     1  0 1.000000000
## GO:1903464  BP     1  0 1.000000000
## GO:2000438  BP     1  0 1.000000000
## GO:1904113  BP     1  0 1.000000000
## GO:1905454  BP     1  0 1.000000000
## GO:2000818  BP     1  0 1.000000000
## GO:2000502  BP     1  0 1.000000000
## GO:0002728  BP     1  0 1.000000000
## GO:0043322  BP     1  0 1.000000000
## GO:0072183  BP     1  0 1.000000000
## GO:0090301  BP     1  0 1.000000000
## GO:0061855  BP     1  0 1.000000000
## GO:1902997  BP     1  0 1.000000000
## GO:1904800  BP     1  0 1.000000000
## GO:0032900  BP     1  0 1.000000000
## GO:2000429  BP     1  0 1.000000000
## GO:1900124  BP     1  0 1.000000000
## GO:1903996  BP     1  0 1.000000000
## GO:0051622  BP     1  0 1.000000000
## GO:1902576  BP     1  0 1.000000000
## GO:0070429  BP     1  0 1.000000000
## GO:0070446  BP     1  0 1.000000000
## GO:0090291  BP     1  0 1.000000000
## GO:0060280  BP     1  0 1.000000000
## GO:1902277  BP     1  0 1.000000000
## GO:2000230  BP     1  0 1.000000000
## GO:1905090  BP     1  0 1.000000000
## GO:0060407  BP     1  0 1.000000000
## GO:0120094  BP     1  0 1.000000000
## GO:1900085  BP     1  0 1.000000000
## GO:2001246  BP     1  0 1.000000000
## GO:2001145  BP     1  0 1.000000000
## GO:1900737  BP     1  0 1.000000000
## GO:1904006  BP     1  0 1.000000000
## GO:2000151  BP     1  0 1.000000000
## GO:2000162  BP     1  0 1.000000000
## GO:2000160  BP     1  0 1.000000000
## GO:2000168  BP     1  0 1.000000000
## GO:2000164  BP     1  0 1.000000000
## GO:2000166  BP     1  0 1.000000000
## GO:2000149  BP     1  0 1.000000000
## GO:1903889  BP     1  0 1.000000000
## GO:1905422  BP     1  0 1.000000000
## GO:0071802  BP     1  0 1.000000000
## GO:1904246  BP     1  0 1.000000000
## GO:0050928  BP     1  0 1.000000000
## GO:1902233  BP     1  0 1.000000000
## GO:1905875  BP     1  0 1.000000000
## GO:1901627  BP     1  0 1.000000000
## GO:2000632  BP     1  0 1.000000000
## GO:1905607  BP     1  0 1.000000000
## GO:1901630  BP     1  0 1.000000000
## GO:2000635  BP     1  0 1.000000000
## GO:1903704  BP     1  0 1.000000000
## GO:1902721  BP     1  0 1.000000000
## GO:0061944  BP     1  0 1.000000000
## GO:0010734  BP     1  0 1.000000000
## GO:1903060  BP     1  0 1.000000000
## GO:1904777  BP     1  0 1.000000000
## GO:1905872  BP     1  0 1.000000000
## GO:1903568  BP     1  0 1.000000000
## GO:1905667  BP     1  0 1.000000000
## GO:1905341  BP     1  0 1.000000000
## GO:0150033  BP     1  0 1.000000000
## GO:1904750  BP     1  0 1.000000000
## GO:1903217  BP     1  0 1.000000000
## GO:1905183  BP     1  0 1.000000000
## GO:1904985  BP     1  0 1.000000000
## GO:2000233  BP     1  0 1.000000000
## GO:1903910  BP     1  0 1.000000000
## GO:1902684  BP     1  0 1.000000000
## GO:1905601  BP     1  0 1.000000000
## GO:0003083  BP     1  0 1.000000000
## GO:1903403  BP     1  0 1.000000000
## GO:1900134  BP     1  0 1.000000000
## GO:2001229  BP     1  0 1.000000000
## GO:0060226  BP     1  0 1.000000000
## GO:0090260  BP     1  0 1.000000000
## GO:1900053  BP     1  0 1.000000000
## GO:1905433  BP     1  0 1.000000000
## GO:1902891  BP     1  0 1.000000000
## GO:0060299  BP     1  0 1.000000000
## GO:1904570  BP     1  0 1.000000000
## GO:1904574  BP     1  0 1.000000000
## GO:0048174  BP     1  0 1.000000000
## GO:1905513  BP     1  0 1.000000000
## GO:1904394  BP     1  0 1.000000000
## GO:1904205  BP     1  0 1.000000000
## GO:0043417  BP     1  0 1.000000000
## GO:1905900  BP     1  0 1.000000000
## GO:1903277  BP     1  0 1.000000000
## GO:2000119  BP     1  0 1.000000000
## GO:1903407  BP     1  0 1.000000000
## GO:0090275  BP     1  0 1.000000000
## GO:1902491  BP     1  0 1.000000000
## GO:2000910  BP     1  0 1.000000000
## GO:0061106  BP     1  0 1.000000000
## GO:1901340  BP     1  0 1.000000000
## GO:0062030  BP     1  0 1.000000000
## GO:0032223  BP     1  0 1.000000000
## GO:2000808  BP     1  0 1.000000000
## GO:1900243  BP     1  0 1.000000000
## GO:1905662  BP     1  0 1.000000000
## GO:0032208  BP     1  0 1.000000000
## GO:1901581  BP     1  0 1.000000000
## GO:0061369  BP     1  0 1.000000000
## GO:2000844  BP     1  0 1.000000000
## GO:0098736  BP     1  0 1.000000000
## GO:0003108  BP     1  0 1.000000000
## GO:0001986  BP     1  0 1.000000000
## GO:1903124  BP     1  0 1.000000000
## GO:1903125  BP     1  0 1.000000000
## GO:0050760  BP     1  0 1.000000000
## GO:2000399  BP     1  0 1.000000000
## GO:1904442  BP     1  0 1.000000000
## GO:0051796  BP     1  0 1.000000000
## GO:0034148  BP     1  0 1.000000000
## GO:0061986  BP     1  0 1.000000000
## GO:2001208  BP     1  0 1.000000000
## GO:0061987  BP     1  0 1.000000000
## GO:0010768  BP     1  0 1.000000000
## GO:1901227  BP     1  0 1.000000000
## GO:0051038  BP     1  0 1.000000000
## GO:1904188  BP     1  0 1.000000000
## GO:1901389  BP     1  0 1.000000000
## GO:0032913  BP     1  0 1.000000000
## GO:0032938  BP     1  0 1.000000000
## GO:0010868  BP     1  0 1.000000000
## GO:2000077  BP     1  0 1.000000000
## GO:0001811  BP     1  0 1.000000000
## GO:0051511  BP     1  0 1.000000000
## GO:2000062  BP     1  0 1.000000000
## GO:1903336  BP     1  0 1.000000000
## GO:0061044  BP     1  0 1.000000000
## GO:1901609  BP     1  0 1.000000000
## GO:0070351  BP     1  0 1.000000000
## GO:0071584  BP     1  0 1.000000000
## GO:0035849  BP     1  0 1.000000000
## GO:0021682  BP     1  0 1.000000000
## GO:0014036  BP     1  0 1.000000000
## GO:0003147  BP     1  0 1.000000000
## GO:1903045  BP     1  0 1.000000000
## GO:0021503  BP     1  0 1.000000000
## GO:0021990  BP     1  0 1.000000000
## GO:0021998  BP     1  0 1.000000000
## GO:0097115  BP     1  0 1.000000000
## GO:0060234  BP     1  0 1.000000000
## GO:0014017  BP     1  0 1.000000000
## GO:0007400  BP     1  0 1.000000000
## GO:0098529  BP     1  0 1.000000000
## GO:0106028  BP     1  0 1.000000000
## GO:0061837  BP     1  0 1.000000000
## GO:0099627  BP     1  0 1.000000000
## GO:0019357  BP     1  0 1.000000000
## GO:0046497  BP     1  0 1.000000000
## GO:0019358  BP     1  0 1.000000000
## GO:2001142  BP     1  0 1.000000000
## GO:0060659  BP     1  0 1.000000000
## GO:0042128  BP     1  0 1.000000000
## GO:0043602  BP     1  0 1.000000000
## GO:0015706  BP     1  0 1.000000000
## GO:0046210  BP     1  0 1.000000000
## GO:0038060  BP     1  0 1.000000000
## GO:0015707  BP     1  0 1.000000000
## GO:0090294  BP     1  0 1.000000000
## GO:0001080  BP     1  0 1.000000000
## GO:0090295  BP     1  0 1.000000000
## GO:0001081  BP     1  0 1.000000000
## GO:0038099  BP     1  0 1.000000000
## GO:1905438  BP     1  0 1.000000000
## GO:0098038  BP     1  0 1.000000000
## GO:0070651  BP     1  0 1.000000000
## GO:0046204  BP     1  0 1.000000000
## GO:0003359  BP     1  0 1.000000000
## GO:0060035  BP     1  0 1.000000000
## GO:0060034  BP     1  0 1.000000000
## GO:1902317  BP     1  0 1.000000000
## GO:0030264  BP     1  0 1.000000000
## GO:0071045  BP     1  0 1.000000000
## GO:0071765  BP     1  0 1.000000000
## GO:0071039  BP     1  0 1.000000000
## GO:0071040  BP     1  0 1.000000000
## GO:0071037  BP     1  0 1.000000000
## GO:0071036  BP     1  0 1.000000000
## GO:0070478  BP     1  0 1.000000000
## GO:0070481  BP     1  0 1.000000000
## GO:0090143  BP     1  0 1.000000000
## GO:1990700  BP     1  0 1.000000000
## GO:0007576  BP     1  0 1.000000000
## GO:0006294  BP     1  0 1.000000000
## GO:0021768  BP     1  0 1.000000000
## GO:0071678  BP     1  0 1.000000000
## GO:0021627  BP     1  0 1.000000000
## GO:0021629  BP     1  0 1.000000000
## GO:0140205  BP     1  0 1.000000000
## GO:0070267  BP     1  0 1.000000000
## GO:0036372  BP     1  0 1.000000000
## GO:0061360  BP     1  0 1.000000000
## GO:0003408  BP     1  0 1.000000000
## GO:0003409  BP     1  0 1.000000000
## GO:0021634  BP     1  0 1.000000000
## GO:0101027  BP     1  0 1.000000000
## GO:0007634  BP     1  0 1.000000000
## GO:0006592  BP     1  0 1.000000000
## GO:0006593  BP     1  0 1.000000000
## GO:0036179  BP     1  0 1.000000000
## GO:1905040  BP     1  0 1.000000000
## GO:0072060  BP     1  0 1.000000000
## GO:0033609  BP     1  0 1.000000000
## GO:0070407  BP     1  0 1.000000000
## GO:0071615  BP     1  0 1.000000000
## GO:0150024  BP     1  0 1.000000000
## GO:0022013  BP     1  0 1.000000000
## GO:0003322  BP     1  0 1.000000000
## GO:0003311  BP     1  0 1.000000000
## GO:0090104  BP     1  0 1.000000000
## GO:1990747  BP     1  0 1.000000000
## GO:0015887  BP     1  0 1.000000000
## GO:1990227  BP     1  0 1.000000000
## GO:0048352  BP     1  0 1.000000000
## GO:0007225  BP     1  0 1.000000000
## GO:0042316  BP     1  0 1.000000000
## GO:0019527  BP     1  0 1.000000000
## GO:0019519  BP     1  0 1.000000000
## GO:0001519  BP     1  0 1.000000000
## GO:0002503  BP     1  0 1.000000000
## GO:0050823  BP     1  0 1.000000000
## GO:0046968  BP     1  0 1.000000000
## GO:0050822  BP     1  0 1.000000000
## GO:0018194  BP     1  0 1.000000000
## GO:0036527  BP     1  0 1.000000000
## GO:0030961  BP     1  0 1.000000000
## GO:0019918  BP     1  0 1.000000000
## GO:0042265  BP     1  0 1.000000000
## GO:1990938  BP     1  0 1.000000000
## GO:0018217  BP     1  0 1.000000000
## GO:0036526  BP     1  0 1.000000000
## GO:0098822  BP     1  0 1.000000000
## GO:0018424  BP     1  0 1.000000000
## GO:0035971  BP     1  0 1.000000000
## GO:0036138  BP     1  0 1.000000000
## GO:0018021  BP     1  0 1.000000000
## GO:0140067  BP     1  0 1.000000000
## GO:0036528  BP     1  0 1.000000000
## GO:0036047  BP     1  0 1.000000000
## GO:0036049  BP     1  0 1.000000000
## GO:0018395  BP     1  0 1.000000000
## GO:0061921  BP     1  0 1.000000000
## GO:0018400  BP     1  0 1.000000000
## GO:0018160  BP     1  0 1.000000000
## GO:0018191  BP     1  0 1.000000000
## GO:1990579  BP     1  0 1.000000000
## GO:0002451  BP     1  0 1.000000000
## GO:0036250  BP     1  0 1.000000000
## GO:0090389  BP     1  0 1.000000000
## GO:0042443  BP     1  0 1.000000000
## GO:0036148  BP     1  0 1.000000000
## GO:1904562  BP     1  0 1.000000000
## GO:0036149  BP     1  0 1.000000000
## GO:0097045  BP     1  0 1.000000000
## GO:0035644  BP     1  0 1.000000000
## GO:0071882  BP     1  0 1.000000000
## GO:0030845  BP     1  0 1.000000000
## GO:0071619  BP     1  0 1.000000000
## GO:0071602  BP     1  0 1.000000000
## GO:0006671  BP     1  0 1.000000000
## GO:0043480  BP     1  0 1.000000000
## GO:0043324  BP     1  0 1.000000000
## GO:0043474  BP     1  0 1.000000000
## GO:0090627  BP     1  0 1.000000000
## GO:0090558  BP     1  0 1.000000000
## GO:0099402  BP     1  0 1.000000000
## GO:1905392  BP     1  0 1.000000000
## GO:0044858  BP     1  0 1.000000000
## GO:0002470  BP     1  0 1.000000000
## GO:0036345  BP     1  0 1.000000000
## GO:0070462  BP     1  0 1.000000000
## GO:0106047  BP     1  0 1.000000000
## GO:0098507  BP     1  0 1.000000000
## GO:0015774  BP     1  0 1.000000000
## GO:0070845  BP     1  0 1.000000000
## GO:0070844  BP     1  0 1.000000000
## GO:0043947  BP     1  0 1.000000000
## GO:0052510  BP     1  0 1.000000000
## GO:0052345  BP     1  0 1.000000000
## GO:0052555  BP     1  0 1.000000000
## GO:0052347  BP     1  0 1.000000000
## GO:0052509  BP     1  0 1.000000000
## GO:0052556  BP     1  0 1.000000000
## GO:0043128  BP     1  0 1.000000000
## GO:0061903  BP     1  0 1.000000000
## GO:0090216  BP     1  0 1.000000000
## GO:1903893  BP     1  0 1.000000000
## GO:1903082  BP     1  0 1.000000000
## GO:1905291  BP     1  0 1.000000000
## GO:2000560  BP     1  0 1.000000000
## GO:0032834  BP     1  0 1.000000000
## GO:1900281  BP     1  0 1.000000000
## GO:2000350  BP     1  0 1.000000000
## GO:2000454  BP     1  0 1.000000000
## GO:1905920  BP     1  0 1.000000000
## GO:1902546  BP     1  0 1.000000000
## GO:2000003  BP     1  0 1.000000000
## GO:1904877  BP     1  0 1.000000000
## GO:0060383  BP     1  0 1.000000000
## GO:0060566  BP     1  0 1.000000000
## GO:1905580  BP     1  0 1.000000000
## GO:1904022  BP     1  0 1.000000000
## GO:1903452  BP     1  0 1.000000000
## GO:0071660  BP     1  0 1.000000000
## GO:1905589  BP     1  0 1.000000000
## GO:1903197  BP     1  0 1.000000000
## GO:1903200  BP     1  0 1.000000000
## GO:1905010  BP     1  0 1.000000000
## GO:1903007  BP     1  0 1.000000000
## GO:2000761  BP     1  0 1.000000000
## GO:1902690  BP     1  0 1.000000000
## GO:1900370  BP     1  0 1.000000000
## GO:1904477  BP     1  0 1.000000000
## GO:2001108  BP     1  0 1.000000000
## GO:0035543  BP     1  0 1.000000000
## GO:2000640  BP     1  0 1.000000000
## GO:1903755  BP     1  0 1.000000000
## GO:1904268  BP     1  0 1.000000000
## GO:0010625  BP     1  0 1.000000000
## GO:2001190  BP     1  0 1.000000000
## GO:0042103  BP     1  0 1.000000000
## GO:2000330  BP     1  0 1.000000000
## GO:0045556  BP     1  0 1.000000000
## GO:0060804  BP     1  0 1.000000000
## GO:0009789  BP     1  0 1.000000000
## GO:1905923  BP     1  0 1.000000000
## GO:1904699  BP     1  0 1.000000000
## GO:1904618  BP     1  0 1.000000000
## GO:1904531  BP     1  0 1.000000000
## GO:1903920  BP     1  0 1.000000000
## GO:1905404  BP     1  0 1.000000000
## GO:1905676  BP     1  0 1.000000000
## GO:0140196  BP     1  0 1.000000000
## GO:1904992  BP     1  0 1.000000000
## GO:1900731  BP     1  0 1.000000000
## GO:1904605  BP     1  0 1.000000000
## GO:2001250  BP     1  0 1.000000000
## GO:2000836  BP     1  0 1.000000000
## GO:0061881  BP     1  0 1.000000000
## GO:0006963  BP     1  0 1.000000000
## GO:0001815  BP     1  0 1.000000000
## GO:0002591  BP     1  0 1.000000000
## GO:0002807  BP     1  0 1.000000000
## GO:1904831  BP     1  0 1.000000000
## GO:0150072  BP     1  0 1.000000000
## GO:1904450  BP     1  0 1.000000000
## GO:0061890  BP     1  0 1.000000000
## GO:2000464  BP     1  0 1.000000000
## GO:0045770  BP     1  0 1.000000000
## GO:1903949  BP     1  0 1.000000000
## GO:1905128  BP     1  0 1.000000000
## GO:0006965  BP     1  0 1.000000000
## GO:0044497  BP     1  0 1.000000000
## GO:0070349  BP     1  0 1.000000000
## GO:1904364  BP     1  0 1.000000000
## GO:1902082  BP     1  0 1.000000000
## GO:1903235  BP     1  0 1.000000000
## GO:0046587  BP     1  0 1.000000000
## GO:0051041  BP     1  0 1.000000000
## GO:1901297  BP     1  0 1.000000000
## GO:2000081  BP     1  0 1.000000000
## GO:1905068  BP     1  0 1.000000000
## GO:1903676  BP     1  0 1.000000000
## GO:1903781  BP     1  0 1.000000000
## GO:0062000  BP     1  0 1.000000000
## GO:0055020  BP     1  0 1.000000000
## GO:1904414  BP     1  0 1.000000000
## GO:1905062  BP     1  0 1.000000000
## GO:0043946  BP     1  0 1.000000000
## GO:0010650  BP     1  0 1.000000000
## GO:1905917  BP     1  0 1.000000000
## GO:1904935  BP     1  0 1.000000000
## GO:0003251  BP     1  0 1.000000000
## GO:1901964  BP     1  0 1.000000000
## GO:0045795  BP     1  0 1.000000000
## GO:2000284  BP     1  0 1.000000000
## GO:2001031  BP     1  0 1.000000000
## GO:1905959  BP     1  0 1.000000000
## GO:1900036  BP     1  0 1.000000000
## GO:0002897  BP     1  0 1.000000000
## GO:0002648  BP     1  0 1.000000000
## GO:1904716  BP     1  0 1.000000000
## GO:0071654  BP     1  0 1.000000000
## GO:1903886  BP     1  0 1.000000000
## GO:0070101  BP     1  0 1.000000000
## GO:1904367  BP     1  0 1.000000000
## GO:1904056  BP     1  0 1.000000000
## GO:1902771  BP     1  0 1.000000000
## GO:0031940  BP     1  0 1.000000000
## GO:1904501  BP     1  0 1.000000000
## GO:0002882  BP     1  0 1.000000000
## GO:0090321  BP     1  0 1.000000000
## GO:0090319  BP     1  0 1.000000000
## GO:0003353  BP     1  0 1.000000000
## GO:1905309  BP     1  0 1.000000000
## GO:0033343  BP     1  0 1.000000000
## GO:1903816  BP     1  0 1.000000000
## GO:1903661  BP     1  0 1.000000000
## GO:1903435  BP     1  0 1.000000000
## GO:2000066  BP     1  0 1.000000000
## GO:1902161  BP     1  0 1.000000000
## GO:2001272  BP     1  0 1.000000000
## GO:0060470  BP     1  0 1.000000000
## GO:1903629  BP     1  0 1.000000000
## GO:1901835  BP     1  0 1.000000000
## GO:2000549  BP     1  0 1.000000000
## GO:1905415  BP     1  0 1.000000000
## GO:1902955  BP     1  0 1.000000000
## GO:0140051  BP     1  0 1.000000000
## GO:2000802  BP     1  0 1.000000000
## GO:1903917  BP     1  0 1.000000000
## GO:1904980  BP     1  0 1.000000000
## GO:1905751  BP     1  0 1.000000000
## GO:1904472  BP     1  0 1.000000000
## GO:1905043  BP     1  0 1.000000000
## GO:0034120  BP     1  0 1.000000000
## GO:0061931  BP     1  0 1.000000000
## GO:2000784  BP     1  0 1.000000000
## GO:2000863  BP     1  0 1.000000000
## GO:1905537  BP     1  0 1.000000000
## GO:1904651  BP     1  0 1.000000000
## GO:1904440  BP     1  0 1.000000000
## GO:2000415  BP     1  0 1.000000000
## GO:0120183  BP     1  0 1.000000000
## GO:2000979  BP     1  0 1.000000000
## GO:0050754  BP     1  0 1.000000000
## GO:0032724  BP     1  0 1.000000000
## GO:0060550  BP     1  0 1.000000000
## GO:0060552  BP     1  0 1.000000000
## GO:0072303  BP     1  0 1.000000000
## GO:1904635  BP     1  0 1.000000000
## GO:0031948  BP     1  0 1.000000000
## GO:0031945  BP     1  0 1.000000000
## GO:1904025  BP     1  0 1.000000000
## GO:2000753  BP     1  0 1.000000000
## GO:2000213  BP     1  0 1.000000000
## GO:0035229  BP     1  0 1.000000000
## GO:0120008  BP     1  0 1.000000000
## GO:2000487  BP     1  0 1.000000000
## GO:1903284  BP     1  0 1.000000000
## GO:1900925  BP     1  0 1.000000000
## GO:2000526  BP     1  0 1.000000000
## GO:1904710  BP     1  0 1.000000000
## GO:1904197  BP     1  0 1.000000000
## GO:2000513  BP     1  0 1.000000000
## GO:1905099  BP     1  0 1.000000000
## GO:0071338  BP     1  0 1.000000000
## GO:0003065  BP     1  0 1.000000000
## GO:0001988  BP     1  0 1.000000000
## GO:1902038  BP     1  0 1.000000000
## GO:1905855  BP     1  0 1.000000000
## GO:1905860  BP     1  0 1.000000000
## GO:0061874  BP     1  0 1.000000000
## GO:1904899  BP     1  0 1.000000000
## GO:1902204  BP     1  0 1.000000000
## GO:0110090  BP     1  0 1.000000000
## GO:1901676  BP     1  0 1.000000000
## GO:2001255  BP     1  0 1.000000000
## GO:1905437  BP     1  0 1.000000000
## GO:0070512  BP     1  0 1.000000000
## GO:1903586  BP     1  0 1.000000000
## GO:0050668  BP     1  0 1.000000000
## GO:1903387  BP     1  0 1.000000000
## GO:1903285  BP     1  0 1.000000000
## GO:1904828  BP     1  0 1.000000000
## GO:1902073  BP     1  0 1.000000000
## GO:0002642  BP     1  0 1.000000000
## GO:0045609  BP     1  0 1.000000000
## GO:2000982  BP     1  0 1.000000000
## GO:0010925  BP     1  0 1.000000000
## GO:0050726  BP     1  0 1.000000000
## GO:2000661  BP     1  0 1.000000000
## GO:0032738  BP     1  0 1.000000000
## GO:0045380  BP     1  0 1.000000000
## GO:1903883  BP     1  0 1.000000000
## GO:2000494  BP     1  0 1.000000000
## GO:2000572  BP     1  0 1.000000000
## GO:0045407  BP     1  0 1.000000000
## GO:1904480  BP     1  0 1.000000000
## GO:0045797  BP     1  0 1.000000000
## GO:0060731  BP     1  0 1.000000000
## GO:1904731  BP     1  0 1.000000000
## GO:1901254  BP     1  0 1.000000000
## GO:1902220  BP     1  0 1.000000000
## GO:1905926  BP     1  0 1.000000000
## GO:1905929  BP     1  0 1.000000000
## GO:1901980  BP     1  0 1.000000000
## GO:0034761  BP     1  0 1.000000000
## GO:0034758  BP     1  0 1.000000000
## GO:1905017  BP     1  0 1.000000000
## GO:0045828  BP     1  0 1.000000000
## GO:2000358  BP     1  0 1.000000000
## GO:1902824  BP     1  0 1.000000000
## GO:1902078  BP     1  0 1.000000000
## GO:1902748  BP     1  0 1.000000000
## GO:1904999  BP     1  0 1.000000000
## GO:0035491  BP     1  0 1.000000000
## GO:1903002  BP     1  0 1.000000000
## GO:0110113  BP     1  0 1.000000000
## GO:0140077  BP     1  0 1.000000000
## GO:0090326  BP     1  0 1.000000000
## GO:0140214  BP     1  0 1.000000000
## GO:1905597  BP     1  0 1.000000000
## GO:1905599  BP     1  0 1.000000000
## GO:1901248  BP     1  0 1.000000000
## GO:1905673  BP     1  0 1.000000000
## GO:1903839  BP     1  0 1.000000000
## GO:1905612  BP     1  0 1.000000000
## GO:0031439  BP     1  0 1.000000000
## GO:0090366  BP     1  0 1.000000000
## GO:1902228  BP     1  0 1.000000000
## GO:0010933  BP     1  0 1.000000000
## GO:0034096  BP     1  0 1.000000000
## GO:2000711  BP     1  0 1.000000000
## GO:1904840  BP     1  0 1.000000000
## GO:2000103  BP     1  0 1.000000000
## GO:0038097  BP     1  0 1.000000000
## GO:0060376  BP     1  0 1.000000000
## GO:1904303  BP     1  0 1.000000000
## GO:1904466  BP     1  0 1.000000000
## GO:0045633  BP     1  0 1.000000000
## GO:1903343  BP     1  0 1.000000000
## GO:1905134  BP     1  0 1.000000000
## GO:1902910  BP     1  0 1.000000000
## GO:1900827  BP     1  0 1.000000000
## GO:1905033  BP     1  0 1.000000000
## GO:1905026  BP     1  0 1.000000000
## GO:1905904  BP     1  0 1.000000000
## GO:1905772  BP     1  0 1.000000000
## GO:0048337  BP     1  0 1.000000000
## GO:0090096  BP     1  0 1.000000000
## GO:2000478  BP     1  0 1.000000000
## GO:2001076  BP     1  0 1.000000000
## GO:1905188  BP     1  0 1.000000000
## GO:1902104  BP     1  0 1.000000000
## GO:1905020  BP     1  0 1.000000000
## GO:0014008  BP     1  0 1.000000000
## GO:0090297  BP     1  0 1.000000000
## GO:1903465  BP     1  0 1.000000000
## GO:1905406  BP     1  0 1.000000000
## GO:0045951  BP     1  0 1.000000000
## GO:1902846  BP     1  0 1.000000000
## GO:0110028  BP     1  0 1.000000000
## GO:0032773  BP     1  0 1.000000000
## GO:1905485  BP     1  0 1.000000000
## GO:0014739  BP     1  0 1.000000000
## GO:1904330  BP     1  0 1.000000000
## GO:1904762  BP     1  0 1.000000000
## GO:0035505  BP     1  0 1.000000000
## GO:0035508  BP     1  0 1.000000000
## GO:2000287  BP     1  0 1.000000000
## GO:0050924  BP     1  0 1.000000000
## GO:1902998  BP     1  0 1.000000000
## GO:1900075  BP     1  0 1.000000000
## GO:0045660  BP     1  0 1.000000000
## GO:0070962  BP     1  0 1.000000000
## GO:0070963  BP     1  0 1.000000000
## GO:0045848  BP     1  0 1.000000000
## GO:1901231  BP     1  0 1.000000000
## GO:0032244  BP     1  0 1.000000000
## GO:0070430  BP     1  0 1.000000000
## GO:1901331  BP     1  0 1.000000000
## GO:1900143  BP     1  0 1.000000000
## GO:2000476  BP     1  0 1.000000000
## GO:1903028  BP     1  0 1.000000000
## GO:2000597  BP     1  0 1.000000000
## GO:1905593  BP     1  0 1.000000000
## GO:1904120  BP     1  0 1.000000000
## GO:1902278  BP     1  0 1.000000000
## GO:2000231  BP     1  0 1.000000000
## GO:1904244  BP     1  0 1.000000000
## GO:0002851  BP     1  0 1.000000000
## GO:2000470  BP     1  0 1.000000000
## GO:2000187  BP     1  0 1.000000000
## GO:1905695  BP     1  0 1.000000000
## GO:1900163  BP     1  0 1.000000000
## GO:1901409  BP     1  0 1.000000000
## GO:2001165  BP     1  0 1.000000000
## GO:0046534  BP     1  0 1.000000000
## GO:1900100  BP     1  0 1.000000000
## GO:1905221  BP     1  0 1.000000000
## GO:1904247  BP     1  0 1.000000000
## GO:1905698  BP     1  0 1.000000000
## GO:0099588  BP     1  0 1.000000000
## GO:1904453  BP     1  0 1.000000000
## GO:1905608  BP     1  0 1.000000000
## GO:1905520  BP     1  0 1.000000000
## GO:1901631  BP     1  0 1.000000000
## GO:2000975  BP     1  0 1.000000000
## GO:2000176  BP     1  0 1.000000000
## GO:2000184  BP     1  0 1.000000000
## GO:1902213  BP     1  0 1.000000000
## GO:0061078  BP     1  0 1.000000000
## GO:2000363  BP     1  0 1.000000000
## GO:0090284  BP     1  0 1.000000000
## GO:1903638  BP     1  0 1.000000000
## GO:1903572  BP     1  0 1.000000000
## GO:1904372  BP     1  0 1.000000000
## GO:1904510  BP     1  0 1.000000000
## GO:1905873  BP     1  0 1.000000000
## GO:0120187  BP     1  0 1.000000000
## GO:1903569  BP     1  0 1.000000000
## GO:0150032  BP     1  0 1.000000000
## GO:1902365  BP     1  0 1.000000000
## GO:2000436  BP     1  0 1.000000000
## GO:1904808  BP     1  0 1.000000000
## GO:1904592  BP     1  0 1.000000000
## GO:1905184  BP     1  0 1.000000000
## GO:0150074  BP     1  0 1.000000000
## GO:1905273  BP     1  0 1.000000000
## GO:0120072  BP     1  0 1.000000000
## GO:1903168  BP     1  0 1.000000000
## GO:1904199  BP     1  0 1.000000000
## GO:1901899  BP     1  0 1.000000000
## GO:2000534  BP     1  0 1.000000000
## GO:2001153  BP     1  0 1.000000000
## GO:1901421  BP     1  0 1.000000000
## GO:0046670  BP     1  0 1.000000000
## GO:1900054  BP     1  0 1.000000000
## GO:2001019  BP     1  0 1.000000000
## GO:1901956  BP     1  0 1.000000000
## GO:1905281  BP     1  0 1.000000000
## GO:2000199  BP     1  0 1.000000000
## GO:2000208  BP     1  0 1.000000000
## GO:2000202  BP     1  0 1.000000000
## GO:0061189  BP     1  0 1.000000000
## GO:0090340  BP     1  0 1.000000000
## GO:1904411  BP     1  0 1.000000000
## GO:1904571  BP     1  0 1.000000000
## GO:2001262  BP     1  0 1.000000000
## GO:2000764  BP     1  0 1.000000000
## GO:0061090  BP     1  0 1.000000000
## GO:1904792  BP     1  0 1.000000000
## GO:0060381  BP     1  0 1.000000000
## GO:1905609  BP     1  0 1.000000000
## GO:1904320  BP     1  0 1.000000000
## GO:1905901  BP     1  0 1.000000000
## GO:1901622  BP     1  0 1.000000000
## GO:1905382  BP     1  0 1.000000000
## GO:1903408  BP     1  0 1.000000000
## GO:1904677  BP     1  0 1.000000000
## GO:1901307  BP     1  0 1.000000000
## GO:1902070  BP     1  0 1.000000000
## GO:2000755  BP     1  0 1.000000000
## GO:1904050  BP     1  0 1.000000000
## GO:0120069  BP     1  0 1.000000000
## GO:0098530  BP     1  0 1.000000000
## GO:1904460  BP     1  0 1.000000000
## GO:1904496  BP     1  0 1.000000000
## GO:0031337  BP     1  0 1.000000000
## GO:1904034  BP     1  0 1.000000000
## GO:1901582  BP     1  0 1.000000000
## GO:1905549  BP     1  0 1.000000000
## GO:1904535  BP     1  0 1.000000000
## GO:2001051  BP     1  0 1.000000000
## GO:1904595  BP     1  0 1.000000000
## GO:2000806  BP     1  0 1.000000000
## GO:0003059  BP     1  0 1.000000000
## GO:0003061  BP     1  0 1.000000000
## GO:1905023  BP     1  0 1.000000000
## GO:2000614  BP     1  0 1.000000000
## GO:0002651  BP     1  0 1.000000000
## GO:0002845  BP     1  0 1.000000000
## GO:0034181  BP     1  0 1.000000000
## GO:0000411  BP     1  0 1.000000000
## GO:0061586  BP     1  0 1.000000000
## GO:0000435  BP     1  0 1.000000000
## GO:0061400  BP     1  0 1.000000000
## GO:2000763  BP     1  0 1.000000000
## GO:0090282  BP     1  0 1.000000000
## GO:0007072  BP     1  0 1.000000000
## GO:0051039  BP     1  0 1.000000000
## GO:1904300  BP     1  0 1.000000000
## GO:1903620  BP     1  0 1.000000000
## GO:1901390  BP     1  0 1.000000000
## GO:1901394  BP     1  0 1.000000000
## GO:0036494  BP     1  0 1.000000000
## GO:1904075  BP     1  0 1.000000000
## GO:0090044  BP     1  0 1.000000000
## GO:0034346  BP     1  0 1.000000000
## GO:0001809  BP     1  0 1.000000000
## GO:1903178  BP     1  0 1.000000000
## GO:2000158  BP     1  0 1.000000000
## GO:2000063  BP     1  0 1.000000000
## GO:0050677  BP     1  0 1.000000000
## GO:1900721  BP     1  0 1.000000000
## GO:1903337  BP     1  0 1.000000000
## GO:1905176  BP     1  0 1.000000000
## GO:1905932  BP     1  0 1.000000000
## GO:1903947  BP     1  0 1.000000000
## GO:0010902  BP     1  0 1.000000000
## GO:0106022  BP     1  0 1.000000000
## GO:1904973  BP     1  0 1.000000000
## GO:1903762  BP     1  0 1.000000000
## GO:1905152  BP     1  0 1.000000000
## GO:0040032  BP     1  0 1.000000000
## GO:0003247  BP     1  0 1.000000000
## GO:0048621  BP     1  0 1.000000000
## GO:0035128  BP     1  0 1.000000000
## GO:0035129  BP     1  0 1.000000000
## GO:0007497  BP     1  0 1.000000000
## GO:0099630  BP     1  0 1.000000000
## GO:1990261  BP     1  0 1.000000000
## GO:0035281  BP     1  0 1.000000000
## GO:0021501  BP     1  0 1.000000000
## GO:0099140  BP     1  0 1.000000000
## GO:0099187  BP     1  0 1.000000000
## GO:0003138  BP     1  0 1.000000000
## GO:1990744  BP     1  0 1.000000000
## GO:1990729  BP     1  0 1.000000000
## GO:0007285  BP     1  0 1.000000000
## GO:0060682  BP     1  0 1.000000000
## GO:0003345  BP     1  0 1.000000000
## GO:0006709  BP     1  0 1.000000000
## GO:0031049  BP     1  0 1.000000000
## GO:0039007  BP     1  0 1.000000000
## GO:0039008  BP     1  0 1.000000000
## GO:0015730  BP     1  0 1.000000000
## GO:0019679  BP     1  0 1.000000000
## GO:1902860  BP     1  0 1.000000000
## GO:1902858  BP     1  0 1.000000000
## GO:0051355  BP     1  0 1.000000000
## GO:0018964  BP     1  0 1.000000000
## GO:1905344  BP     1  0 1.000000000
## GO:0002539  BP     1  0 1.000000000
## GO:1990767  BP     1  0 1.000000000
## GO:0090323  BP     1  0 1.000000000
## GO:0060515  BP     1  0 1.000000000
## GO:0060514  BP     1  0 1.000000000
## GO:0033375  BP     1  0 1.000000000
## GO:0033368  BP     1  0 1.000000000
## GO:0080129  BP     1  0 1.000000000
## GO:0044726  BP     1  0 1.000000000
## GO:1990390  BP     1  0 1.000000000
## GO:0042543  BP     1  0 1.000000000
## GO:0018032  BP     1  0 1.000000000
## GO:0009305  BP     1  0 1.000000000
## GO:0035611  BP     1  0 1.000000000
## GO:0140246  BP     1  0 1.000000000
## GO:0099546  BP     1  0 1.000000000
## GO:0061698  BP     1  0 1.000000000
## GO:0036525  BP     1  0 1.000000000
## GO:0036529  BP     1  0 1.000000000
## GO:0036046  BP     1  0 1.000000000
## GO:1990697  BP     1  0 1.000000000
## GO:0036048  BP     1  0 1.000000000
## GO:0042125  BP     1  0 1.000000000
## GO:0033580  BP     1  0 1.000000000
## GO:0010731  BP     1  0 1.000000000
## GO:0033575  BP     1  0 1.000000000
## GO:0044721  BP     1  0 1.000000000
## GO:0098737  BP     1  0 1.000000000
## GO:0042313  BP     1  0 1.000000000
## GO:0090251  BP     1  0 1.000000000
## GO:1904867  BP     1  0 1.000000000
## GO:0036309  BP     1  0 1.000000000
## GO:0033374  BP     1  0 1.000000000
## GO:0036371  BP     1  0 1.000000000
## GO:0044379  BP     1  0 1.000000000
## GO:1904327  BP     1  0 1.000000000
## GO:1904379  BP     1  0 1.000000000
## GO:1903420  BP     1  0 1.000000000
## GO:0033367  BP     1  0 1.000000000
## GO:1905359  BP     1  0 1.000000000
## GO:1903096  BP     1  0 1.000000000
## GO:1902480  BP     1  0 1.000000000
## GO:0035750  BP     1  0 1.000000000
## GO:1903405  BP     1  0 1.000000000
## GO:1903621  BP     1  0 1.000000000
## GO:1902889  BP     1  0 1.000000000
## GO:0071988  BP     1  0 1.000000000
## GO:0015680  BP     1  0 1.000000000
## GO:0018190  BP     1  0 1.000000000
## GO:0045234  BP     1  0 1.000000000
## GO:0044524  BP     1  0 1.000000000
## GO:0044395  BP     1  0 1.000000000
## GO:0036290  BP     1  0 1.000000000
## GO:0032599  BP     1  0 1.000000000
## GO:0071693  BP     1  0 1.000000000
## GO:0018322  BP     1  0 1.000000000
## GO:0032447  BP     1  0 1.000000000
## GO:0001120  BP     1  0 1.000000000
## GO:0018293  BP     1  0 1.000000000
## GO:0090126  BP     1  0 1.000000000
## GO:0017003  BP     1  0 1.000000000
## GO:0018352  BP     1  0 1.000000000
## GO:0018272  BP     1  0 1.000000000
## GO:0017006  BP     1  0 1.000000000
## GO:0072019  BP     1  0 1.000000000
## GO:0072032  BP     1  0 1.000000000
## GO:0014847  BP     1  0 1.000000000
## GO:0072020  BP     1  0 1.000000000
## GO:0031270  BP     1  0 1.000000000
## GO:0019889  BP     1  0 1.000000000
## GO:0061155  BP     1  0 1.000000000
## GO:0009183  BP     1  0 1.000000000
## GO:0009184  BP     1  0 1.000000000
## GO:0009170  BP     1  0 1.000000000
## GO:0090480  BP     1  0 1.000000000
## GO:0034037  BP     1  0 1.000000000
## GO:0009207  BP     1  0 1.000000000
## GO:0032920  BP     1  0 1.000000000
## GO:0033388  BP     1  0 1.000000000
## GO:0033389  BP     1  0 1.000000000
## GO:0009447  BP     1  0 1.000000000
## GO:0015847  BP     1  0 1.000000000
## GO:0120065  BP     1  0 1.000000000
## GO:0019365  BP     1  0 1.000000000
## GO:0009443  BP     1  0 1.000000000
## GO:0032361  BP     1  0 1.000000000
## GO:0008615  BP     1  0 1.000000000
## GO:0008614  BP     1  0 1.000000000
## GO:0046127  BP     1  0 1.000000000
## GO:0009178  BP     1  0 1.000000000
## GO:0009131  BP     1  0 1.000000000
## GO:0043097  BP     1  0 1.000000000
## GO:0032262  BP     1  0 1.000000000
## GO:0009194  BP     1  0 1.000000000
## GO:0009193  BP     1  0 1.000000000
## GO:0010138  BP     1  0 1.000000000
## GO:0008655  BP     1  0 1.000000000
## GO:0009444  BP     1  0 1.000000000
## GO:0034213  BP     1  0 1.000000000
## GO:0009372  BP     1  0 1.000000000
## GO:0052106  BP     1  0 1.000000000
## GO:0070550  BP     1  0 1.000000000
## GO:0000451  BP     1  0 1.000000000
## GO:0000967  BP     1  0 1.000000000
## GO:1990882  BP     1  0 1.000000000
## GO:1904812  BP     1  0 1.000000000
## GO:0009956  BP     1  0 1.000000000
## GO:0036031  BP     1  0 1.000000000
## GO:0010017  BP     1  0 1.000000000
## GO:0009585  BP     1  0 1.000000000
## GO:0043126  BP     1  0 1.000000000
## GO:0061901  BP     1  0 1.000000000
## GO:0090215  BP     1  0 1.000000000
## GO:2000983  BP     1  0 1.000000000
## GO:2000577  BP     1  0 1.000000000
## GO:0070926  BP     1  0 1.000000000
## GO:1903080  BP     1  0 1.000000000
## GO:2000559  BP     1  0 1.000000000
## GO:0045223  BP     1  0 1.000000000
## GO:0032832  BP     1  0 1.000000000
## GO:1905918  BP     1  0 1.000000000
## GO:1900022  BP     1  0 1.000000000
## GO:1904875  BP     1  0 1.000000000
## GO:0110026  BP     1  0 1.000000000
## GO:1905578  BP     1  0 1.000000000
## GO:1902044  BP     1  0 1.000000000
## GO:0045219  BP     1  0 1.000000000
## GO:1900128  BP     1  0 1.000000000
## GO:1903450  BP     1  0 1.000000000
## GO:0043095  BP     1  0 1.000000000
## GO:0042999  BP     1  0 1.000000000
## GO:0071658  BP     1  0 1.000000000
## GO:1905541  BP     1  0 1.000000000
## GO:1903195  BP     1  0 1.000000000
## GO:1903198  BP     1  0 1.000000000
## GO:1905008  BP     1  0 1.000000000
## GO:0071701  BP     1  0 1.000000000
## GO:2000759  BP     1  0 1.000000000
## GO:0060254  BP     1  0 1.000000000
## GO:0098906  BP     1  0 1.000000000
## GO:1905255  BP     1  0 1.000000000
## GO:1900259  BP     1  0 1.000000000
## GO:0062025  BP     1  0 1.000000000
## GO:1903182  BP     1  0 1.000000000
## GO:1904266  BP     1  0 1.000000000
## GO:1905044  BP     1  0 1.000000000
## GO:0002852  BP     1  0 1.000000000
## GO:2000517  BP     1  0 1.000000000
## GO:0045554  BP     1  0 1.000000000
## GO:1904239  BP     1  0 1.000000000
## GO:2000056  BP     1  0 1.000000000
## GO:1904711  BP     1  0 1.000000000
## GO:0009787  BP     1  0 1.000000000
## GO:1905921  BP     1  0 1.000000000
## GO:1903048  BP     1  0 1.000000000
## GO:1904697  BP     1  0 1.000000000
## GO:0090138  BP     1  0 1.000000000
## GO:0043538  BP     1  0 1.000000000
## GO:1904621  BP     1  0 1.000000000
## GO:0010578  BP     1  0 1.000000000
## GO:0071877  BP     1  0 1.000000000
## GO:0140193  BP     1  0 1.000000000
## GO:1904990  BP     1  0 1.000000000
## GO:1900729  BP     1  0 1.000000000
## GO:1905226  BP     1  0 1.000000000
## GO:1904603  BP     1  0 1.000000000
## GO:0051941  BP     1  0 1.000000000
## GO:2001248  BP     1  0 1.000000000
## GO:2000797  BP     1  0 1.000000000
## GO:2000834  BP     1  0 1.000000000
## GO:0061880  BP     1  0 1.000000000
## GO:1902612  BP     1  0 1.000000000
## GO:0002808  BP     1  0 1.000000000
## GO:0001813  BP     1  0 1.000000000
## GO:1905034  BP     1  0 1.000000000
## GO:1904282  BP     1  0 1.000000000
## GO:0002805  BP     1  0 1.000000000
## GO:1904829  BP     1  0 1.000000000
## GO:2000656  BP     1  0 1.000000000
## GO:0060785  BP     1  0 1.000000000
## GO:0150070  BP     1  0 1.000000000
## GO:1900081  BP     1  0 1.000000000
## GO:1904448  BP     1  0 1.000000000
## GO:0016243  BP     1  0 1.000000000
## GO:1905126  BP     1  0 1.000000000
## GO:1904863  BP     1  0 1.000000000
## GO:0002816  BP     1  0 1.000000000
## GO:2000266  BP     1  0 1.000000000
## GO:0110057  BP     1  0 1.000000000
## GO:0031551  BP     1  0 1.000000000
## GO:0060683  BP     1  0 1.000000000
## GO:0060668  BP     1  0 1.000000000
## GO:1904362  BP     1  0 1.000000000
## GO:0110097  BP     1  0 1.000000000
## GO:1903610  BP     1  0 1.000000000
## GO:0046586  BP     1  0 1.000000000
## GO:0060827  BP     1  0 1.000000000
## GO:1905239  BP     1  0 1.000000000
## GO:1903674  BP     1  0 1.000000000
## GO:0032113  BP     1  0 1.000000000
## GO:0043610  BP     1  0 1.000000000
## GO:1901210  BP     1  0 1.000000000
## GO:0061999  BP     1  0 1.000000000
## GO:2000690  BP     1  0 1.000000000
## GO:0055018  BP     1  0 1.000000000
## GO:1905304  BP     1  0 1.000000000
## GO:0042686  BP     1  0 1.000000000
## GO:0106088  BP     1  0 1.000000000
## GO:0060305  BP     1  0 1.000000000
## GO:1905933  BP     1  0 1.000000000
## GO:0090249  BP     1  0 1.000000000
## GO:2000606  BP     1  0 1.000000000
## GO:0060784  BP     1  0 1.000000000
## GO:0033241  BP     1  0 1.000000000
## GO:0072365  BP     1  0 1.000000000
## GO:0072366  BP     1  0 1.000000000
## GO:2000683  BP     1  0 1.000000000
## GO:1905957  BP     1  0 1.000000000
## GO:1905843  BP     1  0 1.000000000
## GO:2001112  BP     1  0 1.000000000
## GO:1905802  BP     1  0 1.000000000
## GO:2000654  BP     1  0 1.000000000
## GO:1905891  BP     1  0 1.000000000
## GO:1905894  BP     1  0 1.000000000
## GO:1905890  BP     1  0 1.000000000
## GO:0002895  BP     1  0 1.000000000
## GO:0002646  BP     1  0 1.000000000
## GO:0071652  BP     1  0 1.000000000
## GO:1903884  BP     1  0 1.000000000
## GO:0071643  BP     1  0 1.000000000
## GO:1904365  BP     1  0 1.000000000
## GO:1904054  BP     1  0 1.000000000
## GO:0060694  BP     1  0 1.000000000
## GO:1902769  BP     1  0 1.000000000
## GO:1904499  BP     1  0 1.000000000
## GO:0090318  BP     1  0 1.000000000
## GO:0044537  BP     1  0 1.000000000
## GO:1903248  BP     1  0 1.000000000
## GO:1905468  BP     1  0 1.000000000
## GO:0106064  BP     1  0 1.000000000
## GO:0048683  BP     1  0 1.000000000
## GO:1904596  BP     1  0 1.000000000
## GO:1901232  BP     1  0 1.000000000
## GO:1902311  BP     1  0 1.000000000
## GO:1900010  BP     1  0 1.000000000
## GO:1904041  BP     1  0 1.000000000
## GO:1901494  BP     1  0 1.000000000
## GO:2000431  BP     1  0 1.000000000
## GO:0140018  BP     1  0 1.000000000
## GO:1903627  BP     1  0 1.000000000
## GO:1901834  BP     1  0 1.000000000
## GO:1903072  BP     1  0 1.000000000
## GO:1902477  BP     1  0 1.000000000
## GO:0050690  BP     1  0 1.000000000
## GO:1905413  BP     1  0 1.000000000
## GO:2000970  BP     1  0 1.000000000
## GO:1905787  BP     1  0 1.000000000
## GO:1905767  BP     1  0 1.000000000
## GO:1904335  BP     1  0 1.000000000
## GO:0060735  BP     1  0 1.000000000
## GO:0042665  BP     1  0 1.000000000
## GO:0051543  BP     1  0 1.000000000
## GO:0060310  BP     1  0 1.000000000
## GO:0140049  BP     1  0 1.000000000
## GO:2000800  BP     1  0 1.000000000
## GO:1903916  BP     1  0 1.000000000
## GO:1905364  BP     1  0 1.000000000
## GO:1904987  BP     1  0 1.000000000
## GO:1904904  BP     1  0 1.000000000
## GO:2000419  BP     1  0 1.000000000
## GO:1902250  BP     1  0 1.000000000
## GO:0034106  BP     1  0 1.000000000
## GO:0061930  BP     1  0 1.000000000
## GO:1904910  BP     1  0 1.000000000
## GO:2000782  BP     1  0 1.000000000
## GO:2000861  BP     1  0 1.000000000
## GO:1904793  BP     1  0 1.000000000
## GO:1905535  BP     1  0 1.000000000
## GO:1904735  BP     1  0 1.000000000
## GO:0010722  BP     1  0 1.000000000
## GO:0110075  BP     1  0 1.000000000
## GO:2000702  BP     1  0 1.000000000
## GO:2000413  BP     1  0 1.000000000
## GO:0120182  BP     1  0 1.000000000
## GO:1905942  BP     1  0 1.000000000
## GO:1901193  BP     1  0 1.000000000
## GO:0050752  BP     1  0 1.000000000
## GO:0032644  BP     1  0 1.000000000
## GO:0060549  BP     1  0 1.000000000
## GO:0060551  BP     1  0 1.000000000
## GO:2000733  BP     1  0 1.000000000
## GO:1904633  BP     1  0 1.000000000
## GO:2000752  BP     1  0 1.000000000
## GO:0051946  BP     1  0 1.000000000
## GO:0035227  BP     1  0 1.000000000
## GO:0120006  BP     1  0 1.000000000
## GO:1903282  BP     1  0 1.000000000
## GO:1904226  BP     1  0 1.000000000
## GO:0072362  BP     1  0 1.000000000
## GO:0002631  BP     1  0 1.000000000
## GO:1904195  BP     1  0 1.000000000
## GO:2000511  BP     1  0 1.000000000
## GO:0060901  BP     1  0 1.000000000
## GO:0061168  BP     1  0 1.000000000
## GO:1901207  BP     1  0 1.000000000
## GO:1905853  BP     1  0 1.000000000
## GO:1905858  BP     1  0 1.000000000
## GO:1904897  BP     1  0 1.000000000
## GO:0048176  BP     1  0 1.000000000
## GO:0032646  BP     1  0 1.000000000
## GO:2001173  BP     1  0 1.000000000
## GO:1905435  BP     1  0 1.000000000
## GO:0070510  BP     1  0 1.000000000
## GO:1903584  BP     1  0 1.000000000
## GO:0050666  BP     1  0 1.000000000
## GO:1904826  BP     1  0 1.000000000
## GO:0002640  BP     1  0 1.000000000
## GO:0042669  BP     1  0 1.000000000
## GO:0010924  BP     1  0 1.000000000
## GO:0050721  BP     1  0 1.000000000
## GO:0032658  BP     1  0 1.000000000
## GO:0045378  BP     1  0 1.000000000
## GO:1903881  BP     1  0 1.000000000
## GO:2000492  BP     1  0 1.000000000
## GO:1902205  BP     1  0 1.000000000
## GO:2000571  BP     1  0 1.000000000
## GO:0045405  BP     1  0 1.000000000
## GO:1905365  BP     1  0 1.000000000
## GO:1902238  BP     1  0 1.000000000
## GO:1905924  BP     1  0 1.000000000
## GO:1905927  BP     1  0 1.000000000
## GO:1904212  BP     1  0 1.000000000
## GO:1904201  BP     1  0 1.000000000
## GO:1905015  BP     1  0 1.000000000
## GO:2000356  BP     1  0 1.000000000
## GO:1902076  BP     1  0 1.000000000
## GO:0031275  BP     1  0 1.000000000
## GO:1903633  BP     1  0 1.000000000
## GO:0035490  BP     1  0 1.000000000
## GO:1900130  BP     1  0 1.000000000
## GO:1903000  BP     1  0 1.000000000
## GO:0140075  BP     1  0 1.000000000
## GO:1901246  BP     1  0 1.000000000
## GO:1903837  BP     1  0 1.000000000
## GO:1905610  BP     1  0 1.000000000
## GO:0031437  BP     1  0 1.000000000
## GO:1902629  BP     1  0 1.000000000
## GO:0002616  BP     1  0 1.000000000
## GO:0010932  BP     1  0 1.000000000
## GO:0034094  BP     1  0 1.000000000
## GO:2000709  BP     1  0 1.000000000
## GO:2000718  BP     1  0 1.000000000
## GO:1905603  BP     1  0 1.000000000
## GO:1904838  BP     1  0 1.000000000
## GO:2000101  BP     1  0 1.000000000
## GO:1904301  BP     1  0 1.000000000
## GO:0031494  BP     1  0 1.000000000
## GO:1903341  BP     1  0 1.000000000
## GO:1905000  BP     1  0 1.000000000
## GO:0061295  BP     1  0 1.000000000
## GO:0060782  BP     1  0 1.000000000
## GO:2000004  BP     1  0 1.000000000
## GO:0090095  BP     1  0 1.000000000
## GO:2000006  BP     1  0 1.000000000
## GO:2000477  BP     1  0 1.000000000
## GO:2001074  BP     1  0 1.000000000
## GO:1905186  BP     1  0 1.000000000
## GO:1905018  BP     1  0 1.000000000
## GO:0014006  BP     1  0 1.000000000
## GO:0090226  BP     1  0 1.000000000
## GO:1905405  BP     1  0 1.000000000
## GO:0032888  BP     1  0 1.000000000
## GO:0032771  BP     1  0 1.000000000
## GO:1905483  BP     1  0 1.000000000
## GO:0010797  BP     1  0 1.000000000
## GO:0035504  BP     1  0 1.000000000
## GO:2000290  BP     1  0 1.000000000
## GO:0070247  BP     1  0 1.000000000
## GO:0051394  BP     1  0 1.000000000
## GO:0090299  BP     1  0 1.000000000
## GO:0061853  BP     1  0 1.000000000
## GO:1900073  BP     1  0 1.000000000
## GO:1904799  BP     1  0 1.000000000
## GO:1902847  BP     1  0 1.000000000
## GO:0099162  BP     1  0 1.000000000
## GO:2000428  BP     1  0 1.000000000
## GO:0080164  BP     1  0 1.000000000
## GO:1903314  BP     1  0 1.000000000
## GO:1900123  BP     1  0 1.000000000
## GO:1901229  BP     1  0 1.000000000
## GO:1902838  BP     1  0 1.000000000
## GO:0032242  BP     1  0 1.000000000
## GO:0097298  BP     1  0 1.000000000
## GO:1903027  BP     1  0 1.000000000
## GO:2000595  BP     1  0 1.000000000
## GO:1905591  BP     1  0 1.000000000
## GO:1904118  BP     1  0 1.000000000
## GO:1904242  BP     1  0 1.000000000
## GO:1905089  BP     1  0 1.000000000
## GO:0120093  BP     1  0 1.000000000
## GO:0002849  BP     1  0 1.000000000
## GO:1905162  BP     1  0 1.000000000
## GO:2000185  BP     1  0 1.000000000
## GO:1905693  BP     1  0 1.000000000
## GO:2001144  BP     1  0 1.000000000
## GO:1904005  BP     1  0 1.000000000
## GO:1900161  BP     1  0 1.000000000
## GO:2001163  BP     1  0 1.000000000
## GO:2000150  BP     1  0 1.000000000
## GO:2000161  BP     1  0 1.000000000
## GO:2000159  BP     1  0 1.000000000
## GO:2000167  BP     1  0 1.000000000
## GO:2000163  BP     1  0 1.000000000
## GO:2000165  BP     1  0 1.000000000
## GO:2000148  BP     1  0 1.000000000
## GO:1903888  BP     1  0 1.000000000
## GO:1905421  BP     1  0 1.000000000
## GO:1900098  BP     1  0 1.000000000
## GO:1903906  BP     1  0 1.000000000
## GO:0097036  BP     1  0 1.000000000
## GO:1905219  BP     1  0 1.000000000
## GO:0010967  BP     1  0 1.000000000
## GO:1904451  BP     1  0 1.000000000
## GO:2000631  BP     1  0 1.000000000
## GO:1905518  BP     1  0 1.000000000
## GO:0099161  BP     1  0 1.000000000
## GO:2000634  BP     1  0 1.000000000
## GO:2000174  BP     1  0 1.000000000
## GO:1902211  BP     1  0 1.000000000
## GO:0070881  BP     1  0 1.000000000
## GO:0035565  BP     1  0 1.000000000
## GO:2000361  BP     1  0 1.000000000
## GO:0010732  BP     1  0 1.000000000
## GO:1903636  BP     1  0 1.000000000
## GO:1903570  BP     1  0 1.000000000
## GO:1904370  BP     1  0 1.000000000
## GO:1904508  BP     1  0 1.000000000
## GO:1902363  BP     1  0 1.000000000
## GO:1904806  BP     1  0 1.000000000
## GO:1903216  BP     1  0 1.000000000
## GO:0080163  BP     1  0 1.000000000
## GO:1900483  BP     1  0 1.000000000
## GO:0150073  BP     1  0 1.000000000
## GO:1900276  BP     1  0 1.000000000
## GO:1905271  BP     1  0 1.000000000
## GO:0010849  BP     1  0 1.000000000
## GO:0120071  BP     1  0 1.000000000
## GO:1903167  BP     1  0 1.000000000
## GO:1903302  BP     1  0 1.000000000
## GO:1904984  BP     1  0 1.000000000
## GO:0099158  BP     1  0 1.000000000
## GO:2000532  BP     1  0 1.000000000
## GO:1903402  BP     1  0 1.000000000
## GO:2001151  BP     1  0 1.000000000
## GO:1900062  BP     1  0 1.000000000
## GO:1902153  BP     1  0 1.000000000
## GO:1902151  BP     1  0 1.000000000
## GO:1901419  BP     1  0 1.000000000
## GO:1902145  BP     1  0 1.000000000
## GO:0060222  BP     1  0 1.000000000
## GO:2001017  BP     1  0 1.000000000
## GO:1901954  BP     1  0 1.000000000
## GO:1905432  BP     1  0 1.000000000
## GO:2000206  BP     1  0 1.000000000
## GO:2000200  BP     1  0 1.000000000
## GO:2000280  BP     1  0 1.000000000
## GO:1902890  BP     1  0 1.000000000
## GO:2000067  BP     1  0 1.000000000
## GO:0061190  BP     1  0 1.000000000
## GO:1904409  BP     1  0 1.000000000
## GO:1904573  BP     1  0 1.000000000
## GO:1904790  BP     1  0 1.000000000
## GO:1905512  BP     1  0 1.000000000
## GO:0038009  BP     1  0 1.000000000
## GO:1902504  BP     1  0 1.000000000
## GO:0060380  BP     1  0 1.000000000
## GO:0014861  BP     1  0 1.000000000
## GO:1904318  BP     1  0 1.000000000
## GO:1905899  BP     1  0 1.000000000
## GO:1905380  BP     1  0 1.000000000
## GO:1904675  BP     1  0 1.000000000
## GO:1901304  BP     1  0 1.000000000
## GO:2000754  BP     1  0 1.000000000
## GO:0032887  BP     1  0 1.000000000
## GO:0120068  BP     1  0 1.000000000
## GO:0061105  BP     1  0 1.000000000
## GO:0060542  BP     1  0 1.000000000
## GO:1904458  BP     1  0 1.000000000
## GO:1904494  BP     1  0 1.000000000
## GO:1900383  BP     1  0 1.000000000
## GO:0060092  BP     1  0 1.000000000
## GO:0098694  BP     1  0 1.000000000
## GO:0003068  BP     1  0 1.000000000
## GO:0003026  BP     1  0 1.000000000
## GO:0003027  BP     1  0 1.000000000
## GO:0001979  BP     1  0 1.000000000
## GO:0003070  BP     1  0 1.000000000
## GO:1904032  BP     1  0 1.000000000
## GO:0032207  BP     1  0 1.000000000
## GO:1901580  BP     1  0 1.000000000
## GO:1905547  BP     1  0 1.000000000
## GO:2001049  BP     1  0 1.000000000
## GO:2000730  BP     1  0 1.000000000
## GO:0090067  BP     1  0 1.000000000
## GO:1903123  BP     1  0 1.000000000
## GO:1905021  BP     1  0 1.000000000
## GO:0050758  BP     1  0 1.000000000
## GO:2000398  BP     1  0 1.000000000
## GO:1904441  BP     1  0 1.000000000
## GO:0060165  BP     1  0 1.000000000
## GO:0002843  BP     1  0 1.000000000
## GO:0034179  BP     1  0 1.000000000
## GO:0034147  BP     1  0 1.000000000
## GO:0000409  BP     1  0 1.000000000
## GO:2001207  BP     1  0 1.000000000
## GO:0000431  BP     1  0 1.000000000
## GO:0060807  BP     1  0 1.000000000
## GO:0061216  BP     1  0 1.000000000
## GO:0021918  BP     1  0 1.000000000
## GO:1902064  BP     1  0 1.000000000
## GO:0021920  BP     1  0 1.000000000
## GO:0044324  BP     1  0 1.000000000
## GO:1904298  BP     1  0 1.000000000
## GO:1903618  BP     1  0 1.000000000
## GO:1904187  BP     1  0 1.000000000
## GO:1901392  BP     1  0 1.000000000
## GO:1901398  BP     1  0 1.000000000
## GO:0043143  BP     1  0 1.000000000
## GO:0043556  BP     1  0 1.000000000
## GO:1904803  BP     1  0 1.000000000
## GO:0036496  BP     1  0 1.000000000
## GO:1904073  BP     1  0 1.000000000
## GO:0034344  BP     1  0 1.000000000
## GO:1903176  BP     1  0 1.000000000
## GO:0051510  BP     1  0 1.000000000
## GO:0034255  BP     1  0 1.000000000
## GO:2000061  BP     1  0 1.000000000
## GO:0050675  BP     1  0 1.000000000
## GO:1900719  BP     1  0 1.000000000
## GO:0032889  BP     1  0 1.000000000
## GO:1990736  BP     1  0 1.000000000
## GO:0003117  BP     1  0 1.000000000
## GO:0003116  BP     1  0 1.000000000
## GO:1904971  BP     1  0 1.000000000
## GO:0071581  BP     1  0 1.000000000
## GO:0032976  BP     1  0 1.000000000
## GO:0000735  BP     1  0 1.000000000
## GO:0097018  BP     1  0 1.000000000
## GO:0061441  BP     1  0 1.000000000
## GO:0072127  BP     1  0 1.000000000
## GO:0072129  BP     1  0 1.000000000
## GO:0072128  BP     1  0 1.000000000
## GO:0072130  BP     1  0 1.000000000
## GO:0072055  BP     1  0 1.000000000
## GO:0035623  BP     1  0 1.000000000
## GO:0044722  BP     1  0 1.000000000
## GO:0097291  BP     1  0 1.000000000
## GO:0061150  BP     1  0 1.000000000
## GO:0072184  BP     1  0 1.000000000
## GO:0071932  BP     1  0 1.000000000
## GO:1990636  BP     1  0 1.000000000
## GO:1902691  BP     1  0 1.000000000
## GO:1904565  BP     1  0 1.000000000
## GO:1903496  BP     1  0 1.000000000
## GO:1905242  BP     1  0 1.000000000
## GO:1904681  BP     1  0 1.000000000
## GO:0036275  BP     1  0 1.000000000
## GO:1904386  BP     1  0 1.000000000
## GO:0061481  BP     1  0 1.000000000
## GO:0009737  BP     1  0 1.000000000
## GO:1903717  BP     1  0 1.000000000
## GO:1904550  BP     1  0 1.000000000
## GO:1905217  BP     1  0 1.000000000
## GO:0097184  BP     1  0 1.000000000
## GO:1901561  BP     1  0 1.000000000
## GO:0070781  BP     1  0 1.000000000
## GO:1901594  BP     1  0 1.000000000
## GO:0034465  BP     1  0 1.000000000
## GO:0106096  BP     1  0 1.000000000
## GO:0010157  BP     1  0 1.000000000
## GO:0046687  BP     1  0 1.000000000
## GO:0120126  BP     1  0 1.000000000
## GO:0051414  BP     1  0 1.000000000
## GO:0046898  BP     1  0 1.000000000
## GO:1901328  BP     1  0 1.000000000
## GO:0052567  BP     1  0 1.000000000
## GO:0052550  BP     1  0 1.000000000
## GO:1903494  BP     1  0 1.000000000
## GO:1904629  BP     1  0 1.000000000
## GO:0090648  BP     1  0 1.000000000
## GO:1901557  BP     1  0 1.000000000
## GO:1905395  BP     1  0 1.000000000
## GO:0050826  BP     1  0 1.000000000
## GO:1990790  BP     1  0 1.000000000
## GO:1904631  BP     1  0 1.000000000
## GO:1905630  BP     1  0 1.000000000
## GO:0014876  BP     1  0 1.000000000
## GO:1990418  BP     1  0 1.000000000
## GO:0097396  BP     1  0 1.000000000
## GO:0070543  BP     1  0 1.000000000
## GO:0072704  BP     1  0 1.000000000
## GO:0031427  BP     1  0 1.000000000
## GO:0072702  BP     1  0 1.000000000
## GO:1904608  BP     1  0 1.000000000
## GO:0035713  BP     1  0 1.000000000
## GO:0010335  BP     1  0 1.000000000
## GO:1990834  BP     1  0 1.000000000
## GO:0010193  BP     1  0 1.000000000
## GO:1905711  BP     1  0 1.000000000
## GO:1903165  BP     1  0 1.000000000
## GO:1904585  BP     1  0 1.000000000
## GO:1905834  BP     1  0 1.000000000
## GO:1901545  BP     1  0 1.000000000
## GO:0009639  BP     1  0 1.000000000
## GO:1904014  BP     1  0 1.000000000
## GO:0010272  BP     1  0 1.000000000
## GO:0000304  BP     1  0 1.000000000
## GO:1904383  BP     1  0 1.000000000
## GO:1905225  BP     1  0 1.000000000
## GO:0097068  BP     1  0 1.000000000
## GO:1990267  BP     1  0 1.000000000
## GO:0034014  BP     1  0 1.000000000
## GO:1904576  BP     1  0 1.000000000
## GO:0034342  BP     1  0 1.000000000
## GO:0034516  BP     1  0 1.000000000
## GO:1990785  BP     1  0 1.000000000
## GO:1904567  BP     1  0 1.000000000
## GO:0097601  BP     1  0 1.000000000
## GO:0046551  BP     1  0 1.000000000
## GO:0097473  BP     1  0 1.000000000
## GO:0060223  BP     1  0 1.000000000
## GO:0090242  BP     1  0 1.000000000
## GO:0098958  BP     1  0 1.000000000
## GO:0099083  BP     1  0 1.000000000
## GO:0098925  BP     1  0 1.000000000
## GO:0000301  BP     1  0 1.000000000
## GO:0061451  BP     1  0 1.000000000
## GO:0061452  BP     1  0 1.000000000
## GO:0046154  BP     1  0 1.000000000
## GO:0021660  BP     1  0 1.000000000
## GO:0021666  BP     1  0 1.000000000
## GO:0021664  BP     1  0 1.000000000
## GO:0021572  BP     1  0 1.000000000
## GO:0021594  BP     1  0 1.000000000
## GO:0009231  BP     1  0 1.000000000
## GO:0006771  BP     1  0 1.000000000
## GO:0060461  BP     1  0 1.000000000
## GO:0003226  BP     1  0 1.000000000
## GO:0021509  BP     1  0 1.000000000
## GO:0048364  BP     1  0 1.000000000
## GO:0010053  BP     1  0 1.000000000
## GO:0080147  BP     1  0 1.000000000
## GO:0048765  BP     1  0 1.000000000
## GO:0048767  BP     1  0 1.000000000
## GO:0010015  BP     1  0 1.000000000
## GO:0022622  BP     1  0 1.000000000
## GO:0060367  BP     1  0 1.000000000
## GO:1901053  BP     1  0 1.000000000
## GO:1990654  BP     1  0 1.000000000
## GO:0016261  BP     1  0 1.000000000
## GO:0097056  BP     1  0 1.000000000
## GO:0071527  BP     1  0 1.000000000
## GO:0060879  BP     1  0 1.000000000
## GO:0070684  BP     1  0 1.000000000
## GO:0061108  BP     1  0 1.000000000
## GO:0061682  BP     1  0 1.000000000
## GO:0035986  BP     1  0 1.000000000
## GO:1904937  BP     1  0 1.000000000
## GO:0008052  BP     1  0 1.000000000
## GO:0038098  BP     1  0 1.000000000
## GO:0042137  BP     1  0 1.000000000
## GO:0038101  BP     1  0 1.000000000
## GO:0002552  BP     1  0 1.000000000
## GO:0060096  BP     1  0 1.000000000
## GO:0071573  BP     1  0 1.000000000
## GO:0015913  BP     1  0 1.000000000
## GO:0015912  BP     1  0 1.000000000
## GO:0019290  BP     1  0 1.000000000
## GO:0009237  BP     1  0 1.000000000
## GO:1990256  BP     1  0 1.000000000
## GO:0035638  BP     1  0 1.000000000
## GO:0072428  BP     1  0 1.000000000
## GO:1903759  BP     1  0 1.000000000
## GO:0003172  BP     1  0 1.000000000
## GO:0003185  BP     1  0 1.000000000
## GO:0003235  BP     1  0 1.000000000
## GO:0003236  BP     1  0 1.000000000
## GO:0071170  BP     1  0 1.000000000
## GO:0071171  BP     1  0 1.000000000
## GO:0014813  BP     1  0 1.000000000
## GO:0036060  BP     1  0 1.000000000
## GO:1990832  BP     1  0 1.000000000
## GO:0032458  BP     1  0 1.000000000
## GO:0034462  BP     1  0 1.000000000
## GO:0014806  BP     1  0 1.000000000
## GO:0014895  BP     1  0 1.000000000
## GO:0003271  BP     1  0 1.000000000
## GO:0120049  BP     1  0 1.000000000
## GO:0016076  BP     1  0 1.000000000
## GO:0006408  BP     1  0 1.000000000
## GO:0043251  BP     1  0 1.000000000
## GO:0070715  BP     1  0 1.000000000
## GO:1990091  BP     1  0 1.000000000
## GO:0071720  BP     1  0 1.000000000
## GO:0021917  BP     1  0 1.000000000
## GO:0006061  BP     1  0 1.000000000
## GO:0006062  BP     1  0 1.000000000
## GO:0072168  BP     1  0 1.000000000
## GO:0072167  BP     1  0 1.000000000
## GO:0072169  BP     1  0 1.000000000
## GO:0072100  BP     1  0 1.000000000
## GO:0072101  BP     1  0 1.000000000
## GO:0046692  BP     1  0 1.000000000
## GO:0007321  BP     1  0 1.000000000
## GO:0035037  BP     1  0 1.000000000
## GO:0007291  BP     1  0 1.000000000
## GO:0048137  BP     1  0 1.000000000
## GO:0106048  BP     1  0 1.000000000
## GO:0032919  BP     1  0 1.000000000
## GO:0006669  BP     1  0 1.000000000
## GO:0021512  BP     1  0 1.000000000
## GO:0021519  BP     1  0 1.000000000
## GO:1905355  BP     1  0 1.000000000
## GO:0060345  BP     1  0 1.000000000
## GO:0000388  BP     1  0 1.000000000
## GO:0048792  BP     1  0 1.000000000
## GO:0120045  BP     1  0 1.000000000
## GO:0006463  BP     1  0 1.000000000
## GO:0046272  BP     1  0 1.000000000
## GO:0009810  BP     1  0 1.000000000
## GO:0014825  BP     1  0 1.000000000
## GO:0120064  BP     1  0 1.000000000
## GO:0000732  BP     1  0 1.000000000
## GO:1990170  BP     1  0 1.000000000
## GO:1990359  BP     1  0 1.000000000
## GO:1990046  BP     1  0 1.000000000
## GO:0044345  BP     1  0 1.000000000
## GO:0060661  BP     1  0 1.000000000
## GO:0022012  BP     1  0 1.000000000
## GO:0010814  BP     1  0 1.000000000
## GO:1990772  BP     1  0 1.000000000
## GO:1990793  BP     1  0 1.000000000
## GO:1903701  BP     1  0 1.000000000
## GO:0061753  BP     1  0 1.000000000
## GO:0021763  BP     1  0 1.000000000
## GO:1902358  BP     1  0 1.000000000
## GO:0019418  BP     1  0 1.000000000
## GO:0070221  BP     1  0 1.000000000
## GO:0019417  BP     1  0 1.000000000
## GO:0071109  BP     1  0 1.000000000
## GO:0060578  BP     1  0 1.000000000
## GO:0039521  BP     1  0 1.000000000
## GO:0036268  BP     1  0 1.000000000
## GO:0098725  BP     1  0 1.000000000
## GO:0060386  BP     1  0 1.000000000
## GO:0008039  BP     1  0 1.000000000
## GO:0071911  BP     1  0 1.000000000
## GO:1990656  BP     1  0 1.000000000
## GO:0001680  BP     1  0 1.000000000
## GO:0034414  BP     1  0 1.000000000
## GO:0002939  BP     1  0 1.000000000
## GO:1990983  BP     1  0 1.000000000
## GO:0002943  BP     1  0 1.000000000
## GO:0000968  BP     1  0 1.000000000
## GO:0000971  BP     1  0 1.000000000
## GO:0035600  BP     1  0 1.000000000
## GO:0071528  BP     1  0 1.000000000
## GO:0009304  BP     1  0 1.000000000
## GO:0042797  BP     1  0 1.000000000
## GO:0002926  BP     1  0 1.000000000
## GO:0002127  BP     1  0 1.000000000
## GO:0042412  BP     1  0 1.000000000
## GO:0070075  BP     1  0 1.000000000
## GO:0032203  BP     1  0 1.000000000
## GO:0097698  BP     1  0 1.000000000
## GO:0097393  BP     1  0 1.000000000
## GO:0097394  BP     1  0 1.000000000
## GO:0061976  BP     1  0 1.000000000
## GO:0002932  BP     1  0 1.000000000
## GO:0038032  BP     1  0 1.000000000
## GO:0006386  BP     1  0 1.000000000
## GO:0046901  BP     1  0 1.000000000
## GO:0016109  BP     1  0 1.000000000
## GO:0040040  BP     1  0 1.000000000
## GO:0009229  BP     1  0 1.000000000
## GO:0009088  BP     1  0 1.000000000
## GO:0015826  BP     1  0 1.000000000
## GO:0006214  BP     1  0 1.000000000
## GO:0050757  BP     1  0 1.000000000
## GO:0035364  BP     1  0 1.000000000
## GO:1990789  BP     1  0 1.000000000
## GO:0038194  BP     1  0 1.000000000
## GO:0002255  BP     1  0 1.000000000
## GO:0002462  BP     1  0 1.000000000
## GO:0002413  BP     1  0 1.000000000
## GO:0034130  BP     1  0 1.000000000
## GO:0034150  BP     1  0 1.000000000
## GO:0034158  BP     1  0 1.000000000
## GO:1905327  BP     1  0 1.000000000
## GO:0098629  BP     1  0 1.000000000
## GO:0006392  BP     1  0 1.000000000
## GO:0001172  BP     1  0 1.000000000
## GO:0001113  BP     1  0 1.000000000
## GO:0001174  BP     1  0 1.000000000
## GO:1905313  BP     1  0 1.000000000
## GO:0090010  BP     1  0 1.000000000
## GO:0036366  BP     1  0 1.000000000
## GO:0002333  BP     1  0 1.000000000
## GO:0002332  BP     1  0 1.000000000
## GO:0009386  BP     1  0 1.000000000
## GO:0042000  BP     1  0 1.000000000
## GO:0044053  BP     1  0 1.000000000
## GO:0051808  BP     1  0 1.000000000
## GO:0007185  BP     1  0 1.000000000
## GO:0006313  BP     1  0 1.000000000
## GO:0005993  BP     1  0 1.000000000
## GO:0070413  BP     1  0 1.000000000
## GO:0035674  BP     1  0 1.000000000
## GO:1904274  BP     1  0 1.000000000
## GO:0018979  BP     1  0 1.000000000
## GO:0010054  BP     1  0 1.000000000
## GO:0048764  BP     1  0 1.000000000
## GO:0036153  BP     1  0 1.000000000
## GO:0036510  BP     1  0 1.000000000
## GO:0021642  BP     1  0 1.000000000
## GO:0021639  BP     1  0 1.000000000
## GO:0032023  BP     1  0 1.000000000
## GO:0003327  BP     1  0 1.000000000
## GO:0072560  BP     1  0 1.000000000
## GO:0034343  BP     1  0 1.000000000
## GO:0006571  BP     1  0 1.000000000
## GO:0032194  BP     1  0 1.000000000
## GO:1901006  BP     1  0 1.000000000
## GO:1901004  BP     1  0 1.000000000
## GO:0019628  BP     1  0 1.000000000
## GO:1903118  BP     1  0 1.000000000
## GO:0072192  BP     1  0 1.000000000
## GO:0014849  BP     1  0 1.000000000
## GO:0072105  BP     1  0 1.000000000
## GO:0006218  BP     1  0 1.000000000
## GO:0046108  BP     1  0 1.000000000
## GO:0006780  BP     1  0 1.000000000
## GO:0050674  BP     1  0 1.000000000
## GO:1903709  BP     1  0 1.000000000
## GO:0044558  BP     1  0 1.000000000
## GO:0043181  BP     1  0 1.000000000
## GO:0015676  BP     1  0 1.000000000
## GO:0097699  BP     1  0 1.000000000
## GO:0036323  BP     1  0 1.000000000
## GO:0010232  BP     1  0 1.000000000
## GO:0001987  BP     1  0 1.000000000
## GO:0002014  BP     1  0 1.000000000
## GO:1990029  BP     1  0 1.000000000
## GO:0060843  BP     1  0 1.000000000
## GO:0007371  BP     1  0 1.000000000
## GO:0060580  BP     1  0 1.000000000
## GO:0036113  BP     1  0 1.000000000
## GO:0061782  BP     1  0 1.000000000
## GO:0099050  BP     1  0 1.000000000
## GO:0097712  BP     1  0 1.000000000
## GO:0090522  BP     1  0 1.000000000
## GO:0090119  BP     1  0 1.000000000
## GO:0110077  BP     1  0 1.000000000
## GO:0060116  BP     1  0 1.000000000
## GO:0046745  BP     1  0 1.000000000
## GO:0046786  BP     1  0 1.000000000
## GO:0007495  BP     1  0 1.000000000
## GO:0007522  BP     1  0 1.000000000
## GO:0042820  BP     1  0 1.000000000
## GO:0010189  BP     1  0 1.000000000
## GO:0030704  BP     1  0 1.000000000
## GO:0046111  BP     1  0 1.000000000
## GO:0016123  BP     1  0 1.000000000
## GO:1901827  BP     1  0 1.000000000
## GO:1901825  BP     1  0 1.000000000
## GO:0022006  BP     1  0 1.000000000
## GO:0042351  BP     2  0 1.000000000
## GO:0009257  BP     2  0 1.000000000
## GO:0009258  BP     2  0 1.000000000
## GO:0046361  BP     2  0 1.000000000
## GO:0050428  BP     2  0 1.000000000
## GO:0018960  BP     2  0 1.000000000
## GO:0015866  BP     2  0 1.000000000
## GO:0006756  BP     2  0 1.000000000
## GO:0002358  BP     2  0 1.000000000
## GO:0002352  BP     2  0 1.000000000
## GO:0080120  BP     2  0 1.000000000
## GO:0071586  BP     2  0 1.000000000
## GO:0002362  BP     2  0 1.000000000
## GO:0002302  BP     2  0 1.000000000
## GO:0035698  BP     2  0 1.000000000
## GO:0002305  BP     2  0 1.000000000
## GO:0035781  BP     2  0 1.000000000
## GO:0046341  BP     2  0 1.000000000
## GO:0046381  BP     2  0 1.000000000
## GO:0019478  BP     2  0 1.000000000
## GO:0046177  BP     2  0 1.000000000
## GO:0019521  BP     2  0 1.000000000
## GO:0070178  BP     2  0 1.000000000
## GO:0090618  BP     2  0 1.000000000
## GO:0044727  BP     2  0 1.000000000
## GO:0044028  BP     2  0 1.000000000
## GO:0042262  BP     2  0 1.000000000
## GO:0071163  BP     2  0 1.000000000
## GO:0045004  BP     2  0 1.000000000
## GO:0036292  BP     2  0 1.000000000
## GO:1904161  BP     2  0 1.000000000
## GO:0038129  BP     2  0 1.000000000
## GO:0045210  BP     2  0 1.000000000
## GO:1990172  BP     2  0 1.000000000
## GO:0070315  BP     2  0 1.000000000
## GO:0051319  BP     2  0 1.000000000
## GO:0046710  BP     2  0 1.000000000
## GO:0046038  BP     2  0 1.000000000
## GO:0032472  BP     2  0 1.000000000
## GO:0055107  BP     2  0 1.000000000
## GO:0055108  BP     2  0 1.000000000
## GO:0048211  BP     2  0 1.000000000
## GO:0048213  BP     2  0 1.000000000
## GO:0060932  BP     2  0 1.000000000
## GO:0046709  BP     2  0 1.000000000
## GO:0046707  BP     2  0 1.000000000
## GO:0002192  BP     2  0 1.000000000
## GO:0046041  BP     2  0 1.000000000
## GO:0042853  BP     2  0 1.000000000
## GO:0046373  BP     2  0 1.000000000
## GO:0015882  BP     2  0 1.000000000
## GO:0140009  BP     2  0 1.000000000
## GO:0070778  BP     2  0 1.000000000
## GO:0019452  BP     2  0 1.000000000
## GO:0015811  BP     2  0 1.000000000
## GO:0097052  BP     2  0 1.000000000
## GO:0019477  BP     2  0 1.000000000
## GO:0097639  BP     2  0 1.000000000
## GO:0046440  BP     2  0 1.000000000
## GO:0045204  BP     2  0 1.000000000
## GO:0002397  BP     2  0 1.000000000
## GO:0018008  BP     2  0 1.000000000
## GO:0017198  BP     2  0 1.000000000
## GO:0006480  BP     2  0 1.000000000
## GO:0006500  BP     2  0 1.000000000
## GO:0006740  BP     2  0 1.000000000
## GO:0060853  BP     2  0 1.000000000
## GO:1902359  BP     2  0 1.000000000
## GO:0016267  BP     2  0 1.000000000
## GO:0030719  BP     2  0 1.000000000
## GO:0003165  BP     2  0 1.000000000
## GO:0001188  BP     2  0 1.000000000
## GO:0042245  BP     2  0 1.000000000
## GO:0010265  BP     2  0 1.000000000
## GO:0035712  BP     2  0 1.000000000
## GO:0032639  BP     2  0 1.000000000
## GO:1903241  BP     2  0 1.000000000
## GO:1990569  BP     2  0 1.000000000
## GO:0072334  BP     2  0 1.000000000
## GO:0006011  BP     2  0 1.000000000
## GO:0046398  BP     2  0 1.000000000
## GO:0038190  BP     2  0 1.000000000
## GO:0038018  BP     2  0 1.000000000
## GO:0044332  BP     2  0 1.000000000
## GO:0021874  BP     2  0 1.000000000
## GO:0061289  BP     2  0 1.000000000
## GO:0021560  BP     2  0 1.000000000
## GO:0021599  BP     2  0 1.000000000
## GO:0021598  BP     2  0 1.000000000
## GO:0033277  BP     2  0 1.000000000
## GO:0019413  BP     2  0 1.000000000
## GO:0019427  BP     2  0 1.000000000
## GO:0046356  BP     2  0 1.000000000
## GO:0070650  BP     2  0 1.000000000
## GO:0071846  BP     2  0 1.000000000
## GO:0051695  BP     2  0 1.000000000
## GO:0031247  BP     2  0 1.000000000
## GO:1905397  BP     2  0 1.000000000
## GO:0060466  BP     2  0 1.000000000
## GO:0032431  BP     2  0 1.000000000
## GO:0002541  BP     2  0 1.000000000
## GO:1990051  BP     2  0 1.000000000
## GO:0016062  BP     2  0 1.000000000
## GO:0009955  BP     2  0 1.000000000
## GO:0006168  BP     2  0 1.000000000
## GO:0006154  BP     2  0 1.000000000
## GO:0071881  BP     2  0 1.000000000
## GO:0061104  BP     2  0 1.000000000
## GO:0035801  BP     2  0 1.000000000
## GO:0035802  BP     2  0 1.000000000
## GO:0007527  BP     2  0 1.000000000
## GO:0046223  BP     2  0 1.000000000
## GO:0046176  BP     2  0 1.000000000
## GO:0019520  BP     2  0 1.000000000
## GO:0000255  BP     2  0 1.000000000
## GO:1905069  BP     2  0 1.000000000
## GO:0071929  BP     2  0 1.000000000
## GO:0036305  BP     2  0 1.000000000
## GO:0097272  BP     2  0 1.000000000
## GO:0120077  BP     2  0 1.000000000
## GO:0086098  BP     2  0 1.000000000
## GO:0002033  BP     2  0 1.000000000
## GO:0021506  BP     2  0 1.000000000
## GO:0072098  BP     2  0 1.000000000
## GO:0098964  BP     2  0 1.000000000
## GO:0061760  BP     2  0 1.000000000
## GO:0002488  BP     2  0 1.000000000
## GO:0002489  BP     2  0 1.000000000
## GO:0002479  BP     2  0 1.000000000
## GO:0048006  BP     2  0 1.000000000
## GO:1900204  BP     2  0 1.000000000
## GO:1900205  BP     2  0 1.000000000
## GO:0019566  BP     2  0 1.000000000
## GO:0042450  BP     2  0 1.000000000
## GO:0019547  BP     2  0 1.000000000
## GO:0018872  BP     2  0 1.000000000
## GO:0060844  BP     2  0 1.000000000
## GO:0072021  BP     2  0 1.000000000
## GO:0035700  BP     2  0 1.000000000
## GO:0090164  BP     2  0 1.000000000
## GO:0003290  BP     2  0 1.000000000
## GO:0003294  BP     2  0 1.000000000
## GO:0060928  BP     2  0 1.000000000
## GO:0060922  BP     2  0 1.000000000
## GO:0051455  BP     2  0 1.000000000
## GO:0051316  BP     2  0 1.000000000
## GO:0042667  BP     2  0 1.000000000
## GO:0001982  BP     2  0 1.000000000
## GO:0042595  BP     2  0 1.000000000
## GO:0030573  BP     2  0 1.000000000
## GO:0038183  BP     2  0 1.000000000
## GO:0042710  BP     2  0 1.000000000
## GO:0070980  BP     2  0 1.000000000
## GO:0072564  BP     2  0 1.000000000
## GO:0060846  BP     2  0 1.000000000
## GO:0097101  BP     2  0 1.000000000
## GO:0072554  BP     2  0 1.000000000
## GO:0031989  BP     2  0 1.000000000
## GO:0000494  BP     2  0 1.000000000
## GO:0033967  BP     2  0 1.000000000
## GO:0034963  BP     2  0 1.000000000
## GO:0000495  BP     2  0 1.000000000
## GO:0033979  BP     2  0 1.000000000
## GO:0034964  BP     2  0 1.000000000
## GO:0000493  BP     2  0 1.000000000
## GO:0060667  BP     2  0 1.000000000
## GO:0009082  BP     2  0 1.000000000
## GO:0060854  BP     2  0 1.000000000
## GO:0060532  BP     2  0 1.000000000
## GO:0060434  BP     2  0 1.000000000
## GO:0070342  BP     2  0 1.000000000
## GO:0055073  BP     2  0 1.000000000
## GO:1990408  BP     2  0 1.000000000
## GO:0099093  BP     2  0 1.000000000
## GO:1990927  BP     2  0 1.000000000
## GO:0016340  BP     2  0 1.000000000
## GO:1990092  BP     2  0 1.000000000
## GO:0035585  BP     2  0 1.000000000
## GO:0060220  BP     2  0 1.000000000
## GO:0044338  BP     2  0 1.000000000
## GO:0061290  BP     2  0 1.000000000
## GO:0044337  BP     2  0 1.000000000
## GO:0061324  BP     2  0 1.000000000
## GO:0044334  BP     2  0 1.000000000
## GO:0044343  BP     2  0 1.000000000
## GO:0036451  BP     2  0 1.000000000
## GO:0002191  BP     2  0 1.000000000
## GO:0110017  BP     2  0 1.000000000
## GO:0097309  BP     2  0 1.000000000
## GO:0009758  BP     2  0 1.000000000
## GO:0140074  BP     2  0 1.000000000
## GO:0060936  BP     2  0 1.000000000
## GO:0060935  BP     2  0 1.000000000
## GO:0003218  BP     2  0 1.000000000
## GO:0003245  BP     2  0 1.000000000
## GO:0003292  BP     2  0 1.000000000
## GO:0035498  BP     2  0 1.000000000
## GO:0016121  BP     2  0 1.000000000
## GO:0016119  BP     2  0 1.000000000
## GO:1990079  BP     2  0 1.000000000
## GO:0052364  BP     2  0 1.000000000
## GO:0052360  BP     2  0 1.000000000
## GO:0052361  BP     2  0 1.000000000
## GO:0052227  BP     2  0 1.000000000
## GO:0120078  BP     2  0 1.000000000
## GO:1902298  BP     2  0 1.000000000
## GO:0090678  BP     2  0 1.000000000
## GO:0060974  BP     2  0 1.000000000
## GO:0140039  BP     2  0 1.000000000
## GO:0045168  BP     2  0 1.000000000
## GO:0060995  BP     2  0 1.000000000
## GO:0060764  BP     2  0 1.000000000
## GO:0072204  BP     2  0 1.000000000
## GO:0003366  BP     2  0 1.000000000
## GO:0043605  BP     2  0 1.000000000
## GO:0071477  BP     2  0 1.000000000
## GO:0072338  BP     2  0 1.000000000
## GO:1904613  BP     2  0 1.000000000
## GO:1903577  BP     2  0 1.000000000
## GO:0071469  BP     2  0 1.000000000
## GO:1903413  BP     2  0 1.000000000
## GO:1904976  BP     2  0 1.000000000
## GO:0071460  BP     2  0 1.000000000
## GO:0071279  BP     2  0 1.000000000
## GO:0072738  BP     2  0 1.000000000
## GO:1990786  BP     2  0 1.000000000
## GO:1990859  BP     2  0 1.000000000
## GO:0036018  BP     2  0 1.000000000
## GO:0071412  BP     2  0 1.000000000
## GO:0071377  BP     2  0 1.000000000
## GO:0071403  BP     2  0 1.000000000
## GO:0071413  BP     2  0 1.000000000
## GO:0071352  BP     2  0 1.000000000
## GO:0098759  BP     2  0 1.000000000
## GO:0071283  BP     2  0 1.000000000
## GO:0071395  BP     2  0 1.000000000
## GO:0072750  BP     2  0 1.000000000
## GO:0036245  BP     2  0 1.000000000
## GO:0097238  BP     2  0 1.000000000
## GO:0071389  BP     2  0 1.000000000
## GO:0071226  BP     2  0 1.000000000
## GO:1904009  BP     2  0 1.000000000
## GO:0071315  BP     2  0 1.000000000
## GO:0071506  BP     2  0 1.000000000
## GO:0071874  BP     2  0 1.000000000
## GO:1905546  BP     2  0 1.000000000
## GO:0016036  BP     2  0 1.000000000
## GO:0071393  BP     2  0 1.000000000
## GO:0072752  BP     2  0 1.000000000
## GO:0071461  BP     2  0 1.000000000
## GO:1904482  BP     2  0 1.000000000
## GO:1904117  BP     2  0 1.000000000
## GO:0071307  BP     2  0 1.000000000
## GO:0042631  BP     2  0 1.000000000
## GO:0034224  BP     2  0 1.000000000
## GO:0097533  BP     2  0 1.000000000
## GO:0021551  BP     2  0 1.000000000
## GO:0002508  BP     2  0 1.000000000
## GO:0090222  BP     2  0 1.000000000
## GO:1905373  BP     2  0 1.000000000
## GO:1905371  BP     2  0 1.000000000
## GO:0021691  BP     2  0 1.000000000
## GO:0021693  BP     2  0 1.000000000
## GO:0021935  BP     2  0 1.000000000
## GO:0021687  BP     2  0 1.000000000
## GO:0021589  BP     2  0 1.000000000
## GO:0061300  BP     2  0 1.000000000
## GO:0021893  BP     2  0 1.000000000
## GO:0060067  BP     2  0 1.000000000
## GO:0071954  BP     2  0 1.000000000
## GO:0038116  BP     2  0 1.000000000
## GO:0021842  BP     2  0 1.000000000
## GO:0021836  BP     2  0 1.000000000
## GO:0036518  BP     2  0 1.000000000
## GO:0038188  BP     2  0 1.000000000
## GO:0072356  BP     2  0 1.000000000
## GO:0002545  BP     2  0 1.000000000
## GO:0034378  BP     2  0 1.000000000
## GO:0036090  BP     2  0 1.000000000
## GO:0060197  BP     2  0 1.000000000
## GO:0061386  BP     2  0 1.000000000
## GO:0048674  BP     2  0 1.000000000
## GO:1990192  BP     2  0 1.000000000
## GO:1990765  BP     2  0 1.000000000
## GO:0048749  BP     2  0 1.000000000
## GO:1990708  BP     2  0 1.000000000
## GO:0032601  BP     2  0 1.000000000
## GO:0098705  BP     2  0 1.000000000
## GO:0003335  BP     2  0 1.000000000
## GO:0003169  BP     2  0 1.000000000
## GO:0061378  BP     2  0 1.000000000
## GO:0021966  BP     2  0 1.000000000
## GO:0046226  BP     2  0 1.000000000
## GO:0006601  BP     2  0 1.000000000
## GO:0006600  BP     2  0 1.000000000
## GO:0015881  BP     2  0 1.000000000
## GO:0038041  BP     2  0 1.000000000
## GO:0042335  BP     2  0 1.000000000
## GO:0019343  BP     2  0 1.000000000
## GO:0042883  BP     2  0 1.000000000
## GO:0006423  BP     2  0 1.000000000
## GO:0060327  BP     2  0 1.000000000
## GO:0019858  BP     2  0 1.000000000
## GO:0046967  BP     2  0 1.000000000
## GO:0043316  BP     2  0 1.000000000
## GO:0046056  BP     2  0 1.000000000
## GO:0006233  BP     2  0 1.000000000
## GO:0046072  BP     2  0 1.000000000
## GO:0071550  BP     2  0 1.000000000
## GO:0009814  BP     2  0 1.000000000
## GO:0060232  BP     2  0 1.000000000
## GO:0044565  BP     2  0 1.000000000
## GO:0098939  BP     2  0 1.000000000
## GO:0046092  BP     2  0 1.000000000
## GO:0009159  BP     2  0 1.000000000
## GO:0002032  BP     2  0 1.000000000
## GO:0050911  BP     2  0 1.000000000
## GO:0001581  BP     2  0 1.000000000
## GO:0001582  BP     2  0 1.000000000
## GO:0042496  BP     2  0 1.000000000
## GO:0009590  BP     2  0 1.000000000
## GO:0070483  BP     2  0 1.000000000
## GO:0050973  BP     2  0 1.000000000
## GO:0003127  BP     2  0 1.000000000
## GO:0032499  BP     2  0 1.000000000
## GO:0042495  BP     2  0 1.000000000
## GO:0035545  BP     2  0 1.000000000
## GO:0050787  BP     2  0 1.000000000
## GO:0018894  BP     2  0 1.000000000
## GO:0060598  BP     2  0 1.000000000
## GO:0046452  BP     2  0 1.000000000
## GO:0021840  BP     2  0 1.000000000
## GO:0072156  BP     2  0 1.000000000
## GO:0070839  BP     2  0 1.000000000
## GO:0019408  BP     2  0 1.000000000
## GO:1904835  BP     2  0 1.000000000
## GO:0097681  BP     2  0 1.000000000
## GO:0019085  BP     2  0 1.000000000
## GO:0007439  BP     2  0 1.000000000
## GO:0035803  BP     2  0 1.000000000
## GO:0051542  BP     2  0 1.000000000
## GO:0048611  BP     2  0 1.000000000
## GO:1990401  BP     2  0 1.000000000
## GO:0021831  BP     2  0 1.000000000
## GO:0061443  BP     2  0 1.000000000
## GO:0020028  BP     2  0 1.000000000
## GO:0007493  BP     2  0 1.000000000
## GO:0007113  BP     2  0 1.000000000
## GO:0016320  BP     2  0 1.000000000
## GO:0061857  BP     2  0 1.000000000
## GO:0097111  BP     2  0 1.000000000
## GO:0048388  BP     2  0 1.000000000
## GO:0097750  BP     2  0 1.000000000
## GO:0097498  BP     2  0 1.000000000
## GO:0086100  BP     2  0 1.000000000
## GO:1990775  BP     2  0 1.000000000
## GO:0034230  BP     2  0 1.000000000
## GO:0075506  BP     2  0 1.000000000
## GO:0018307  BP     2  0 1.000000000
## GO:0035854  BP     2  0 1.000000000
## GO:1905223  BP     2  0 1.000000000
## GO:0003349  BP     2  0 1.000000000
## GO:0060939  BP     2  0 1.000000000
## GO:0060938  BP     2  0 1.000000000
## GO:0060983  BP     2  0 1.000000000
## GO:0036334  BP     2  0 1.000000000
## GO:0042418  BP     2  0 1.000000000
## GO:0060690  BP     2  0 1.000000000
## GO:0060738  BP     2  0 1.000000000
## GO:0006696  BP     2  0 1.000000000
## GO:0008204  BP     2  0 1.000000000
## GO:0042275  BP     2  0 1.000000000
## GO:0034117  BP     2  0 1.000000000
## GO:0038162  BP     2  0 1.000000000
## GO:0014846  BP     2  0 1.000000000
## GO:0048560  BP     2  0 1.000000000
## GO:0006343  BP     2  0 1.000000000
## GO:0060857  BP     2  0 1.000000000
## GO:0034087  BP     2  0 1.000000000
## GO:0019043  BP     2  0 1.000000000
## GO:0016332  BP     2  0 1.000000000
## GO:0006711  BP     2  0 1.000000000
## GO:0001927  BP     2  0 1.000000000
## GO:0035261  BP     2  0 1.000000000
## GO:0021754  BP     2  0 1.000000000
## GO:0016488  BP     2  0 1.000000000
## GO:0016487  BP     2  0 1.000000000
## GO:0010142  BP     2  0 1.000000000
## GO:0097156  BP     2  0 1.000000000
## GO:1904606  BP     2  0 1.000000000
## GO:0010430  BP     2  0 1.000000000
## GO:1903173  BP     2  0 1.000000000
## GO:0036115  BP     2  0 1.000000000
## GO:0007147  BP     2  0 1.000000000
## GO:0035038  BP     2  0 1.000000000
## GO:0030237  BP     2  0 1.000000000
## GO:0070627  BP     2  0 1.000000000
## GO:0098707  BP     2  0 1.000000000
## GO:0060595  BP     2  0 1.000000000
## GO:0035607  BP     2  0 1.000000000
## GO:0072387  BP     2  0 1.000000000
## GO:0042727  BP     2  0 1.000000000
## GO:0021508  BP     2  0 1.000000000
## GO:0009397  BP     2  0 1.000000000
## GO:0002266  BP     2  0 1.000000000
## GO:0002268  BP     2  0 1.000000000
## GO:0035922  BP     2  0 1.000000000
## GO:0021897  BP     2  0 1.000000000
## GO:0021896  BP     2  0 1.000000000
## GO:0021592  BP     2  0 1.000000000
## GO:0060364  BP     2  0 1.000000000
## GO:0030389  BP     2  0 1.000000000
## GO:0046370  BP     2  0 1.000000000
## GO:0006683  BP     2  0 1.000000000
## GO:0090663  BP     2  0 1.000000000
## GO:0009450  BP     2  0 1.000000000
## GO:0061534  BP     2  0 1.000000000
## GO:0002304  BP     2  0 1.000000000
## GO:0061552  BP     2  0 1.000000000
## GO:0010706  BP     2  0 1.000000000
## GO:0051866  BP     2  0 1.000000000
## GO:0000349  BP     2  0 1.000000000
## GO:0000350  BP     2  0 1.000000000
## GO:0106091  BP     2  0 1.000000000
## GO:0044467  BP     2  0 1.000000000
## GO:0001575  BP     2  0 1.000000000
## GO:0021759  BP     2  0 1.000000000
## GO:0072011  BP     2  0 1.000000000
## GO:0006713  BP     2  0 1.000000000
## GO:0006043  BP     2  0 1.000000000
## GO:0019255  BP     2  0 1.000000000
## GO:0044381  BP     2  0 1.000000000
## GO:0006679  BP     2  0 1.000000000
## GO:0019391  BP     2  0 1.000000000
## GO:0019551  BP     2  0 1.000000000
## GO:0019550  BP     2  0 1.000000000
## GO:0006425  BP     2  0 1.000000000
## GO:0006424  BP     2  0 1.000000000
## GO:0034775  BP     2  0 1.000000000
## GO:0046166  BP     2  0 1.000000000
## GO:0046327  BP     2  0 1.000000000
## GO:0019563  BP     2  0 1.000000000
## GO:0006127  BP     2  0 1.000000000
## GO:0019264  BP     2  0 1.000000000
## GO:0019265  BP     2  0 1.000000000
## GO:0009441  BP     2  0 1.000000000
## GO:0046836  BP     2  0 1.000000000
## GO:0061723  BP     2  0 1.000000000
## GO:0006097  BP     2  0 1.000000000
## GO:0038158  BP     2  0 1.000000000
## GO:0060014  BP     2  0 1.000000000
## GO:0003430  BP     2  0 1.000000000
## GO:0097117  BP     2  0 1.000000000
## GO:1905748  BP     2  0 1.000000000
## GO:0006784  BP     2  0 1.000000000
## GO:0046160  BP     2  0 1.000000000
## GO:0006788  BP     2  0 1.000000000
## GO:0061872  BP     2  0 1.000000000
## GO:0061868  BP     2  0 1.000000000
## GO:0061017  BP     2  0 1.000000000
## GO:0036333  BP     2  0 1.000000000
## GO:0070869  BP     2  0 1.000000000
## GO:0070829  BP     2  0 1.000000000
## GO:0021577  BP     2  0 1.000000000
## GO:0001694  BP     2  0 1.000000000
## GO:0000105  BP     2  0 1.000000000
## GO:0015817  BP     2  0 1.000000000
## GO:0006427  BP     2  0 1.000000000
## GO:0071894  BP     2  0 1.000000000
## GO:0097676  BP     2  0 1.000000000
## GO:0034971  BP     2  0 1.000000000
## GO:0034970  BP     2  0 1.000000000
## GO:0036413  BP     2  0 1.000000000
## GO:2000775  BP     2  0 1.000000000
## GO:0072355  BP     2  0 1.000000000
## GO:0035408  BP     2  0 1.000000000
## GO:0035574  BP     2  0 1.000000000
## GO:1990258  BP     2  0 1.000000000
## GO:0043418  BP     2  0 1.000000000
## GO:0042309  BP     2  0 1.000000000
## GO:0044029  BP     2  0 1.000000000
## GO:0042539  BP     2  0 1.000000000
## GO:0043103  BP     2  0 1.000000000
## GO:0002436  BP     2  0 1.000000000
## GO:0002380  BP     2  0 1.000000000
## GO:0002415  BP     2  0 1.000000000
## GO:0051389  BP     2  0 1.000000000
## GO:0060821  BP     2  0 1.000000000
## GO:0060817  BP     2  0 1.000000000
## GO:0061379  BP     2  0 1.000000000
## GO:0001544  BP     2  0 1.000000000
## GO:0098582  BP     2  0 1.000000000
## GO:0052746  BP     2  0 1.000000000
## GO:1901143  BP     2  0 1.000000000
## GO:0052047  BP     2  0 1.000000000
## GO:0035722  BP     2  0 1.000000000
## GO:0032618  BP     2  0 1.000000000
## GO:0038110  BP     2  0 1.000000000
## GO:0032625  BP     2  0 1.000000000
## GO:0072619  BP     2  0 1.000000000
## GO:0045105  BP     2  0 1.000000000
## GO:0048389  BP     2  0 1.000000000
## GO:0090675  BP     2  0 1.000000000
## GO:0060574  BP     2  0 1.000000000
## GO:0061582  BP     2  0 1.000000000
## GO:0120054  BP     2  0 1.000000000
## GO:0060752  BP     2  0 1.000000000
## GO:0002041  BP     2  0 1.000000000
## GO:0015688  BP     2  0 1.000000000
## GO:0048250  BP     2  0 1.000000000
## GO:0018283  BP     2  0 1.000000000
## GO:0006550  BP     2  0 1.000000000
## GO:0006549  BP     2  0 1.000000000
## GO:0006428  BP     2  0 1.000000000
## GO:0018262  BP     2  0 1.000000000
## GO:1902767  BP     2  0 1.000000000
## GO:0042339  BP     2  0 1.000000000
## GO:0072004  BP     2  0 1.000000000
## GO:0072071  BP     2  0 1.000000000
## GO:0072135  BP     2  0 1.000000000
## GO:0072195  BP     2  0 1.000000000
## GO:0034276  BP     2  0 1.000000000
## GO:0034275  BP     2  0 1.000000000
## GO:0019516  BP     2  0 1.000000000
## GO:0005989  BP     2  0 1.000000000
## GO:0005988  BP     2  0 1.000000000
## GO:0046478  BP     2  0 1.000000000
## GO:0051878  BP     2  0 1.000000000
## GO:0046331  BP     2  0 1.000000000
## GO:0048372  BP     2  0 1.000000000
## GO:0048377  BP     2  0 1.000000000
## GO:0060490  BP     2  0 1.000000000
## GO:0060599  BP     2  0 1.000000000
## GO:0035026  BP     2  0 1.000000000
## GO:0098583  BP     2  0 1.000000000
## GO:0097166  BP     2  0 1.000000000
## GO:0009098  BP     2  0 1.000000000
## GO:0006429  BP     2  0 1.000000000
## GO:0061757  BP     2  0 1.000000000
## GO:0050902  BP     2  0 1.000000000
## GO:1901750  BP     2  0 1.000000000
## GO:1901748  BP     2  0 1.000000000
## GO:0036367  BP     2  0 1.000000000
## GO:1990379  BP     2  0 1.000000000
## GO:0010877  BP     2  0 1.000000000
## GO:0009106  BP     2  0 1.000000000
## GO:0015920  BP     2  0 1.000000000
## GO:0034439  BP     2  0 1.000000000
## GO:0042160  BP     2  0 1.000000000
## GO:0042161  BP     2  0 1.000000000
## GO:2001303  BP     2  0 1.000000000
## GO:2001302  BP     2  0 1.000000000
## GO:2001301  BP     2  0 1.000000000
## GO:2001300  BP     2  0 1.000000000
## GO:0061141  BP     2  0 1.000000000
## GO:0061145  BP     2  0 1.000000000
## GO:1990183  BP     2  0 1.000000000
## GO:0002518  BP     2  0 1.000000000
## GO:0097022  BP     2  0 1.000000000
## GO:0097534  BP     2  0 1.000000000
## GO:0097535  BP     2  0 1.000000000
## GO:0009085  BP     2  0 1.000000000
## GO:0019878  BP     2  0 1.000000000
## GO:0006554  BP     2  0 1.000000000
## GO:0015819  BP     2  0 1.000000000
## GO:2001311  BP     2  0 1.000000000
## GO:0051977  BP     2  0 1.000000000
## GO:0000389  BP     2  0 1.000000000
## GO:0031990  BP     2  0 1.000000000
## GO:0010609  BP     2  0 1.000000000
## GO:1903830  BP     2  0 1.000000000
## GO:0051659  BP     2  0 1.000000000
## GO:0099403  BP     2  0 1.000000000
## GO:0072658  BP     2  0 1.000000000
## GO:0072660  BP     2  0 1.000000000
## GO:0043007  BP     2  0 1.000000000
## GO:1990145  BP     2  0 1.000000000
## GO:0019100  BP     2  0 1.000000000
## GO:2001293  BP     2  0 1.000000000
## GO:0060615  BP     2  0 1.000000000
## GO:0061373  BP     2  0 1.000000000
## GO:0021767  BP     2  0 1.000000000
## GO:0033364  BP     2  0 1.000000000
## GO:0071626  BP     2  0 1.000000000
## GO:0008358  BP     2  0 1.000000000
## GO:0021526  BP     2  0 1.000000000
## GO:0036034  BP     2  0 1.000000000
## GO:0060031  BP     2  0 1.000000000
## GO:0001579  BP     2  0 1.000000000
## GO:0010705  BP     2  0 1.000000000
## GO:0044778  BP     2  0 1.000000000
## GO:0043060  BP     2  0 1.000000000
## GO:0010789  BP     2  0 1.000000000
## GO:0006583  BP     2  0 1.000000000
## GO:0097324  BP     2  0 1.000000000
## GO:0030187  BP     2  0 1.000000000
## GO:0030186  BP     2  0 1.000000000
## GO:0097753  BP     2  0 1.000000000
## GO:1904211  BP     2  0 1.000000000
## GO:0001766  BP     2  0 1.000000000
## GO:0042361  BP     2  0 1.000000000
## GO:0022601  BP     2  0 1.000000000
## GO:1901147  BP     2  0 1.000000000
## GO:0060915  BP     2  0 1.000000000
## GO:0007509  BP     2  0 1.000000000
## GO:0060809  BP     2  0 1.000000000
## GO:0072181  BP     2  0 1.000000000
## GO:0052419  BP     2  0 1.000000000
## GO:0052416  BP     2  0 1.000000000
## GO:0052229  BP     2  0 1.000000000
## GO:0052214  BP     2  0 1.000000000
## GO:0018282  BP     2  0 1.000000000
## GO:0072218  BP     2  0 1.000000000
## GO:0072185  BP     2  0 1.000000000
## GO:0090094  BP     2  0 1.000000000
## GO:0072186  BP     2  0 1.000000000
## GO:0072278  BP     2  0 1.000000000
## GO:0072313  BP     2  0 1.000000000
## GO:0072312  BP     2  0 1.000000000
## GO:0072249  BP     2  0 1.000000000
## GO:0072248  BP     2  0 1.000000000
## GO:0072136  BP     2  0 1.000000000
## GO:0035502  BP     2  0 1.000000000
## GO:0072233  BP     2  0 1.000000000
## GO:0051323  BP     2  0 1.000000000
## GO:0006431  BP     2  0 1.000000000
## GO:0051958  BP     2  0 1.000000000
## GO:0097089  BP     2  0 1.000000000
## GO:0019242  BP     2  0 1.000000000
## GO:1990428  BP     2  0 1.000000000
## GO:0090634  BP     2  0 1.000000000
## GO:0060152  BP     2  0 1.000000000
## GO:0072382  BP     2  0 1.000000000
## GO:0031930  BP     2  0 1.000000000
## GO:0090615  BP     2  0 1.000000000
## GO:0090149  BP     2  0 1.000000000
## GO:1990613  BP     2  0 1.000000000
## GO:0070096  BP     2  0 1.000000000
## GO:0006850  BP     2  0 1.000000000
## GO:0070901  BP     2  0 1.000000000
## GO:0070124  BP     2  0 1.000000000
## GO:1990456  BP     2  0 1.000000000
## GO:1990505  BP     2  0 1.000000000
## GO:0000087  BP     2  0 1.000000000
## GO:0007079  BP     2  0 1.000000000
## GO:0051329  BP     2  0 1.000000000
## GO:0000089  BP     2  0 1.000000000
## GO:1990426  BP     2  0 1.000000000
## GO:0099404  BP     2  0 1.000000000
## GO:0051228  BP     2  0 1.000000000
## GO:0098886  BP     2  0 1.000000000
## GO:0044867  BP     2  0 1.000000000
## GO:0044866  BP     2  0 1.000000000
## GO:0044870  BP     2  0 1.000000000
## GO:0039526  BP     2  0 1.000000000
## GO:0039519  BP     2  0 1.000000000
## GO:0016098  BP     2  0 1.000000000
## GO:0044035  BP     2  0 1.000000000
## GO:1902581  BP     2  0 1.000000000
## GO:1902583  BP     2  0 1.000000000
## GO:0044033  BP     2  0 1.000000000
## GO:1902594  BP     2  0 1.000000000
## GO:1990967  BP     2  0 1.000000000
## GO:0061763  BP     2  0 1.000000000
## GO:0007521  BP     2  0 1.000000000
## GO:0043387  BP     2  0 1.000000000
## GO:0048627  BP     2  0 1.000000000
## GO:1990764  BP     2  0 1.000000000
## GO:0031038  BP     2  0 1.000000000
## GO:0018931  BP     2  0 1.000000000
## GO:0090420  BP     2  0 1.000000000
## GO:0002769  BP     2  0 1.000000000
## GO:0002519  BP     2  0 1.000000000
## GO:0043629  BP     2  0 1.000000000
## GO:0052403  BP     2  0 1.000000000
## GO:0044869  BP     2  0 1.000000000
## GO:0044871  BP     2  0 1.000000000
## GO:0046725  BP     2  0 1.000000000
## GO:1903892  BP     2  0 1.000000000
## GO:2000349  BP     2  0 1.000000000
## GO:0043377  BP     2  0 1.000000000
## GO:1905775  BP     2  0 1.000000000
## GO:1905642  BP     2  0 1.000000000
## GO:1905450  BP     2  0 1.000000000
## GO:1904021  BP     2  0 1.000000000
## GO:1900477  BP     2  0 1.000000000
## GO:1903895  BP     2  0 1.000000000
## GO:1900235  BP     2  0 1.000000000
## GO:0002037  BP     2  0 1.000000000
## GO:0034125  BP     2  0 1.000000000
## GO:1902689  BP     2  0 1.000000000
## GO:0051134  BP     2  0 1.000000000
## GO:1904782  BP     2  0 1.000000000
## GO:1902367  BP     2  0 1.000000000
## GO:0046832  BP     2  0 1.000000000
## GO:1900369  BP     2  0 1.000000000
## GO:1904476  BP     2  0 1.000000000
## GO:2001107  BP     2  0 1.000000000
## GO:1900148  BP     2  0 1.000000000
## GO:2001189  BP     2  0 1.000000000
## GO:0045751  BP     2  0 1.000000000
## GO:2000054  BP     2  0 1.000000000
## GO:1903919  BP     2  0 1.000000000
## GO:1902569  BP     2  0 1.000000000
## GO:0001971  BP     2  0 1.000000000
## GO:1905675  BP     2  0 1.000000000
## GO:1902870  BP     2  0 1.000000000
## GO:0002590  BP     2  0 1.000000000
## GO:0002587  BP     2  0 1.000000000
## GO:1900215  BP     2  0 1.000000000
## GO:1900218  BP     2  0 1.000000000
## GO:1902257  BP     2  0 1.000000000
## GO:1900139  BP     2  0 1.000000000
## GO:1902960  BP     2  0 1.000000000
## GO:1905246  BP     2  0 1.000000000
## GO:0061889  BP     2  0 1.000000000
## GO:1904093  BP     2  0 1.000000000
## GO:2000813  BP     2  0 1.000000000
## GO:0060313  BP     2  0 1.000000000
## GO:1900155  BP     2  0 1.000000000
## GO:0031549  BP     2  0 1.000000000
## GO:0090191  BP     2  0 1.000000000
## GO:1904878  BP     2  0 1.000000000
## GO:1901220  BP     2  0 1.000000000
## GO:0062044  BP     2  0 1.000000000
## GO:0106135  BP     2  0 1.000000000
## GO:1905179  BP     2  0 1.000000000
## GO:0051892  BP     2  0 1.000000000
## GO:1901303  BP     2  0 1.000000000
## GO:0052199  BP     2  0 1.000000000
## GO:2001287  BP     2  0 1.000000000
## GO:0060354  BP     2  0 1.000000000
## GO:1905916  BP     2  0 1.000000000
## GO:0003252  BP     2  0 1.000000000
## GO:0033633  BP     2  0 1.000000000
## GO:0045763  BP     2  0 1.000000000
## GO:1903973  BP     2  0 1.000000000
## GO:0021941  BP     2  0 1.000000000
## GO:1904715  BP     2  0 1.000000000
## GO:2000342  BP     2  0 1.000000000
## GO:2001226  BP     2  0 1.000000000
## GO:1901383  BP     2  0 1.000000000
## GO:0061188  BP     2  0 1.000000000
## GO:1902340  BP     2  0 1.000000000
## GO:0042323  BP     2  0 1.000000000
## GO:1904027  BP     2  0 1.000000000
## GO:0045957  BP     2  0 1.000000000
## GO:0001869  BP     2  0 1.000000000
## GO:1905204  BP     2  0 1.000000000
## GO:1905408  BP     2  0 1.000000000
## GO:0060302  BP     2  0 1.000000000
## GO:1903650  BP     2  0 1.000000000
## GO:0150066  BP     2  0 1.000000000
## GO:2000293  BP     2  0 1.000000000
## GO:0032076  BP     2  0 1.000000000
## GO:2000642  BP     2  0 1.000000000
## GO:0042664  BP     2  0 1.000000000
## GO:1903382  BP     2  0 1.000000000
## GO:0060702  BP     2  0 1.000000000
## GO:1901551  BP     2  0 1.000000000
## GO:1902567  BP     2  0 1.000000000
## GO:2000417  BP     2  0 1.000000000
## GO:1905006  BP     2  0 1.000000000
## GO:1905277  BP     2  0 1.000000000
## GO:0090212  BP     2  0 1.000000000
## GO:1903141  BP     2  0 1.000000000
## GO:1903016  BP     2  0 1.000000000
## GO:1905778  BP     2  0 1.000000000
## GO:0010716  BP     2  0 1.000000000
## GO:0042480  BP     2  0 1.000000000
## GO:2000314  BP     2  0 1.000000000
## GO:1901318  BP     2  0 1.000000000
## GO:0120061  BP     2  0 1.000000000
## GO:1903640  BP     2  0 1.000000000
## GO:1904305  BP     2  0 1.000000000
## GO:0002635  BP     2  0 1.000000000
## GO:1900170  BP     2  0 1.000000000
## GO:1904024  BP     2  0 1.000000000
## GO:1900924  BP     2  0 1.000000000
## GO:0045818  BP     2  0 1.000000000
## GO:0071623  BP     2  0 1.000000000
## GO:0060400  BP     2  0 1.000000000
## GO:2000490  BP     2  0 1.000000000
## GO:0110091  BP     2  0 1.000000000
## GO:1901315  BP     2  0 1.000000000
## GO:0000415  BP     2  0 1.000000000
## GO:1900110  BP     2  0 1.000000000
## GO:1901726  BP     2  0 1.000000000
## GO:0033183  BP     2  0 1.000000000
## GO:1903384  BP     2  0 1.000000000
## GO:1902072  BP     2  0 1.000000000
## GO:2000521  BP     2  0 1.000000000
## GO:1903796  BP     2  0 1.000000000
## GO:0010920  BP     2  0 1.000000000
## GO:0033624  BP     2  0 1.000000000
## GO:0045720  BP     2  0 1.000000000
## GO:2001045  BP     2  0 1.000000000
## GO:0045077  BP     2  0 1.000000000
## GO:0050712  BP     2  0 1.000000000
## GO:0045081  BP     2  0 1.000000000
## GO:0032701  BP     2  0 1.000000000
## GO:0032707  BP     2  0 1.000000000
## GO:0070104  BP     2  0 1.000000000
## GO:0045796  BP     2  0 1.000000000
## GO:1904730  BP     2  0 1.000000000
## GO:0010949  BP     2  0 1.000000000
## GO:1901253  BP     2  0 1.000000000
## GO:1903609  BP     2  0 1.000000000
## GO:1902173  BP     2  0 1.000000000
## GO:0051548  BP     2  0 1.000000000
## GO:2000393  BP     2  0 1.000000000
## GO:0032804  BP     2  0 1.000000000
## GO:1901250  BP     2  0 1.000000000
## GO:1901624  BP     2  0 1.000000000
## GO:0090367  BP     2  0 1.000000000
## GO:1902227  BP     2  0 1.000000000
## GO:1904908  BP     2  0 1.000000000
## GO:1902436  BP     2  0 1.000000000
## GO:0032764  BP     2  0 1.000000000
## GO:0070667  BP     2  0 1.000000000
## GO:1904465  BP     2  0 1.000000000
## GO:0072305  BP     2  0 1.000000000
## GO:2000791  BP     2  0 1.000000000
## GO:2000740  BP     2  0 1.000000000
## GO:1902963  BP     2  0 1.000000000
## GO:2000629  BP     2  0 1.000000000
## GO:1904527  BP     2  0 1.000000000
## GO:2000575  BP     2  0 1.000000000
## GO:0090298  BP     2  0 1.000000000
## GO:0000961  BP     2  0 1.000000000
## GO:0045976  BP     2  0 1.000000000
## GO:0070256  BP     2  0 1.000000000
## GO:0014736  BP     2  0 1.000000000
## GO:0014740  BP     2  0 1.000000000
## GO:0050925  BP     2  0 1.000000000
## GO:0061076  BP     2  0 1.000000000
## GO:1904397  BP     2  0 1.000000000
## GO:1904456  BP     2  0 1.000000000
## GO:0090024  BP     2  0 1.000000000
## GO:0043314  BP     2  0 1.000000000
## GO:0045659  BP     2  0 1.000000000
## GO:1905259  BP     2  0 1.000000000
## GO:1900176  BP     2  0 1.000000000
## GO:1900146  BP     2  0 1.000000000
## GO:0032240  BP     2  0 1.000000000
## GO:0042489  BP     2  0 1.000000000
## GO:1900142  BP     2  0 1.000000000
## GO:2000355  BP     2  0 1.000000000
## GO:2000276  BP     2  0 1.000000000
## GO:2000227  BP     2  0 1.000000000
## GO:0033140  BP     2  0 1.000000000
## GO:2000469  BP     2  0 1.000000000
## GO:0060101  BP     2  0 1.000000000
## GO:1900240  BP     2  0 1.000000000
## GO:0010512  BP     2  0 1.000000000
## GO:1900138  BP     2  0 1.000000000
## GO:0034445  BP     2  0 1.000000000
## GO:2000584  BP     2  0 1.000000000
## GO:1902283  BP     2  0 1.000000000
## GO:0031393  BP     2  0 1.000000000
## GO:0032307  BP     2  0 1.000000000
## GO:1903094  BP     2  0 1.000000000
## GO:1905524  BP     2  0 1.000000000
## GO:0090285  BP     2  0 1.000000000
## GO:1901094  BP     2  0 1.000000000
## GO:1904815  BP     2  0 1.000000000
## GO:1903565  BP     2  0 1.000000000
## GO:1901091  BP     2  0 1.000000000
## GO:1903614  BP     2  0 1.000000000
## GO:1901898  BP     2  0 1.000000000
## GO:1903970  BP     2  0 1.000000000
## GO:1902867  BP     2  0 1.000000000
## GO:0046671  BP     2  0 1.000000000
## GO:0060701  BP     2  0 1.000000000
## GO:1902443  BP     2  0 1.000000000
## GO:1905747  BP     2  0 1.000000000
## GO:0090341  BP     2  0 1.000000000
## GO:1900191  BP     2  0 1.000000000
## GO:1900229  BP     2  0 1.000000000
## GO:0048632  BP     2  0 1.000000000
## GO:1904348  BP     2  0 1.000000000
## GO:2000098  BP     2  0 1.000000000
## GO:0032416  BP     2  0 1.000000000
## GO:0090233  BP     2  0 1.000000000
## GO:1904049  BP     2  0 1.000000000
## GO:0048688  BP     2  0 1.000000000
## GO:1905839  BP     2  0 1.000000000
## GO:1904743  BP     2  0 1.000000000
## GO:1904534  BP     2  0 1.000000000
## GO:0120191  BP     2  0 1.000000000
## GO:2000805  BP     2  0 1.000000000
## GO:2000225  BP     2  0 1.000000000
## GO:0051886  BP     2  0 1.000000000
## GO:0002644  BP     2  0 1.000000000
## GO:0070171  BP     2  0 1.000000000
## GO:0032912  BP     2  0 1.000000000
## GO:2001202  BP     2  0 1.000000000
## GO:1902010  BP     2  0 1.000000000
## GO:0032057  BP     2  0 1.000000000
## GO:0070895  BP     2  0 1.000000000
## GO:1904691  BP     2  0 1.000000000
## GO:0001808  BP     2  0 1.000000000
## GO:2000157  BP     2  0 1.000000000
## GO:0070473  BP     2  0 1.000000000
## GO:1904046  BP     2  0 1.000000000
## GO:1905931  BP     2  0 1.000000000
## GO:2001213  BP     2  0 1.000000000
## GO:1903946  BP     2  0 1.000000000
## GO:0010903  BP     2  0 1.000000000
## GO:0070563  BP     2  0 1.000000000
## GO:0071583  BP     2  0 1.000000000
## GO:0071582  BP     2  0 1.000000000
## GO:0072134  BP     2  0 1.000000000
## GO:0032902  BP     2  0 1.000000000
## GO:0014034  BP     2  0 1.000000000
## GO:0021997  BP     2  0 1.000000000
## GO:1902988  BP     2  0 1.000000000
## GO:0021985  BP     2  0 1.000000000
## GO:0036483  BP     2  0 1.000000000
## GO:0036482  BP     2  0 1.000000000
## GO:0021812  BP     2  0 1.000000000
## GO:0010813  BP     2  0 1.000000000
## GO:0021995  BP     2  0 1.000000000
## GO:0045212  BP     2  0 1.000000000
## GO:0098968  BP     2  0 1.000000000
## GO:0070946  BP     2  0 1.000000000
## GO:0015675  BP     2  0 1.000000000
## GO:0060658  BP     2  0 1.000000000
## GO:0033484  BP     2  0 1.000000000
## GO:0002537  BP     2  0 1.000000000
## GO:0030185  BP     2  0 1.000000000
## GO:0090293  BP     2  0 1.000000000
## GO:0001079  BP     2  0 1.000000000
## GO:0051620  BP     2  0 1.000000000
## GO:0043585  BP     2  0 1.000000000
## GO:0060032  BP     2  0 1.000000000
## GO:0071031  BP     2  0 1.000000000
## GO:0071030  BP     2  0 1.000000000
## GO:0031022  BP     2  0 1.000000000
## GO:0031081  BP     2  0 1.000000000
## GO:0051664  BP     2  0 1.000000000
## GO:0071049  BP     2  0 1.000000000
## GO:0071048  BP     2  0 1.000000000
## GO:0000294  BP     2  0 1.000000000
## GO:0015949  BP     2  0 1.000000000
## GO:0017126  BP     2  0 1.000000000
## GO:0046940  BP     2  0 1.000000000
## GO:0042766  BP     2  0 1.000000000
## GO:1901255  BP     2  0 1.000000000
## GO:0000717  BP     2  0 1.000000000
## GO:0009227  BP     2  0 1.000000000
## GO:0021623  BP     2  0 1.000000000
## GO:0021622  BP     2  0 1.000000000
## GO:1900673  BP     2  0 1.000000000
## GO:0007314  BP     2  0 1.000000000
## GO:0007309  BP     2  0 1.000000000
## GO:0007308  BP     2  0 1.000000000
## GO:0001555  BP     2  0 1.000000000
## GO:0021633  BP     2  0 1.000000000
## GO:0001743  BP     2  0 1.000000000
## GO:0046619  BP     2  0 1.000000000
## GO:0003404  BP     2  0 1.000000000
## GO:0021769  BP     2  0 1.000000000
## GO:1901377  BP     2  0 1.000000000
## GO:0060488  BP     2  0 1.000000000
## GO:0007231  BP     2  0 1.000000000
## GO:0043932  BP     2  0 1.000000000
## GO:0001552  BP     2  0 1.000000000
## GO:0035846  BP     2  0 1.000000000
## GO:0046724  BP     2  0 1.000000000
## GO:0035552  BP     2  0 1.000000000
## GO:0003326  BP     2  0 1.000000000
## GO:0003312  BP     2  0 1.000000000
## GO:0003329  BP     2  0 1.000000000
## GO:0036395  BP     2  0 1.000000000
## GO:0072343  BP     2  0 1.000000000
## GO:0015939  BP     2  0 1.000000000
## GO:0048342  BP     2  0 1.000000000
## GO:0048343  BP     2  0 1.000000000
## GO:0009405  BP     2  0 1.000000000
## GO:0061227  BP     2  0 1.000000000
## GO:0039017  BP     2  0 1.000000000
## GO:0019322  BP     2  0 1.000000000
## GO:0002502  BP     2  0 1.000000000
## GO:0031179  BP     2  0 1.000000000
## GO:0042264  BP     2  0 1.000000000
## GO:0035606  BP     2  0 1.000000000
## GO:0018003  BP     2  0 1.000000000
## GO:0140066  BP     2  0 1.000000000
## GO:0008612  BP     2  0 1.000000000
## GO:0017186  BP     2  0 1.000000000
## GO:0030920  BP     2  0 1.000000000
## GO:1990443  BP     2  0 1.000000000
## GO:0006478  BP     2  0 1.000000000
## GO:0002458  BP     2  0 1.000000000
## GO:0015910  BP     2  0 1.000000000
## GO:0060151  BP     2  0 1.000000000
## GO:0090387  BP     2  0 1.000000000
## GO:0090386  BP     2  0 1.000000000
## GO:0060465  BP     2  0 1.000000000
## GO:0046271  BP     2  0 1.000000000
## GO:0046338  BP     2  0 1.000000000
## GO:0006660  BP     2  0 1.000000000
## GO:0086097  BP     2  0 1.000000000
## GO:0031583  BP     2  0 1.000000000
## GO:0006649  BP     2  0 1.000000000
## GO:0033306  BP     2  0 1.000000000
## GO:0061350  BP     2  0 1.000000000
## GO:0061349  BP     2  0 1.000000000
## GO:0060775  BP     2  0 1.000000000
## GO:0061347  BP     2  0 1.000000000
## GO:0061354  BP     2  0 1.000000000
## GO:0061348  BP     2  0 1.000000000
## GO:0060489  BP     2  0 1.000000000
## GO:0002353  BP     2  0 1.000000000
## GO:0015679  BP     2  0 1.000000000
## GO:0044855  BP     2  0 1.000000000
## GO:0044856  BP     2  0 1.000000000
## GO:0002270  BP     2  0 1.000000000
## GO:0009949  BP     2  0 1.000000000
## GO:0010085  BP     2  0 1.000000000
## GO:0007315  BP     2  0 1.000000000
## GO:0098501  BP     2  0 1.000000000
## GO:0033037  BP     2  0 1.000000000
## GO:1990074  BP     2  0 1.000000000
## GO:0035915  BP     2  0 1.000000000
## GO:0032014  BP     2  0 1.000000000
## GO:2000538  BP     2  0 1.000000000
## GO:0002663  BP     2  0 1.000000000
## GO:2000451  BP     2  0 1.000000000
## GO:1902164  BP     2  0 1.000000000
## GO:1905464  BP     2  0 1.000000000
## GO:0032877  BP     2  0 1.000000000
## GO:1905776  BP     2  0 1.000000000
## GO:0032298  BP     2  0 1.000000000
## GO:0071848  BP     2  0 1.000000000
## GO:0070378  BP     2  0 1.000000000
## GO:1903896  BP     2  0 1.000000000
## GO:0002038  BP     2  0 1.000000000
## GO:1905636  BP     2  0 1.000000000
## GO:0002842  BP     2  0 1.000000000
## GO:2000570  BP     2  0 1.000000000
## GO:1904515  BP     2  0 1.000000000
## GO:0032759  BP     2  0 1.000000000
## GO:1905426  BP     2  0 1.000000000
## GO:0060409  BP     2  0 1.000000000
## GO:2000368  BP     2  0 1.000000000
## GO:0001970  BP     2  0 1.000000000
## GO:0070237  BP     2  0 1.000000000
## GO:0002879  BP     2  0 1.000000000
## GO:0071879  BP     2  0 1.000000000
## GO:0070165  BP     2  0 1.000000000
## GO:1902871  BP     2  0 1.000000000
## GO:1903632  BP     2  0 1.000000000
## GO:1905908  BP     2  0 1.000000000
## GO:2000744  BP     2  0 1.000000000
## GO:1903744  BP     2  0 1.000000000
## GO:0002588  BP     2  0 1.000000000
## GO:0002582  BP     2  0 1.000000000
## GO:2000388  BP     2  0 1.000000000
## GO:1902425  BP     2  0 1.000000000
## GO:2000814  BP     2  0 1.000000000
## GO:1905053  BP     2  0 1.000000000
## GO:1904172  BP     2  0 1.000000000
## GO:2000334  BP     2  0 1.000000000
## GO:1900159  BP     2  0 1.000000000
## GO:1905492  BP     2  0 1.000000000
## GO:1903281  BP     2  0 1.000000000
## GO:0010615  BP     2  0 1.000000000
## GO:1903244  BP     2  0 1.000000000
## GO:2000724  BP     2  0 1.000000000
## GO:1900210  BP     2  0 1.000000000
## GO:0010652  BP     2  0 1.000000000
## GO:1900039  BP     2  0 1.000000000
## GO:0090035  BP     2  0 1.000000000
## GO:1903646  BP     2  0 1.000000000
## GO:2000340  BP     2  0 1.000000000
## GO:0002876  BP     2  0 1.000000000
## GO:0120158  BP     2  0 1.000000000
## GO:1904028  BP     2  0 1.000000000
## GO:0048697  BP     2  0 1.000000000
## GO:0048694  BP     2  0 1.000000000
## GO:1904343  BP     2  0 1.000000000
## GO:0032723  BP     2  0 1.000000000
## GO:2000854  BP     2  0 1.000000000
## GO:1903852  BP     2  0 1.000000000
## GO:0051343  BP     2  0 1.000000000
## GO:2000707  BP     2  0 1.000000000
## GO:2001150  BP     2  0 1.000000000
## GO:2000880  BP     2  0 1.000000000
## GO:0032470  BP     2  0 1.000000000
## GO:1905956  BP     2  0 1.000000000
## GO:1901076  BP     2  0 1.000000000
## GO:1902568  BP     2  0 1.000000000
## GO:2000424  BP     2  0 1.000000000
## GO:0043311  BP     2  0 1.000000000
## GO:0045645  BP     2  0 1.000000000
## GO:1901189  BP     2  0 1.000000000
## GO:0032812  BP     2  0 1.000000000
## GO:1904446  BP     2  0 1.000000000
## GO:1903905  BP     2  0 1.000000000
## GO:2000771  BP     2  0 1.000000000
## GO:2000866  BP     2  0 1.000000000
## GO:1904434  BP     2  0 1.000000000
## GO:0071812  BP     2  0 1.000000000
## GO:1905938  BP     2  0 1.000000000
## GO:1900168  BP     2  0 1.000000000
## GO:0061646  BP     2  0 1.000000000
## GO:1903788  BP     2  0 1.000000000
## GO:0045819  BP     2  0 1.000000000
## GO:1902728  BP     2  0 1.000000000
## GO:0090082  BP     2  0 1.000000000
## GO:2000473  BP     2  0 1.000000000
## GO:0061870  BP     2  0 1.000000000
## GO:0031453  BP     2  0 1.000000000
## GO:0090108  BP     2  0 1.000000000
## GO:0010983  BP     2  0 1.000000000
## GO:0060450  BP     2  0 1.000000000
## GO:0035332  BP     2  0 1.000000000
## GO:1902466  BP     2  0 1.000000000
## GO:0000416  BP     2  0 1.000000000
## GO:2001162  BP     2  0 1.000000000
## GO:1900111  BP     2  0 1.000000000
## GO:2000620  BP     2  0 1.000000000
## GO:0090265  BP     2  0 1.000000000
## GO:2000558  BP     2  0 1.000000000
## GO:2000522  BP     2  0 1.000000000
## GO:1904325  BP     2  0 1.000000000
## GO:1905704  BP     2  0 1.000000000
## GO:0033626  BP     2  0 1.000000000
## GO:0045368  BP     2  0 1.000000000
## GO:1902216  BP     2  0 1.000000000
## GO:0070105  BP     2  0 1.000000000
## GO:2001111  BP     2  0 1.000000000
## GO:1905581  BP     2  0 1.000000000
## GO:0045716  BP     2  0 1.000000000
## GO:0032805  BP     2  0 1.000000000
## GO:1905458  BP     2  0 1.000000000
## GO:0097214  BP     2  0 1.000000000
## GO:1905167  BP     2  0 1.000000000
## GO:0071642  BP     2  0 1.000000000
## GO:2000448  BP     2  0 1.000000000
## GO:1905303  BP     2  0 1.000000000
## GO:2000256  BP     2  0 1.000000000
## GO:1902437  BP     2  0 1.000000000
## GO:0032765  BP     2  0 1.000000000
## GO:2001178  BP     2  0 1.000000000
## GO:2000568  BP     2  0 1.000000000
## GO:1902462  BP     2  0 1.000000000
## GO:1904685  BP     2  0 1.000000000
## GO:2000594  BP     2  0 1.000000000
## GO:2000627  BP     2  0 1.000000000
## GO:1905618  BP     2  0 1.000000000
## GO:1904151  BP     2  0 1.000000000
## GO:1903033  BP     2  0 1.000000000
## GO:0032425  BP     2  0 1.000000000
## GO:1901860  BP     2  0 1.000000000
## GO:0000962  BP     2  0 1.000000000
## GO:0045977  BP     2  0 1.000000000
## GO:1903490  BP     2  0 1.000000000
## GO:1903438  BP     2  0 1.000000000
## GO:1905505  BP     2  0 1.000000000
## GO:0030887  BP     2  0 1.000000000
## GO:0060545  BP     2  0 1.000000000
## GO:2000768  BP     2  0 1.000000000
## GO:0061075  BP     2  0 1.000000000
## GO:1902913  BP     2  0 1.000000000
## GO:0032901  BP     2  0 1.000000000
## GO:0070965  BP     2  0 1.000000000
## GO:1900224  BP     2  0 1.000000000
## GO:1903997  BP     2  0 1.000000000
## GO:0070434  BP     2  0 1.000000000
## GO:0070426  BP     2  0 1.000000000
## GO:2000878  BP     2  0 1.000000000
## GO:1900195  BP     2  0 1.000000000
## GO:2000277  BP     2  0 1.000000000
## GO:2000376  BP     2  0 1.000000000
## GO:2000830  BP     2  0 1.000000000
## GO:2000170  BP     2  0 1.000000000
## GO:1902310  BP     2  0 1.000000000
## GO:0002660  BP     2  0 1.000000000
## GO:1900241  BP     2  0 1.000000000
## GO:0060697  BP     2  0 1.000000000
## GO:0010747  BP     2  0 1.000000000
## GO:1901731  BP     2  0 1.000000000
## GO:0090362  BP     2  0 1.000000000
## GO:0030862  BP     2  0 1.000000000
## GO:1902269  BP     2  0 1.000000000
## GO:2000872  BP     2  0 1.000000000
## GO:2000777  BP     2  0 1.000000000
## GO:1902524  BP     2  0 1.000000000
## GO:1903006  BP     2  0 1.000000000
## GO:1902499  BP     2  0 1.000000000
## GO:2000541  BP     2  0 1.000000000
## GO:1902530  BP     2  0 1.000000000
## GO:1905552  BP     2  0 1.000000000
## GO:1905171  BP     2  0 1.000000000
## GO:1903923  BP     2  0 1.000000000
## GO:1903615  BP     2  0 1.000000000
## GO:1905602  BP     2  0 1.000000000
## GO:0010845  BP     2  0 1.000000000
## GO:1901082  BP     2  0 1.000000000
## GO:0060265  BP     2  0 1.000000000
## GO:1902868  BP     2  0 1.000000000
## GO:0045872  BP     2  0 1.000000000
## GO:0014718  BP     2  0 1.000000000
## GO:1903518  BP     2  0 1.000000000
## GO:0045870  BP     2  0 1.000000000
## GO:1904206  BP     2  0 1.000000000
## GO:1902724  BP     2  0 1.000000000
## GO:0120058  BP     2  0 1.000000000
## GO:1904674  BP     2  0 1.000000000
## GO:0062029  BP     2  0 1.000000000
## GO:1904237  BP     2  0 1.000000000
## GO:1904231  BP     2  0 1.000000000
## GO:0045887  BP     2  0 1.000000000
## GO:0010808  BP     2  0 1.000000000
## GO:1905663  BP     2  0 1.000000000
## GO:1904884  BP     2  0 1.000000000
## GO:1904744  BP     2  0 1.000000000
## GO:2000845  BP     2  0 1.000000000
## GO:0051885  BP     2  0 1.000000000
## GO:0002654  BP     2  0 1.000000000
## GO:2001037  BP     2  0 1.000000000
## GO:0061402  BP     2  0 1.000000000
## GO:0071931  BP     2  0 1.000000000
## GO:1904437  BP     2  0 1.000000000
## GO:0032915  BP     2  0 1.000000000
## GO:0032916  BP     2  0 1.000000000
## GO:2001203  BP     2  0 1.000000000
## GO:0045994  BP     2  0 1.000000000
## GO:0071264  BP     2  0 1.000000000
## GO:2000309  BP     2  0 1.000000000
## GO:2000078  BP     2  0 1.000000000
## GO:1904692  BP     2  0 1.000000000
## GO:2000397  BP     2  0 1.000000000
## GO:1904695  BP     2  0 1.000000000
## GO:0070564  BP     2  0 1.000000000
## GO:1902943  BP     2  0 1.000000000
## GO:0070352  BP     2  0 1.000000000
## GO:1903691  BP     2  0 1.000000000
## GO:0035120  BP     2  0 1.000000000
## GO:0035127  BP     2  0 1.000000000
## GO:0072166  BP     2  0 1.000000000
## GO:0021784  BP     2  0 1.000000000
## GO:0030328  BP     2  0 1.000000000
## GO:0030329  BP     2  0 1.000000000
## GO:0048160  BP     2  0 1.000000000
## GO:0060516  BP     2  0 1.000000000
## GO:0007538  BP     2  0 1.000000000
## GO:0007542  BP     2  0 1.000000000
## GO:0021740  BP     2  0 1.000000000
## GO:0003342  BP     2  0 1.000000000
## GO:0038161  BP     2  0 1.000000000
## GO:0006433  BP     2  0 1.000000000
## GO:0039003  BP     2  0 1.000000000
## GO:0039020  BP     2  0 1.000000000
## GO:0072114  BP     2  0 1.000000000
## GO:0019542  BP     2  0 1.000000000
## GO:0019543  BP     2  0 1.000000000
## GO:0018117  BP     2  0 1.000000000
## GO:0016598  BP     2  0 1.000000000
## GO:0033577  BP     2  0 1.000000000
## GO:1990179  BP     2  0 1.000000000
## GO:0072741  BP     2  0 1.000000000
## GO:0097355  BP     2  0 1.000000000
## GO:1904106  BP     2  0 1.000000000
## GO:1904498  BP     2  0 1.000000000
## GO:0036228  BP     2  0 1.000000000
## GO:1905793  BP     2  0 1.000000000
## GO:1905719  BP     2  0 1.000000000
## GO:1905161  BP     2  0 1.000000000
## GO:1903778  BP     2  0 1.000000000
## GO:0018175  BP     2  0 1.000000000
## GO:1900756  BP     2  0 1.000000000
## GO:0070560  BP     2  0 1.000000000
## GO:0061740  BP     2  0 1.000000000
## GO:0044861  BP     2  0 1.000000000
## GO:0006782  BP     2  0 1.000000000
## GO:0072272  BP     2  0 1.000000000
## GO:0042560  BP     2  0 1.000000000
## GO:0003193  BP     2  0 1.000000000
## GO:0060577  BP     2  0 1.000000000
## GO:0046124  BP     2  0 1.000000000
## GO:0009216  BP     2  0 1.000000000
## GO:0009153  BP     2  0 1.000000000
## GO:0006863  BP     2  0 1.000000000
## GO:0015860  BP     2  0 1.000000000
## GO:0015950  BP     2  0 1.000000000
## GO:0034036  BP     2  0 1.000000000
## GO:0015951  BP     2  0 1.000000000
## GO:0021852  BP     2  0 1.000000000
## GO:0042823  BP     2  0 1.000000000
## GO:0009213  BP     2  0 1.000000000
## GO:0009149  BP     2  0 1.000000000
## GO:1990519  BP     2  0 1.000000000
## GO:0006864  BP     2  0 1.000000000
## GO:0070476  BP     2  0 1.000000000
## GO:0006407  BP     2  0 1.000000000
## GO:0021933  BP     2  0 1.000000000
## GO:0060816  BP     2  0 1.000000000
## GO:0036298  BP     2  0 1.000000000
## GO:0034402  BP     2  0 1.000000000
## GO:0071955  BP     2  0 1.000000000
## GO:2000537  BP     2  0 1.000000000
## GO:0002661  BP     2  0 1.000000000
## GO:1900279  BP     2  0 1.000000000
## GO:2000452  BP     2  0 1.000000000
## GO:1902544  BP     2  0 1.000000000
## GO:1903775  BP     2  0 1.000000000
## GO:1902595  BP     2  0 1.000000000
## GO:0060382  BP     2  0 1.000000000
## GO:1900234  BP     2  0 1.000000000
## GO:0034127  BP     2  0 1.000000000
## GO:1902366  BP     2  0 1.000000000
## GO:0098907  BP     2  0 1.000000000
## GO:2000638  BP     2  0 1.000000000
## GO:0002625  BP     2  0 1.000000000
## GO:2000569  BP     2  0 1.000000000
## GO:0032679  BP     2  0 1.000000000
## GO:2000053  BP     2  0 1.000000000
## GO:1905424  BP     2  0 1.000000000
## GO:1901585  BP     2  0 1.000000000
## GO:1904529  BP     2  0 1.000000000
## GO:1903918  BP     2  0 1.000000000
## GO:1905402  BP     2  0 1.000000000
## GO:2000011  BP     2  0 1.000000000
## GO:0110061  BP     2  0 1.000000000
## GO:2000742  BP     2  0 1.000000000
## GO:2000387  BP     2  0 1.000000000
## GO:1900214  BP     2  0 1.000000000
## GO:1900217  BP     2  0 1.000000000
## GO:2000458  BP     2  0 1.000000000
## GO:1902423  BP     2  0 1.000000000
## GO:1904092  BP     2  0 1.000000000
## GO:1905051  BP     2  0 1.000000000
## GO:2000332  BP     2  0 1.000000000
## GO:1900154  BP     2  0 1.000000000
## GO:0031548  BP     2  0 1.000000000
## GO:0070347  BP     2  0 1.000000000
## GO:0098905  BP     2  0 1.000000000
## GO:1905912  BP     2  0 1.000000000
## GO:0051040  BP     2  0 1.000000000
## GO:1901295  BP     2  0 1.000000000
## GO:2000079  BP     2  0 1.000000000
## GO:1905066  BP     2  0 1.000000000
## GO:2000043  BP     2  0 1.000000000
## GO:1901219  BP     2  0 1.000000000
## GO:1905178  BP     2  0 1.000000000
## GO:1904412  BP     2  0 1.000000000
## GO:1900208  BP     2  0 1.000000000
## GO:0061344  BP     2  0 1.000000000
## GO:0010645  BP     2  0 1.000000000
## GO:1904933  BP     2  0 1.000000000
## GO:0060723  BP     2  0 1.000000000
## GO:2000282  BP     2  0 1.000000000
## GO:2001029  BP     2  0 1.000000000
## GO:0072364  BP     2  0 1.000000000
## GO:0090034  BP     2  0 1.000000000
## GO:0010848  BP     2  0 1.000000000
## GO:0031938  BP     2  0 1.000000000
## GO:0002880  BP     2  0 1.000000000
## GO:0090320  BP     2  0 1.000000000
## GO:0033341  BP     2  0 1.000000000
## GO:0048693  BP     2  0 1.000000000
## GO:1903814  BP     2  0 1.000000000
## GO:1904341  BP     2  0 1.000000000
## GO:0030451  BP     2  0 1.000000000
## GO:0030450  BP     2  0 1.000000000
## GO:0001868  BP     2  0 1.000000000
## GO:0032643  BP     2  0 1.000000000
## GO:1903433  BP     2  0 1.000000000
## GO:1905407  BP     2  0 1.000000000
## GO:1903850  BP     2  0 1.000000000
## GO:1902159  BP     2  0 1.000000000
## GO:2000292  BP     2  0 1.000000000
## GO:2000547  BP     2  0 1.000000000
## GO:2001148  BP     2  0 1.000000000
## GO:0090089  BP     2  0 1.000000000
## GO:0060733  BP     2  0 1.000000000
## GO:1902954  BP     2  0 1.000000000
## GO:2000124  BP     2  0 1.000000000
## GO:0060734  BP     2  0 1.000000000
## GO:1903381  BP     2  0 1.000000000
## GO:1904978  BP     2  0 1.000000000
## GO:1904470  BP     2  0 1.000000000
## GO:2000422  BP     2  0 1.000000000
## GO:0045643  BP     2  0 1.000000000
## GO:0034118  BP     2  0 1.000000000
## GO:2000769  BP     2  0 1.000000000
## GO:0014853  BP     2  0 1.000000000
## GO:1903015  BP     2  0 1.000000000
## GO:0001928  BP     2  0 1.000000000
## GO:1905777  BP     2  0 1.000000000
## GO:0033082  BP     2  0 1.000000000
## GO:0042478  BP     2  0 1.000000000
## GO:0048073  BP     2  0 1.000000000
## GO:1904649  BP     2  0 1.000000000
## GO:1904432  BP     2  0 1.000000000
## GO:1904438  BP     2  0 1.000000000
## GO:0120060  BP     2  0 1.000000000
## GO:1903639  BP     2  0 1.000000000
## GO:1900166  BP     2  0 1.000000000
## GO:1905123  BP     2  0 1.000000000
## GO:2000485  BP     2  0 1.000000000
## GO:0072363  BP     2  0 1.000000000
## GO:1903547  BP     2  0 1.000000000
## GO:0071336  BP     2  0 1.000000000
## GO:2000471  BP     2  0 1.000000000
## GO:0070453  BP     2  0 1.000000000
## GO:0061873  BP     2  0 1.000000000
## GO:0061869  BP     2  0 1.000000000
## GO:0031445  BP     2  0 1.000000000
## GO:1901314  BP     2  0 1.000000000
## GO:1902464  BP     2  0 1.000000000
## GO:2001253  BP     2  0 1.000000000
## GO:1904173  BP     2  0 1.000000000
## GO:0060629  BP     2  0 1.000000000
## GO:1903385  BP     2  0 1.000000000
## GO:2000295  BP     2  0 1.000000000
## GO:1903383  BP     2  0 1.000000000
## GO:0090264  BP     2  0 1.000000000
## GO:2000557  BP     2  0 1.000000000
## GO:1904323  BP     2  0 1.000000000
## GO:0045366  BP     2  0 1.000000000
## GO:0060730  BP     2  0 1.000000000
## GO:1905799  BP     2  0 1.000000000
## GO:1900390  BP     2  0 1.000000000
## GO:1902822  BP     2  0 1.000000000
## GO:0048378  BP     2  0 1.000000000
## GO:2001109  BP     2  0 1.000000000
## GO:1904997  BP     2  0 1.000000000
## GO:0072368  BP     2  0 1.000000000
## GO:0072369  BP     2  0 1.000000000
## GO:0110112  BP     2  0 1.000000000
## GO:0060587  BP     2  0 1.000000000
## GO:0034442  BP     2  0 1.000000000
## GO:0050828  BP     2  0 1.000000000
## GO:0140212  BP     2  0 1.000000000
## GO:1905595  BP     2  0 1.000000000
## GO:1901249  BP     2  0 1.000000000
## GO:1990186  BP     2  0 1.000000000
## GO:2000815  BP     2  0 1.000000000
## GO:1905301  BP     2  0 1.000000000
## GO:1904907  BP     2  0 1.000000000
## GO:2001176  BP     2  0 1.000000000
## GO:1903056  BP     2  0 1.000000000
## GO:1902908  BP     2  0 1.000000000
## GO:2000567  BP     2  0 1.000000000
## GO:0072304  BP     2  0 1.000000000
## GO:2000790  BP     2  0 1.000000000
## GO:1902460  BP     2  0 1.000000000
## GO:1902962  BP     2  0 1.000000000
## GO:2000592  BP     2  0 1.000000000
## GO:0072301  BP     2  0 1.000000000
## GO:0035566  BP     2  0 1.000000000
## GO:1905616  BP     2  0 1.000000000
## GO:1904149  BP     2  0 1.000000000
## GO:1903031  BP     2  0 1.000000000
## GO:1905706  BP     2  0 1.000000000
## GO:1904289  BP     2  0 1.000000000
## GO:1903436  BP     2  0 1.000000000
## GO:0040030  BP     2  0 1.000000000
## GO:1905503  BP     2  0 1.000000000
## GO:0032972  BP     2  0 1.000000000
## GO:1905453  BP     2  0 1.000000000
## GO:1904328  BP     2  0 1.000000000
## GO:0043519  BP     2  0 1.000000000
## GO:1902996  BP     2  0 1.000000000
## GO:0070950  BP     2  0 1.000000000
## GO:0070953  BP     2  0 1.000000000
## GO:0070951  BP     2  0 1.000000000
## GO:1905258  BP     2  0 1.000000000
## GO:0051621  BP     2  0 1.000000000
## GO:1903353  BP     2  0 1.000000000
## GO:1901329  BP     2  0 1.000000000
## GO:0090088  BP     2  0 1.000000000
## GO:2000226  BP     2  0 1.000000000
## GO:1902276  BP     2  0 1.000000000
## GO:2000229  BP     2  0 1.000000000
## GO:0002658  BP     2  0 1.000000000
## GO:1900063  BP     2  0 1.000000000
## GO:0010899  BP     2  0 1.000000000
## GO:1901407  BP     2  0 1.000000000
## GO:0034444  BP     2  0 1.000000000
## GO:1904245  BP     2  0 1.000000000
## GO:1905696  BP     2  0 1.000000000
## GO:1902232  BP     2  0 1.000000000
## GO:0090065  BP     2  0 1.000000000
## GO:1903004  BP     2  0 1.000000000
## GO:2000539  BP     2  0 1.000000000
## GO:1901093  BP     2  0 1.000000000
## GO:1902528  BP     2  0 1.000000000
## GO:1905871  BP     2  0 1.000000000
## GO:1903567  BP     2  0 1.000000000
## GO:1905550  BP     2  0 1.000000000
## GO:0150031  BP     2  0 1.000000000
## GO:1905169  BP     2  0 1.000000000
## GO:1903921  BP     2  0 1.000000000
## GO:1901090  BP     2  0 1.000000000
## GO:0010520  BP     2  0 1.000000000
## GO:1901080  BP     2  0 1.000000000
## GO:2001228  BP     2  0 1.000000000
## GO:1900052  BP     2  0 1.000000000
## GO:2000156  BP     2  0 1.000000000
## GO:0022400  BP     2  0 1.000000000
## GO:1902442  BP     2  0 1.000000000
## GO:1904569  BP     2  0 1.000000000
## GO:1905627  BP     2  0 1.000000000
## GO:1903516  BP     2  0 1.000000000
## GO:1900190  BP     2  0 1.000000000
## GO:1900228  BP     2  0 1.000000000
## GO:0100001  BP     2  0 1.000000000
## GO:0014862  BP     2  0 1.000000000
## GO:0014852  BP     2  0 1.000000000
## GO:0014809  BP     2  0 1.000000000
## GO:0031449  BP     2  0 1.000000000
## GO:0120057  BP     2  0 1.000000000
## GO:1903406  BP     2  0 1.000000000
## GO:1902490  BP     2  0 1.000000000
## GO:1902068  BP     2  0 1.000000000
## GO:0060721  BP     2  0 1.000000000
## GO:1904235  BP     2  0 1.000000000
## GO:1904229  BP     2  0 1.000000000
## GO:0099148  BP     2  0 1.000000000
## GO:0003050  BP     2  0 1.000000000
## GO:0001980  BP     2  0 1.000000000
## GO:1904882  BP     2  0 1.000000000
## GO:1905838  BP     2  0 1.000000000
## GO:1901463  BP     2  0 1.000000000
## GO:0086092  BP     2  0 1.000000000
## GO:0014728  BP     2  0 1.000000000
## GO:2000612  BP     2  0 1.000000000
## GO:0002649  BP     2  0 1.000000000
## GO:2001035  BP     2  0 1.000000000
## GO:0010767  BP     2  0 1.000000000
## GO:0061396  BP     2  0 1.000000000
## GO:0060994  BP     2  0 1.000000000
## GO:0000117  BP     2  0 1.000000000
## GO:0060849  BP     2  0 1.000000000
## GO:0051037  BP     2  0 1.000000000
## GO:0060796  BP     2  0 1.000000000
## GO:1904435  BP     2  0 1.000000000
## GO:0140244  BP     2  0 1.000000000
## GO:0099577  BP     2  0 1.000000000
## GO:0006447  BP     2  0 1.000000000
## GO:0071262  BP     2  0 1.000000000
## GO:0070894  BP     2  0 1.000000000
## GO:2000307  BP     2  0 1.000000000
## GO:0010795  BP     2  0 1.000000000
## GO:2000395  BP     2  0 1.000000000
## GO:1905174  BP     2  0 1.000000000
## GO:1901738  BP     2  0 1.000000000
## GO:1902941  BP     2  0 1.000000000
## GO:1903760  BP     2  0 1.000000000
## GO:0071580  BP     2  0 1.000000000
## GO:0090076  BP     2  0 1.000000000
## GO:0072141  BP     2  0 1.000000000
## GO:0072054  BP     2  0 1.000000000
## GO:0036359  BP     2  0 1.000000000
## GO:0097017  BP     2  0 1.000000000
## GO:0097254  BP     2  0 1.000000000
## GO:0071140  BP     2  0 1.000000000
## GO:0071139  BP     2  0 1.000000000
## GO:0045728  BP     2  0 1.000000000
## GO:1904612  BP     2  0 1.000000000
## GO:1903576  BP     2  0 1.000000000
## GO:0010044  BP     2  0 1.000000000
## GO:0072739  BP     2  0 1.000000000
## GO:0034059  BP     2  0 1.000000000
## GO:1903412  BP     2  0 1.000000000
## GO:1904975  BP     2  0 1.000000000
## GO:0010037  BP     2  0 1.000000000
## GO:0052565  BP     2  0 1.000000000
## GO:0052551  BP     2  0 1.000000000
## GO:0072737  BP     2  0 1.000000000
## GO:0034285  BP     2  0 1.000000000
## GO:0072720  BP     2  0 1.000000000
## GO:1990784  BP     2  0 1.000000000
## GO:0036017  BP     2  0 1.000000000
## GO:1902617  BP     2  0 1.000000000
## GO:0033595  BP     2  0 1.000000000
## GO:1905429  BP     2  0 1.000000000
## GO:1903416  BP     2  0 1.000000000
## GO:0009644  BP     2  0 1.000000000
## GO:0033594  BP     2  0 1.000000000
## GO:0071105  BP     2  0 1.000000000
## GO:0098758  BP     2  0 1.000000000
## GO:0071104  BP     2  0 1.000000000
## GO:1990641  BP     2  0 1.000000000
## GO:0010041  BP     2  0 1.000000000
## GO:0009753  BP     2  0 1.000000000
## GO:1901344  BP     2  0 1.000000000
## GO:0006982  BP     2  0 1.000000000
## GO:0034699  BP     2  0 1.000000000
## GO:0051597  BP     2  0 1.000000000
## GO:1904008  BP     2  0 1.000000000
## GO:0071505  BP     2  0 1.000000000
## GO:0010045  BP     2  0 1.000000000
## GO:0034201  BP     2  0 1.000000000
## GO:0080184  BP     2  0 1.000000000
## GO:1990911  BP     2  0 1.000000000
## GO:0009744  BP     2  0 1.000000000
## GO:0009608  BP     2  0 1.000000000
## GO:0009609  BP     2  0 1.000000000
## GO:1904772  BP     2  0 1.000000000
## GO:1904481  BP     2  0 1.000000000
## GO:1904116  BP     2  0 1.000000000
## GO:0033189  BP     2  0 1.000000000
## GO:0033197  BP     2  0 1.000000000
## GO:0120127  BP     2  0 1.000000000
## GO:0097474  BP     2  0 1.000000000
## GO:0099642  BP     2  0 1.000000000
## GO:0099082  BP     2  0 1.000000000
## GO:0098924  BP     2  0 1.000000000
## GO:0098923  BP     2  0 1.000000000
## GO:0035526  BP     2  0 1.000000000
## GO:0021568  BP     2  0 1.000000000
## GO:0021658  BP     2  0 1.000000000
## GO:0043179  BP     2  0 1.000000000
## GO:0032218  BP     2  0 1.000000000
## GO:0009203  BP     2  0 1.000000000
## GO:1990116  BP     2  0 1.000000000
## GO:0060458  BP     2  0 1.000000000
## GO:1901052  BP     2  0 1.000000000
## GO:0001949  BP     2  0 1.000000000
## GO:0016260  BP     2  0 1.000000000
## GO:1900220  BP     2  0 1.000000000
## GO:0060876  BP     2  0 1.000000000
## GO:0061107  BP     2  0 1.000000000
## GO:0050893  BP     2  0 1.000000000
## GO:0032185  BP     2  0 1.000000000
## GO:0031106  BP     2  0 1.000000000
## GO:0003343  BP     2  0 1.000000000
## GO:0006587  BP     2  0 1.000000000
## GO:0006434  BP     2  0 1.000000000
## GO:0016107  BP     2  0 1.000000000
## GO:0015891  BP     2  0 1.000000000
## GO:0007172  BP     2  0 1.000000000
## GO:0072434  BP     2  0 1.000000000
## GO:0044010  BP     2  0 1.000000000
## GO:0044407  BP     2  0 1.000000000
## GO:0014732  BP     2  0 1.000000000
## GO:0120055  BP     2  0 1.000000000
## GO:0051563  BP     2  0 1.000000000
## GO:0014805  BP     2  0 1.000000000
## GO:0061015  BP     2  0 1.000000000
## GO:0071050  BP     2  0 1.000000000
## GO:0034247  BP     2  0 1.000000000
## GO:0071718  BP     2  0 1.000000000
## GO:0018993  BP     2  0 1.000000000
## GO:0060133  BP     2  0 1.000000000
## GO:0006060  BP     2  0 1.000000000
## GO:0046203  BP     2  0 1.000000000
## GO:0046511  BP     2  0 1.000000000
## GO:0006668  BP     2  0 1.000000000
## GO:0099039  BP     2  0 1.000000000
## GO:0007057  BP     2  0 1.000000000
## GO:0051230  BP     2  0 1.000000000
## GO:0030474  BP     2  0 1.000000000
## GO:0051300  BP     2  0 1.000000000
## GO:0000390  BP     2  0 1.000000000
## GO:0060529  BP     2  0 1.000000000
## GO:0048867  BP     2  0 1.000000000
## GO:0002223  BP     2  0 1.000000000
## GO:0061102  BP     2  0 1.000000000
## GO:0120063  BP     2  0 1.000000000
## GO:0097532  BP     2  0 1.000000000
## GO:0060163  BP     2  0 1.000000000
## GO:0021762  BP     2  0 1.000000000
## GO:0021539  BP     2  0 1.000000000
## GO:0005986  BP     2  0 1.000000000
## GO:0005985  BP     2  0 1.000000000
## GO:0021718  BP     2  0 1.000000000
## GO:0021722  BP     2  0 1.000000000
## GO:0019050  BP     2  0 1.000000000
## GO:0060370  BP     2  0 1.000000000
## GO:0036269  BP     2  0 1.000000000
## GO:0097401  BP     2  0 1.000000000
## GO:0070194  BP     2  0 1.000000000
## GO:0060715  BP     2  0 1.000000000
## GO:0002940  BP     2  0 1.000000000
## GO:0016031  BP     2  0 1.000000000
## GO:0070329  BP     2  0 1.000000000
## GO:0002100  BP     2  0 1.000000000
## GO:0002101  BP     2  0 1.000000000
## GO:1903699  BP     2  0 1.000000000
## GO:0061193  BP     2  0 1.000000000
## GO:1904868  BP     2  0 1.000000000
## GO:0031627  BP     2  0 1.000000000
## GO:0046247  BP     2  0 1.000000000
## GO:0042214  BP     2  0 1.000000000
## GO:0002124  BP     2  0 1.000000000
## GO:0046900  BP     2  0 1.000000000
## GO:0042357  BP     2  0 1.000000000
## GO:0030974  BP     2  0 1.000000000
## GO:0071934  BP     2  0 1.000000000
## GO:0072023  BP     2  0 1.000000000
## GO:0071594  BP     2  0 1.000000000
## GO:0097536  BP     2  0 1.000000000
## GO:0042404  BP     2  0 1.000000000
## GO:0072573  BP     2  0 1.000000000
## GO:0034178  BP     2  0 1.000000000
## GO:0034146  BP     2  0 1.000000000
## GO:0035981  BP     2  0 1.000000000
## GO:0099551  BP     2  0 1.000000000
## GO:0099555  BP     2  0 1.000000000
## GO:0099554  BP     2  0 1.000000000
## GO:0099557  BP     2  0 1.000000000
## GO:0070904  BP     2  0 1.000000000
## GO:0035377  BP     2  0 1.000000000
## GO:0036364  BP     2  0 1.000000000
## GO:0014886  BP     2  0 1.000000000
## GO:0006452  BP     2  0 1.000000000
## GO:0070893  BP     2  0 1.000000000
## GO:0005991  BP     2  0 1.000000000
## GO:0021730  BP     2  0 1.000000000
## GO:0036509  BP     2  0 1.000000000
## GO:0035443  BP     2  0 1.000000000
## GO:0001830  BP     2  0 1.000000000
## GO:0019442  BP     2  0 1.000000000
## GO:0006436  BP     2  0 1.000000000
## GO:0072535  BP     2  0 1.000000000
## GO:0006437  BP     2  0 1.000000000
## GO:0007624  BP     2  0 1.000000000
## GO:0061027  BP     2  0 1.000000000
## GO:0036304  BP     2  0 1.000000000
## GO:0006212  BP     2  0 1.000000000
## GO:0034418  BP     2  0 1.000000000
## GO:0097274  BP     2  0 1.000000000
## GO:0015862  BP     2  0 1.000000000
## GO:0038195  BP     2  0 1.000000000
## GO:0032796  BP     2  0 1.000000000
## GO:0046502  BP     2  0 1.000000000
## GO:0035847  BP     2  0 1.000000000
## GO:0097576  BP     2  0 1.000000000
## GO:0042144  BP     2  0 1.000000000
## GO:0021644  BP     2  0 1.000000000
## GO:0009099  BP     2  0 1.000000000
## GO:0006574  BP     2  0 1.000000000
## GO:0006438  BP     2  0 1.000000000
## GO:0036324  BP     2  0 1.000000000
## GO:1990936  BP     2  0 1.000000000
## GO:0030103  BP     2  0 1.000000000
## GO:0150064  BP     2  0 1.000000000
## GO:0036111  BP     2  0 1.000000000
## GO:0048203  BP     2  0 1.000000000
## GO:0099044  BP     2  0 1.000000000
## GO:0021750  BP     2  0 1.000000000
## GO:0060118  BP     2  0 1.000000000
## GO:0060114  BP     2  0 1.000000000
## GO:0021649  BP     2  0 1.000000000
## GO:0019074  BP     2  0 1.000000000
## GO:0019072  BP     2  0 1.000000000
## GO:0075732  BP     2  0 1.000000000
## GO:0019075  BP     2  0 1.000000000
## GO:0042819  BP     2  0 1.000000000
## GO:0042369  BP     2  0 1.000000000
## GO:0042371  BP     2  0 1.000000000
## GO:0042377  BP     2  0 1.000000000
## GO:0042365  BP     2  0 1.000000000
## GO:0016122  BP     2  0 1.000000000
## GO:0099180  BP     2  0 1.000000000
## GO:0045186  BP     2  0 1.000000000
## GO:0010070  BP     2  0 1.000000000
## GO:0007352  BP     2  0 1.000000000
## GO:0070625  BP     2  0 1.000000000
## GO:0044208  BP     3  0 1.000000000
## GO:0034627  BP     3  0 1.000000000
## GO:0034354  BP     3  0 1.000000000
## GO:0006211  BP     3  0 1.000000000
## GO:0019857  BP     3  0 1.000000000
## GO:0006172  BP     3  0 1.000000000
## GO:0036500  BP     3  0 1.000000000
## GO:0086053  BP     3  0 1.000000000
## GO:0002344  BP     3  0 1.000000000
## GO:0002514  BP     3  0 1.000000000
## GO:0002337  BP     3  0 1.000000000
## GO:0003130  BP     3  0 1.000000000
## GO:0090116  BP     3  0 1.000000000
## GO:0035609  BP     3  0 1.000000000
## GO:0006481  BP     3  0 1.000000000
## GO:0035783  BP     3  0 1.000000000
## GO:0046416  BP     3  0 1.000000000
## GO:0006014  BP     3  0 1.000000000
## GO:0042942  BP     3  0 1.000000000
## GO:0042732  BP     3  0 1.000000000
## GO:0072069  BP     3  0 1.000000000
## GO:0030592  BP     3  0 1.000000000
## GO:0070383  BP     3  0 1.000000000
## GO:0010424  BP     3  0 1.000000000
## GO:0000733  BP     3  0 1.000000000
## GO:0110025  BP     3  0 1.000000000
## GO:0038128  BP     3  0 1.000000000
## GO:0036337  BP     3  0 1.000000000
## GO:0008315  BP     3  0 1.000000000
## GO:0042350  BP     3  0 1.000000000
## GO:0009298  BP     3  0 1.000000000
## GO:0043000  BP     3  0 1.000000000
## GO:0048210  BP     3  0 1.000000000
## GO:0042851  BP     3  0 1.000000000
## GO:0019448  BP     3  0 1.000000000
## GO:1903401  BP     3  0 1.000000000
## GO:1902022  BP     3  0 1.000000000
## GO:0015825  BP     3  0 1.000000000
## GO:0006046  BP     3  0 1.000000000
## GO:0018002  BP     3  0 1.000000000
## GO:0019677  BP     3  0 1.000000000
## GO:0051088  BP     3  0 1.000000000
## GO:0061146  BP     3  0 1.000000000
## GO:0006404  BP     3  0 1.000000000
## GO:0031291  BP     3  0 1.000000000
## GO:0035494  BP     3  0 1.000000000
## GO:0070489  BP     3  0 1.000000000
## GO:0035669  BP     3  0 1.000000000
## GO:0035668  BP     3  0 1.000000000
## GO:0034473  BP     3  0 1.000000000
## GO:0034476  BP     3  0 1.000000000
## GO:0006222  BP     3  0 1.000000000
## GO:0046049  BP     3  0 1.000000000
## GO:0038086  BP     3  0 1.000000000
## GO:0044571  BP     3  0 1.000000000
## GO:0097296  BP     3  0 1.000000000
## GO:0034199  BP     3  0 1.000000000
## GO:0090716  BP     3  0 1.000000000
## GO:0046084  BP     3  0 1.000000000
## GO:0046083  BP     3  0 1.000000000
## GO:0031635  BP     3  0 1.000000000
## GO:0046222  BP     3  0 1.000000000
## GO:0007571  BP     3  0 1.000000000
## GO:0001306  BP     3  0 1.000000000
## GO:0006524  BP     3  0 1.000000000
## GO:0006419  BP     3  0 1.000000000
## GO:0019405  BP     3  0 1.000000000
## GO:0061144  BP     3  0 1.000000000
## GO:0051933  BP     3  0 1.000000000
## GO:0019676  BP     3  0 1.000000000
## GO:0036394  BP     3  0 1.000000000
## GO:0003051  BP     3  0 1.000000000
## GO:0061713  BP     3  0 1.000000000
## GO:0098971  BP     3  0 1.000000000
## GO:0002780  BP     3  0 1.000000000
## GO:0002485  BP     3  0 1.000000000
## GO:0002481  BP     3  0 1.000000000
## GO:0002777  BP     3  0 1.000000000
## GO:0035887  BP     3  0 1.000000000
## GO:1902263  BP     3  0 1.000000000
## GO:0003275  BP     3  0 1.000000000
## GO:0000053  BP     3  0 1.000000000
## GO:0006420  BP     3  0 1.000000000
## GO:0009073  BP     3  0 1.000000000
## GO:0061975  BP     3  0 1.000000000
## GO:0006421  BP     3  0 1.000000000
## GO:0006532  BP     3  0 1.000000000
## GO:0006533  BP     3  0 1.000000000
## GO:0055014  BP     3  0 1.000000000
## GO:0055011  BP     3  0 1.000000000
## GO:0003162  BP     3  0 1.000000000
## GO:0009852  BP     3  0 1.000000000
## GO:0009850  BP     3  0 1.000000000
## GO:0051832  BP     3  0 1.000000000
## GO:0044413  BP     3  0 1.000000000
## GO:0048320  BP     3  0 1.000000000
## GO:1904158  BP     3  0 1.000000000
## GO:0001983  BP     3  0 1.000000000
## GO:0150020  BP     3  0 1.000000000
## GO:0150018  BP     3  0 1.000000000
## GO:0150019  BP     3  0 1.000000000
## GO:0034769  BP     3  0 1.000000000
## GO:0002276  BP     3  0 1.000000000
## GO:0061366  BP     3  0 1.000000000
## GO:0061368  BP     3  0 1.000000000
## GO:0043366  BP     3  0 1.000000000
## GO:0018879  BP     3  0 1.000000000
## GO:0007597  BP     3  0 1.000000000
## GO:1990523  BP     3  0 1.000000000
## GO:0035284  BP     3  0 1.000000000
## GO:0003360  BP     3  0 1.000000000
## GO:0015803  BP     3  0 1.000000000
## GO:0014707  BP     3  0 1.000000000
## GO:0060435  BP     3  0 1.000000000
## GO:0036378  BP     3  0 1.000000000
## GO:0007161  BP     3  0 1.000000000
## GO:0061317  BP     3  0 1.000000000
## GO:1904954  BP     3  0 1.000000000
## GO:0044339  BP     3  0 1.000000000
## GO:0060912  BP     3  0 1.000000000
## GO:0110021  BP     3  0 1.000000000
## GO:0071691  BP     3  0 1.000000000
## GO:0003213  BP     3  0 1.000000000
## GO:0045329  BP     3  0 1.000000000
## GO:0019254  BP     3  0 1.000000000
## GO:0016116  BP     3  0 1.000000000
## GO:0010643  BP     3  0 1.000000000
## GO:0060184  BP     3  0 1.000000000
## GO:0051728  BP     3  0 1.000000000
## GO:0090679  BP     3  0 1.000000000
## GO:0060722  BP     3  0 1.000000000
## GO:0003249  BP     3  0 1.000000000
## GO:0002752  BP     3  0 1.000000000
## GO:0070458  BP     3  0 1.000000000
## GO:0070370  BP     3  0 1.000000000
## GO:0060154  BP     3  0 1.000000000
## GO:1904017  BP     3  0 1.000000000
## GO:0071492  BP     3  0 1.000000000
## GO:0072717  BP     3  0 1.000000000
## GO:1903843  BP     3  0 1.000000000
## GO:0071314  BP     3  0 1.000000000
## GO:0071332  BP     3  0 1.000000000
## GO:1904881  BP     3  0 1.000000000
## GO:0035963  BP     3  0 1.000000000
## GO:0071317  BP     3  0 1.000000000
## GO:0071288  BP     3  0 1.000000000
## GO:0071799  BP     3  0 1.000000000
## GO:0072734  BP     3  0 1.000000000
## GO:1904579  BP     3  0 1.000000000
## GO:0071727  BP     3  0 1.000000000
## GO:0071462  BP     3  0 1.000000000
## GO:0032289  BP     3  0 1.000000000
## GO:0035283  BP     3  0 1.000000000
## GO:0021699  BP     3  0 1.000000000
## GO:0021679  BP     3  0 1.000000000
## GO:0021824  BP     3  0 1.000000000
## GO:0021823  BP     3  0 1.000000000
## GO:0072566  BP     3  0 1.000000000
## GO:1902488  BP     3  0 1.000000000
## GO:1990705  BP     3  0 1.000000000
## GO:0044725  BP     3  0 1.000000000
## GO:0030702  BP     3  0 1.000000000
## GO:0031048  BP     3  0 1.000000000
## GO:0034371  BP     3  0 1.000000000
## GO:0060086  BP     3  0 1.000000000
## GO:1905224  BP     3  0 1.000000000
## GO:0000448  BP     3  0 1.000000000
## GO:0035844  BP     3  0 1.000000000
## GO:0045163  BP     3  0 1.000000000
## GO:0043686  BP     3  0 1.000000000
## GO:0009631  BP     3  0 1.000000000
## GO:0021898  BP     3  0 1.000000000
## GO:0150062  BP     3  0 1.000000000
## GO:0045054  BP     3  0 1.000000000
## GO:0060003  BP     3  0 1.000000000
## GO:0070268  BP     3  0 1.000000000
## GO:0060128  BP     3  0 1.000000000
## GO:0019371  BP     3  0 1.000000000
## GO:0019344  BP     3  0 1.000000000
## GO:0009093  BP     3  0 1.000000000
## GO:0002184  BP     3  0 1.000000000
## GO:0046061  BP     3  0 1.000000000
## GO:0046066  BP     3  0 1.000000000
## GO:0006235  BP     3  0 1.000000000
## GO:0046075  BP     3  0 1.000000000
## GO:0006227  BP     3  0 1.000000000
## GO:0046077  BP     3  0 1.000000000
## GO:0006226  BP     3  0 1.000000000
## GO:0030421  BP     3  0 1.000000000
## GO:0002357  BP     3  0 1.000000000
## GO:0035993  BP     3  0 1.000000000
## GO:0031104  BP     3  0 1.000000000
## GO:0097026  BP     3  0 1.000000000
## GO:0036145  BP     3  0 1.000000000
## GO:1990502  BP     3  0 1.000000000
## GO:0030208  BP     3  0 1.000000000
## GO:0070340  BP     3  0 1.000000000
## GO:0009730  BP     3  0 1.000000000
## GO:0050968  BP     3  0 1.000000000
## GO:0009726  BP     3  0 1.000000000
## GO:0051594  BP     3  0 1.000000000
## GO:0009732  BP     3  0 1.000000000
## GO:0050976  BP     3  0 1.000000000
## GO:0034287  BP     3  0 1.000000000
## GO:0003032  BP     3  0 1.000000000
## GO:0051410  BP     3  0 1.000000000
## GO:0046544  BP     3  0 1.000000000
## GO:0015960  BP     3  0 1.000000000
## GO:0015966  BP     3  0 1.000000000
## GO:0015965  BP     3  0 1.000000000
## GO:0002086  BP     3  0 1.000000000
## GO:0060448  BP     3  0 1.000000000
## GO:0035442  BP     3  0 1.000000000
## GO:0033058  BP     3  0 1.000000000
## GO:0015766  BP     3  0 1.000000000
## GO:0006489  BP     3  0 1.000000000
## GO:0046465  BP     3  0 1.000000000
## GO:0061502  BP     3  0 1.000000000
## GO:0060309  BP     3  0 1.000000000
## GO:0035054  BP     3  0 1.000000000
## GO:0035880  BP     3  0 1.000000000
## GO:0036023  BP     3  0 1.000000000
## GO:0003133  BP     3  0 1.000000000
## GO:0003134  BP     3  0 1.000000000
## GO:1904380  BP     3  0 1.000000000
## GO:0060847  BP     3  0 1.000000000
## GO:0071603  BP     3  0 1.000000000
## GO:0090673  BP     3  0 1.000000000
## GO:0048822  BP     3  0 1.000000000
## GO:0003347  BP     3  0 1.000000000
## GO:0010481  BP     3  0 1.000000000
## GO:0021538  BP     3  0 1.000000000
## GO:0060671  BP     3  0 1.000000000
## GO:0060672  BP     3  0 1.000000000
## GO:1990399  BP     3  0 1.000000000
## GO:0097176  BP     3  0 1.000000000
## GO:0097694  BP     3  0 1.000000000
## GO:0003365  BP     3  0 1.000000000
## GO:0045200  BP     3  0 1.000000000
## GO:0097051  BP     3  0 1.000000000
## GO:0007529  BP     3  0 1.000000000
## GO:0045196  BP     3  0 1.000000000
## GO:0010248  BP     3  0 1.000000000
## GO:0035938  BP     3  0 1.000000000
## GO:0097010  BP     3  0 1.000000000
## GO:0051834  BP     3  0 1.000000000
## GO:0044415  BP     3  0 1.000000000
## GO:0019049  BP     3  0 1.000000000
## GO:0098976  BP     3  0 1.000000000
## GO:0045226  BP     3  0 1.000000000
## GO:0046379  BP     3  0 1.000000000
## GO:0006858  BP     3  0 1.000000000
## GO:0002074  BP     3  0 1.000000000
## GO:0045062  BP     3  0 1.000000000
## GO:0042706  BP     3  0 1.000000000
## GO:1903375  BP     3  0 1.000000000
## GO:0045337  BP     3  0 1.000000000
## GO:0097155  BP     3  0 1.000000000
## GO:0008050  BP     3  0 1.000000000
## GO:0048807  BP     3  0 1.000000000
## GO:0007066  BP     3  0 1.000000000
## GO:0033216  BP     3  0 1.000000000
## GO:0098706  BP     3  0 1.000000000
## GO:1903874  BP     3  0 1.000000000
## GO:0015684  BP     3  0 1.000000000
## GO:0060825  BP     3  0 1.000000000
## GO:0042726  BP     3  0 1.000000000
## GO:0033505  BP     3  0 1.000000000
## GO:0060423  BP     3  0 1.000000000
## GO:0046294  BP     3  0 1.000000000
## GO:0070649  BP     3  0 1.000000000
## GO:0110009  BP     3  0 1.000000000
## GO:0006001  BP     3  0 1.000000000
## GO:0061624  BP     3  0 1.000000000
## GO:0006106  BP     3  0 1.000000000
## GO:0048165  BP     3  0 1.000000000
## GO:0019064  BP     3  0 1.000000000
## GO:0019376  BP     3  0 1.000000000
## GO:0061010  BP     3  0 1.000000000
## GO:0009449  BP     3  0 1.000000000
## GO:0033566  BP     3  0 1.000000000
## GO:1990768  BP     3  0 1.000000000
## GO:0001698  BP     3  0 1.000000000
## GO:0035822  BP     3  0 1.000000000
## GO:0060112  BP     3  0 1.000000000
## GO:0097116  BP     3  0 1.000000000
## GO:0018992  BP     3  0 1.000000000
## GO:0002314  BP     3  0 1.000000000
## GO:0051729  BP     3  0 1.000000000
## GO:0002071  BP     3  0 1.000000000
## GO:0007403  BP     3  0 1.000000000
## GO:0006680  BP     3  0 1.000000000
## GO:0019389  BP     3  0 1.000000000
## GO:0090461  BP     3  0 1.000000000
## GO:0051935  BP     3  0 1.000000000
## GO:0006543  BP     3  0 1.000000000
## GO:0070681  BP     3  0 1.000000000
## GO:0046168  BP     3  0 1.000000000
## GO:0006546  BP     3  0 1.000000000
## GO:0019464  BP     3  0 1.000000000
## GO:0061623  BP     3  0 1.000000000
## GO:0061625  BP     3  0 1.000000000
## GO:1901656  BP     3  0 1.000000000
## GO:0009436  BP     3  0 1.000000000
## GO:0035262  BP     3  0 1.000000000
## GO:0021828  BP     3  0 1.000000000
## GO:0002432  BP     3  0 1.000000000
## GO:1904700  BP     3  0 1.000000000
## GO:0071613  BP     3  0 1.000000000
## GO:0046098  BP     3  0 1.000000000
## GO:0021986  BP     3  0 1.000000000
## GO:0071335  BP     3  0 1.000000000
## GO:0035685  BP     3  0 1.000000000
## GO:0097037  BP     3  0 1.000000000
## GO:0030200  BP     3  0 1.000000000
## GO:0030210  BP     3  0 1.000000000
## GO:0006059  BP     3  0 1.000000000
## GO:0021934  BP     3  0 1.000000000
## GO:0043133  BP     3  0 1.000000000
## GO:0110088  BP     3  0 1.000000000
## GO:1990164  BP     3  0 1.000000000
## GO:0043969  BP     3  0 1.000000000
## GO:0043974  BP     3  0 1.000000000
## GO:0097198  BP     3  0 1.000000000
## GO:0043988  BP     3  0 1.000000000
## GO:0043985  BP     3  0 1.000000000
## GO:0008628  BP     3  0 1.000000000
## GO:0036118  BP     3  0 1.000000000
## GO:0046947  BP     3  0 1.000000000
## GO:0046946  BP     3  0 1.000000000
## GO:0048850  BP     3  0 1.000000000
## GO:0021856  BP     3  0 1.000000000
## GO:0046101  BP     3  0 1.000000000
## GO:0002386  BP     3  0 1.000000000
## GO:0002414  BP     3  0 1.000000000
## GO:0002030  BP     3  0 1.000000000
## GO:0001827  BP     3  0 1.000000000
## GO:0001828  BP     3  0 1.000000000
## GO:0072061  BP     3  0 1.000000000
## GO:0046103  BP     3  0 1.000000000
## GO:0030070  BP     3  0 1.000000000
## GO:0038028  BP     3  0 1.000000000
## GO:0016539  BP     3  0 1.000000000
## GO:0002121  BP     3  0 1.000000000
## GO:0042231  BP     3  0 1.000000000
## GO:0042223  BP     3  0 1.000000000
## GO:0051325  BP     3  0 1.000000000
## GO:0001951  BP     3  0 1.000000000
## GO:0106001  BP     3  0 1.000000000
## GO:0070676  BP     3  0 1.000000000
## GO:1990442  BP     3  0 1.000000000
## GO:1905863  BP     3  0 1.000000000
## GO:0098711  BP     3  0 1.000000000
## GO:0019287  BP     3  0 1.000000000
## GO:0046864  BP     3  0 1.000000000
## GO:0046951  BP     3  0 1.000000000
## GO:0072003  BP     3  0 1.000000000
## GO:0072194  BP     3  0 1.000000000
## GO:0002254  BP     3  0 1.000000000
## GO:0061738  BP     3  0 1.000000000
## GO:0034499  BP     3  0 1.000000000
## GO:0044805  BP     3  0 1.000000000
## GO:0019086  BP     3  0 1.000000000
## GO:0019045  BP     3  0 1.000000000
## GO:0048370  BP     3  0 1.000000000
## GO:0048369  BP     3  0 1.000000000
## GO:0048371  BP     3  0 1.000000000
## GO:0097477  BP     3  0 1.000000000
## GO:0060460  BP     3  0 1.000000000
## GO:0003220  BP     3  0 1.000000000
## GO:0015820  BP     3  0 1.000000000
## GO:0036101  BP     3  0 1.000000000
## GO:0036102  BP     3  0 1.000000000
## GO:0036100  BP     3  0 1.000000000
## GO:0002540  BP     3  0 1.000000000
## GO:0036022  BP     3  0 1.000000000
## GO:0140042  BP     3  0 1.000000000
## GO:0002933  BP     3  0 1.000000000
## GO:0055095  BP     3  0 1.000000000
## GO:0055096  BP     3  0 1.000000000
## GO:0060424  BP     3  0 1.000000000
## GO:0060492  BP     3  0 1.000000000
## GO:0042700  BP     3  0 1.000000000
## GO:0060838  BP     3  0 1.000000000
## GO:0097021  BP     3  0 1.000000000
## GO:0006553  BP     3  0 1.000000000
## GO:0016237  BP     3  0 1.000000000
## GO:0035691  BP     3  0 1.000000000
## GO:0051684  BP     3  0 1.000000000
## GO:0099562  BP     3  0 1.000000000
## GO:0036506  BP     3  0 1.000000000
## GO:1904378  BP     3  0 1.000000000
## GO:0071423  BP     3  0 1.000000000
## GO:0015743  BP     3  0 1.000000000
## GO:0008049  BP     3  0 1.000000000
## GO:1905198  BP     3  0 1.000000000
## GO:0071421  BP     3  0 1.000000000
## GO:0002125  BP     3  0 1.000000000
## GO:0042628  BP     3  0 1.000000000
## GO:1990773  BP     3  0 1.000000000
## GO:0036112  BP     3  0 1.000000000
## GO:0021550  BP     3  0 1.000000000
## GO:1903537  BP     3  0 1.000000000
## GO:0016344  BP     3  0 1.000000000
## GO:0006311  BP     3  0 1.000000000
## GO:0051311  BP     3  0 1.000000000
## GO:0000710  BP     3  0 1.000000000
## GO:0097325  BP     3  0 1.000000000
## GO:0086047  BP     3  0 1.000000000
## GO:0098912  BP     3  0 1.000000000
## GO:0086048  BP     3  0 1.000000000
## GO:0039663  BP     3  0 1.000000000
## GO:0031580  BP     3  0 1.000000000
## GO:0035709  BP     3  0 1.000000000
## GO:0009233  BP     3  0 1.000000000
## GO:0072138  BP     3  0 1.000000000
## GO:0072309  BP     3  0 1.000000000
## GO:1905319  BP     3  0 1.000000000
## GO:0097168  BP     3  0 1.000000000
## GO:1990120  BP     3  0 1.000000000
## GO:0072240  BP     3  0 1.000000000
## GO:0072284  BP     3  0 1.000000000
## GO:0072277  BP     3  0 1.000000000
## GO:0072244  BP     3  0 1.000000000
## GO:0072275  BP     3  0 1.000000000
## GO:0072276  BP     3  0 1.000000000
## GO:0090176  BP     3  0 1.000000000
## GO:0051012  BP     3  0 1.000000000
## GO:1990575  BP     3  0 1.000000000
## GO:1902775  BP     3  0 1.000000000
## GO:0000958  BP     3  0 1.000000000
## GO:1990180  BP     3  0 1.000000000
## GO:0097745  BP     3  0 1.000000000
## GO:0070126  BP     3  0 1.000000000
## GO:0099074  BP     3  0 1.000000000
## GO:0099075  BP     3  0 1.000000000
## GO:0044878  BP     3  0 1.000000000
## GO:0007084  BP     3  0 1.000000000
## GO:1902990  BP     3  0 1.000000000
## GO:0052422  BP     3  0 1.000000000
## GO:0044830  BP     3  0 1.000000000
## GO:0044868  BP     3  0 1.000000000
## GO:0052203  BP     3  0 1.000000000
## GO:0035702  BP     3  0 1.000000000
## GO:0048162  BP     3  0 1.000000000
## GO:0044800  BP     3  0 1.000000000
## GO:0036258  BP     3  0 1.000000000
## GO:0014900  BP     3  0 1.000000000
## GO:0050883  BP     3  0 1.000000000
## GO:0043385  BP     3  0 1.000000000
## GO:0002277  BP     3  0 1.000000000
## GO:0015798  BP     3  0 1.000000000
## GO:0052490  BP     3  0 1.000000000
## GO:0033668  BP     3  0 1.000000000
## GO:0052041  BP     3  0 1.000000000
## GO:1901536  BP     3  0 1.000000000
## GO:1905463  BP     3  0 1.000000000
## GO:0048239  BP     3  0 1.000000000
## GO:0060567  BP     3  0 1.000000000
## GO:1903070  BP     3  0 1.000000000
## GO:1904425  BP     3  0 1.000000000
## GO:0033861  BP     3  0 1.000000000
## GO:1903898  BP     3  0 1.000000000
## GO:2000299  BP     3  0 1.000000000
## GO:0035544  BP     3  0 1.000000000
## GO:0045626  BP     3  0 1.000000000
## GO:2000329  BP     3  0 1.000000000
## GO:2000552  BP     3  0 1.000000000
## GO:0140199  BP     3  0 1.000000000
## GO:1904178  BP     3  0 1.000000000
## GO:0002581  BP     3  0 1.000000000
## GO:1902511  BP     3  0 1.000000000
## GO:2000360  BP     3  0 1.000000000
## GO:0010956  BP     3  0 1.000000000
## GO:1902081  BP     3  0 1.000000000
## GO:0045914  BP     3  0 1.000000000
## GO:2000137  BP     3  0 1.000000000
## GO:1901856  BP     3  0 1.000000000
## GO:0045079  BP     3  0 1.000000000
## GO:1904193  BP     3  0 1.000000000
## GO:0061182  BP     3  0 1.000000000
## GO:1902731  BP     3  0 1.000000000
## GO:0042322  BP     3  0 1.000000000
## GO:2000847  BP     3  0 1.000000000
## GO:0051344  BP     3  0 1.000000000
## GO:2001271  BP     3  0 1.000000000
## GO:0002605  BP     3  0 1.000000000
## GO:2000016  BP     3  0 1.000000000
## GO:0045963  BP     3  0 1.000000000
## GO:1904339  BP     3  0 1.000000000
## GO:2000384  BP     3  0 1.000000000
## GO:2001027  BP     3  0 1.000000000
## GO:0071899  BP     3  0 1.000000000
## GO:1903542  BP     3  0 1.000000000
## GO:1901003  BP     3  0 1.000000000
## GO:2000850  BP     3  0 1.000000000
## GO:1900450  BP     3  0 1.000000000
## GO:0045967  BP     3  0 1.000000000
## GO:0048817  BP     3  0 1.000000000
## GO:0051097  BP     3  0 1.000000000
## GO:1902037  BP     3  0 1.000000000
## GO:1903944  BP     3  0 1.000000000
## GO:0031064  BP     3  0 1.000000000
## GO:0033128  BP     3  0 1.000000000
## GO:0002884  BP     3  0 1.000000000
## GO:0045358  BP     3  0 1.000000000
## GO:0032690  BP     3  0 1.000000000
## GO:2001180  BP     3  0 1.000000000
## GO:2001183  BP     3  0 1.000000000
## GO:2000666  BP     3  0 1.000000000
## GO:1900041  BP     3  0 1.000000000
## GO:0048294  BP     3  0 1.000000000
## GO:0010593  BP     3  0 1.000000000
## GO:1903237  BP     3  0 1.000000000
## GO:0090327  BP     3  0 1.000000000
## GO:1900453  BP     3  0 1.000000000
## GO:0045715  BP     3  0 1.000000000
## GO:1905457  BP     3  0 1.000000000
## GO:1905166  BP     3  0 1.000000000
## GO:0071641  BP     3  0 1.000000000
## GO:0034183  BP     3  0 1.000000000
## GO:0034092  BP     3  0 1.000000000
## GO:2000019  BP     3  0 1.000000000
## GO:1905133  BP     3  0 1.000000000
## GO:0048022  BP     3  0 1.000000000
## GO:1905154  BP     3  0 1.000000000
## GO:0003340  BP     3  0 1.000000000
## GO:1902103  BP     3  0 1.000000000
## GO:0090310  BP     3  0 1.000000000
## GO:1901859  BP     3  0 1.000000000
## GO:1901740  BP     3  0 1.000000000
## GO:1904761  BP     3  0 1.000000000
## GO:0002859  BP     3  0 1.000000000
## GO:0002856  BP     3  0 1.000000000
## GO:1902623  BP     3  0 1.000000000
## GO:0010751  BP     3  0 1.000000000
## GO:1902856  BP     3  0 1.000000000
## GO:1900152  BP     3  0 1.000000000
## GO:0060212  BP     3  0 1.000000000
## GO:0070433  BP     3  0 1.000000000
## GO:0070425  BP     3  0 1.000000000
## GO:1902309  BP     3  0 1.000000000
## GO:1900275  BP     3  0 1.000000000
## GO:2000041  BP     3  0 1.000000000
## GO:1902268  BP     3  0 1.000000000
## GO:1901874  BP     3  0 1.000000000
## GO:1902303  BP     3  0 1.000000000
## GO:1903765  BP     3  0 1.000000000
## GO:2000974  BP     3  0 1.000000000
## GO:0010836  BP     3  0 1.000000000
## GO:1904351  BP     3  0 1.000000000
## GO:0090038  BP     3  0 1.000000000
## GO:1904780  BP     3  0 1.000000000
## GO:0061084  BP     3  0 1.000000000
## GO:2000645  BP     3  0 1.000000000
## GO:0090071  BP     3  0 1.000000000
## GO:1902725  BP     3  0 1.000000000
## GO:1900377  BP     3  0 1.000000000
## GO:1904057  BP     3  0 1.000000000
## GO:0014859  BP     3  0 1.000000000
## GO:1902723  BP     3  0 1.000000000
## GO:0071672  BP     3  0 1.000000000
## GO:2000832  BP     3  0 1.000000000
## GO:2000297  BP     3  0 1.000000000
## GO:1903422  BP     3  0 1.000000000
## GO:1904430  BP     3  0 1.000000000
## GO:1902948  BP     3  0 1.000000000
## GO:0070495  BP     3  0 1.000000000
## GO:0034140  BP     3  0 1.000000000
## GO:0034164  BP     3  0 1.000000000
## GO:0016480  BP     3  0 1.000000000
## GO:2000820  BP     3  0 1.000000000
## GO:0071930  BP     3  0 1.000000000
## GO:0010526  BP     3  0 1.000000000
## GO:1904694  BP     3  0 1.000000000
## GO:0010916  BP     3  0 1.000000000
## GO:0072076  BP     3  0 1.000000000
## GO:0021502  BP     3  0 1.000000000
## GO:0021849  BP     3  0 1.000000000
## GO:0033693  BP     3  0 1.000000000
## GO:0038189  BP     3  0 1.000000000
## GO:0070488  BP     3  0 1.000000000
## GO:0060618  BP     3  0 1.000000000
## GO:0061341  BP     3  0 1.000000000
## GO:0003358  BP     3  0 1.000000000
## GO:0002025  BP     3  0 1.000000000
## GO:0090292  BP     3  0 1.000000000
## GO:0043578  BP     3  0 1.000000000
## GO:0071630  BP     3  0 1.000000000
## GO:0035063  BP     3  0 1.000000000
## GO:0015851  BP     3  0 1.000000000
## GO:0021817  BP     3  0 1.000000000
## GO:1901679  BP     3  0 1.000000000
## GO:0000715  BP     3  0 1.000000000
## GO:0006295  BP     3  0 1.000000000
## GO:0006296  BP     3  0 1.000000000
## GO:0006589  BP     3  0 1.000000000
## GO:0046333  BP     3  0 1.000000000
## GO:0061034  BP     3  0 1.000000000
## GO:0021553  BP     3  0 1.000000000
## GO:0060166  BP     3  0 1.000000000
## GO:0015772  BP     3  0 1.000000000
## GO:1901376  BP     3  0 1.000000000
## GO:0045299  BP     3  0 1.000000000
## GO:0001550  BP     3  0 1.000000000
## GO:0001543  BP     3  0 1.000000000
## GO:0015729  BP     3  0 1.000000000
## GO:0035511  BP     3  0 1.000000000
## GO:0035553  BP     3  0 1.000000000
## GO:1900535  BP     3  0 1.000000000
## GO:1900533  BP     3  0 1.000000000
## GO:0019323  BP     3  0 1.000000000
## GO:0009051  BP     3  0 1.000000000
## GO:0002501  BP     3  0 1.000000000
## GO:0018125  BP     3  0 1.000000000
## GO:0017187  BP     3  0 1.000000000
## GO:0018199  BP     3  0 1.000000000
## GO:0018312  BP     3  0 1.000000000
## GO:0002343  BP     3  0 1.000000000
## GO:0010124  BP     3  0 1.000000000
## GO:0006432  BP     3  0 1.000000000
## GO:0036151  BP     3  0 1.000000000
## GO:0031161  BP     3  0 1.000000000
## GO:0007208  BP     3  0 1.000000000
## GO:0046552  BP     3  0 1.000000000
## GO:0042376  BP     3  0 1.000000000
## GO:0042374  BP     3  0 1.000000000
## GO:0016129  BP     3  0 1.000000000
## GO:0016128  BP     3  0 1.000000000
## GO:0034727  BP     3  0 1.000000000
## GO:0097195  BP     3  0 1.000000000
## GO:0061346  BP     3  0 1.000000000
## GO:0034441  BP     3  0 1.000000000
## GO:0006663  BP     3  0 1.000000000
## GO:0070889  BP     3  0 1.000000000
## GO:0090360  BP     3  0 1.000000000
## GO:0032917  BP     3  0 1.000000000
## GO:0016094  BP     3  0 1.000000000
## GO:0016095  BP     3  0 1.000000000
## GO:0021586  BP     3  0 1.000000000
## GO:1905555  BP     3  0 1.000000000
## GO:0052151  BP     3  0 1.000000000
## GO:1905870  BP     3  0 1.000000000
## GO:1904719  BP     3  0 1.000000000
## GO:0032831  BP     3  0 1.000000000
## GO:1904219  BP     3  0 1.000000000
## GO:2000373  BP     3  0 1.000000000
## GO:0110032  BP     3  0 1.000000000
## GO:1900245  BP     3  0 1.000000000
## GO:1901666  BP     3  0 1.000000000
## GO:0014040  BP     3  0 1.000000000
## GO:1903984  BP     3  0 1.000000000
## GO:0061357  BP     3  0 1.000000000
## GO:0014057  BP     3  0 1.000000000
## GO:1904234  BP     3  0 1.000000000
## GO:0060168  BP     3  0 1.000000000
## GO:1905337  BP     3  0 1.000000000
## GO:0032349  BP     3  0 1.000000000
## GO:0032346  BP     3  0 1.000000000
## GO:2000860  BP     3  0 1.000000000
## GO:0042986  BP     3  0 1.000000000
## GO:2000825  BP     3  0 1.000000000
## GO:1901953  BP     3  0 1.000000000
## GO:0002585  BP     3  0 1.000000000
## GO:0060139  BP     3  0 1.000000000
## GO:0032100  BP     3  0 1.000000000
## GO:0034263  BP     3  0 1.000000000
## GO:0060559  BP     3  0 1.000000000
## GO:1903679  BP     3  0 1.000000000
## GO:0110024  BP     3  0 1.000000000
## GO:1905312  BP     3  0 1.000000000
## GO:0051944  BP     3  0 1.000000000
## GO:2001288  BP     3  0 1.000000000
## GO:0038091  BP     3  0 1.000000000
## GO:0045764  BP     3  0 1.000000000
## GO:1903974  BP     3  0 1.000000000
## GO:0045799  BP     3  0 1.000000000
## GO:0046005  BP     3  0 1.000000000
## GO:1905445  BP     3  0 1.000000000
## GO:0051466  BP     3  0 1.000000000
## GO:1904960  BP     3  0 1.000000000
## GO:0051714  BP     3  0 1.000000000
## GO:1904690  BP     3  0 1.000000000
## GO:0045585  BP     3  0 1.000000000
## GO:2000670  BP     3  0 1.000000000
## GO:2001200  BP     3  0 1.000000000
## GO:0061184  BP     3  0 1.000000000
## GO:2000017  BP     3  0 1.000000000
## GO:1903181  BP     3  0 1.000000000
## GO:0051586  BP     3  0 1.000000000
## GO:1904340  BP     3  0 1.000000000
## GO:1904734  BP     3  0 1.000000000
## GO:0060769  BP     3  0 1.000000000
## GO:1904891  BP     3  0 1.000000000
## GO:0003331  BP     3  0 1.000000000
## GO:0031448  BP     3  0 1.000000000
## GO:0060474  BP     3  0 1.000000000
## GO:1903598  BP     3  0 1.000000000
## GO:0060454  BP     3  0 1.000000000
## GO:1904346  BP     3  0 1.000000000
## GO:0034352  BP     3  0 1.000000000
## GO:1902661  BP     3  0 1.000000000
## GO:0071657  BP     3  0 1.000000000
## GO:0045425  BP     3  0 1.000000000
## GO:0071663  BP     3  0 1.000000000
## GO:0060399  BP     3  0 1.000000000
## GO:0046985  BP     3  0 1.000000000
## GO:0010909  BP     3  0 1.000000000
## GO:0070368  BP     3  0 1.000000000
## GO:0007228  BP     3  0 1.000000000
## GO:1900106  BP     3  0 1.000000000
## GO:0106016  BP     3  0 1.000000000
## GO:0045726  BP     3  0 1.000000000
## GO:0045082  BP     3  0 1.000000000
## GO:1905078  BP     3  0 1.000000000
## GO:0045401  BP     3  0 1.000000000
## GO:0032752  BP     3  0 1.000000000
## GO:0045404  BP     3  0 1.000000000
## GO:1904582  BP     3  0 1.000000000
## GO:1902167  BP     3  0 1.000000000
## GO:1902174  BP     3  0 1.000000000
## GO:1902608  BP     3  0 1.000000000
## GO:0033686  BP     3  0 1.000000000
## GO:1901492  BP     3  0 1.000000000
## GO:2000111  BP     3  0 1.000000000
## GO:1901258  BP     3  0 1.000000000
## GO:0043382  BP     3  0 1.000000000
## GO:2001055  BP     3  0 1.000000000
## GO:2000729  BP     3  0 1.000000000
## GO:1905322  BP     3  0 1.000000000
## GO:2000591  BP     3  0 1.000000000
## GO:0035793  BP     3  0 1.000000000
## GO:0090063  BP     3  0 1.000000000
## GO:1904958  BP     3  0 1.000000000
## GO:2000857  BP     3  0 1.000000000
## GO:0061885  BP     3  0 1.000000000
## GO:1902958  BP     3  0 1.000000000
## GO:1903109  BP     3  0 1.000000000
## GO:0046604  BP     3  0 1.000000000
## GO:1900625  BP     3  0 1.000000000
## GO:2000439  BP     3  0 1.000000000
## GO:0014737  BP     3  0 1.000000000
## GO:0043323  BP     3  0 1.000000000
## GO:1905294  BP     3  0 1.000000000
## GO:1904457  BP     3  0 1.000000000
## GO:0070960  BP     3  0 1.000000000
## GO:0070961  BP     3  0 1.000000000
## GO:2000386  BP     3  0 1.000000000
## GO:1903378  BP     3  0 1.000000000
## GO:2001247  BP     3  0 1.000000000
## GO:1902995  BP     3  0 1.000000000
## GO:0061092  BP     3  0 1.000000000
## GO:2000588  BP     3  0 1.000000000
## GO:1902304  BP     3  0 1.000000000
## GO:1903766  BP     3  0 1.000000000
## GO:1902722  BP     3  0 1.000000000
## GO:0060585  BP     3  0 1.000000000
## GO:1902523  BP     3  0 1.000000000
## GO:1904100  BP     3  0 1.000000000
## GO:1904352  BP     3  0 1.000000000
## GO:1900740  BP     3  0 1.000000000
## GO:1904184  BP     3  0 1.000000000
## GO:1902685  BP     3  0 1.000000000
## GO:1901079  BP     3  0 1.000000000
## GO:1904833  BP     3  0 1.000000000
## GO:1900135  BP     3  0 1.000000000
## GO:0032097  BP     3  0 1.000000000
## GO:1903971  BP     3  0 1.000000000
## GO:1902336  BP     3  0 1.000000000
## GO:1904154  BP     3  0 1.000000000
## GO:1904222  BP     3  0 1.000000000
## GO:0014064  BP     3  0 1.000000000
## GO:1902811  BP     3  0 1.000000000
## GO:1904349  BP     3  0 1.000000000
## GO:2000120  BP     3  0 1.000000000
## GO:1901671  BP     3  0 1.000000000
## GO:1904431  BP     3  0 1.000000000
## GO:2000611  BP     3  0 1.000000000
## GO:1905075  BP     3  0 1.000000000
## GO:0051795  BP     3  0 1.000000000
## GO:0034157  BP     3  0 1.000000000
## GO:1901485  BP     3  0 1.000000000
## GO:0000432  BP     3  0 1.000000000
## GO:2000721  BP     3  0 1.000000000
## GO:0006990  BP     3  0 1.000000000
## GO:0036493  BP     3  0 1.000000000
## GO:0032058  BP     3  0 1.000000000
## GO:0045905  BP     3  0 1.000000000
## GO:1903774  BP     3  0 1.000000000
## GO:0010980  BP     3  0 1.000000000
## GO:0060557  BP     3  0 1.000000000
## GO:0060060  BP     3  0 1.000000000
## GO:0045297  BP     3  0 1.000000000
## GO:0034421  BP     3  0 1.000000000
## GO:0021827  BP     3  0 1.000000000
## GO:0000973  BP     3  0 1.000000000
## GO:0002331  BP     3  0 1.000000000
## GO:0001546  BP     3  0 1.000000000
## GO:0030327  BP     3  0 1.000000000
## GO:0099526  BP     3  0 1.000000000
## GO:0098928  BP     3  0 1.000000000
## GO:0001545  BP     3  0 1.000000000
## GO:1903929  BP     3  0 1.000000000
## GO:0002572  BP     3  0 1.000000000
## GO:0010133  BP     3  0 1.000000000
## GO:0039019  BP     3  0 1.000000000
## GO:0060523  BP     3  0 1.000000000
## GO:0060741  BP     3  0 1.000000000
## GO:0070682  BP     3  0 1.000000000
## GO:1990167  BP     3  0 1.000000000
## GO:0044313  BP     3  0 1.000000000
## GO:0051697  BP     3  0 1.000000000
## GO:0045041  BP     3  0 1.000000000
## GO:0016561  BP     3  0 1.000000000
## GO:0032979  BP     3  0 1.000000000
## GO:1990108  BP     3  0 1.000000000
## GO:0032258  BP     3  0 1.000000000
## GO:1903292  BP     3  0 1.000000000
## GO:1903119  BP     3  0 1.000000000
## GO:1902396  BP     3  0 1.000000000
## GO:1905725  BP     3  0 1.000000000
## GO:1904825  BP     3  0 1.000000000
## GO:0090204  BP     3  0 1.000000000
## GO:1990173  BP     3  0 1.000000000
## GO:0044860  BP     3  0 1.000000000
## GO:1990166  BP     3  0 1.000000000
## GO:0061833  BP     3  0 1.000000000
## GO:0018094  BP     3  0 1.000000000
## GO:0030908  BP     3  0 1.000000000
## GO:0071211  BP     3  0 1.000000000
## GO:1903445  BP     3  0 1.000000000
## GO:0003350  BP     3  0 1.000000000
## GO:0009182  BP     3  0 1.000000000
## GO:0046122  BP     3  0 1.000000000
## GO:0043096  BP     3  0 1.000000000
## GO:0072530  BP     3  0 1.000000000
## GO:0042822  BP     3  0 1.000000000
## GO:0009197  BP     3  0 1.000000000
## GO:0009196  BP     3  0 1.000000000
## GO:0009212  BP     3  0 1.000000000
## GO:0006208  BP     3  0 1.000000000
## GO:0015855  BP     3  0 1.000000000
## GO:0009139  BP     3  0 1.000000000
## GO:0009138  BP     3  0 1.000000000
## GO:0015864  BP     3  0 1.000000000
## GO:0009174  BP     3  0 1.000000000
## GO:0009173  BP     3  0 1.000000000
## GO:0009080  BP     3  0 1.000000000
## GO:1901475  BP     3  0 1.000000000
## GO:1901662  BP     3  0 1.000000000
## GO:0035928  BP     3  0 1.000000000
## GO:2000286  BP     3  0 1.000000000
## GO:1905868  BP     3  0 1.000000000
## GO:1903891  BP     3  0 1.000000000
## GO:2000449  BP     3  0 1.000000000
## GO:1904217  BP     3  0 1.000000000
## GO:1902162  BP     3  0 1.000000000
## GO:0072695  BP     3  0 1.000000000
## GO:2000371  BP     3  0 1.000000000
## GO:0070376  BP     3  0 1.000000000
## GO:1904020  BP     3  0 1.000000000
## GO:0110030  BP     3  0 1.000000000
## GO:0010963  BP     3  0 1.000000000
## GO:1902688  BP     3  0 1.000000000
## GO:1901664  BP     3  0 1.000000000
## GO:0032483  BP     3  0 1.000000000
## GO:0032487  BP     3  0 1.000000000
## GO:0014038  BP     3  0 1.000000000
## GO:2001188  BP     3  0 1.000000000
## GO:1903939  BP     3  0 1.000000000
## GO:0060408  BP     3  0 1.000000000
## GO:1904232  BP     3  0 1.000000000
## GO:2000367  BP     3  0 1.000000000
## GO:1904616  BP     3  0 1.000000000
## GO:0002877  BP     3  0 1.000000000
## GO:1905674  BP     3  0 1.000000000
## GO:1905335  BP     3  0 1.000000000
## GO:1903630  BP     3  0 1.000000000
## GO:2000823  BP     3  0 1.000000000
## GO:0060177  BP     3  0 1.000000000
## GO:1901951  BP     3  0 1.000000000
## GO:1903742  BP     3  0 1.000000000
## GO:0002589  BP     3  0 1.000000000
## GO:1902256  BP     3  0 1.000000000
## GO:0000821  BP     3  0 1.000000000
## GO:0061888  BP     3  0 1.000000000
## GO:1904170  BP     3  0 1.000000000
## GO:0002017  BP     3  0 1.000000000
## GO:0060378  BP     3  0 1.000000000
## GO:1903233  BP     3  0 1.000000000
## GO:1903279  BP     3  0 1.000000000
## GO:1903677  BP     3  0 1.000000000
## GO:0098679  BP     3  0 1.000000000
## GO:0110022  BP     3  0 1.000000000
## GO:1905310  BP     3  0 1.000000000
## GO:2000722  BP     3  0 1.000000000
## GO:1901301  BP     3  0 1.000000000
## GO:1901844  BP     3  0 1.000000000
## GO:1905915  BP     3  0 1.000000000
## GO:0001560  BP     3  0 1.000000000
## GO:0003250  BP     3  0 1.000000000
## GO:1901963  BP     3  0 1.000000000
## GO:0030997  BP     3  0 1.000000000
## GO:2000338  BP     3  0 1.000000000
## GO:1904192  BP     3  0 1.000000000
## GO:0061187  BP     3  0 1.000000000
## GO:0002874  BP     3  0 1.000000000
## GO:1905443  BP     3  0 1.000000000
## GO:0048696  BP     3  0 1.000000000
## GO:0060300  BP     3  0 1.000000000
## GO:0032954  BP     3  0 1.000000000
## GO:0051710  BP     3  0 1.000000000
## GO:0045583  BP     3  0 1.000000000
## GO:1900150  BP     3  0 1.000000000
## GO:2000705  BP     3  0 1.000000000
## GO:1903179  BP     3  0 1.000000000
## GO:1900095  BP     3  0 1.000000000
## GO:0010999  BP     3  0 1.000000000
## GO:2000383  BP     3  0 1.000000000
## GO:0042663  BP     3  0 1.000000000
## GO:0060699  BP     3  0 1.000000000
## GO:1901074  BP     3  0 1.000000000
## GO:0043309  BP     3  0 1.000000000
## GO:1901187  BP     3  0 1.000000000
## GO:0010482  BP     3  0 1.000000000
## GO:1905041  BP     3  0 1.000000000
## GO:1904444  BP     3  0 1.000000000
## GO:2000864  BP     3  0 1.000000000
## GO:0071898  BP     3  0 1.000000000
## GO:0060178  BP     3  0 1.000000000
## GO:0031446  BP     3  0 1.000000000
## GO:2000313  BP     3  0 1.000000000
## GO:1904344  BP     3  0 1.000000000
## GO:1900169  BP     3  0 1.000000000
## GO:1904023  BP     3  0 1.000000000
## GO:1902659  BP     3  0 1.000000000
## GO:1903786  BP     3  0 1.000000000
## GO:1900923  BP     3  0 1.000000000
## GO:0072361  BP     3  0 1.000000000
## GO:1904708  BP     3  0 1.000000000
## GO:0071661  BP     3  0 1.000000000
## GO:0003420  BP     3  0 1.000000000
## GO:0090081  BP     3  0 1.000000000
## GO:0003062  BP     3  0 1.000000000
## GO:0010908  BP     3  0 1.000000000
## GO:1903943  BP     3  0 1.000000000
## GO:0090107  BP     3  0 1.000000000
## GO:0010982  BP     3  0 1.000000000
## GO:0043134  BP     3  0 1.000000000
## GO:0110089  BP     3  0 1.000000000
## GO:1901674  BP     3  0 1.000000000
## GO:2001160  BP     3  0 1.000000000
## GO:1900104  BP     3  0 1.000000000
## GO:1902071  BP     3  0 1.000000000
## GO:1905702  BP     3  0 1.000000000
## GO:0045399  BP     3  0 1.000000000
## GO:1902214  BP     3  0 1.000000000
## GO:1902938  BP     3  0 1.000000000
## GO:1901252  BP     3  0 1.000000000
## GO:2000312  BP     3  0 1.000000000
## GO:0090234  BP     3  0 1.000000000
## GO:1902606  BP     3  0 1.000000000
## GO:0097213  BP     3  0 1.000000000
## GO:0090365  BP     3  0 1.000000000
## GO:0010610  BP     3  0 1.000000000
## GO:1902226  BP     3  0 1.000000000
## GO:2000446  BP     3  0 1.000000000
## GO:0060375  BP     3  0 1.000000000
## GO:1904464  BP     3  0 1.000000000
## GO:1903538  BP     3  0 1.000000000
## GO:1905024  BP     3  0 1.000000000
## GO:1905320  BP     3  0 1.000000000
## GO:1900238  BP     3  0 1.000000000
## GO:2000625  BP     3  0 1.000000000
## GO:0032423  BP     3  0 1.000000000
## GO:0090296  BP     3  0 1.000000000
## GO:1902445  BP     3  0 1.000000000
## GO:1903108  BP     3  0 1.000000000
## GO:1903463  BP     3  0 1.000000000
## GO:1900623  BP     3  0 1.000000000
## GO:0010796  BP     3  0 1.000000000
## GO:0014738  BP     3  0 1.000000000
## GO:1905292  BP     3  0 1.000000000
## GO:0099152  BP     3  0 1.000000000
## GO:0032899  BP     3  0 1.000000000
## GO:0045658  BP     3  0 1.000000000
## GO:1903995  BP     3  0 1.000000000
## GO:0070428  BP     3  0 1.000000000
## GO:2000819  BP     3  0 1.000000000
## GO:1900141  BP     3  0 1.000000000
## GO:2000474  BP     3  0 1.000000000
## GO:2000374  BP     3  0 1.000000000
## GO:2000828  BP     3  0 1.000000000
## GO:0043456  BP     3  0 1.000000000
## GO:2000468  BP     3  0 1.000000000
## GO:0044375  BP     3  0 1.000000000
## GO:1902994  BP     3  0 1.000000000
## GO:0061091  BP     3  0 1.000000000
## GO:2000040  BP     3  0 1.000000000
## GO:1905684  BP     3  0 1.000000000
## GO:0090361  BP     3  0 1.000000000
## GO:0030860  BP     3  0 1.000000000
## GO:1901873  BP     3  0 1.000000000
## GO:1901629  BP     3  0 1.000000000
## GO:0010725  BP     3  0 1.000000000
## GO:2000182  BP     3  0 1.000000000
## GO:2000870  BP     3  0 1.000000000
## GO:0060584  BP     3  0 1.000000000
## GO:1903093  BP     3  0 1.000000000
## GO:0061945  BP     3  0 1.000000000
## GO:1904098  BP     3  0 1.000000000
## GO:0099575  BP     3  0 1.000000000
## GO:0090283  BP     3  0 1.000000000
## GO:1900739  BP     3  0 1.000000000
## GO:1905600  BP     3  0 1.000000000
## GO:0002019  BP     3  0 1.000000000
## GO:0099178  BP     3  0 1.000000000
## GO:1905279  BP     3  0 1.000000000
## GO:0007468  BP     3  0 1.000000000
## GO:0014717  BP     3  0 1.000000000
## GO:0090182  BP     3  0 1.000000000
## GO:0014722  BP     3  0 1.000000000
## GO:1904204  BP     3  0 1.000000000
## GO:1904048  BP     3  0 1.000000000
## GO:0031335  BP     3  0 1.000000000
## GO:0060025  BP     3  0 1.000000000
## GO:1905661  BP     3  0 1.000000000
## GO:1904533  BP     3  0 1.000000000
## GO:1904594  BP     3  0 1.000000000
## GO:2000804  BP     3  0 1.000000000
## GO:2000843  BP     3  0 1.000000000
## GO:1901401  BP     3  0 1.000000000
## GO:0070494  BP     3  0 1.000000000
## GO:1905073  BP     3  0 1.000000000
## GO:0002652  BP     3  0 1.000000000
## GO:0034155  BP     3  0 1.000000000
## GO:1901483  BP     3  0 1.000000000
## GO:0000430  BP     3  0 1.000000000
## GO:0034395  BP     3  0 1.000000000
## GO:0021882  BP     3  0 1.000000000
## GO:0021912  BP     3  0 1.000000000
## GO:0010525  BP     3  0 1.000000000
## GO:0001807  BP     3  0 1.000000000
## GO:2000152  BP     3  0 1.000000000
## GO:1903335  BP     3  0 1.000000000
## GO:1905930  BP     3  0 1.000000000
## GO:0010915  BP     3  0 1.000000000
## GO:0010901  BP     3  0 1.000000000
## GO:0010979  BP     3  0 1.000000000
## GO:0071579  BP     3  0 1.000000000
## GO:0019046  BP     3  0 1.000000000
## GO:0072053  BP     3  0 1.000000000
## GO:0072034  BP     3  0 1.000000000
## GO:0043111  BP     3  0 1.000000000
## GO:1904016  BP     3  0 1.000000000
## GO:0010446  BP     3  0 1.000000000
## GO:1903842  BP     3  0 1.000000000
## GO:0061771  BP     3  0 1.000000000
## GO:1902349  BP     3  0 1.000000000
## GO:0061847  BP     3  0 1.000000000
## GO:0032025  BP     3  0 1.000000000
## GO:0014878  BP     3  0 1.000000000
## GO:0060992  BP     3  0 1.000000000
## GO:0009629  BP     3  0 1.000000000
## GO:1904880  BP     3  0 1.000000000
## GO:0051599  BP     3  0 1.000000000
## GO:0035962  BP     3  0 1.000000000
## GO:0051595  BP     3  0 1.000000000
## GO:0009624  BP     3  0 1.000000000
## GO:0071873  BP     3  0 1.000000000
## GO:0071798  BP     3  0 1.000000000
## GO:0046684  BP     3  0 1.000000000
## GO:1901355  BP     3  0 1.000000000
## GO:0072708  BP     3  0 1.000000000
## GO:0072733  BP     3  0 1.000000000
## GO:1904578  BP     3  0 1.000000000
## GO:0071725  BP     3  0 1.000000000
## GO:0034633  BP     3  0 1.000000000
## GO:0021570  BP     3  0 1.000000000
## GO:0021593  BP     3  0 1.000000000
## GO:0006610  BP     3  0 1.000000000
## GO:0003221  BP     3  0 1.000000000
## GO:0048769  BP     3  0 1.000000000
## GO:0032788  BP     3  0 1.000000000
## GO:0061033  BP     3  0 1.000000000
## GO:0046960  BP     3  0 1.000000000
## GO:0097374  BP     3  0 1.000000000
## GO:0003285  BP     3  0 1.000000000
## GO:0002554  BP     3  0 1.000000000
## GO:0006714  BP     3  0 1.000000000
## GO:0023016  BP     3  0 1.000000000
## GO:0060931  BP     3  0 1.000000000
## GO:0031134  BP     3  0 1.000000000
## GO:0043503  BP     3  0 1.000000000
## GO:0031444  BP     3  0 1.000000000
## GO:0021776  BP     3  0 1.000000000
## GO:0021775  BP     3  0 1.000000000
## GO:0031120  BP     3  0 1.000000000
## GO:0051030  BP     3  0 1.000000000
## GO:0016077  BP     3  0 1.000000000
## GO:0010159  BP     3  0 1.000000000
## GO:0097724  BP     3  0 1.000000000
## GO:1905419  BP     3  0 1.000000000
## GO:0007284  BP     3  0 1.000000000
## GO:0032918  BP     3  0 1.000000000
## GO:0006597  BP     3  0 1.000000000
## GO:0046208  BP     3  0 1.000000000
## GO:0006667  BP     3  0 1.000000000
## GO:0021529  BP     3  0 1.000000000
## GO:0021530  BP     3  0 1.000000000
## GO:0021965  BP     3  0 1.000000000
## GO:0007056  BP     3  0 1.000000000
## GO:0060720  BP     3  0 1.000000000
## GO:0048866  BP     3  0 1.000000000
## GO:0071422  BP     3  0 1.000000000
## GO:0015770  BP     3  0 1.000000000
## GO:0099163  BP     3  0 1.000000000
## GO:0060084  BP     3  0 1.000000000
## GO:0048499  BP     3  0 1.000000000
## GO:0042779  BP     3  0 1.000000000
## GO:0002946  BP     3  0 1.000000000
## GO:0006409  BP     3  0 1.000000000
## GO:0002949  BP     3  0 1.000000000
## GO:0071431  BP     3  0 1.000000000
## GO:0101030  BP     3  0 1.000000000
## GO:0000379  BP     3  0 1.000000000
## GO:0031509  BP     3  0 1.000000000
## GO:1902896  BP     3  0 1.000000000
## GO:0030846  BP     3  0 1.000000000
## GO:0006393  BP     3  0 1.000000000
## GO:0046865  BP     3  0 1.000000000
## GO:0060748  BP     3  0 1.000000000
## GO:0035936  BP     3  0 1.000000000
## GO:0016108  BP     3  0 1.000000000
## GO:0006772  BP     3  0 1.000000000
## GO:0015888  BP     3  0 1.000000000
## GO:0042723  BP     3  0 1.000000000
## GO:0001966  BP     3  0 1.000000000
## GO:0015709  BP     3  0 1.000000000
## GO:0007356  BP     3  0 1.000000000
## GO:0006435  BP     3  0 1.000000000
## GO:0046104  BP     3  0 1.000000000
## GO:0006210  BP     3  0 1.000000000
## GO:0019859  BP     3  0 1.000000000
## GO:1905071  BP     3  0 1.000000000
## GO:0002930  BP     3  0 1.000000000
## GO:0061153  BP     3  0 1.000000000
## GO:0061152  BP     3  0 1.000000000
## GO:0099540  BP     3  0 1.000000000
## GO:0099548  BP     3  0 1.000000000
## GO:0099543  BP     3  0 1.000000000
## GO:0006391  BP     3  0 1.000000000
## GO:0070634  BP     3  0 1.000000000
## GO:0007181  BP     3  0 1.000000000
## GO:0007089  BP     3  0 1.000000000
## GO:0021558  BP     3  0 1.000000000
## GO:0001831  BP     3  0 1.000000000
## GO:0015827  BP     3  0 1.000000000
## GO:0071596  BP     3  0 1.000000000
## GO:0032789  BP     3  0 1.000000000
## GO:0019860  BP     3  0 1.000000000
## GO:0071918  BP     3  0 1.000000000
## GO:0072190  BP     3  0 1.000000000
## GO:0072092  BP     3  0 1.000000000
## GO:0006624  BP     3  0 1.000000000
## GO:0021564  BP     3  0 1.000000000
## GO:1905420  BP     3  0 1.000000000
## GO:0055005  BP     3  0 1.000000000
## GO:0021847  BP     3  0 1.000000000
## GO:0021524  BP     3  0 1.000000000
## GO:0071939  BP     3  0 1.000000000
## GO:0071938  BP     3  0 1.000000000
## GO:0042816  BP     3  0 1.000000000
## GO:0042360  BP     3  0 1.000000000
## GO:0010025  BP     3  0 1.000000000
## GO:0010166  BP     3  0 1.000000000
## GO:0005997  BP     3  0 1.000000000
## GO:0045218  BP     3  0 1.000000000
## GO:0006189  BP     4  0 1.000000000
## GO:1990966  BP     4  0 1.000000000
## GO:0031296  BP     4  0 1.000000000
## GO:0035697  BP     4  0 1.000000000
## GO:0048205  BP     4  0 1.000000000
## GO:0071034  BP     4  0 1.000000000
## GO:0071043  BP     4  0 1.000000000
## GO:0030576  BP     4  0 1.000000000
## GO:0060486  BP     4  0 1.000000000
## GO:0043137  BP     4  0 1.000000000
## GO:0006269  BP     4  0 1.000000000
## GO:0035621  BP     4  0 1.000000000
## GO:0038095  BP     4  0 1.000000000
## GO:0046368  BP     4  0 1.000000000
## GO:0006177  BP     4  0 1.000000000
## GO:0090168  BP     4  0 1.000000000
## GO:0048200  BP     4  0 1.000000000
## GO:0070384  BP     4  0 1.000000000
## GO:0032264  BP     4  0 1.000000000
## GO:0007258  BP     4  0 1.000000000
## GO:0038109  BP     4  0 1.000000000
## GO:0019853  BP     4  0 1.000000000
## GO:0055129  BP     4  0 1.000000000
## GO:0006564  BP     4  0 1.000000000
## GO:0006565  BP     4  0 1.000000000
## GO:0002396  BP     4  0 1.000000000
## GO:0001880  BP     4  0 1.000000000
## GO:0018076  BP     4  0 1.000000000
## GO:0006499  BP     4  0 1.000000000
## GO:0006741  BP     4  0 1.000000000
## GO:0098989  BP     4  0 1.000000000
## GO:0086017  BP     4  0 1.000000000
## GO:0071076  BP     4  0 1.000000000
## GO:0006556  BP     4  0 1.000000000
## GO:0033353  BP     4  0 1.000000000
## GO:0060061  BP     4  0 1.000000000
## GO:0002424  BP     4  0 1.000000000
## GO:0002309  BP     4  0 1.000000000
## GO:0061470  BP     4  0 1.000000000
## GO:0035711  BP     4  0 1.000000000
## GO:0002296  BP     4  0 1.000000000
## GO:0048014  BP     4  0 1.000000000
## GO:0019276  BP     4  0 1.000000000
## GO:0061355  BP     4  0 1.000000000
## GO:0090244  BP     4  0 1.000000000
## GO:0007223  BP     4  0 1.000000000
## GO:0009838  BP     4  0 1.000000000
## GO:1900620  BP     4  0 1.000000000
## GO:0006083  BP     4  0 1.000000000
## GO:0008292  BP     4  0 1.000000000
## GO:0090135  BP     4  0 1.000000000
## GO:0030043  BP     4  0 1.000000000
## GO:0030047  BP     4  0 1.000000000
## GO:0070358  BP     4  0 1.000000000
## GO:0090427  BP     4  0 1.000000000
## GO:0001905  BP     4  0 1.000000000
## GO:0002525  BP     4  0 1.000000000
## GO:0006844  BP     4  0 1.000000000
## GO:0034196  BP     4  0 1.000000000
## GO:1901911  BP     4  0 1.000000000
## GO:1901910  BP     4  0 1.000000000
## GO:0007196  BP     4  0 1.000000000
## GO:1990410  BP     4  0 1.000000000
## GO:0006522  BP     4  0 1.000000000
## GO:0015842  BP     4  0 1.000000000
## GO:0006578  BP     4  0 1.000000000
## GO:0015917  BP     4  0 1.000000000
## GO:0006710  BP     4  0 1.000000000
## GO:0002003  BP     4  0 1.000000000
## GO:0001998  BP     4  0 1.000000000
## GO:0098957  BP     4  0 1.000000000
## GO:0019732  BP     4  0 1.000000000
## GO:0002477  BP     4  0 1.000000000
## GO:0048003  BP     4  0 1.000000000
## GO:0048007  BP     4  0 1.000000000
## GO:0003383  BP     4  0 1.000000000
## GO:0038027  BP     4  0 1.000000000
## GO:0002538  BP     4  0 1.000000000
## GO:0035910  BP     4  0 1.000000000
## GO:0006528  BP     4  0 1.000000000
## GO:1902626  BP     4  0 1.000000000
## GO:0002265  BP     4  0 1.000000000
## GO:0060018  BP     4  0 1.000000000
## GO:0016240  BP     4  0 1.000000000
## GO:0007412  BP     4  0 1.000000000
## GO:0006285  BP     4  0 1.000000000
## GO:0045575  BP     4  0 1.000000000
## GO:0019482  BP     4  0 1.000000000
## GO:0060447  BP     4  0 1.000000000
## GO:0003166  BP     4  0 1.000000000
## GO:0046069  BP     4  0 1.000000000
## GO:0070574  BP     4  0 1.000000000
## GO:0015691  BP     4  0 1.000000000
## GO:0061589  BP     4  0 1.000000000
## GO:0044336  BP     4  0 1.000000000
## GO:0000436  BP     4  0 1.000000000
## GO:0000429  BP     4  0 1.000000000
## GO:0060913  BP     4  0 1.000000000
## GO:0003219  BP     4  0 1.000000000
## GO:0035965  BP     4  0 1.000000000
## GO:0070836  BP     4  0 1.000000000
## GO:1902292  BP     4  0 1.000000000
## GO:0003273  BP     4  0 1.000000000
## GO:0035788  BP     4  0 1.000000000
## GO:0035441  BP     4  0 1.000000000
## GO:2000793  BP     4  0 1.000000000
## GO:0061209  BP     4  0 1.000000000
## GO:0016998  BP     4  0 1.000000000
## GO:1905232  BP     4  0 1.000000000
## GO:0072719  BP     4  0 1.000000000
## GO:0071376  BP     4  0 1.000000000
## GO:0071726  BP     4  0 1.000000000
## GO:0097211  BP     4  0 1.000000000
## GO:0071504  BP     4  0 1.000000000
## GO:0071349  BP     4  0 1.000000000
## GO:0036146  BP     4  0 1.000000000
## GO:0090650  BP     4  0 1.000000000
## GO:0071374  BP     4  0 1.000000000
## GO:1904628  BP     4  0 1.000000000
## GO:0051365  BP     4  0 1.000000000
## GO:1903936  BP     4  0 1.000000000
## GO:0036216  BP     4  0 1.000000000
## GO:0071502  BP     4  0 1.000000000
## GO:0035984  BP     4  0 1.000000000
## GO:0032286  BP     4  0 1.000000000
## GO:0021698  BP     4  0 1.000000000
## GO:0098749  BP     4  0 1.000000000
## GO:0021590  BP     4  0 1.000000000
## GO:0090660  BP     4  0 1.000000000
## GO:0033326  BP     4  0 1.000000000
## GO:0038146  BP     4  0 1.000000000
## GO:0003415  BP     4  0 1.000000000
## GO:0097360  BP     4  0 1.000000000
## GO:0070827  BP     4  0 1.000000000
## GO:0097549  BP     4  0 1.000000000
## GO:0034401  BP     4  0 1.000000000
## GO:0002439  BP     4  0 1.000000000
## GO:0032053  BP     4  0 1.000000000
## GO:0060830  BP     4  0 1.000000000
## GO:0097167  BP     4  0 1.000000000
## GO:0019240  BP     4  0 1.000000000
## GO:0021747  BP     4  0 1.000000000
## GO:0007386  BP     4  0 1.000000000
## GO:0072137  BP     4  0 1.000000000
## GO:0022007  BP     4  0 1.000000000
## GO:1903575  BP     4  0 1.000000000
## GO:0043622  BP     4  0 1.000000000
## GO:0043396  BP     4  0 1.000000000
## GO:0006216  BP     4  0 1.000000000
## GO:0009972  BP     4  0 1.000000000
## GO:0046087  BP     4  0 1.000000000
## GO:0045065  BP     4  0 1.000000000
## GO:0006203  BP     4  0 1.000000000
## GO:0006231  BP     4  0 1.000000000
## GO:0046073  BP     4  0 1.000000000
## GO:0002215  BP     4  0 1.000000000
## GO:0061110  BP     4  0 1.000000000
## GO:0061789  BP     4  0 1.000000000
## GO:0046121  BP     4  0 1.000000000
## GO:0009189  BP     4  0 1.000000000
## GO:0061054  BP     4  0 1.000000000
## GO:0002159  BP     4  0 1.000000000
## GO:0042494  BP     4  0 1.000000000
## GO:0032497  BP     4  0 1.000000000
## GO:0035995  BP     4  0 1.000000000
## GO:0006651  BP     4  0 1.000000000
## GO:0046340  BP     4  0 1.000000000
## GO:1901909  BP     4  0 1.000000000
## GO:1901908  BP     4  0 1.000000000
## GO:1901907  BP     4  0 1.000000000
## GO:1901906  BP     4  0 1.000000000
## GO:0042938  BP     4  0 1.000000000
## GO:0071543  BP     4  0 1.000000000
## GO:0046351  BP     4  0 1.000000000
## GO:0044004  BP     4  0 1.000000000
## GO:0016103  BP     4  0 1.000000000
## GO:0033563  BP     4  0 1.000000000
## GO:1990918  BP     4  0 1.000000000
## GO:0097680  BP     4  0 1.000000000
## GO:0090579  BP     4  0 1.000000000
## GO:0003373  BP     4  0 1.000000000
## GO:0003374  BP     4  0 1.000000000
## GO:0001712  BP     4  0 1.000000000
## GO:0015990  BP     4  0 1.000000000
## GO:0030538  BP     4  0 1.000000000
## GO:0048619  BP     4  0 1.000000000
## GO:0071926  BP     4  0 1.000000000
## GO:0003274  BP     4  0 1.000000000
## GO:0060214  BP     4  0 1.000000000
## GO:0075509  BP     4  0 1.000000000
## GO:0061031  BP     4  0 1.000000000
## GO:0000480  BP     4  0 1.000000000
## GO:0071787  BP     4  0 1.000000000
## GO:1990809  BP     4  0 1.000000000
## GO:0015988  BP     4  0 1.000000000
## GO:0009957  BP     4  0 1.000000000
## GO:0042414  BP     4  0 1.000000000
## GO:0061030  BP     4  0 1.000000000
## GO:0060743  BP     4  0 1.000000000
## GO:2001013  BP     4  0 1.000000000
## GO:0008065  BP     4  0 1.000000000
## GO:0048104  BP     4  0 1.000000000
## GO:0048105  BP     4  0 1.000000000
## GO:0071963  BP     4  0 1.000000000
## GO:0030951  BP     4  0 1.000000000
## GO:0045338  BP     4  0 1.000000000
## GO:0031443  BP     4  0 1.000000000
## GO:0033540  BP     4  0 1.000000000
## GO:0051309  BP     4  0 1.000000000
## GO:0021797  BP     4  0 1.000000000
## GO:0001732  BP     4  0 1.000000000
## GO:0015755  BP     4  0 1.000000000
## GO:0061198  BP     4  0 1.000000000
## GO:0097112  BP     4  0 1.000000000
## GO:0090202  BP     4  0 1.000000000
## GO:0072144  BP     4  0 1.000000000
## GO:0072008  BP     4  0 1.000000000
## GO:0090521  BP     4  0 1.000000000
## GO:0021615  BP     4  0 1.000000000
## GO:0043402  BP     4  0 1.000000000
## GO:0019659  BP     4  0 1.000000000
## GO:0019661  BP     4  0 1.000000000
## GO:0006537  BP     4  0 1.000000000
## GO:0034635  BP     4  0 1.000000000
## GO:0046167  BP     4  0 1.000000000
## GO:1903804  BP     4  0 1.000000000
## GO:0019660  BP     4  0 1.000000000
## GO:0061622  BP     4  0 1.000000000
## GO:0034436  BP     4  0 1.000000000
## GO:0071611  BP     4  0 1.000000000
## GO:0042253  BP     4  0 1.000000000
## GO:0044110  BP     4  0 1.000000000
## GO:0044117  BP     4  0 1.000000000
## GO:0044116  BP     4  0 1.000000000
## GO:0003431  BP     4  0 1.000000000
## GO:0010286  BP     4  0 1.000000000
## GO:0035684  BP     4  0 1.000000000
## GO:0042167  BP     4  0 1.000000000
## GO:0070868  BP     4  0 1.000000000
## GO:0001692  BP     4  0 1.000000000
## GO:0070537  BP     4  0 1.000000000
## GO:0035616  BP     4  0 1.000000000
## GO:0034729  BP     4  0 1.000000000
## GO:0106077  BP     4  0 1.000000000
## GO:0070814  BP     4  0 1.000000000
## GO:0021888  BP     4  0 1.000000000
## GO:0021886  BP     4  0 1.000000000
## GO:0046100  BP     4  0 1.000000000
## GO:1901523  BP     4  0 1.000000000
## GO:0002434  BP     4  0 1.000000000
## GO:0002767  BP     4  0 1.000000000
## GO:0002378  BP     4  0 1.000000000
## GO:0002426  BP     4  0 1.000000000
## GO:0060819  BP     4  0 1.000000000
## GO:0043152  BP     4  0 1.000000000
## GO:0046102  BP     4  0 1.000000000
## GO:0038156  BP     4  0 1.000000000
## GO:0042097  BP     4  0 1.000000000
## GO:0035622  BP     4  0 1.000000000
## GO:0003011  BP     4  0 1.000000000
## GO:0072051  BP     4  0 1.000000000
## GO:0046952  BP     4  0 1.000000000
## GO:0072131  BP     4  0 1.000000000
## GO:0001907  BP     4  0 1.000000000
## GO:0019244  BP     4  0 1.000000000
## GO:0006272  BP     4  0 1.000000000
## GO:0060459  BP     4  0 1.000000000
## GO:1990086  BP     4  0 1.000000000
## GO:0006552  BP     4  0 1.000000000
## GO:0048861  BP     4  0 1.000000000
## GO:0060988  BP     4  0 1.000000000
## GO:0035338  BP     4  0 1.000000000
## GO:0097212  BP     4  0 1.000000000
## GO:0036301  BP     4  0 1.000000000
## GO:0006344  BP     4  0 1.000000000
## GO:0007060  BP     4  0 1.000000000
## GO:0060648  BP     4  0 1.000000000
## GO:0060594  BP     4  0 1.000000000
## GO:0060596  BP     4  0 1.000000000
## GO:1904382  BP     4  0 1.000000000
## GO:0097029  BP     4  0 1.000000000
## GO:0051793  BP     4  0 1.000000000
## GO:0000706  BP     4  0 1.000000000
## GO:0000711  BP     4  0 1.000000000
## GO:0051598  BP     4  0 1.000000000
## GO:0086046  BP     4  0 1.000000000
## GO:0051665  BP     4  0 1.000000000
## GO:0097749  BP     4  0 1.000000000
## GO:1900200  BP     4  0 1.000000000
## GO:1901145  BP     4  0 1.000000000
## GO:0072198  BP     4  0 1.000000000
## GO:0072180  BP     4  0 1.000000000
## GO:0072262  BP     4  0 1.000000000
## GO:0072223  BP     4  0 1.000000000
## GO:0072236  BP     4  0 1.000000000
## GO:0072162  BP     4  0 1.000000000
## GO:0035789  BP     4  0 1.000000000
## GO:0072133  BP     4  0 1.000000000
## GO:0072289  BP     4  0 1.000000000
## GO:0072093  BP     4  0 1.000000000
## GO:0044785  BP     4  0 1.000000000
## GO:0051596  BP     4  0 1.000000000
## GO:0019243  BP     4  0 1.000000000
## GO:0061727  BP     4  0 1.000000000
## GO:0030035  BP     4  0 1.000000000
## GO:0021555  BP     4  0 1.000000000
## GO:0098816  BP     4  0 1.000000000
## GO:0000964  BP     4  0 1.000000000
## GO:1900864  BP     4  0 1.000000000
## GO:0006121  BP     4  0 1.000000000
## GO:0034553  BP     4  0 1.000000000
## GO:0097250  BP     4  0 1.000000000
## GO:0070900  BP     4  0 1.000000000
## GO:0070125  BP     4  0 1.000000000
## GO:1902975  BP     4  0 1.000000000
## GO:0098763  BP     4  0 1.000000000
## GO:0071962  BP     4  0 1.000000000
## GO:0021815  BP     4  0 1.000000000
## GO:0032324  BP     4  0 1.000000000
## GO:0052651  BP     4  0 1.000000000
## GO:0042117  BP     4  0 1.000000000
## GO:0035522  BP     4  0 1.000000000
## GO:0035521  BP     4  0 1.000000000
## GO:1903966  BP     4  0 1.000000000
## GO:1903964  BP     4  0 1.000000000
## GO:0036257  BP     4  0 1.000000000
## GO:0002408  BP     4  0 1.000000000
## GO:0014835  BP     4  0 1.000000000
## GO:0048625  BP     4  0 1.000000000
## GO:0014839  BP     4  0 1.000000000
## GO:0036446  BP     4  0 1.000000000
## GO:0061055  BP     4  0 1.000000000
## GO:0045578  BP     4  0 1.000000000
## GO:1903625  BP     4  0 1.000000000
## GO:0039534  BP     4  0 1.000000000
## GO:0071878  BP     4  0 1.000000000
## GO:0070164  BP     4  0 1.000000000
## GO:0032348  BP     4  0 1.000000000
## GO:0032345  BP     4  0 1.000000000
## GO:1905907  BP     4  0 1.000000000
## GO:0002584  BP     4  0 1.000000000
## GO:0038108  BP     4  0 1.000000000
## GO:1901097  BP     4  0 1.000000000
## GO:1903347  BP     4  0 1.000000000
## GO:0070858  BP     4  0 1.000000000
## GO:1904252  BP     4  0 1.000000000
## GO:1903588  BP     4  0 1.000000000
## GO:1900158  BP     4  0 1.000000000
## GO:2000173  BP     4  0 1.000000000
## GO:0006933  BP     4  0 1.000000000
## GO:0060244  BP     4  0 1.000000000
## GO:1900060  BP     4  0 1.000000000
## GO:0071650  BP     4  0 1.000000000
## GO:1900186  BP     4  0 1.000000000
## GO:1903660  BP     4  0 1.000000000
## GO:2000065  BP     4  0 1.000000000
## GO:0045918  BP     4  0 1.000000000
## GO:0050689  BP     4  0 1.000000000
## GO:1903860  BP     4  0 1.000000000
## GO:2000669  BP     4  0 1.000000000
## GO:2001199  BP     4  0 1.000000000
## GO:1902951  BP     4  0 1.000000000
## GO:2001033  BP     4  0 1.000000000
## GO:1903225  BP     4  0 1.000000000
## GO:0003332  BP     4  0 1.000000000
## GO:0007621  BP     4  0 1.000000000
## GO:0051490  BP     4  0 1.000000000
## GO:0046882  BP     4  0 1.000000000
## GO:2000978  BP     4  0 1.000000000
## GO:0014053  BP     4  0 1.000000000
## GO:1905937  BP     4  0 1.000000000
## GO:0072125  BP     4  0 1.000000000
## GO:0090194  BP     4  0 1.000000000
## GO:0060125  BP     4  0 1.000000000
## GO:0061086  BP     4  0 1.000000000
## GO:2000619  BP     4  0 1.000000000
## GO:0002924  BP     4  0 1.000000000
## GO:1900126  BP     4  0 1.000000000
## GO:0010730  BP     4  0 1.000000000
## GO:0002838  BP     4  0 1.000000000
## GO:0106015  BP     4  0 1.000000000
## GO:0045608  BP     4  0 1.000000000
## GO:2000981  BP     4  0 1.000000000
## GO:2000660  BP     4  0 1.000000000
## GO:0045415  BP     4  0 1.000000000
## GO:1904479  BP     4  0 1.000000000
## GO:1903751  BP     4  0 1.000000000
## GO:1902219  BP     4  0 1.000000000
## GO:1904995  BP     4  0 1.000000000
## GO:0050748  BP     4  0 1.000000000
## GO:1901491  BP     4  0 1.000000000
## GO:2000255  BP     4  0 1.000000000
## GO:0033026  BP     4  0 1.000000000
## GO:0045632  BP     4  0 1.000000000
## GO:1901994  BP     4  0 1.000000000
## GO:1900212  BP     4  0 1.000000000
## GO:0072040  BP     4  0 1.000000000
## GO:1905903  BP     4  0 1.000000000
## GO:1905771  BP     4  0 1.000000000
## GO:0042662  BP     4  0 1.000000000
## GO:0061218  BP     4  0 1.000000000
## GO:1904684  BP     4  0 1.000000000
## GO:1902109  BP     4  0 1.000000000
## GO:0030886  BP     4  0 1.000000000
## GO:0032824  BP     4  0 1.000000000
## GO:0032827  BP     4  0 1.000000000
## GO:1902564  BP     4  0 1.000000000
## GO:0033030  BP     4  0 1.000000000
## GO:1900108  BP     4  0 1.000000000
## GO:2000623  BP     4  0 1.000000000
## GO:2001205  BP     4  0 1.000000000
## GO:0035359  BP     4  0 1.000000000
## GO:0043553  BP     4  0 1.000000000
## GO:0071072  BP     4  0 1.000000000
## GO:0010748  BP     4  0 1.000000000
## GO:2000587  BP     4  0 1.000000000
## GO:0060686  BP     4  0 1.000000000
## GO:1905765  BP     4  0 1.000000000
## GO:0090086  BP     4  0 1.000000000
## GO:1903333  BP     4  0 1.000000000
## GO:0060051  BP     4  0 1.000000000
## GO:0090074  BP     4  0 1.000000000
## GO:2000435  BP     4  0 1.000000000
## GO:0001920  BP     4  0 1.000000000
## GO:0002835  BP     4  0 1.000000000
## GO:0051612  BP     4  0 1.000000000
## GO:0021914  BP     4  0 1.000000000
## GO:1904673  BP     4  0 1.000000000
## GO:0032929  BP     4  0 1.000000000
## GO:0061428  BP     4  0 1.000000000
## GO:0060633  BP     4  0 1.000000000
## GO:1901837  BP     4  0 1.000000000
## GO:0045900  BP     4  0 1.000000000
## GO:1905460  BP     4  0 1.000000000
## GO:1903690  BP     4  0 1.000000000
## GO:0039689  BP     4  0 1.000000000
## GO:0014022  BP     4  0 1.000000000
## GO:0014016  BP     4  0 1.000000000
## GO:0097402  BP     4  0 1.000000000
## GO:0097118  BP     4  0 1.000000000
## GO:0097350  BP     4  0 1.000000000
## GO:0070947  BP     4  0 1.000000000
## GO:0042126  BP     4  0 1.000000000
## GO:0018916  BP     4  0 1.000000000
## GO:0019666  BP     4  0 1.000000000
## GO:0001994  BP     4  0 1.000000000
## GO:1902315  BP     4  0 1.000000000
## GO:0071042  BP     4  0 1.000000000
## GO:0070966  BP     4  0 1.000000000
## GO:0021557  BP     4  0 1.000000000
## GO:0008355  BP     4  0 1.000000000
## GO:0035672  BP     4  0 1.000000000
## GO:0038165  BP     4  0 1.000000000
## GO:0032474  BP     4  0 1.000000000
## GO:0060066  BP     4  0 1.000000000
## GO:0090403  BP     4  0 1.000000000
## GO:0000239  BP     4  0 1.000000000
## GO:0061113  BP     4  0 1.000000000
## GO:0072268  BP     4  0 1.000000000
## GO:0018197  BP     4  0 1.000000000
## GO:0018171  BP     4  0 1.000000000
## GO:0018364  BP     4  0 1.000000000
## GO:0018201  BP     4  0 1.000000000
## GO:0018211  BP     4  0 1.000000000
## GO:0031508  BP     4  0 1.000000000
## GO:0014012  BP     4  0 1.000000000
## GO:0032290  BP     4  0 1.000000000
## GO:0048936  BP     4  0 1.000000000
## GO:0002465  BP     4  0 1.000000000
## GO:0016557  BP     4  0 1.000000000
## GO:0042396  BP     4  0 1.000000000
## GO:0006599  BP     4  0 1.000000000
## GO:0006659  BP     4  0 1.000000000
## GO:0046314  BP     4  0 1.000000000
## GO:0006603  BP     4  0 1.000000000
## GO:0046149  BP     4  0 1.000000000
## GO:0046469  BP     4  0 1.000000000
## GO:0060155  BP     4  0 1.000000000
## GO:0072386  BP     4  0 1.000000000
## GO:0072383  BP     4  0 1.000000000
## GO:0071047  BP     4  0 1.000000000
## GO:0006598  BP     4  0 1.000000000
## GO:0006787  BP     4  0 1.000000000
## GO:0052501  BP     4  0 1.000000000
## GO:0052330  BP     4  0 1.000000000
## GO:0052042  BP     4  0 1.000000000
## GO:0046726  BP     4  0 1.000000000
## GO:2000582  BP     4  0 1.000000000
## GO:2000563  BP     4  0 1.000000000
## GO:0043378  BP     4  0 1.000000000
## GO:2000566  BP     4  0 1.000000000
## GO:1901537  BP     4  0 1.000000000
## GO:0051106  BP     4  0 1.000000000
## GO:1905643  BP     4  0 1.000000000
## GO:1902953  BP     4  0 1.000000000
## GO:0070318  BP     4  0 1.000000000
## GO:1904426  BP     4  0 1.000000000
## GO:0042998  BP     4  0 1.000000000
## GO:0051142  BP     4  0 1.000000000
## GO:1903899  BP     4  0 1.000000000
## GO:0002669  BP     4  0 1.000000000
## GO:2000525  BP     4  0 1.000000000
## GO:2000409  BP     4  0 1.000000000
## GO:0010536  BP     4  0 1.000000000
## GO:1901529  BP     4  0 1.000000000
## GO:0002803  BP     4  0 1.000000000
## GO:0002225  BP     4  0 1.000000000
## GO:1903849  BP     4  0 1.000000000
## GO:0044533  BP     4  0 1.000000000
## GO:0048691  BP     4  0 1.000000000
## GO:1903348  BP     4  0 1.000000000
## GO:0070859  BP     4  0 1.000000000
## GO:1904253  BP     4  0 1.000000000
## GO:2000504  BP     4  0 1.000000000
## GO:1904879  BP     4  0 1.000000000
## GO:0106134  BP     4  0 1.000000000
## GO:1904849  BP     4  0 1.000000000
## GO:0042660  BP     4  0 1.000000000
## GO:0032849  BP     4  0 1.000000000
## GO:1903724  BP     4  0 1.000000000
## GO:1904209  BP     4  0 1.000000000
## GO:1904109  BP     4  0 1.000000000
## GO:0010841  BP     4  0 1.000000000
## GO:0045917  BP     4  0 1.000000000
## GO:1905205  BP     4  0 1.000000000
## GO:1902261  BP     4  0 1.000000000
## GO:1904811  BP     4  0 1.000000000
## GO:0070175  BP     4  0 1.000000000
## GO:0032079  BP     4  0 1.000000000
## GO:1903373  BP     4  0 1.000000000
## GO:2000546  BP     4  0 1.000000000
## GO:2000418  BP     4  0 1.000000000
## GO:1905278  BP     4  0 1.000000000
## GO:1903553  BP     4  0 1.000000000
## GO:1901203  BP     4  0 1.000000000
## GO:0070346  BP     4  0 1.000000000
## GO:0051919  BP     4  0 1.000000000
## GO:0046881  BP     4  0 1.000000000
## GO:0003104  BP     4  0 1.000000000
## GO:0070094  BP     4  0 1.000000000
## GO:1903296  BP     4  0 1.000000000
## GO:0040010  BP     4  0 1.000000000
## GO:0001996  BP     4  0 1.000000000
## GO:1903595  BP     4  0 1.000000000
## GO:2001168  BP     4  0 1.000000000
## GO:1900114  BP     4  0 1.000000000
## GO:0010729  BP     4  0 1.000000000
## GO:1901300  BP     4  0 1.000000000
## GO:0033092  BP     4  0 1.000000000
## GO:1903797  BP     4  0 1.000000000
## GO:0031587  BP     4  0 1.000000000
## GO:0045356  BP     4  0 1.000000000
## GO:0050717  BP     4  0 1.000000000
## GO:2000667  BP     4  0 1.000000000
## GO:0032385  BP     4  0 1.000000000
## GO:0032379  BP     4  0 1.000000000
## GO:0032382  BP     4  0 1.000000000
## GO:0010912  BP     4  0 1.000000000
## GO:0048295  BP     4  0 1.000000000
## GO:0002913  BP     4  0 1.000000000
## GO:1900365  BP     4  0 1.000000000
## GO:0070668  BP     4  0 1.000000000
## GO:1903527  BP     4  0 1.000000000
## GO:2000741  BP     4  0 1.000000000
## GO:0072108  BP     4  0 1.000000000
## GO:1904141  BP     4  0 1.000000000
## GO:0031117  BP     4  0 1.000000000
## GO:0010636  BP     4  0 1.000000000
## GO:2000503  BP     4  0 1.000000000
## GO:1902565  BP     4  0 1.000000000
## GO:0043315  BP     4  0 1.000000000
## GO:0010750  BP     4  0 1.000000000
## GO:2000327  BP     4  0 1.000000000
## GO:0060282  BP     4  0 1.000000000
## GO:1905881  BP     4  0 1.000000000
## GO:0090290  BP     4  0 1.000000000
## GO:0060279  BP     4  0 1.000000000
## GO:0090187  BP     4  0 1.000000000
## GO:1900738  BP     4  0 1.000000000
## GO:2000259  BP     4  0 1.000000000
## GO:1903061  BP     4  0 1.000000000
## GO:1905342  BP     4  0 1.000000000
## GO:1902527  BP     4  0 1.000000000
## GO:1902730  BP     4  0 1.000000000
## GO:1904395  BP     4  0 1.000000000
## GO:0071673  BP     4  0 1.000000000
## GO:1903278  BP     4  0 1.000000000
## GO:0032417  BP     4  0 1.000000000
## GO:0090274  BP     4  0 1.000000000
## GO:2000911  BP     4  0 1.000000000
## GO:0051176  BP     4  0 1.000000000
## GO:0051835  BP     4  0 1.000000000
## GO:1904874  BP     4  0 1.000000000
## GO:0003099  BP     4  0 1.000000000
## GO:0001997  BP     4  0 1.000000000
## GO:2000412  BP     4  0 1.000000000
## GO:0046016  BP     4  0 1.000000000
## GO:0036091  BP     4  0 1.000000000
## GO:0003257  BP     4  0 1.000000000
## GO:0010735  BP     4  0 1.000000000
## GO:0045901  BP     4  0 1.000000000
## GO:0045903  BP     4  0 1.000000000
## GO:0001805  BP     4  0 1.000000000
## GO:0072107  BP     4  0 1.000000000
## GO:1901610  BP     4  0 1.000000000
## GO:0046136  BP     4  0 1.000000000
## GO:1904071  BP     4  0 1.000000000
## GO:0060468  BP     4  0 1.000000000
## GO:0006562  BP     4  0 1.000000000
## GO:0060737  BP     4  0 1.000000000
## GO:0018103  BP     4  0 1.000000000
## GO:0018406  BP     4  0 1.000000000
## GO:0018317  BP     4  0 1.000000000
## GO:0044314  BP     4  0 1.000000000
## GO:1990168  BP     4  0 1.000000000
## GO:0036508  BP     4  0 1.000000000
## GO:0018214  BP     4  0 1.000000000
## GO:0035977  BP     4  0 1.000000000
## GO:0036507  BP     4  0 1.000000000
## GO:0018343  BP     4  0 1.000000000
## GO:0016560  BP     4  0 1.000000000
## GO:0032978  BP     4  0 1.000000000
## GO:0089700  BP     4  0 1.000000000
## GO:0061739  BP     4  0 1.000000000
## GO:0071896  BP     4  0 1.000000000
## GO:1902463  BP     4  0 1.000000000
## GO:0033366  BP     4  0 1.000000000
## GO:0018377  BP     4  0 1.000000000
## GO:0030091  BP     4  0 1.000000000
## GO:0018335  BP     4  0 1.000000000
## GO:0022615  BP     4  0 1.000000000
## GO:0032596  BP     4  0 1.000000000
## GO:0043328  BP     4  0 1.000000000
## GO:0030167  BP     4  0 1.000000000
## GO:0009946  BP     4  0 1.000000000
## GO:0036343  BP     4  0 1.000000000
## GO:0009136  BP     4  0 1.000000000
## GO:0009180  BP     4  0 1.000000000
## GO:0006166  BP     4  0 1.000000000
## GO:0035590  BP     4  0 1.000000000
## GO:0033387  BP     4  0 1.000000000
## GO:0046125  BP     4  0 1.000000000
## GO:0009223  BP     4  0 1.000000000
## GO:0000720  BP     4  0 1.000000000
## GO:0006244  BP     4  0 1.000000000
## GO:0009078  BP     4  0 1.000000000
## GO:0006848  BP     4  0 1.000000000
## GO:0000320  BP     4  0 1.000000000
## GO:0097500  BP     4  0 1.000000000
## GO:0035624  BP     4  0 1.000000000
## GO:0019065  BP     4  0 1.000000000
## GO:0046813  BP     4  0 1.000000000
## GO:2000580  BP     4  0 1.000000000
## GO:0098904  BP     4  0 1.000000000
## GO:1905289  BP     4  0 1.000000000
## GO:0032829  BP     4  0 1.000000000
## GO:0003400  BP     4  0 1.000000000
## GO:1905774  BP     4  0 1.000000000
## GO:0051105  BP     4  0 1.000000000
## GO:0097752  BP     4  0 1.000000000
## GO:0090113  BP     4  0 1.000000000
## GO:0090170  BP     4  0 1.000000000
## GO:0034124  BP     4  0 1.000000000
## GO:1900368  BP     4  0 1.000000000
## GO:1904475  BP     4  0 1.000000000
## GO:2001106  BP     4  0 1.000000000
## GO:0046013  BP     4  0 1.000000000
## GO:0002840  BP     4  0 1.000000000
## GO:2000328  BP     4  0 1.000000000
## GO:1903121  BP     4  0 1.000000000
## GO:0008592  BP     4  0 1.000000000
## GO:0061356  BP     4  0 1.000000000
## GO:0010510  BP     4  0 1.000000000
## GO:0001969  BP     4  0 1.000000000
## GO:0060167  BP     4  0 1.000000000
## GO:0140192  BP     4  0 1.000000000
## GO:1902869  BP     4  0 1.000000000
## GO:0002586  BP     4  0 1.000000000
## GO:1903847  BP     4  0 1.000000000
## GO:2000359  BP     4  0 1.000000000
## GO:1905553  BP     4  0 1.000000000
## GO:0072095  BP     4  0 1.000000000
## GO:1902080  BP     4  0 1.000000000
## GO:0060800  BP     4  0 1.000000000
## GO:1900069  BP     4  0 1.000000000
## GO:0090230  BP     4  0 1.000000000
## GO:0070602  BP     4  0 1.000000000
## GO:1904714  BP     4  0 1.000000000
## GO:1903644  BP     4  0 1.000000000
## GO:1904207  BP     4  0 1.000000000
## GO:0061181  BP     4  0 1.000000000
## GO:1901382  BP     4  0 1.000000000
## GO:0010847  BP     4  0 1.000000000
## GO:0010710  BP     4  0 1.000000000
## GO:2000852  BP     4  0 1.000000000
## GO:0043397  BP     4  0 1.000000000
## GO:2001270  BP     4  0 1.000000000
## GO:1904688  BP     4  0 1.000000000
## GO:0010724  BP     4  0 1.000000000
## GO:1904809  BP     4  0 1.000000000
## GO:0061183  BP     4  0 1.000000000
## GO:1905749  BP     4  0 1.000000000
## GO:1902566  BP     4  0 1.000000000
## GO:1903903  BP     4  0 1.000000000
## GO:0090210  BP     4  0 1.000000000
## GO:0043465  BP     4  0 1.000000000
## GO:1903596  BP     4  0 1.000000000
## GO:2000211  BP     4  0 1.000000000
## GO:1903294  BP     4  0 1.000000000
## GO:0071655  BP     4  0 1.000000000
## GO:0045423  BP     4  0 1.000000000
## GO:0100012  BP     4  0 1.000000000
## GO:0070366  BP     4  0 1.000000000
## GO:1902202  BP     4  0 1.000000000
## GO:1903593  BP     4  0 1.000000000
## GO:1900109  BP     4  0 1.000000000
## GO:2000520  BP     4  0 1.000000000
## GO:0032672  BP     4  0 1.000000000
## GO:0045402  BP     4  0 1.000000000
## GO:0070103  BP     4  0 1.000000000
## GO:1904580  BP     4  0 1.000000000
## GO:1903750  BP     4  0 1.000000000
## GO:0010911  BP     4  0 1.000000000
## GO:0019747  BP     4  0 1.000000000
## GO:0035564  BP     4  0 1.000000000
## GO:1902746  BP     4  0 1.000000000
## GO:0072367  BP     4  0 1.000000000
## GO:1904059  BP     4  0 1.000000000
## GO:0014916  BP     4  0 1.000000000
## GO:1905671  BP     4  0 1.000000000
## GO:1901256  BP     4  0 1.000000000
## GO:1902435  BP     4  0 1.000000000
## GO:0032763  BP     4  0 1.000000000
## GO:1905132  BP     4  0 1.000000000
## GO:1902630  BP     4  0 1.000000000
## GO:1905031  BP     4  0 1.000000000
## GO:1900211  BP     4  0 1.000000000
## GO:0072039  BP     4  0 1.000000000
## GO:0072199  BP     4  0 1.000000000
## GO:2000589  BP     4  0 1.000000000
## GO:1902102  BP     4  0 1.000000000
## GO:0061884  BP     4  0 1.000000000
## GO:0000960  BP     4  0 1.000000000
## GO:1902956  BP     4  0 1.000000000
## GO:0044528  BP     4  0 1.000000000
## GO:2000437  BP     4  0 1.000000000
## GO:0032971  BP     4  0 1.000000000
## GO:1904760  BP     4  0 1.000000000
## GO:0043321  BP     4  0 1.000000000
## GO:0050923  BP     4  0 1.000000000
## GO:0070949  BP     4  0 1.000000000
## GO:0006808  BP     4  0 1.000000000
## GO:1900175  BP     4  0 1.000000000
## GO:1900145  BP     4  0 1.000000000
## GO:2000622  BP     4  0 1.000000000
## GO:1902897  BP     4  0 1.000000000
## GO:1905764  BP     4  0 1.000000000
## GO:1905340  BP     4  0 1.000000000
## GO:0061083  BP     4  0 1.000000000
## GO:1903613  BP     4  0 1.000000000
## GO:1904182  BP     4  0 1.000000000
## GO:1901000  BP     4  0 1.000000000
## GO:1904220  BP     4  0 1.000000000
## GO:1902809  BP     4  0 1.000000000
## GO:2000097  BP     4  0 1.000000000
## GO:1901668  BP     4  0 1.000000000
## GO:1904742  BP     4  0 1.000000000
## GO:2000331  BP     4  0 1.000000000
## GO:0051794  BP     4  0 1.000000000
## GO:0021913  BP     4  0 1.000000000
## GO:0032910  BP     4  0 1.000000000
## GO:2001201  BP     4  0 1.000000000
## GO:0140245  BP     4  0 1.000000000
## GO:0099578  BP     4  0 1.000000000
## GO:0001803  BP     4  0 1.000000000
## GO:0072106  BP     4  0 1.000000000
## GO:0002528  BP     4  0 1.000000000
## GO:0097494  BP     4  0 1.000000000
## GO:1903772  BP     4  0 1.000000000
## GO:1905150  BP     4  0 1.000000000
## GO:0070350  BP     4  0 1.000000000
## GO:0070294  BP     4  0 1.000000000
## GO:0002018  BP     4  0 1.000000000
## GO:0034552  BP     4  0 1.000000000
## GO:0072716  BP     4  0 1.000000000
## GO:0043435  BP     4  0 1.000000000
## GO:0071724  BP     4  0 1.000000000
## GO:1990839  BP     4  0 1.000000000
## GO:0051593  BP     4  0 1.000000000
## GO:0097210  BP     4  0 1.000000000
## GO:0071503  BP     4  0 1.000000000
## GO:0052572  BP     4  0 1.000000000
## GO:0052564  BP     4  0 1.000000000
## GO:0072429  BP     4  0 1.000000000
## GO:0010040  BP     4  0 1.000000000
## GO:0090649  BP     4  0 1.000000000
## GO:1904627  BP     4  0 1.000000000
## GO:0036215  BP     4  0 1.000000000
## GO:0035983  BP     4  0 1.000000000
## GO:0009414  BP     4  0 1.000000000
## GO:0061709  BP     4  0 1.000000000
## GO:1990009  BP     4  0 1.000000000
## GO:0060221  BP     4  0 1.000000000
## GO:0034653  BP     4  0 1.000000000
## GO:0021569  BP     4  0 1.000000000
## GO:0021571  BP     4  0 1.000000000
## GO:0097343  BP     4  0 1.000000000
## GO:1901026  BP     4  0 1.000000000
## GO:0014901  BP     4  0 1.000000000
## GO:0060528  BP     4  0 1.000000000
## GO:0061792  BP     4  0 1.000000000
## GO:0001887  BP     4  0 1.000000000
## GO:0016259  BP     4  0 1.000000000
## GO:0035582  BP     4  0 1.000000000
## GO:0035583  BP     4  0 1.000000000
## GO:0036515  BP     4  0 1.000000000
## GO:0002351  BP     4  0 1.000000000
## GO:0002442  BP     4  0 1.000000000
## GO:0051790  BP     4  0 1.000000000
## GO:1990926  BP     4  0 1.000000000
## GO:0035087  BP     4  0 1.000000000
## GO:0007227  BP     4  0 1.000000000
## GO:0060921  BP     4  0 1.000000000
## GO:0021938  BP     4  0 1.000000000
## GO:0000454  BP     4  0 1.000000000
## GO:0007525  BP     4  0 1.000000000
## GO:0060126  BP     4  0 1.000000000
## GO:0001757  BP     4  0 1.000000000
## GO:0072086  BP     4  0 1.000000000
## GO:0097476  BP     4  0 1.000000000
## GO:0090214  BP     4  0 1.000000000
## GO:0021773  BP     4  0 1.000000000
## GO:0014891  BP     4  0 1.000000000
## GO:0006931  BP     4  0 1.000000000
## GO:0000103  BP     4  0 1.000000000
## GO:0000101  BP     4  0 1.000000000
## GO:0097490  BP     4  0 1.000000000
## GO:0097491  BP     4  0 1.000000000
## GO:0099538  BP     4  0 1.000000000
## GO:0016182  BP     4  0 1.000000000
## GO:0016080  BP     4  0 1.000000000
## GO:0016189  BP     4  0 1.000000000
## GO:0002143  BP     4  0 1.000000000
## GO:0030423  BP     4  0 1.000000000
## GO:0015734  BP     4  0 1.000000000
## GO:0090669  BP     4  0 1.000000000
## GO:0032202  BP     4  0 1.000000000
## GO:0032201  BP     4  0 1.000000000
## GO:0031860  BP     4  0 1.000000000
## GO:0061819  BP     4  0 1.000000000
## GO:0035990  BP     4  0 1.000000000
## GO:0035992  BP     4  0 1.000000000
## GO:0023021  BP     4  0 1.000000000
## GO:0021678  BP     4  0 1.000000000
## GO:0060129  BP     4  0 1.000000000
## GO:0060535  BP     4  0 1.000000000
## GO:0099191  BP     4  0 1.000000000
## GO:0099183  BP     4  0 1.000000000
## GO:0099553  BP     4  0 1.000000000
## GO:0099552  BP     4  0 1.000000000
## GO:0036369  BP     4  0 1.000000000
## GO:0071733  BP     4  0 1.000000000
## GO:0032907  BP     4  0 1.000000000
## GO:0002188  BP     4  0 1.000000000
## GO:0003195  BP     4  0 1.000000000
## GO:0034197  BP     4  0 1.000000000
## GO:0042939  BP     4  0 1.000000000
## GO:0036484  BP     4  0 1.000000000
## GO:0035290  BP     4  0 1.000000000
## GO:0001802  BP     4  0 1.000000000
## GO:0001806  BP     4  0 1.000000000
## GO:0009826  BP     4  0 1.000000000
## GO:0035799  BP     4  0 1.000000000
## GO:0006573  BP     4  0 1.000000000
## GO:0014826  BP     4  0 1.000000000
## GO:0007418  BP     4  0 1.000000000
## GO:0036486  BP     4  0 1.000000000
## GO:0099041  BP     4  0 1.000000000
## GO:0021650  BP     4  0 1.000000000
## GO:0019042  BP     4  0 1.000000000
## GO:0007296  BP     4  0 1.000000000
## GO:0070343  BP     4  0 1.000000000
## GO:0031591  BP     4  0 1.000000000
## GO:0031590  BP     4  0 1.000000000
## GO:0009256  BP     5  0 1.000000000
## GO:0015867  BP     5  0 1.000000000
## GO:0002339  BP     5  0 1.000000000
## GO:0001922  BP     5  0 1.000000000
## GO:0010387  BP     5  0 1.000000000
## GO:0035964  BP     5  0 1.000000000
## GO:0070934  BP     5  0 1.000000000
## GO:0070779  BP     5  0 1.000000000
## GO:0070777  BP     5  0 1.000000000
## GO:0000738  BP     5  0 1.000000000
## GO:0010792  BP     5  0 1.000000000
## GO:0051103  BP     5  0 1.000000000
## GO:0000730  BP     5  0 1.000000000
## GO:0090735  BP     5  0 1.000000000
## GO:0033567  BP     5  0 1.000000000
## GO:0070375  BP     5  0 1.000000000
## GO:0007199  BP     5  0 1.000000000
## GO:0003164  BP     5  0 1.000000000
## GO:0032020  BP     5  0 1.000000000
## GO:0060397  BP     5  0 1.000000000
## GO:0097638  BP     5  0 1.000000000
## GO:0019509  BP     5  0 1.000000000
## GO:0070291  BP     5  0 1.000000000
## GO:0070292  BP     5  0 1.000000000
## GO:0006116  BP     5  0 1.000000000
## GO:0006742  BP     5  0 1.000000000
## GO:0003137  BP     5  0 1.000000000
## GO:0086068  BP     5  0 1.000000000
## GO:0086029  BP     5  0 1.000000000
## GO:0036265  BP     5  0 1.000000000
## GO:0035927  BP     5  0 1.000000000
## GO:0001777  BP     5  0 1.000000000
## GO:0033153  BP     5  0 1.000000000
## GO:0071847  BP     5  0 1.000000000
## GO:0035666  BP     5  0 1.000000000
## GO:0007171  BP     5  0 1.000000000
## GO:0007198  BP     5  0 1.000000000
## GO:0080144  BP     5  0 1.000000000
## GO:0072488  BP     5  0 1.000000000
## GO:0021764  BP     5  0 1.000000000
## GO:0033564  BP     5  0 1.000000000
## GO:0001788  BP     5  0 1.000000000
## GO:0060414  BP     5  0 1.000000000
## GO:0030263  BP     5  0 1.000000000
## GO:0060057  BP     5  0 1.000000000
## GO:0035905  BP     5  0 1.000000000
## GO:0003289  BP     5  0 1.000000000
## GO:0016255  BP     5  0 1.000000000
## GO:0044804  BP     5  0 1.000000000
## GO:0030242  BP     5  0 1.000000000
## GO:0048319  BP     5  0 1.000000000
## GO:0090245  BP     5  0 1.000000000
## GO:0016199  BP     5  0 1.000000000
## GO:0006287  BP     5  0 1.000000000
## GO:2001197  BP     5  0 1.000000000
## GO:0060681  BP     5  0 1.000000000
## GO:1904970  BP     5  0 1.000000000
## GO:0061591  BP     5  0 1.000000000
## GO:0061590  BP     5  0 1.000000000
## GO:0061588  BP     5  0 1.000000000
## GO:0099502  BP     5  0 1.000000000
## GO:0038171  BP     5  0 1.000000000
## GO:0061316  BP     5  0 1.000000000
## GO:0002190  BP     5  0 1.000000000
## GO:0045991  BP     5  0 1.000000000
## GO:0045990  BP     5  0 1.000000000
## GO:0061026  BP     5  0 1.000000000
## GO:0060926  BP     5  0 1.000000000
## GO:0060948  BP     5  0 1.000000000
## GO:0060689  BP     5  0 1.000000000
## GO:0035787  BP     5  0 1.000000000
## GO:0061325  BP     5  0 1.000000000
## GO:0044838  BP     5  0 1.000000000
## GO:0044036  BP     5  0 1.000000000
## GO:0071554  BP     5  0 1.000000000
## GO:0044108  BP     5  0 1.000000000
## GO:0044107  BP     5  0 1.000000000
## GO:0010961  BP     5  0 1.000000000
## GO:1990416  BP     5  0 1.000000000
## GO:0072757  BP     5  0 1.000000000
## GO:0071455  BP     5  0 1.000000000
## GO:0071681  BP     5  0 1.000000000
## GO:0036016  BP     5  0 1.000000000
## GO:1904637  BP     5  0 1.000000000
## GO:0090156  BP     5  0 1.000000000
## GO:0022009  BP     5  0 1.000000000
## GO:0061642  BP     5  0 1.000000000
## GO:0060591  BP     5  0 1.000000000
## GO:0097240  BP     5  0 1.000000000
## GO:0051305  BP     5  0 1.000000000
## GO:0061073  BP     5  0 1.000000000
## GO:0070120  BP     5  0 1.000000000
## GO:0015889  BP     5  0 1.000000000
## GO:0048669  BP     5  0 1.000000000
## GO:0002069  BP     5  0 1.000000000
## GO:0001661  BP     5  0 1.000000000
## GO:0035934  BP     5  0 1.000000000
## GO:0007253  BP     5  0 1.000000000
## GO:0046078  BP     5  0 1.000000000
## GO:0097742  BP     5  0 1.000000000
## GO:0098535  BP     5  0 1.000000000
## GO:0031087  BP     5  0 1.000000000
## GO:0070837  BP     5  0 1.000000000
## GO:0097187  BP     5  0 1.000000000
## GO:0009157  BP     5  0 1.000000000
## GO:0009202  BP     5  0 1.000000000
## GO:0070940  BP     5  0 1.000000000
## GO:0030205  BP     5  0 1.000000000
## GO:0050651  BP     5  0 1.000000000
## GO:0009597  BP     5  0 1.000000000
## GO:0035469  BP     5  0 1.000000000
## GO:0015961  BP     5  0 1.000000000
## GO:0060666  BP     5  0 1.000000000
## GO:0036072  BP     5  0 1.000000000
## GO:0072025  BP     5  0 1.000000000
## GO:0019348  BP     5  0 1.000000000
## GO:1990961  BP     5  0 1.000000000
## GO:0033227  BP     5  0 1.000000000
## GO:0060971  BP     5  0 1.000000000
## GO:0003199  BP     5  0 1.000000000
## GO:0002278  BP     5  0 1.000000000
## GO:0043308  BP     5  0 1.000000000
## GO:0030222  BP     5  0 1.000000000
## GO:0002447  BP     5  0 1.000000000
## GO:0060750  BP     5  0 1.000000000
## GO:0042276  BP     5  0 1.000000000
## GO:0051295  BP     5  0 1.000000000
## GO:0006068  BP     5  0 1.000000000
## GO:1901503  BP     5  0 1.000000000
## GO:0008611  BP     5  0 1.000000000
## GO:0035426  BP     5  0 1.000000000
## GO:0033078  BP     5  0 1.000000000
## GO:0001561  BP     5  0 1.000000000
## GO:0006113  BP     5  0 1.000000000
## GO:1904447  BP     5  0 1.000000000
## GO:0098838  BP     5  0 1.000000000
## GO:0046655  BP     5  0 1.000000000
## GO:0015884  BP     5  0 1.000000000
## GO:0046292  BP     5  0 1.000000000
## GO:0048859  BP     5  0 1.000000000
## GO:0021943  BP     5  0 1.000000000
## GO:0010994  BP     5  0 1.000000000
## GO:0019375  BP     5  0 1.000000000
## GO:0033499  BP     5  0 1.000000000
## GO:0006682  BP     5  0 1.000000000
## GO:0009448  BP     5  0 1.000000000
## GO:1990349  BP     5  0 1.000000000
## GO:0042078  BP     5  0 1.000000000
## GO:0098728  BP     5  0 1.000000000
## GO:0021780  BP     5  0 1.000000000
## GO:0021563  BP     5  0 1.000000000
## GO:0006041  BP     5  0 1.000000000
## GO:0015760  BP     5  0 1.000000000
## GO:0006538  BP     5  0 1.000000000
## GO:0006868  BP     5  0 1.000000000
## GO:0006751  BP     5  0 1.000000000
## GO:0006114  BP     5  0 1.000000000
## GO:0046504  BP     5  0 1.000000000
## GO:0015793  BP     5  0 1.000000000
## GO:0006545  BP     5  0 1.000000000
## GO:0003241  BP     5  0 1.000000000
## GO:0003419  BP     5  0 1.000000000
## GO:1901069  BP     5  0 1.000000000
## GO:0046959  BP     5  0 1.000000000
## GO:0031581  BP     5  0 1.000000000
## GO:0015015  BP     5  0 1.000000000
## GO:0030202  BP     5  0 1.000000000
## GO:0051122  BP     5  0 1.000000000
## GO:0051121  BP     5  0 1.000000000
## GO:0015712  BP     5  0 1.000000000
## GO:0006548  BP     5  0 1.000000000
## GO:0070535  BP     5  0 1.000000000
## GO:0036414  BP     5  0 1.000000000
## GO:0009092  BP     5  0 1.000000000
## GO:0044027  BP     5  0 1.000000000
## GO:0021855  BP     5  0 1.000000000
## GO:0002765  BP     5  0 1.000000000
## GO:0002085  BP     5  0 1.000000000
## GO:0002220  BP     5  0 1.000000000
## GO:0045349  BP     5  0 1.000000000
## GO:0035546  BP     5  0 1.000000000
## GO:0042091  BP     5  0 1.000000000
## GO:0032632  BP     5  0 1.000000000
## GO:0035771  BP     5  0 1.000000000
## GO:0075733  BP     5  0 1.000000000
## GO:0035720  BP     5  0 1.000000000
## GO:0001957  BP     5  0 1.000000000
## GO:0015705  BP     5  0 1.000000000
## GO:0009240  BP     5  0 1.000000000
## GO:0046490  BP     5  0 1.000000000
## GO:0035873  BP     5  0 1.000000000
## GO:0015727  BP     5  0 1.000000000
## GO:0032802  BP     5  0 1.000000000
## GO:0060480  BP     5  0 1.000000000
## GO:0071593  BP     5  0 1.000000000
## GO:0006398  BP     5  0 1.000000000
## GO:0110104  BP     5  0 1.000000000
## GO:0098795  BP     5  0 1.000000000
## GO:0035279  BP     5  0 1.000000000
## GO:1990481  BP     5  0 1.000000000
## GO:0038145  BP     5  0 1.000000000
## GO:0048496  BP     5  0 1.000000000
## GO:0036438  BP     5  0 1.000000000
## GO:0072656  BP     5  0 1.000000000
## GO:0043490  BP     5  0 1.000000000
## GO:0090598  BP     5  0 1.000000000
## GO:0048808  BP     5  0 1.000000000
## GO:0048133  BP     5  0 1.000000000
## GO:0033024  BP     5  0 1.000000000
## GO:0060374  BP     5  0 1.000000000
## GO:0033023  BP     5  0 1.000000000
## GO:0070662  BP     5  0 1.000000000
## GO:0060137  BP     5  0 1.000000000
## GO:0002901  BP     5  0 1.000000000
## GO:0070197  BP     5  0 1.000000000
## GO:0051754  BP     5  0 1.000000000
## GO:0044821  BP     5  0 1.000000000
## GO:1903232  BP     5  0 1.000000000
## GO:0086045  BP     5  0 1.000000000
## GO:0030397  BP     5  0 1.000000000
## GO:0098914  BP     5  0 1.000000000
## GO:0072143  BP     5  0 1.000000000
## GO:0072007  BP     5  0 1.000000000
## GO:0060916  BP     5  0 1.000000000
## GO:0072221  BP     5  0 1.000000000
## GO:0072235  BP     5  0 1.000000000
## GO:0014005  BP     5  0 1.000000000
## GO:0002282  BP     5  0 1.000000000
## GO:1904124  BP     5  0 1.000000000
## GO:0007494  BP     5  0 1.000000000
## GO:0072385  BP     5  0 1.000000000
## GO:0000965  BP     5  0 1.000000000
## GO:0000957  BP     5  0 1.000000000
## GO:0035694  BP     5  0 1.000000000
## GO:0045448  BP     5  0 1.000000000
## GO:0051256  BP     5  0 1.000000000
## GO:0003192  BP     5  0 1.000000000
## GO:0052150  BP     5  0 1.000000000
## GO:0046462  BP     5  0 1.000000000
## GO:0070487  BP     5  0 1.000000000
## GO:0061743  BP     5  0 1.000000000
## GO:0003150  BP     5  0 1.000000000
## GO:0014905  BP     5  0 1.000000000
## GO:0035747  BP     5  0 1.000000000
## GO:0002325  BP     5  0 1.000000000
## GO:0106119  BP     5  0 1.000000000
## GO:2001186  BP     5  0 1.000000000
## GO:2000002  BP     5  0 1.000000000
## GO:2000143  BP     5  0 1.000000000
## GO:0070317  BP     5  0 1.000000000
## GO:0042997  BP     5  0 1.000000000
## GO:0045347  BP     5  0 1.000000000
## GO:1900226  BP     5  0 1.000000000
## GO:0035021  BP     5  0 1.000000000
## GO:0010991  BP     5  0 1.000000000
## GO:0060392  BP     5  0 1.000000000
## GO:0001915  BP     5  0 1.000000000
## GO:0070236  BP     5  0 1.000000000
## GO:0010693  BP     5  0 1.000000000
## GO:1901877  BP     5  0 1.000000000
## GO:0055118  BP     5  0 1.000000000
## GO:0033239  BP     5  0 1.000000000
## GO:0045541  BP     5  0 1.000000000
## GO:0090370  BP     5  0 1.000000000
## GO:0090206  BP     5  0 1.000000000
## GO:0002740  BP     5  0 1.000000000
## GO:1900425  BP     5  0 1.000000000
## GO:0060160  BP     5  0 1.000000000
## GO:0033602  BP     5  0 1.000000000
## GO:1903999  BP     5  0 1.000000000
## GO:1903912  BP     5  0 1.000000000
## GO:2000697  BP     5  0 1.000000000
## GO:2000195  BP     5  0 1.000000000
## GO:0090272  BP     5  0 1.000000000
## GO:1903976  BP     5  0 1.000000000
## GO:0031947  BP     5  0 1.000000000
## GO:0031944  BP     5  0 1.000000000
## GO:0033132  BP     5  0 1.000000000
## GO:0045719  BP     5  0 1.000000000
## GO:2000346  BP     5  0 1.000000000
## GO:1903300  BP     5  0 1.000000000
## GO:1901842  BP     5  0 1.000000000
## GO:1903298  BP     5  0 1.000000000
## GO:0032304  BP     5  0 1.000000000
## GO:0033088  BP     5  0 1.000000000
## GO:0051025  BP     5  0 1.000000000
## GO:0032687  BP     5  0 1.000000000
## GO:1902714  BP     5  0 1.000000000
## GO:0032696  BP     5  0 1.000000000
## GO:1905077  BP     5  0 1.000000000
## GO:0045085  BP     5  0 1.000000000
## GO:0032714  BP     5  0 1.000000000
## GO:0034760  BP     5  0 1.000000000
## GO:0034757  BP     5  0 1.000000000
## GO:0045829  BP     5  0 1.000000000
## GO:1902744  BP     5  0 1.000000000
## GO:0090219  BP     5  0 1.000000000
## GO:0033685  BP     5  0 1.000000000
## GO:0010936  BP     5  0 1.000000000
## GO:0002906  BP     5  0 1.000000000
## GO:0051902  BP     5  0 1.000000000
## GO:0010637  BP     5  0 1.000000000
## GO:0045950  BP     5  0 1.000000000
## GO:0051387  BP     5  0 1.000000000
## GO:0042483  BP     5  0 1.000000000
## GO:1903377  BP     5  0 1.000000000
## GO:0048550  BP     5  0 1.000000000
## GO:1900045  BP     5  0 1.000000000
## GO:1902817  BP     5  0 1.000000000
## GO:1901078  BP     5  0 1.000000000
## GO:0060266  BP     5  0 1.000000000
## GO:0010891  BP     5  0 1.000000000
## GO:1900004  BP     5  0 1.000000000
## GO:1902572  BP     5  0 1.000000000
## GO:0014063  BP     5  0 1.000000000
## GO:0045875  BP     5  0 1.000000000
## GO:0090155  BP     5  0 1.000000000
## GO:0032227  BP     5  0 1.000000000
## GO:2000301  BP     5  0 1.000000000
## GO:1904506  BP     5  0 1.000000000
## GO:0034136  BP     5  0 1.000000000
## GO:1990441  BP     5  0 1.000000000
## GO:0032911  BP     5  0 1.000000000
## GO:0010897  BP     5  0 1.000000000
## GO:1901164  BP     5  0 1.000000000
## GO:0010957  BP     5  0 1.000000000
## GO:0072179  BP     5  0 1.000000000
## GO:0023041  BP     5  0 1.000000000
## GO:0032898  BP     5  0 1.000000000
## GO:0014028  BP     5  0 1.000000000
## GO:0051081  BP     5  0 1.000000000
## GO:0071033  BP     5  0 1.000000000
## GO:0043174  BP     5  0 1.000000000
## GO:0070427  BP     5  0 1.000000000
## GO:0006297  BP     5  0 1.000000000
## GO:0071698  BP     5  0 1.000000000
## GO:0030910  BP     5  0 1.000000000
## GO:0071699  BP     5  0 1.000000000
## GO:0097252  BP     5  0 1.000000000
## GO:0021779  BP     5  0 1.000000000
## GO:0021778  BP     5  0 1.000000000
## GO:0035106  BP     5  0 1.000000000
## GO:0019532  BP     5  0 1.000000000
## GO:0035513  BP     5  0 1.000000000
## GO:0032364  BP     5  0 1.000000000
## GO:0072592  BP     5  0 1.000000000
## GO:0061205  BP     5  0 1.000000000
## GO:0035898  BP     5  0 1.000000000
## GO:0009052  BP     5  0 1.000000000
## GO:0018057  BP     5  0 1.000000000
## GO:1990264  BP     5  0 1.000000000
## GO:1990511  BP     5  0 1.000000000
## GO:0002317  BP     5  0 1.000000000
## GO:0035879  BP     5  0 1.000000000
## GO:0044854  BP     5  0 1.000000000
## GO:0002904  BP     5  0 1.000000000
## GO:1905451  BP     5  0 1.000000000
## GO:1903721  BP     5  0 1.000000000
## GO:0033864  BP     5  0 1.000000000
## GO:0035481  BP     5  0 1.000000000
## GO:0035022  BP     5  0 1.000000000
## GO:1900149  BP     5  0 1.000000000
## GO:0106071  BP     5  0 1.000000000
## GO:0010694  BP     5  0 1.000000000
## GO:1900223  BP     5  0 1.000000000
## GO:0002760  BP     5  0 1.000000000
## GO:1902512  BP     5  0 1.000000000
## GO:0060058  BP     5  0 1.000000000
## GO:1904261  BP     5  0 1.000000000
## GO:0061047  BP     5  0 1.000000000
## GO:2000481  BP     5  0 1.000000000
## GO:1905665  BP     5  0 1.000000000
## GO:1901896  BP     5  0 1.000000000
## GO:0060355  BP     5  0 1.000000000
## GO:2000304  BP     5  0 1.000000000
## GO:0071651  BP     5  0 1.000000000
## GO:0002678  BP     5  0 1.000000000
## GO:2000370  BP     5  0 1.000000000
## GO:0051464  BP     5  0 1.000000000
## GO:0010606  BP     5  0 1.000000000
## GO:1902952  BP     5  0 1.000000000
## GO:0032077  BP     5  0 1.000000000
## GO:0060161  BP     5  0 1.000000000
## GO:1904000  BP     5  0 1.000000000
## GO:2001137  BP     5  0 1.000000000
## GO:1905007  BP     5  0 1.000000000
## GO:2000196  BP     5  0 1.000000000
## GO:0090271  BP     5  0 1.000000000
## GO:0002636  BP     5  0 1.000000000
## GO:2000324  BP     5  0 1.000000000
## GO:0035948  BP     5  0 1.000000000
## GO:2000467  BP     5  0 1.000000000
## GO:0032278  BP     5  0 1.000000000
## GO:0031284  BP     5  0 1.000000000
## GO:0048818  BP     5  0 1.000000000
## GO:1901534  BP     5  0 1.000000000
## GO:1901843  BP     5  0 1.000000000
## GO:0071442  BP     5  0 1.000000000
## GO:1900127  BP     5  0 1.000000000
## GO:0010726  BP     5  0 1.000000000
## GO:0033091  BP     5  0 1.000000000
## GO:0035549  BP     5  0 1.000000000
## GO:2001184  BP     5  0 1.000000000
## GO:0032747  BP     5  0 1.000000000
## GO:1904504  BP     5  0 1.000000000
## GO:0050747  BP     5  0 1.000000000
## GO:0010986  BP     5  0 1.000000000
## GO:0034241  BP     5  0 1.000000000
## GO:0034184  BP     5  0 1.000000000
## GO:1903521  BP     5  0 1.000000000
## GO:1901995  BP     5  0 1.000000000
## GO:0045636  BP     5  0 1.000000000
## GO:2000382  BP     5  0 1.000000000
## GO:0072300  BP     5  0 1.000000000
## GO:2000576  BP     5  0 1.000000000
## GO:1905448  BP     5  0 1.000000000
## GO:0002729  BP     5  0 1.000000000
## GO:0033031  BP     5  0 1.000000000
## GO:2001206  BP     5  0 1.000000000
## GO:0010513  BP     5  0 1.000000000
## GO:0032430  BP     5  0 1.000000000
## GO:0010641  BP     5  0 1.000000000
## GO:1903566  BP     5  0 1.000000000
## GO:1902474  BP     5  0 1.000000000
## GO:0032106  BP     5  0 1.000000000
## GO:0032109  BP     5  0 1.000000000
## GO:0048386  BP     5  0 1.000000000
## GO:0060316  BP     5  0 1.000000000
## GO:0046878  BP     5  0 1.000000000
## GO:0060298  BP     5  0 1.000000000
## GO:0072513  BP     5  0 1.000000000
## GO:0014858  BP     5  0 1.000000000
## GO:0090154  BP     5  0 1.000000000
## GO:1905832  BP     5  0 1.000000000
## GO:0048687  BP     5  0 1.000000000
## GO:0031632  BP     5  0 1.000000000
## GO:1902949  BP     5  0 1.000000000
## GO:0098735  BP     5  0 1.000000000
## GO:1901165  BP     5  0 1.000000000
## GO:0035470  BP     5  0 1.000000000
## GO:0007023  BP     5  0 1.000000000
## GO:1990709  BP     5  0 1.000000000
## GO:0060431  BP     5  0 1.000000000
## GO:0006701  BP     5  0 1.000000000
## GO:0042701  BP     5  0 1.000000000
## GO:0006561  BP     5  0 1.000000000
## GO:0019541  BP     5  0 1.000000000
## GO:0019230  BP     5  0 1.000000000
## GO:0035523  BP     5  0 1.000000000
## GO:0035519  BP     5  0 1.000000000
## GO:1990592  BP     5  0 1.000000000
## GO:0018101  BP     5  0 1.000000000
## GO:0051725  BP     5  0 1.000000000
## GO:0071947  BP     5  0 1.000000000
## GO:0033578  BP     5  0 1.000000000
## GO:0045040  BP     5  0 1.000000000
## GO:0001844  BP     5  0 1.000000000
## GO:0097039  BP     5  0 1.000000000
## GO:0009249  BP     5  0 1.000000000
## GO:1903361  BP     5  0 1.000000000
## GO:0071205  BP     5  0 1.000000000
## GO:0002175  BP     5  0 1.000000000
## GO:0106035  BP     5  0 1.000000000
## GO:1990564  BP     5  0 1.000000000
## GO:0045053  BP     5  0 1.000000000
## GO:1990743  BP     5  0 1.000000000
## GO:0035610  BP     5  0 1.000000000
## GO:0046501  BP     5  0 1.000000000
## GO:0072014  BP     5  0 1.000000000
## GO:0072047  BP     5  0 1.000000000
## GO:0009137  BP     5  0 1.000000000
## GO:0009181  BP     5  0 1.000000000
## GO:0009177  BP     5  0 1.000000000
## GO:0009211  BP     5  0 1.000000000
## GO:0046133  BP     5  0 1.000000000
## GO:0019805  BP     5  0 1.000000000
## GO:0031118  BP     5  0 1.000000000
## GO:0051029  BP     5  0 1.000000000
## GO:0090118  BP     5  0 1.000000000
## GO:0043654  BP     5  0 1.000000000
## GO:1905462  BP     5  0 1.000000000
## GO:0031554  BP     5  0 1.000000000
## GO:1902031  BP     5  0 1.000000000
## GO:0051140  BP     5  0 1.000000000
## GO:0035480  BP     5  0 1.000000000
## GO:2000523  BP     5  0 1.000000000
## GO:0050812  BP     5  0 1.000000000
## GO:0002786  BP     5  0 1.000000000
## GO:0002580  BP     5  0 1.000000000
## GO:0002784  BP     5  0 1.000000000
## GO:0009786  BP     5  0 1.000000000
## GO:0098910  BP     5  0 1.000000000
## GO:0048690  BP     5  0 1.000000000
## GO:2000812  BP     5  0 1.000000000
## GO:1904259  BP     5  0 1.000000000
## GO:0110011  BP     5  0 1.000000000
## GO:0060762  BP     5  0 1.000000000
## GO:0060665  BP     5  0 1.000000000
## GO:1901876  BP     5  0 1.000000000
## GO:0098909  BP     5  0 1.000000000
## GO:0032847  BP     5  0 1.000000000
## GO:1900034  BP     5  0 1.000000000
## GO:1903972  BP     5  0 1.000000000
## GO:1903722  BP     5  0 1.000000000
## GO:0060623  BP     5  0 1.000000000
## GO:0071922  BP     5  0 1.000000000
## GO:1904026  BP     5  0 1.000000000
## GO:0051342  BP     5  0 1.000000000
## GO:1903224  BP     5  0 1.000000000
## GO:1903371  BP     5  0 1.000000000
## GO:0051036  BP     5  0 1.000000000
## GO:1901509  BP     5  0 1.000000000
## GO:2000535  BP     5  0 1.000000000
## GO:1905333  BP     5  0 1.000000000
## GO:0060398  BP     5  0 1.000000000
## GO:0046984  BP     5  0 1.000000000
## GO:2001166  BP     5  0 1.000000000
## GO:1903297  BP     5  0 1.000000000
## GO:0106014  BP     5  0 1.000000000
## GO:0045113  BP     5  0 1.000000000
## GO:0045354  BP     5  0 1.000000000
## GO:0035547  BP     5  0 1.000000000
## GO:0045074  BP     5  0 1.000000000
## GO:1902218  BP     5  0 1.000000000
## GO:1901979  BP     5  0 1.000000000
## GO:1904502  BP     5  0 1.000000000
## GO:0032803  BP     5  0 1.000000000
## GO:1903519  BP     5  0 1.000000000
## GO:0033025  BP     5  0 1.000000000
## GO:0070666  BP     5  0 1.000000000
## GO:0002905  BP     5  0 1.000000000
## GO:1900825  BP     5  0 1.000000000
## GO:1903525  BP     5  0 1.000000000
## GO:0043380  BP     5  0 1.000000000
## GO:1904139  BP     5  0 1.000000000
## GO:0010968  BP     5  0 1.000000000
## GO:1904956  BP     5  0 1.000000000
## GO:0009794  BP     5  0 1.000000000
## GO:1902412  BP     5  0 1.000000000
## GO:0014735  BP     5  0 1.000000000
## GO:2000501  BP     5  0 1.000000000
## GO:0032826  BP     5  0 1.000000000
## GO:2000325  BP     5  0 1.000000000
## GO:0070432  BP     5  0 1.000000000
## GO:0070424  BP     5  0 1.000000000
## GO:0090289  BP     5  0 1.000000000
## GO:0060278  BP     5  0 1.000000000
## GO:2000275  BP     5  0 1.000000000
## GO:1902308  BP     5  0 1.000000000
## GO:2001245  BP     5  0 1.000000000
## GO:1900736  BP     5  0 1.000000000
## GO:0060696  BP     5  0 1.000000000
## GO:2000583  BP     5  0 1.000000000
## GO:1902267  BP     5  0 1.000000000
## GO:1902498  BP     5  0 1.000000000
## GO:1903059  BP     5  0 1.000000000
## GO:1902816  BP     5  0 1.000000000
## GO:1902525  BP     5  0 1.000000000
## GO:2000434  BP     5  0 1.000000000
## GO:1900133  BP     5  0 1.000000000
## GO:1903969  BP     5  0 1.000000000
## GO:0090259  BP     5  0 1.000000000
## GO:0061088  BP     5  0 1.000000000
## GO:1900003  BP     5  0 1.000000000
## GO:1902571  BP     5  0 1.000000000
## GO:1904347  BP     5  0 1.000000000
## GO:1903276  BP     5  0 1.000000000
## GO:2000118  BP     5  0 1.000000000
## GO:0150003  BP     5  0 1.000000000
## GO:0062028  BP     5  0 1.000000000
## GO:0008582  BP     5  0 1.000000000
## GO:0001978  BP     5  0 1.000000000
## GO:0001992  BP     5  0 1.000000000
## GO:1904505  BP     5  0 1.000000000
## GO:2000224  BP     5  0 1.000000000
## GO:2000410  BP     5  0 1.000000000
## GO:2000609  BP     5  0 1.000000000
## GO:0002155  BP     5  0 1.000000000
## GO:0051884  BP     5  0 1.000000000
## GO:0060164  BP     5  0 1.000000000
## GO:0046015  BP     5  0 1.000000000
## GO:0014724  BP     5  0 1.000000000
## GO:0106020  BP     5  0 1.000000000
## GO:0048209  BP     5  0 1.000000000
## GO:1901608  BP     5  0 1.000000000
## GO:0070295  BP     5  0 1.000000000
## GO:0072344  BP     5  0 1.000000000
## GO:0061476  BP     5  0 1.000000000
## GO:0072718  BP     5  0 1.000000000
## GO:0009750  BP     5  0 1.000000000
## GO:0071680  BP     5  0 1.000000000
## GO:0070669  BP     5  0 1.000000000
## GO:0036015  BP     5  0 1.000000000
## GO:1904636  BP     5  0 1.000000000
## GO:0002238  BP     5  0 1.000000000
## GO:0014873  BP     5  0 1.000000000
## GO:0032571  BP     5  0 1.000000000
## GO:0061304  BP     5  0 1.000000000
## GO:0098942  BP     5  0 1.000000000
## GO:0090677  BP     5  0 1.000000000
## GO:0009188  BP     5  0 1.000000000
## GO:0090666  BP     5  0 1.000000000
## GO:0061056  BP     5  0 1.000000000
## GO:0050915  BP     5  0 1.000000000
## GO:0032329  BP     5  0 1.000000000
## GO:0015739  BP     5  0 1.000000000
## GO:0097503  BP     5  0 1.000000000
## GO:0003163  BP     5  0 1.000000000
## GO:0014734  BP     5  0 1.000000000
## GO:0014834  BP     5  0 1.000000000
## GO:1990770  BP     5  0 1.000000000
## GO:0060083  BP     5  0 1.000000000
## GO:0040031  BP     5  0 1.000000000
## GO:0048254  BP     5  0 1.000000000
## GO:0060023  BP     5  0 1.000000000
## GO:0002568  BP     5  0 1.000000000
## GO:0002681  BP     5  0 1.000000000
## GO:0065001  BP     5  0 1.000000000
## GO:0072081  BP     5  0 1.000000000
## GO:0030382  BP     5  0 1.000000000
## GO:0007290  BP     5  0 1.000000000
## GO:0008295  BP     5  0 1.000000000
## GO:0003376  BP     5  0 1.000000000
## GO:0000393  BP     5  0 1.000000000
## GO:0042148  BP     5  0 1.000000000
## GO:0035617  BP     5  0 1.000000000
## GO:0015744  BP     5  0 1.000000000
## GO:0016191  BP     5  0 1.000000000
## GO:0031119  BP     5  0 1.000000000
## GO:0034227  BP     5  0 1.000000000
## GO:0051031  BP     5  0 1.000000000
## GO:0006363  BP     5  0 1.000000000
## GO:0033015  BP     5  0 1.000000000
## GO:0050955  BP     5  0 1.000000000
## GO:0006567  BP     5  0 1.000000000
## GO:0038163  BP     5  0 1.000000000
## GO:0070460  BP     5  0 1.000000000
## GO:0044691  BP     5  0 1.000000000
## GO:0009403  BP     5  0 1.000000000
## GO:0009407  BP     5  0 1.000000000
## GO:0019087  BP     5  0 1.000000000
## GO:0032197  BP     5  0 1.000000000
## GO:0019346  BP     5  0 1.000000000
## GO:0061551  BP     5  0 1.000000000
## GO:0021636  BP     5  0 1.000000000
## GO:0021637  BP     5  0 1.000000000
## GO:0001834  BP     5  0 1.000000000
## GO:0019441  BP     5  0 1.000000000
## GO:0006572  BP     5  0 1.000000000
## GO:0070086  BP     5  0 1.000000000
## GO:0097466  BP     5  0 1.000000000
## GO:0090611  BP     5  0 1.000000000
## GO:0072193  BP     5  0 1.000000000
## GO:0072191  BP     5  0 1.000000000
## GO:0060157  BP     5  0 1.000000000
## GO:0034447  BP     5  0 1.000000000
## GO:0030050  BP     5  0 1.000000000
## GO:0060005  BP     5  0 1.000000000
## GO:0075525  BP     5  0 1.000000000
## GO:0006776  BP     5  0 1.000000000
## GO:0070640  BP     5  0 1.000000000
## GO:0009115  BP     5  0 1.000000000
## GO:0007354  BP     5  0 1.000000000
## GO:0006207  BP     6  0 1.000000000
## GO:0050427  BP     6  0 1.000000000
## GO:0006167  BP     6  0 1.000000000
## GO:0002326  BP     6  0 1.000000000
## GO:0002322  BP     6  0 1.000000000
## GO:0001923  BP     6  0 1.000000000
## GO:0061312  BP     6  0 1.000000000
## GO:0006501  BP     6  0 1.000000000
## GO:0006975  BP     6  0 1.000000000
## GO:0006307  BP     6  0 1.000000000
## GO:0015074  BP     6  0 1.000000000
## GO:0044806  BP     6  0 1.000000000
## GO:0046037  BP     6  0 1.000000000
## GO:0090166  BP     6  0 1.000000000
## GO:0015808  BP     6  0 1.000000000
## GO:1903400  BP     6  0 1.000000000
## GO:0006777  BP     6  0 1.000000000
## GO:0019720  BP     6  0 1.000000000
## GO:0019262  BP     6  0 1.000000000
## GO:0006498  BP     6  0 1.000000000
## GO:0097114  BP     6  0 1.000000000
## GO:0070898  BP     6  0 1.000000000
## GO:0006048  BP     6  0 1.000000000
## GO:0014055  BP     6  0 1.000000000
## GO:0000147  BP     6  0 1.000000000
## GO:0051666  BP     6  0 1.000000000
## GO:0044396  BP     6  0 1.000000000
## GO:0008635  BP     6  0 1.000000000
## GO:0031584  BP     6  0 1.000000000
## GO:0032237  BP     6  0 1.000000000
## GO:0000915  BP     6  0 1.000000000
## GO:0044837  BP     6  0 1.000000000
## GO:0070162  BP     6  0 1.000000000
## GO:0019401  BP     6  0 1.000000000
## GO:0097647  BP     6  0 1.000000000
## GO:0006702  BP     6  0 1.000000000
## GO:0021960  BP     6  0 1.000000000
## GO:0098937  BP     6  0 1.000000000
## GO:0071839  BP     6  0 1.000000000
## GO:1902262  BP     6  0 1.000000000
## GO:0003278  BP     6  0 1.000000000
## GO:0006526  BP     6  0 1.000000000
## GO:1903826  BP     6  0 1.000000000
## GO:0015801  BP     6  0 1.000000000
## GO:0060842  BP     6  0 1.000000000
## GO:0000912  BP     6  0 1.000000000
## GO:0055059  BP     6  0 1.000000000
## GO:0009912  BP     6  0 1.000000000
## GO:0075071  BP     6  0 1.000000000
## GO:0075044  BP     6  0 1.000000000
## GO:0048677  BP     6  0 1.000000000
## GO:1990822  BP     6  0 1.000000000
## GO:0032782  BP     6  0 1.000000000
## GO:0010815  BP     6  0 1.000000000
## GO:0060751  BP     6  0 1.000000000
## GO:0021785  BP     6  0 1.000000000
## GO:0086073  BP     6  0 1.000000000
## GO:1990036  BP     6  0 1.000000000
## GO:0015722  BP     6  0 1.000000000
## GO:0044340  BP     6  0 1.000000000
## GO:0009756  BP     6  0 1.000000000
## GO:0060920  BP     6  0 1.000000000
## GO:0015879  BP     6  0 1.000000000
## GO:0044278  BP     6  0 1.000000000
## GO:0071494  BP     6  0 1.000000000
## GO:0071221  BP     6  0 1.000000000
## GO:0071220  BP     6  0 1.000000000
## GO:0071321  BP     6  0 1.000000000
## GO:0071350  BP     6  0 1.000000000
## GO:0071499  BP     6  0 1.000000000
## GO:0071286  BP     6  0 1.000000000
## GO:0071287  BP     6  0 1.000000000
## GO:0071316  BP     6  0 1.000000000
## GO:0071500  BP     6  0 1.000000000
## GO:0071224  BP     6  0 1.000000000
## GO:1902075  BP     6  0 1.000000000
## GO:0009992  BP     6  0 1.000000000
## GO:0061511  BP     6  0 1.000000000
## GO:0021937  BP     6  0 1.000000000
## GO:0021853  BP     6  0 1.000000000
## GO:0035926  BP     6  0 1.000000000
## GO:0061643  BP     6  0 1.000000000
## GO:0019695  BP     6  0 1.000000000
## GO:0015871  BP     6  0 1.000000000
## GO:0060718  BP     6  0 1.000000000
## GO:0034382  BP     6  0 1.000000000
## GO:0042746  BP     6  0 1.000000000
## GO:0015746  BP     6  0 1.000000000
## GO:0006824  BP     6  0 1.000000000
## GO:0051182  BP     6  0 1.000000000
## GO:0071921  BP     6  0 1.000000000
## GO:0072049  BP     6  0 1.000000000
## GO:0007182  BP     6  0 1.000000000
## GO:0002248  BP     6  0 1.000000000
## GO:0035434  BP     6  0 1.000000000
## GO:0043400  BP     6  0 1.000000000
## GO:0007619  BP     6  0 1.000000000
## GO:0061550  BP     6  0 1.000000000
## GO:0009214  BP     6  0 1.000000000
## GO:0016554  BP     6  0 1.000000000
## GO:0007016  BP     6  0 1.000000000
## GO:0046070  BP     6  0 1.000000000
## GO:0098963  BP     6  0 1.000000000
## GO:0098961  BP     6  0 1.000000000
## GO:0009186  BP     6  0 1.000000000
## GO:0071910  BP     6  0 1.000000000
## GO:0010273  BP     6  0 1.000000000
## GO:0048852  BP     6  0 1.000000000
## GO:0005984  BP     6  0 1.000000000
## GO:0042420  BP     6  0 1.000000000
## GO:0036514  BP     6  0 1.000000000
## GO:1990791  BP     6  0 1.000000000
## GO:0045002  BP     6  0 1.000000000
## GO:0097070  BP     6  0 1.000000000
## GO:0001705  BP     6  0 1.000000000
## GO:0010668  BP     6  0 1.000000000
## GO:0060956  BP     6  0 1.000000000
## GO:0090500  BP     6  0 1.000000000
## GO:0000447  BP     6  0 1.000000000
## GO:0061817  BP     6  0 1.000000000
## GO:0035635  BP     6  0 1.000000000
## GO:0043307  BP     6  0 1.000000000
## GO:0060684  BP     6  0 1.000000000
## GO:0014045  BP     6  0 1.000000000
## GO:0006703  BP     6  0 1.000000000
## GO:0006069  BP     6  0 1.000000000
## GO:0046949  BP     6  0 1.000000000
## GO:0042699  BP     6  0 1.000000000
## GO:0021869  BP     6  0 1.000000000
## GO:0006003  BP     6  0 1.000000000
## GO:0006004  BP     6  0 1.000000000
## GO:0061197  BP     6  0 1.000000000
## GO:0035483  BP     6  0 1.000000000
## GO:0035860  BP     6  0 1.000000000
## GO:0072104  BP     6  0 1.000000000
## GO:0072103  BP     6  0 1.000000000
## GO:0010255  BP     6  0 1.000000000
## GO:0061535  BP     6  0 1.000000000
## GO:0046476  BP     6  0 1.000000000
## GO:0046487  BP     6  0 1.000000000
## GO:0060789  BP     6  0 1.000000000
## GO:0060022  BP     6  0 1.000000000
## GO:0009757  BP     6  0 1.000000000
## GO:0071557  BP     6  0 1.000000000
## GO:0034773  BP     6  0 1.000000000
## GO:0016576  BP     6  0 1.000000000
## GO:0035405  BP     6  0 1.000000000
## GO:0070813  BP     6  0 1.000000000
## GO:0052805  BP     6  0 1.000000000
## GO:0033152  BP     6  0 1.000000000
## GO:0090715  BP     6  0 1.000000000
## GO:0060120  BP     6  0 1.000000000
## GO:0045112  BP     6  0 1.000000000
## GO:0010496  BP     6  0 1.000000000
## GO:0035723  BP     6  0 1.000000000
## GO:0035655  BP     6  0 1.000000000
## GO:0072602  BP     6  0 1.000000000
## GO:1904936  BP     6  0 1.000000000
## GO:0060729  BP     6  0 1.000000000
## GO:0051454  BP     6  0 1.000000000
## GO:0036481  BP     6  0 1.000000000
## GO:1902774  BP     6  0 1.000000000
## GO:0000237  BP     6  0 1.000000000
## GO:0002232  BP     6  0 1.000000000
## GO:0061724  BP     6  0 1.000000000
## GO:0060481  BP     6  0 1.000000000
## GO:0051661  BP     6  0 1.000000000
## GO:0035633  BP     6  0 1.000000000
## GO:0060745  BP     6  0 1.000000000
## GO:0060744  BP     6  0 1.000000000
## GO:0032762  BP     6  0 1.000000000
## GO:0042256  BP     6  0 1.000000000
## GO:0051792  BP     6  0 1.000000000
## GO:0031293  BP     6  0 1.000000000
## GO:0043379  BP     6  0 1.000000000
## GO:0008078  BP     6  0 1.000000000
## GO:0072177  BP     6  0 1.000000000
## GO:0072257  BP     6  0 1.000000000
## GO:0072174  BP     6  0 1.000000000
## GO:0014004  BP     6  0 1.000000000
## GO:0051415  BP     6  0 1.000000000
## GO:0051013  BP     6  0 1.000000000
## GO:0043504  BP     6  0 1.000000000
## GO:0033615  BP     6  0 1.000000000
## GO:0000022  BP     6  0 1.000000000
## GO:0044789  BP     6  0 1.000000000
## GO:0052433  BP     6  0 1.000000000
## GO:0052040  BP     6  0 1.000000000
## GO:0044532  BP     6  0 1.000000000
## GO:0044531  BP     6  0 1.000000000
## GO:0052248  BP     6  0 1.000000000
## GO:0097475  BP     6  0 1.000000000
## GO:0044803  BP     6  0 1.000000000
## GO:0002372  BP     6  0 1.000000000
## GO:0002370  BP     6  0 1.000000000
## GO:0097064  BP     6  0 1.000000000
## GO:0097527  BP     6  0 1.000000000
## GO:0052405  BP     6  0 1.000000000
## GO:0034316  BP     6  0 1.000000000
## GO:0032792  BP     6  0 1.000000000
## GO:1903026  BP     6  0 1.000000000
## GO:2000405  BP     6  0 1.000000000
## GO:0002826  BP     6  0 1.000000000
## GO:0045629  BP     6  0 1.000000000
## GO:0003308  BP     6  0 1.000000000
## GO:0002865  BP     6  0 1.000000000
## GO:0010360  BP     6  0 1.000000000
## GO:0071866  BP     6  0 1.000000000
## GO:0010754  BP     6  0 1.000000000
## GO:1901895  BP     6  0 1.000000000
## GO:1903243  BP     6  0 1.000000000
## GO:1901723  BP     6  0 1.000000000
## GO:0070100  BP     6  0 1.000000000
## GO:0010887  BP     6  0 1.000000000
## GO:0002677  BP     6  0 1.000000000
## GO:2001268  BP     6  0 1.000000000
## GO:0032466  BP     6  0 1.000000000
## GO:0031999  BP     6  0 1.000000000
## GO:0003105  BP     6  0 1.000000000
## GO:0070093  BP     6  0 1.000000000
## GO:2000323  BP     6  0 1.000000000
## GO:0051572  BP     6  0 1.000000000
## GO:0090241  BP     6  0 1.000000000
## GO:0033087  BP     6  0 1.000000000
## GO:0060336  BP     6  0 1.000000000
## GO:2000483  BP     6  0 1.000000000
## GO:0051005  BP     6  0 1.000000000
## GO:2000110  BP     6  0 1.000000000
## GO:0045650  BP     6  0 1.000000000
## GO:0043305  BP     6  0 1.000000000
## GO:1904180  BP     6  0 1.000000000
## GO:1905049  BP     6  0 1.000000000
## GO:0051562  BP     6  0 1.000000000
## GO:0090258  BP     6  0 1.000000000
## GO:0035795  BP     6  0 1.000000000
## GO:1901525  BP     6  0 1.000000000
## GO:0044362  BP     6  0 1.000000000
## GO:0052204  BP     6  0 1.000000000
## GO:0090027  BP     6  0 1.000000000
## GO:2000672  BP     6  0 1.000000000
## GO:0035509  BP     6  0 1.000000000
## GO:0014043  BP     6  0 1.000000000
## GO:0051771  BP     6  0 1.000000000
## GO:1900194  BP     6  0 1.000000000
## GO:0090188  BP     6  0 1.000000000
## GO:1902083  BP     6  0 1.000000000
## GO:0010757  BP     6  0 1.000000000
## GO:0046826  BP     6  0 1.000000000
## GO:0090315  BP     6  0 1.000000000
## GO:1903215  BP     6  0 1.000000000
## GO:0010871  BP     6  0 1.000000000
## GO:0045590  BP     6  0 1.000000000
## GO:0060331  BP     6  0 1.000000000
## GO:1900028  BP     6  0 1.000000000
## GO:0060315  BP     6  0 1.000000000
## GO:1901621  BP     6  0 1.000000000
## GO:0090032  BP     6  0 1.000000000
## GO:0051964  BP     6  0 1.000000000
## GO:0031914  BP     6  0 1.000000000
## GO:1902804  BP     6  0 1.000000000
## GO:0034242  BP     6  0 1.000000000
## GO:0032055  BP     6  0 1.000000000
## GO:1904428  BP     6  0 1.000000000
## GO:0042536  BP     6  0 1.000000000
## GO:2000675  BP     6  0 1.000000000
## GO:1904753  BP     6  0 1.000000000
## GO:1905563  BP     6  0 1.000000000
## GO:0031339  BP     6  0 1.000000000
## GO:0046137  BP     6  0 1.000000000
## GO:0021999  BP     6  0 1.000000000
## GO:0045213  BP     6  0 1.000000000
## GO:0019740  BP     6  0 1.000000000
## GO:0038031  BP     6  0 1.000000000
## GO:0003357  BP     6  0 1.000000000
## GO:0071763  BP     6  0 1.000000000
## GO:0071029  BP     6  0 1.000000000
## GO:0071046  BP     6  0 1.000000000
## GO:0071035  BP     6  0 1.000000000
## GO:0071038  BP     6  0 1.000000000
## GO:0031086  BP     6  0 1.000000000
## GO:0033869  BP     6  0 1.000000000
## GO:0071895  BP     6  0 1.000000000
## GO:0008228  BP     6  0 1.000000000
## GO:0021631  BP     6  0 1.000000000
## GO:0002051  BP     6  0 1.000000000
## GO:0061734  BP     6  0 1.000000000
## GO:0009253  BP     6  0 1.000000000
## GO:0000270  BP     6  0 1.000000000
## GO:0018120  BP     6  0 1.000000000
## GO:0019919  BP     6  0 1.000000000
## GO:0017183  BP     6  0 1.000000000
## GO:0017182  BP     6  0 1.000000000
## GO:1904238  BP     6  0 1.000000000
## GO:0090383  BP     6  0 1.000000000
## GO:0034638  BP     6  0 1.000000000
## GO:0003402  BP     6  0 1.000000000
## GO:1904938  BP     6  0 1.000000000
## GO:0035790  BP     6  0 1.000000000
## GO:0040038  BP     6  0 1.000000000
## GO:1902047  BP     6  0 1.000000000
## GO:0015846  BP     6  0 1.000000000
## GO:0006798  BP     6  0 1.000000000
## GO:0006797  BP     6  0 1.000000000
## GO:0044791  BP     6  0 1.000000000
## GO:1903626  BP     6  0 1.000000000
## GO:1903071  BP     6  0 1.000000000
## GO:0090080  BP     6  0 1.000000000
## GO:0051138  BP     6  0 1.000000000
## GO:0046833  BP     6  0 1.000000000
## GO:2000556  BP     6  0 1.000000000
## GO:1903116  BP     6  0 1.000000000
## GO:2000210  BP     6  0 1.000000000
## GO:2000427  BP     6  0 1.000000000
## GO:0090238  BP     6  0 1.000000000
## GO:0051987  BP     6  0 1.000000000
## GO:1901098  BP     6  0 1.000000000
## GO:0051891  BP     6  0 1.000000000
## GO:0046601  BP     6  0 1.000000000
## GO:0002606  BP     6  0 1.000000000
## GO:0038033  BP     6  0 1.000000000
## GO:1901552  BP     6  0 1.000000000
## GO:1903142  BP     6  0 1.000000000
## GO:0045925  BP     6  0 1.000000000
## GO:0046645  BP     6  0 1.000000000
## GO:0045588  BP     6  0 1.000000000
## GO:2000851  BP     6  0 1.000000000
## GO:0033133  BP     6  0 1.000000000
## GO:1901321  BP     6  0 1.000000000
## GO:0051096  BP     6  0 1.000000000
## GO:1902035  BP     6  0 1.000000000
## GO:2000491  BP     6  0 1.000000000
## GO:0090240  BP     6  0 1.000000000
## GO:1901727  BP     6  0 1.000000000
## GO:0033184  BP     6  0 1.000000000
## GO:0034112  BP     6  0 1.000000000
## GO:0002925  BP     6  0 1.000000000
## GO:1905206  BP     6  0 1.000000000
## GO:0090261  BP     6  0 1.000000000
## GO:0032962  BP     6  0 1.000000000
## GO:0032730  BP     6  0 1.000000000
## GO:0050725  BP     6  0 1.000000000
## GO:2001181  BP     6  0 1.000000000
## GO:0032741  BP     6  0 1.000000000
## GO:2000664  BP     6  0 1.000000000
## GO:0048298  BP     6  0 1.000000000
## GO:2000394  BP     6  0 1.000000000
## GO:1903238  BP     6  0 1.000000000
## GO:0034093  BP     6  0 1.000000000
## GO:0060903  BP     6  0 1.000000000
## GO:2000630  BP     6  0 1.000000000
## GO:1904528  BP     6  0 1.000000000
## GO:0002735  BP     6  0 1.000000000
## GO:1904398  BP     6  0 1.000000000
## GO:0010701  BP     6  0 1.000000000
## GO:0010571  BP     6  0 1.000000000
## GO:0032075  BP     6  0 1.000000000
## GO:0042488  BP     6  0 1.000000000
## GO:0070447  BP     6  0 1.000000000
## GO:1900086  BP     6  0 1.000000000
## GO:0048549  BP     6  0 1.000000000
## GO:0010756  BP     6  0 1.000000000
## GO:0010572  BP     6  0 1.000000000
## GO:1903334  BP     6  0 1.000000000
## GO:1904778  BP     6  0 1.000000000
## GO:1904751  BP     6  0 1.000000000
## GO:2000646  BP     6  0 1.000000000
## GO:0060267  BP     6  0 1.000000000
## GO:0048633  BP     6  0 1.000000000
## GO:0043415  BP     6  0 1.000000000
## GO:0034165  BP     6  0 1.000000000
## GO:0070172  BP     6  0 1.000000000
## GO:0061408  BP     6  0 1.000000000
## GO:0061419  BP     6  0 1.000000000
## GO:1901228  BP     6  0 1.000000000
## GO:0007221  BP     6  0 1.000000000
## GO:0032914  BP     6  0 1.000000000
## GO:0032056  BP     6  0 1.000000000
## GO:2000676  BP     6  0 1.000000000
## GO:1900748  BP     6  0 1.000000000
## GO:1905065  BP     6  0 1.000000000
## GO:0048597  BP     6  0 1.000000000
## GO:0035166  BP     6  0 1.000000000
## GO:0031204  BP     6  0 1.000000000
## GO:1901162  BP     6  0 1.000000000
## GO:0060319  BP     6  0 1.000000000
## GO:0035524  BP     6  0 1.000000000
## GO:0035608  BP     6  0 1.000000000
## GO:0045046  BP     6  0 1.000000000
## GO:1903044  BP     6  0 1.000000000
## GO:1903546  BP     6  0 1.000000000
## GO:0022417  BP     6  0 1.000000000
## GO:0006477  BP     6  0 1.000000000
## GO:0071569  BP     6  0 1.000000000
## GO:0009217  BP     6  0 1.000000000
## GO:0034034  BP     6  0 1.000000000
## GO:0032261  BP     6  0 1.000000000
## GO:0009446  BP     6  0 1.000000000
## GO:0019364  BP     6  0 1.000000000
## GO:0009176  BP     6  0 1.000000000
## GO:0072531  BP     6  0 1.000000000
## GO:0046874  BP     6  0 1.000000000
## GO:0002023  BP     6  0 1.000000000
## GO:0046719  BP     6  0 1.000000000
## GO:2000348  BP     6  0 1.000000000
## GO:0043376  BP     6  0 1.000000000
## GO:0032489  BP     6  0 1.000000000
## GO:0030174  BP     6  0 1.000000000
## GO:1903719  BP     6  0 1.000000000
## GO:1903894  BP     6  0 1.000000000
## GO:0002036  BP     6  0 1.000000000
## GO:0039533  BP     6  0 1.000000000
## GO:2000298  BP     6  0 1.000000000
## GO:0010990  BP     6  0 1.000000000
## GO:2000407  BP     6  0 1.000000000
## GO:2000554  BP     6  0 1.000000000
## GO:0014056  BP     6  0 1.000000000
## GO:0070163  BP     6  0 1.000000000
## GO:0071865  BP     6  0 1.000000000
## GO:0031133  BP     6  0 1.000000000
## GO:0002034  BP     6  0 1.000000000
## GO:1900157  BP     6  0 1.000000000
## GO:0060687  BP     6  0 1.000000000
## GO:0051940  BP     6  0 1.000000000
## GO:2001286  BP     6  0 1.000000000
## GO:0010649  BP     6  0 1.000000000
## GO:0060620  BP     6  0 1.000000000
## GO:0060296  BP     6  0 1.000000000
## GO:0060295  BP     6  0 1.000000000
## GO:1902019  BP     6  0 1.000000000
## GO:0010840  BP     6  0 1.000000000
## GO:1905203  BP     6  0 1.000000000
## GO:2000064  BP     6  0 1.000000000
## GO:0051462  BP     6  0 1.000000000
## GO:1904959  BP     6  0 1.000000000
## GO:2000015  BP     6  0 1.000000000
## GO:0051584  BP     6  0 1.000000000
## GO:0070173  BP     6  0 1.000000000
## GO:2000416  BP     6  0 1.000000000
## GO:1905005  BP     6  0 1.000000000
## GO:1903551  BP     6  0 1.000000000
## GO:2000977  BP     6  0 1.000000000
## GO:2000821  BP     6  0 1.000000000
## GO:0000414  BP     6  0 1.000000000
## GO:0031585  BP     6  0 1.000000000
## GO:0050705  BP     6  0 1.000000000
## GO:0050722  BP     6  0 1.000000000
## GO:2000659  BP     6  0 1.000000000
## GO:0034759  BP     6  0 1.000000000
## GO:0090325  BP     6  0 1.000000000
## GO:1905165  BP     6  0 1.000000000
## GO:0010793  BP     6  0 1.000000000
## GO:0034239  BP     6  0 1.000000000
## GO:0071640  BP     6  0 1.000000000
## GO:0098902  BP     6  0 1.000000000
## GO:1904683  BP     6  0 1.000000000
## GO:0072298  BP     6  0 1.000000000
## GO:0072307  BP     6  0 1.000000000
## GO:1905446  BP     6  0 1.000000000
## GO:1901858  BP     6  0 1.000000000
## GO:0002733  BP     6  0 1.000000000
## GO:0002727  BP     6  0 1.000000000
## GO:0070948  BP     6  0 1.000000000
## GO:1900239  BP     6  0 1.000000000
## GO:0060304  BP     6  0 1.000000000
## GO:0010746  BP     6  0 1.000000000
## GO:0099566  BP     6  0 1.000000000
## GO:0060685  BP     6  0 1.000000000
## GO:0099576  BP     6  0 1.000000000
## GO:1905634  BP     6  0 1.000000000
## GO:0060264  BP     6  0 1.000000000
## GO:0046668  BP     6  0 1.000000000
## GO:0051611  BP     6  0 1.000000000
## GO:0071671  BP     6  0 1.000000000
## GO:0032415  BP     6  0 1.000000000
## GO:1904672  BP     6  0 1.000000000
## GO:0090273  BP     6  0 1.000000000
## GO:0048686  BP     6  0 1.000000000
## GO:2000909  BP     6  0 1.000000000
## GO:0099179  BP     6  0 1.000000000
## GO:0003100  BP     6  0 1.000000000
## GO:1904429  BP     6  0 1.000000000
## GO:0006449  BP     6  0 1.000000000
## GO:2000074  BP     6  0 1.000000000
## GO:0061043  BP     6  0 1.000000000
## GO:0070562  BP     6  0 1.000000000
## GO:1903689  BP     6  0 1.000000000
## GO:0003072  BP     6  0 1.000000000
## GO:0003096  BP     6  0 1.000000000
## GO:1990414  BP     6  0 1.000000000
## GO:0001302  BP     6  0 1.000000000
## GO:0070339  BP     6  0 1.000000000
## GO:1901563  BP     6  0 1.000000000
## GO:0052173  BP     6  0 1.000000000
## GO:0014894  BP     6  0 1.000000000
## GO:1904587  BP     6  0 1.000000000
## GO:0075136  BP     6  0 1.000000000
## GO:0052200  BP     6  0 1.000000000
## GO:0055093  BP     6  0 1.000000000
## GO:0035902  BP     6  0 1.000000000
## GO:0014854  BP     6  0 1.000000000
## GO:0070671  BP     6  0 1.000000000
## GO:0034616  BP     6  0 1.000000000
## GO:0009642  BP     6  0 1.000000000
## GO:0014870  BP     6  0 1.000000000
## GO:0014877  BP     6  0 1.000000000
## GO:0010046  BP     6  0 1.000000000
## GO:0071107  BP     6  0 1.000000000
## GO:0010269  BP     6  0 1.000000000
## GO:1903935  BP     6  0 1.000000000
## GO:0001878  BP     6  0 1.000000000
## GO:0003406  BP     6  0 1.000000000
## GO:1990049  BP     6  0 1.000000000
## GO:0098921  BP     6  0 1.000000000
## GO:0098920  BP     6  0 1.000000000
## GO:0060024  BP     6  0 1.000000000
## GO:0034031  BP     6  0 1.000000000
## GO:0060662  BP     6  0 1.000000000
## GO:0050916  BP     6  0 1.000000000
## GO:0050975  BP     6  0 1.000000000
## GO:0050917  BP     6  0 1.000000000
## GO:0003284  BP     6  0 1.000000000
## GO:0032119  BP     6  0 1.000000000
## GO:0042427  BP     6  0 1.000000000
## GO:0019626  BP     6  0 1.000000000
## GO:0098528  BP     6  0 1.000000000
## GO:0061302  BP     6  0 1.000000000
## GO:0042796  BP     6  0 1.000000000
## GO:0021523  BP     6  0 1.000000000
## GO:0042713  BP     6  0 1.000000000
## GO:0006686  BP     6  0 1.000000000
## GO:0060708  BP     6  0 1.000000000
## GO:0048865  BP     6  0 1.000000000
## GO:1990169  BP     6  0 1.000000000
## GO:0021825  BP     6  0 1.000000000
## GO:0006104  BP     6  0 1.000000000
## GO:0010182  BP     6  0 1.000000000
## GO:0016185  BP     6  0 1.000000000
## GO:0070127  BP     6  0 1.000000000
## GO:0007217  BP     6  0 1.000000000
## GO:0071816  BP     6  0 1.000000000
## GO:1905323  BP     6  0 1.000000000
## GO:0034398  BP     6  0 1.000000000
## GO:0016115  BP     6  0 1.000000000
## GO:0046654  BP     6  0 1.000000000
## GO:0042695  BP     6  0 1.000000000
## GO:0070327  BP     6  0 1.000000000
## GO:0002461  BP     6  0 1.000000000
## GO:0002513  BP     6  0 1.000000000
## GO:0006362  BP     6  0 1.000000000
## GO:0006361  BP     6  0 1.000000000
## GO:0000972  BP     6  0 1.000000000
## GO:0030321  BP     6  0 1.000000000
## GO:0038044  BP     6  0 1.000000000
## GO:0006842  BP     6  0 1.000000000
## GO:0006642  BP     6  0 1.000000000
## GO:0071830  BP     6  0 1.000000000
## GO:0060605  BP     6  0 1.000000000
## GO:0030579  BP     6  0 1.000000000
## GO:0015747  BP     6  0 1.000000000
## GO:0015840  BP     6  0 1.000000000
## GO:0061038  BP     6  0 1.000000000
## GO:0070072  BP     6  0 1.000000000
## GO:0042760  BP     6  0 1.000000000
## GO:0021648  BP     6  0 1.000000000
## GO:0042373  BP     6  0 1.000000000
## GO:0046110  BP     6  0 1.000000000
## GO:0006015  BP     7  0 1.000000000
## GO:0046391  BP     7  0 1.000000000
## GO:0006370  BP     7  0 1.000000000
## GO:0042904  BP     7  0 1.000000000
## GO:0042905  BP     7  0 1.000000000
## GO:0035754  BP     7  0 1.000000000
## GO:0002361  BP     7  0 1.000000000
## GO:0061641  BP     7  0 1.000000000
## GO:0034080  BP     7  0 1.000000000
## GO:0045006  BP     7  0 1.000000000
## GO:0044026  BP     7  0 1.000000000
## GO:0032776  BP     7  0 1.000000000
## GO:0006265  BP     7  0 1.000000000
## GO:0019673  BP     7  0 1.000000000
## GO:0019852  BP     7  0 1.000000000
## GO:0046439  BP     7  0 1.000000000
## GO:0071265  BP     7  0 1.000000000
## GO:0071267  BP     7  0 1.000000000
## GO:1903352  BP     7  0 1.000000000
## GO:0006559  BP     7  0 1.000000000
## GO:0039530  BP     7  0 1.000000000
## GO:0017196  BP     7  0 1.000000000
## GO:0006735  BP     7  0 1.000000000
## GO:0070995  BP     7  0 1.000000000
## GO:0001866  BP     7  0 1.000000000
## GO:0006607  BP     7  0 1.000000000
## GO:0061314  BP     7  0 1.000000000
## GO:0030578  BP     7  0 1.000000000
## GO:0060011  BP     7  0 1.000000000
## GO:0002291  BP     7  0 1.000000000
## GO:0002870  BP     7  0 1.000000000
## GO:0002457  BP     7  0 1.000000000
## GO:0033292  BP     7  0 1.000000000
## GO:0036462  BP     7  0 1.000000000
## GO:0008063  BP     7  0 1.000000000
## GO:1904953  BP     7  0 1.000000000
## GO:1900619  BP     7  0 1.000000000
## GO:0008291  BP     7  0 1.000000000
## GO:0061526  BP     7  0 1.000000000
## GO:0007256  BP     7  0 1.000000000
## GO:0086023  BP     7  0 1.000000000
## GO:0033211  BP     7  0 1.000000000
## GO:0070842  BP     7  0 1.000000000
## GO:0035932  BP     7  0 1.000000000
## GO:0019694  BP     7  0 1.000000000
## GO:0043102  BP     7  0 1.000000000
## GO:0150094  BP     7  0 1.000000000
## GO:0150093  BP     7  0 1.000000000
## GO:0060978  BP     7  0 1.000000000
## GO:1990048  BP     7  0 1.000000000
## GO:0002778  BP     7  0 1.000000000
## GO:0002775  BP     7  0 1.000000000
## GO:0006531  BP     7  0 1.000000000
## GO:0036302  BP     7  0 1.000000000
## GO:0016198  BP     7  0 1.000000000
## GO:0060385  BP     7  0 1.000000000
## GO:0001955  BP     7  0 1.000000000
## GO:0031547  BP     7  0 1.000000000
## GO:0060449  BP     7  0 1.000000000
## GO:0086043  BP     7  0 1.000000000
## GO:0086028  BP     7  0 1.000000000
## GO:0097646  BP     7  0 1.000000000
## GO:1990034  BP     7  0 1.000000000
## GO:0061621  BP     7  0 1.000000000
## GO:0086042  BP     7  0 1.000000000
## GO:0003253  BP     7  0 1.000000000
## GO:0032049  BP     7  0 1.000000000
## GO:0019614  BP     7  0 1.000000000
## GO:0042424  BP     7  0 1.000000000
## GO:0061343  BP     7  0 1.000000000
## GO:0035766  BP     7  0 1.000000000
## GO:0086064  BP     7  0 1.000000000
## GO:0021814  BP     7  0 1.000000000
## GO:0033278  BP     7  0 1.000000000
## GO:0071476  BP     7  0 1.000000000
## GO:0046950  BP     7  0 1.000000000
## GO:0097384  BP     7  0 1.000000000
## GO:1903351  BP     7  0 1.000000000
## GO:0071362  BP     7  0 1.000000000
## GO:0071351  BP     7  0 1.000000000
## GO:0035865  BP     7  0 1.000000000
## GO:0035356  BP     7  0 1.000000000
## GO:0051026  BP     7  0 1.000000000
## GO:0006348  BP     7  0 1.000000000
## GO:0042747  BP     7  0 1.000000000
## GO:0072318  BP     7  0 1.000000000
## GO:0036089  BP     7  0 1.000000000
## GO:0045162  BP     7  0 1.000000000
## GO:0021902  BP     7  0 1.000000000
## GO:0060029  BP     7  0 1.000000000
## GO:0015677  BP     7  0 1.000000000
## GO:0009804  BP     7  0 1.000000000
## GO:0051715  BP     7  0 1.000000000
## GO:0060318  BP     7  0 1.000000000
## GO:0097048  BP     7  0 1.000000000
## GO:0050655  BP     7  0 1.000000000
## GO:0071907  BP     7  0 1.000000000
## GO:0050904  BP     7  0 1.000000000
## GO:0045003  BP     7  0 1.000000000
## GO:0036492  BP     7  0 1.000000000
## GO:0051541  BP     7  0 1.000000000
## GO:0048702  BP     7  0 1.000000000
## GO:0060059  BP     7  0 1.000000000
## GO:0003160  BP     7  0 1.000000000
## GO:0032510  BP     7  0 1.000000000
## GO:0035768  BP     7  0 1.000000000
## GO:0060839  BP     7  0 1.000000000
## GO:0060664  BP     7  0 1.000000000
## GO:0060287  BP     7  0 1.000000000
## GO:1902222  BP     7  0 1.000000000
## GO:0071169  BP     7  0 1.000000000
## GO:0071971  BP     7  0 1.000000000
## GO:0048069  BP     7  0 1.000000000
## GO:0060613  BP     7  0 1.000000000
## GO:0034625  BP     7  0 1.000000000
## GO:0034626  BP     7  0 1.000000000
## GO:0019367  BP     7  0 1.000000000
## GO:0019368  BP     7  0 1.000000000
## GO:0033504  BP     7  0 1.000000000
## GO:0021798  BP     7  0 1.000000000
## GO:0061196  BP     7  0 1.000000000
## GO:0019388  BP     7  0 1.000000000
## GO:0006689  BP     7  0 1.000000000
## GO:0033483  BP     7  0 1.000000000
## GO:0030718  BP     7  0 1.000000000
## GO:0061718  BP     7  0 1.000000000
## GO:0006678  BP     7  0 1.000000000
## GO:0046477  BP     7  0 1.000000000
## GO:0035701  BP     7  0 1.000000000
## GO:0021578  BP     7  0 1.000000000
## GO:0006547  BP     7  0 1.000000000
## GO:0034720  BP     7  0 1.000000000
## GO:0036123  BP     7  0 1.000000000
## GO:0043987  BP     7  0 1.000000000
## GO:0097411  BP     7  0 1.000000000
## GO:0098596  BP     7  0 1.000000000
## GO:0046218  BP     7  0 1.000000000
## GO:0042436  BP     7  0 1.000000000
## GO:1990001  BP     7  0 1.000000000
## GO:0050703  BP     7  0 1.000000000
## GO:0050720  BP     7  0 1.000000000
## GO:0072603  BP     7  0 1.000000000
## GO:0045110  BP     7  0 1.000000000
## GO:0120009  BP     7  0 1.000000000
## GO:0035735  BP     7  0 1.000000000
## GO:1990144  BP     7  0 1.000000000
## GO:0008627  BP     7  0 1.000000000
## GO:0061072  BP     7  0 1.000000000
## GO:0006102  BP     7  0 1.000000000
## GO:0048289  BP     7  0 1.000000000
## GO:0097283  BP     7  0 1.000000000
## GO:0061439  BP     7  0 1.000000000
## GO:0032808  BP     7  0 1.000000000
## GO:0006273  BP     7  0 1.000000000
## GO:0070309  BP     7  0 1.000000000
## GO:0060235  BP     7  0 1.000000000
## GO:0006551  BP     7  0 1.000000000
## GO:0060482  BP     7  0 1.000000000
## GO:0060437  BP     7  0 1.000000000
## GO:0002249  BP     7  0 1.000000000
## GO:0000395  BP     7  0 1.000000000
## GO:0071608  BP     7  0 1.000000000
## GO:0061517  BP     7  0 1.000000000
## GO:0043570  BP     7  0 1.000000000
## GO:0098880  BP     7  0 1.000000000
## GO:0071694  BP     7  0 1.000000000
## GO:0006108  BP     7  0 1.000000000
## GO:0060763  BP     7  0 1.000000000
## GO:0042138  BP     7  0 1.000000000
## GO:0010032  BP     7  0 1.000000000
## GO:0098915  BP     7  0 1.000000000
## GO:0072161  BP     7  0 1.000000000
## GO:2001012  BP     7  0 1.000000000
## GO:0072038  BP     7  0 1.000000000
## GO:0072282  BP     7  0 1.000000000
## GO:0009438  BP     7  0 1.000000000
## GO:0035280  BP     7  0 1.000000000
## GO:0061518  BP     7  0 1.000000000
## GO:0035931  BP     7  0 1.000000000
## GO:0042776  BP     7  0 1.000000000
## GO:0061668  BP     7  0 1.000000000
## GO:0052428  BP     7  0 1.000000000
## GO:0044359  BP     7  0 1.000000000
## GO:0052205  BP     7  0 1.000000000
## GO:0043545  BP     7  0 1.000000000
## GO:1903251  BP     7  0 1.000000000
## GO:0044828  BP     7  0 1.000000000
## GO:0050859  BP     7  0 1.000000000
## GO:0032876  BP     7  0 1.000000000
## GO:0039536  BP     7  0 1.000000000
## GO:0010626  BP     7  0 1.000000000
## GO:0042985  BP     7  0 1.000000000
## GO:0002578  BP     7  0 1.000000000
## GO:1902338  BP     7  0 1.000000000
## GO:0010616  BP     7  0 1.000000000
## GO:0033629  BP     7  0 1.000000000
## GO:1901977  BP     7  0 1.000000000
## GO:0045794  BP     7  0 1.000000000
## GO:2000048  BP     7  0 1.000000000
## GO:0046600  BP     7  0 1.000000000
## GO:0042321  BP     7  0 1.000000000
## GO:0032811  BP     7  0 1.000000000
## GO:0060770  BP     7  0 1.000000000
## GO:0070345  BP     7  0 1.000000000
## GO:0060467  BP     7  0 1.000000000
## GO:0051918  BP     7  0 1.000000000
## GO:0070874  BP     7  0 1.000000000
## GO:0051799  BP     7  0 1.000000000
## GO:0035331  BP     7  0 1.000000000
## GO:1900113  BP     7  0 1.000000000
## GO:0010727  BP     7  0 1.000000000
## GO:1903208  BP     7  0 1.000000000
## GO:0032713  BP     7  0 1.000000000
## GO:0045409  BP     7  0 1.000000000
## GO:0010989  BP     7  0 1.000000000
## GO:0010760  BP     7  0 1.000000000
## GO:0033600  BP     7  0 1.000000000
## GO:0051045  BP     7  0 1.000000000
## GO:1903979  BP     7  0 1.000000000
## GO:0071638  BP     7  0 1.000000000
## GO:0045656  BP     7  0 1.000000000
## GO:0071676  BP     7  0 1.000000000
## GO:0032074  BP     7  0 1.000000000
## GO:0060283  BP     7  0 1.000000000
## GO:1905880  BP     7  0 1.000000000
## GO:1903753  BP     7  0 1.000000000
## GO:0010519  BP     7  0 1.000000000
## GO:1902915  BP     7  0 1.000000000
## GO:0060268  BP     7  0 1.000000000
## GO:0048387  BP     7  0 1.000000000
## GO:1902455  BP     7  0 1.000000000
## GO:0016479  BP     7  0 1.000000000
## GO:0051970  BP     7  0 1.000000000
## GO:1900747  BP     7  0 1.000000000
## GO:0038007  BP     7  0 1.000000000
## GO:1901166  BP     7  0 1.000000000
## GO:0060897  BP     7  0 1.000000000
## GO:0036476  BP     7  0 1.000000000
## GO:0099011  BP     7  0 1.000000000
## GO:0098943  BP     7  0 1.000000000
## GO:0070945  BP     7  0 1.000000000
## GO:1900164  BP     7  0 1.000000000
## GO:0038107  BP     7  0 1.000000000
## GO:0038030  BP     7  0 1.000000000
## GO:0030473  BP     7  0 1.000000000
## GO:0002072  BP     7  0 1.000000000
## GO:0015822  BP     7  0 1.000000000
## GO:0072675  BP     7  0 1.000000000
## GO:0015671  BP     7  0 1.000000000
## GO:0045852  BP     7  0 1.000000000
## GO:0038001  BP     7  0 1.000000000
## GO:0030046  BP     7  0 1.000000000
## GO:0030913  BP     7  0 1.000000000
## GO:0060017  BP     7  0 1.000000000
## GO:0035247  BP     7  0 1.000000000
## GO:0036166  BP     7  0 1.000000000
## GO:0009698  BP     7  0 1.000000000
## GO:0006655  BP     7  0 1.000000000
## GO:0070782  BP     7  0 1.000000000
## GO:0060158  BP     7  0 1.000000000
## GO:0008594  BP     7  0 1.000000000
## GO:0044857  BP     7  0 1.000000000
## GO:0048227  BP     7  0 1.000000000
## GO:0002576  BP     7  0 1.000000000
## GO:0051694  BP     7  0 1.000000000
## GO:0043634  BP     7  0 1.000000000
## GO:0071051  BP     7  0 1.000000000
## GO:0050861  BP     7  0 1.000000000
## GO:0060369  BP     7  0 1.000000000
## GO:1900227  BP     7  0 1.000000000
## GO:0002666  BP     7  0 1.000000000
## GO:2000553  BP     7  0 1.000000000
## GO:0045630  BP     7  0 1.000000000
## GO:1905653  BP     7  0 1.000000000
## GO:1902961  BP     7  0 1.000000000
## GO:0048842  BP     7  0 1.000000000
## GO:0003321  BP     7  0 1.000000000
## GO:0045915  BP     7  0 1.000000000
## GO:2000138  BP     7  0 1.000000000
## GO:2000049  BP     7  0 1.000000000
## GO:0033634  BP     7  0 1.000000000
## GO:2001040  BP     7  0 1.000000000
## GO:0010886  BP     7  0 1.000000000
## GO:1902732  BP     7  0 1.000000000
## GO:1904798  BP     7  0 1.000000000
## GO:0051461  BP     7  0 1.000000000
## GO:2000510  BP     7  0 1.000000000
## GO:0002732  BP     7  0 1.000000000
## GO:0045964  BP     7  0 1.000000000
## GO:2000698  BP     7  0 1.000000000
## GO:0060501  BP     7  0 1.000000000
## GO:0060054  BP     7  0 1.000000000
## GO:2000271  BP     7  0 1.000000000
## GO:0014054  BP     7  0 1.000000000
## GO:1904306  BP     7  0 1.000000000
## GO:1903301  BP     7  0 1.000000000
## GO:0061087  BP     7  0 1.000000000
## GO:0045359  BP     7  0 1.000000000
## GO:0060335  BP     7  0 1.000000000
## GO:1900042  BP     7  0 1.000000000
## GO:0051351  BP     7  0 1.000000000
## GO:0048170  BP     7  0 1.000000000
## GO:0060754  BP     7  0 1.000000000
## GO:0048023  BP     7  0 1.000000000
## GO:1905050  BP     7  0 1.000000000
## GO:1903980  BP     7  0 1.000000000
## GO:0090267  BP     7  0 1.000000000
## GO:0002860  BP     7  0 1.000000000
## GO:0032819  BP     7  0 1.000000000
## GO:0010940  BP     7  0 1.000000000
## GO:0014042  BP     7  0 1.000000000
## GO:0150012  BP     7  0 1.000000000
## GO:0051582  BP     7  0 1.000000000
## GO:0032241  BP     7  0 1.000000000
## GO:1902177  BP     7  0 1.000000000
## GO:1903223  BP     7  0 1.000000000
## GO:0050942  BP     7  0 1.000000000
## GO:1903288  BP     7  0 1.000000000
## GO:1903003  BP     7  0 1.000000000
## GO:1900020  BP     7  0 1.000000000
## GO:1904781  BP     7  0 1.000000000
## GO:1903955  BP     7  0 1.000000000
## GO:0060332  BP     7  0 1.000000000
## GO:0010890  BP     7  0 1.000000000
## GO:2001016  BP     7  0 1.000000000
## GO:0090232  BP     7  0 1.000000000
## GO:0032226  BP     7  0 1.000000000
## GO:0034137  BP     7  0 1.000000000
## GO:0034141  BP     7  0 1.000000000
## GO:1904668  BP     7  0 1.000000000
## GO:1905461  BP     7  0 1.000000000
## GO:0048050  BP     7  0 1.000000000
## GO:0036388  BP     7  0 1.000000000
## GO:1902299  BP     7  0 1.000000000
## GO:0006267  BP     7  0 1.000000000
## GO:0099525  BP     7  0 1.000000000
## GO:0031053  BP     7  0 1.000000000
## GO:0030422  BP     7  0 1.000000000
## GO:0070459  BP     7  0 1.000000000
## GO:0060527  BP     7  0 1.000000000
## GO:0060526  BP     7  0 1.000000000
## GO:0051189  BP     7  0 1.000000000
## GO:0042270  BP     7  0 1.000000000
## GO:0036066  BP     7  0 1.000000000
## GO:0045048  BP     7  0 1.000000000
## GO:1903608  BP     7  0 1.000000000
## GO:0070973  BP     7  0 1.000000000
## GO:0070212  BP     7  0 1.000000000
## GO:0006627  BP     7  0 1.000000000
## GO:0006621  BP     7  0 1.000000000
## GO:0043461  BP     7  0 1.000000000
## GO:0070070  BP     7  0 1.000000000
## GO:0061156  BP     7  0 1.000000000
## GO:0009155  BP     7  0 1.000000000
## GO:0006145  BP     7  0 1.000000000
## GO:0009146  BP     7  0 1.000000000
## GO:0034035  BP     7  0 1.000000000
## GO:0009445  BP     7  0 1.000000000
## GO:0046135  BP     7  0 1.000000000
## GO:0021942  BP     7  0 1.000000000
## GO:0038026  BP     7  0 1.000000000
## GO:1904717  BP     7  0 1.000000000
## GO:1901535  BP     7  0 1.000000000
## GO:1905449  BP     7  0 1.000000000
## GO:1903897  BP     7  0 1.000000000
## GO:0002667  BP     7  0 1.000000000
## GO:0010533  BP     7  0 1.000000000
## GO:2000858  BP     7  0 1.000000000
## GO:1905906  BP     7  0 1.000000000
## GO:0002002  BP     7  0 1.000000000
## GO:0002583  BP     7  0 1.000000000
## GO:0002759  BP     7  0 1.000000000
## GO:2000425  BP     7  0 1.000000000
## GO:0060372  BP     7  0 1.000000000
## GO:0061046  BP     7  0 1.000000000
## GO:0060558  BP     7  0 1.000000000
## GO:1905664  BP     7  0 1.000000000
## GO:0060353  BP     7  0 1.000000000
## GO:1904847  BP     7  0 1.000000000
## GO:0070099  BP     7  0 1.000000000
## GO:0042320  BP     7  0 1.000000000
## GO:2000668  BP     7  0 1.000000000
## GO:2001198  BP     7  0 1.000000000
## GO:1904732  BP     7  0 1.000000000
## GO:0032071  BP     7  0 1.000000000
## GO:2000544  BP     7  0 1.000000000
## GO:0003330  BP     7  0 1.000000000
## GO:2000653  BP     7  0 1.000000000
## GO:1905936  BP     7  0 1.000000000
## GO:0106104  BP     7  0 1.000000000
## GO:0031282  BP     7  0 1.000000000
## GO:0071440  BP     7  0 1.000000000
## GO:2000618  BP     7  0 1.000000000
## GO:1903207  BP     7  0 1.000000000
## GO:0032960  BP     7  0 1.000000000
## GO:2000665  BP     7  0 1.000000000
## GO:2000662  BP     7  0 1.000000000
## GO:0048296  BP     7  0 1.000000000
## GO:0048293  BP     7  0 1.000000000
## GO:1902172  BP     7  0 1.000000000
## GO:0045714  BP     7  0 1.000000000
## GO:1901490  BP     7  0 1.000000000
## GO:0002911  BP     7  0 1.000000000
## GO:2000254  BP     7  0 1.000000000
## GO:0045634  BP     7  0 1.000000000
## GO:0098903  BP     7  0 1.000000000
## GO:2000739  BP     7  0 1.000000000
## GO:1905902  BP     7  0 1.000000000
## GO:1905770  BP     7  0 1.000000000
## GO:0042661  BP     7  0 1.000000000
## GO:0090235  BP     7  0 1.000000000
## GO:0032532  BP     7  0 1.000000000
## GO:2000855  BP     7  0 1.000000000
## GO:0000019  BP     7  0 1.000000000
## GO:0030885  BP     7  0 1.000000000
## GO:0061074  BP     7  0 1.000000000
## GO:1900107  BP     7  0 1.000000000
## GO:2000354  BP     7  0 1.000000000
## GO:1900084  BP     7  0 1.000000000
## GO:0010511  BP     7  0 1.000000000
## GO:1902302  BP     7  0 1.000000000
## GO:1903764  BP     7  0 1.000000000
## GO:1904350  BP     7  0 1.000000000
## GO:1900019  BP     7  0 1.000000000
## GO:1901897  BP     7  0 1.000000000
## GO:0060075  BP     7  0 1.000000000
## GO:2000197  BP     7  0 1.000000000
## GO:2001260  BP     7  0 1.000000000
## GO:0003025  BP     7  0 1.000000000
## GO:1904872  BP     7  0 1.000000000
## GO:0003057  BP     7  0 1.000000000
## GO:1900094  BP     7  0 1.000000000
## GO:0003256  BP     7  0 1.000000000
## GO:1901388  BP     7  0 1.000000000
## GO:0140243  BP     7  0 1.000000000
## GO:0099547  BP     7  0 1.000000000
## GO:0036491  BP     7  0 1.000000000
## GO:0060373  BP     7  0 1.000000000
## GO:0061438  BP     7  0 1.000000000
## GO:0003097  BP     7  0 1.000000000
## GO:0002001  BP     7  0 1.000000000
## GO:0002536  BP     7  0 1.000000000
## GO:0072423  BP     7  0 1.000000000
## GO:0072402  BP     7  0 1.000000000
## GO:1902065  BP     7  0 1.000000000
## GO:0070141  BP     7  0 1.000000000
## GO:0032493  BP     7  0 1.000000000
## GO:0070305  BP     7  0 1.000000000
## GO:0072396  BP     7  0 1.000000000
## GO:1903350  BP     7  0 1.000000000
## GO:0033762  BP     7  0 1.000000000
## GO:0009635  BP     7  0 1.000000000
## GO:0035864  BP     7  0 1.000000000
## GO:0000056  BP     7  0 1.000000000
## GO:0032790  BP     7  0 1.000000000
## GO:0051610  BP     7  0 1.000000000
## GO:0014719  BP     7  0 1.000000000
## GO:0021910  BP     7  0 1.000000000
## GO:0044341  BP     7  0 1.000000000
## GO:0008215  BP     7  0 1.000000000
## GO:0090306  BP     7  0 1.000000000
## GO:0051231  BP     7  0 1.000000000
## GO:0051255  BP     7  0 1.000000000
## GO:0048682  BP     7  0 1.000000000
## GO:0090400  BP     7  0 1.000000000
## GO:0060012  BP     7  0 1.000000000
## GO:0036466  BP     7  0 1.000000000
## GO:0019530  BP     7  0 1.000000000
## GO:0035989  BP     7  0 1.000000000
## GO:0006369  BP     7  0 1.000000000
## GO:0006729  BP     7  0 1.000000000
## GO:0006566  BP     7  0 1.000000000
## GO:0072679  BP     7  0 1.000000000
## GO:0002154  BP     7  0 1.000000000
## GO:0034154  BP     7  0 1.000000000
## GO:0060440  BP     7  0 1.000000000
## GO:0003186  BP     7  0 1.000000000
## GO:0006569  BP     7  0 1.000000000
## GO:0014721  BP     7  0 1.000000000
## GO:0060509  BP     7  0 1.000000000
## GO:0060510  BP     7  0 1.000000000
## GO:0060676  BP     7  0 1.000000000
## GO:0034379  BP     7  0 1.000000000
## GO:0099022  BP     7  0 1.000000000
## GO:0046784  BP     7  0 1.000000000
## GO:0019062  BP     7  0 1.000000000
## GO:0042297  BP     7  0 1.000000000
## GO:0003010  BP     7  0 1.000000000
## GO:0009452  BP     8  0 1.000000000
## GO:0061762  BP     8  0 1.000000000
## GO:0023035  BP     8  0 1.000000000
## GO:0035740  BP     8  0 1.000000000
## GO:0042940  BP     8  0 1.000000000
## GO:0042769  BP     8  0 1.000000000
## GO:0043045  BP     8  0 1.000000000
## GO:0098664  BP     8  0 1.000000000
## GO:0070314  BP     8  0 1.000000000
## GO:0090160  BP     8  0 1.000000000
## GO:0006188  BP     8  0 1.000000000
## GO:0016266  BP     8  0 1.000000000
## GO:0036260  BP     8  0 1.000000000
## GO:0090670  BP     8  0 1.000000000
## GO:0090685  BP     8  0 1.000000000
## GO:0010501  BP     8  0 1.000000000
## GO:0035385  BP     8  0 1.000000000
## GO:0072050  BP     8  0 1.000000000
## GO:0038203  BP     8  0 1.000000000
## GO:0034475  BP     8  0 1.000000000
## GO:0006228  BP     8  0 1.000000000
## GO:0060478  BP     8  0 1.000000000
## GO:0090527  BP     8  0 1.000000000
## GO:0099515  BP     8  0 1.000000000
## GO:0000185  BP     8  0 1.000000000
## GO:0051503  BP     8  0 1.000000000
## GO:0007197  BP     8  0 1.000000000
## GO:0034334  BP     8  0 1.000000000
## GO:0044650  BP     8  0 1.000000000
## GO:0035973  BP     8  0 1.000000000
## GO:0046349  BP     8  0 1.000000000
## GO:0015838  BP     8  0 1.000000000
## GO:0097065  BP     8  0 1.000000000
## GO:0043615  BP     8  0 1.000000000
## GO:0055009  BP     8  0 1.000000000
## GO:0003190  BP     8  0 1.000000000
## GO:0035425  BP     8  0 1.000000000
## GO:0072378  BP     8  0 1.000000000
## GO:0002035  BP     8  0 1.000000000
## GO:0015670  BP     8  0 1.000000000
## GO:0003348  BP     8  0 1.000000000
## GO:0060923  BP     8  0 1.000000000
## GO:0042637  BP     8  0 1.000000000
## GO:0043697  BP     8  0 1.000000000
## GO:0110095  BP     8  0 1.000000000
## GO:0072501  BP     8  0 1.000000000
## GO:0030643  BP     8  0 1.000000000
## GO:0071493  BP     8  0 1.000000000
## GO:0071313  BP     8  0 1.000000000
## GO:0071420  BP     8  0 1.000000000
## GO:0071447  BP     8  0 1.000000000
## GO:1990314  BP     8  0 1.000000000
## GO:0072502  BP     8  0 1.000000000
## GO:0021626  BP     8  0 1.000000000
## GO:0021894  BP     8  0 1.000000000
## GO:1901538  BP     8  0 1.000000000
## GO:0006032  BP     8  0 1.000000000
## GO:0006030  BP     8  0 1.000000000
## GO:0000052  BP     8  0 1.000000000
## GO:0009235  BP     8  0 1.000000000
## GO:0060242  BP     8  0 1.000000000
## GO:0060027  BP     8  0 1.000000000
## GO:0021540  BP     8  0 1.000000000
## GO:0034651  BP     8  0 1.000000000
## GO:0021603  BP     8  0 1.000000000
## GO:0060363  BP     8  0 1.000000000
## GO:0002182  BP     8  0 1.000000000
## GO:0046060  BP     8  0 1.000000000
## GO:0043696  BP     8  0 1.000000000
## GO:0009120  BP     8  0 1.000000000
## GO:0009162  BP     8  0 1.000000000
## GO:0009204  BP     8  0 1.000000000
## GO:0005513  BP     8  0 1.000000000
## GO:0061687  BP     8  0 1.000000000
## GO:0015959  BP     8  0 1.000000000
## GO:0035912  BP     8  0 1.000000000
## GO:0034498  BP     8  0 1.000000000
## GO:0040016  BP     8  0 1.000000000
## GO:0001714  BP     8  0 1.000000000
## GO:0051643  BP     8  0 1.000000000
## GO:0090158  BP     8  0 1.000000000
## GO:0042045  BP     8  0 1.000000000
## GO:0051683  BP     8  0 1.000000000
## GO:0097368  BP     8  0 1.000000000
## GO:0034085  BP     8  0 1.000000000
## GO:0006067  BP     8  0 1.000000000
## GO:0098881  BP     8  0 1.000000000
## GO:0098967  BP     8  0 1.000000000
## GO:0000459  BP     8  0 1.000000000
## GO:0000467  BP     8  0 1.000000000
## GO:0042363  BP     8  0 1.000000000
## GO:1902001  BP     8  0 1.000000000
## GO:0007144  BP     8  0 1.000000000
## GO:0016321  BP     8  0 1.000000000
## GO:0021861  BP     8  0 1.000000000
## GO:0001325  BP     8  0 1.000000000
## GO:0072310  BP     8  0 1.000000000
## GO:0072015  BP     8  0 1.000000000
## GO:0016139  BP     8  0 1.000000000
## GO:0061484  BP     8  0 1.000000000
## GO:0007442  BP     8  0 1.000000000
## GO:0043983  BP     8  0 1.000000000
## GO:0035404  BP     8  0 1.000000000
## GO:0030214  BP     8  0 1.000000000
## GO:0021979  BP     8  0 1.000000000
## GO:0042435  BP     8  0 1.000000000
## GO:0001826  BP     8  0 1.000000000
## GO:0072611  BP     8  0 1.000000000
## GO:0032627  BP     8  0 1.000000000
## GO:0097376  BP     8  0 1.000000000
## GO:0097286  BP     8  0 1.000000000
## GO:0048290  BP     8  0 1.000000000
## GO:0032511  BP     8  0 1.000000000
## GO:0019372  BP     8  0 1.000000000
## GO:0042758  BP     8  0 1.000000000
## GO:0045713  BP     8  0 1.000000000
## GO:0060836  BP     8  0 1.000000000
## GO:0034238  BP     8  0 1.000000000
## GO:0010216  BP     8  0 1.000000000
## GO:0022605  BP     8  0 1.000000000
## GO:0033313  BP     8  0 1.000000000
## GO:0072205  BP     8  0 1.000000000
## GO:0072239  BP     8  0 1.000000000
## GO:0061732  BP     8  0 1.000000000
## GO:0035696  BP     8  0 1.000000000
## GO:0061744  BP     8  0 1.000000000
## GO:0014908  BP     8  0 1.000000000
## GO:2000562  BP     8  0 1.000000000
## GO:0051126  BP     8  0 1.000000000
## GO:1900222  BP     8  0 1.000000000
## GO:1904746  BP     8  0 1.000000000
## GO:1903147  BP     8  0 1.000000000
## GO:2000480  BP     8  0 1.000000000
## GO:0009996  BP     8  0 1.000000000
## GO:0002692  BP     8  0 1.000000000
## GO:1902548  BP     8  0 1.000000000
## GO:0045916  BP     8  0 1.000000000
## GO:2000766  BP     8  0 1.000000000
## GO:0061002  BP     8  0 1.000000000
## GO:0010764  BP     8  0 1.000000000
## GO:0060455  BP     8  0 1.000000000
## GO:2000542  BP     8  0 1.000000000
## GO:1905940  BP     8  0 1.000000000
## GO:0032277  BP     8  0 1.000000000
## GO:1905098  BP     8  0 1.000000000
## GO:0042636  BP     8  0 1.000000000
## GO:1901533  BP     8  0 1.000000000
## GO:1901299  BP     8  0 1.000000000
## GO:0090084  BP     8  0 1.000000000
## GO:0031665  BP     8  0 1.000000000
## GO:0031441  BP     8  0 1.000000000
## GO:1900364  BP     8  0 1.000000000
## GO:0033007  BP     8  0 1.000000000
## GO:1905709  BP     8  0 1.000000000
## GO:0072201  BP     8  0 1.000000000
## GO:1901029  BP     8  0 1.000000000
## GO:0032815  BP     8  0 1.000000000
## GO:0051581  BP     8  0 1.000000000
## GO:0010700  BP     8  0 1.000000000
## GO:0090324  BP     8  0 1.000000000
## GO:1903726  BP     8  0 1.000000000
## GO:2000258  BP     8  0 1.000000000
## GO:0044387  BP     8  0 1.000000000
## GO:0035814  BP     8  0 1.000000000
## GO:0032229  BP     8  0 1.000000000
## GO:0034144  BP     8  0 1.000000000
## GO:1905064  BP     8  0 1.000000000
## GO:0046958  BP     8  0 1.000000000
## GO:0007000  BP     8  0 1.000000000
## GO:0009133  BP     8  0 1.000000000
## GO:1901642  BP     8  0 1.000000000
## GO:0038003  BP     8  0 1.000000000
## GO:0030916  BP     8  0 1.000000000
## GO:0007008  BP     8  0 1.000000000
## GO:0019800  BP     8  0 1.000000000
## GO:0035246  BP     8  0 1.000000000
## GO:0018202  BP     8  0 1.000000000
## GO:0034983  BP     8  0 1.000000000
## GO:0017185  BP     8  0 1.000000000
## GO:0018401  BP     8  0 1.000000000
## GO:0036289  BP     8  0 1.000000000
## GO:0032287  BP     8  0 1.000000000
## GO:0090385  BP     8  0 1.000000000
## GO:0036092  BP     8  0 1.000000000
## GO:0015911  BP     8  0 1.000000000
## GO:0043633  BP     8  0 1.000000000
## GO:0016093  BP     8  0 1.000000000
## GO:0044829  BP     8  0 1.000000000
## GO:2000601  BP     8  0 1.000000000
## GO:1900264  BP     8  0 1.000000000
## GO:0051135  BP     8  0 1.000000000
## GO:1904783  BP     8  0 1.000000000
## GO:1900246  BP     8  0 1.000000000
## GO:0045627  BP     8  0 1.000000000
## GO:2000096  BP     8  0 1.000000000
## GO:1904747  BP     8  0 1.000000000
## GO:1902339  BP     8  0 1.000000000
## GO:1905247  BP     8  0 1.000000000
## GO:2000987  BP     8  0 1.000000000
## GO:0062043  BP     8  0 1.000000000
## GO:0010455  BP     8  0 1.000000000
## GO:0038089  BP     8  0 1.000000000
## GO:0045542  BP     8  0 1.000000000
## GO:0090205  BP     8  0 1.000000000
## GO:0045919  BP     8  0 1.000000000
## GO:0048087  BP     8  0 1.000000000
## GO:2000643  BP     8  0 1.000000000
## GO:1903367  BP     8  0 1.000000000
## GO:0045743  BP     8  0 1.000000000
## GO:2000543  BP     8  0 1.000000000
## GO:0072126  BP     8  0 1.000000000
## GO:0097151  BP     8  0 1.000000000
## GO:0045362  BP     8  0 1.000000000
## GO:1902255  BP     8  0 1.000000000
## GO:0031666  BP     8  0 1.000000000
## GO:1902416  BP     8  0 1.000000000
## GO:0033601  BP     8  0 1.000000000
## GO:0045654  BP     8  0 1.000000000
## GO:0045842  BP     8  0 1.000000000
## GO:1901970  BP     8  0 1.000000000
## GO:0014744  BP     8  0 1.000000000
## GO:0002857  BP     8  0 1.000000000
## GO:0150078  BP     8  0 1.000000000
## GO:0051388  BP     8  0 1.000000000
## GO:0035360  BP     8  0 1.000000000
## GO:1901628  BP     8  0 1.000000000
## GO:0031394  BP     8  0 1.000000000
## GO:0060050  BP     8  0 1.000000000
## GO:1900378  BP     8  0 1.000000000
## GO:0048743  BP     8  0 1.000000000
## GO:0106120  BP     8  0 1.000000000
## GO:1901341  BP     8  0 1.000000000
## GO:2000809  BP     8  0 1.000000000
## GO:1903265  BP     8  0 1.000000000
## GO:0001812  BP     8  0 1.000000000
## GO:1904417  BP     8  0 1.000000000
## GO:0034310  BP     8  0 1.000000000
## GO:0050847  BP     8  0 1.000000000
## GO:0048793  BP     8  0 1.000000000
## GO:0085020  BP     8  0 1.000000000
## GO:0018243  BP     8  0 1.000000000
## GO:0018344  BP     8  0 1.000000000
## GO:0045039  BP     8  0 1.000000000
## GO:1904491  BP     8  0 1.000000000
## GO:0071692  BP     8  0 1.000000000
## GO:0018065  BP     8  0 1.000000000
## GO:0009113  BP     8  0 1.000000000
## GO:0009169  BP     8  0 1.000000000
## GO:0015868  BP     8  0 1.000000000
## GO:0043101  BP     8  0 1.000000000
## GO:0072526  BP     8  0 1.000000000
## GO:0019856  BP     8  0 1.000000000
## GO:0009130  BP     8  0 1.000000000
## GO:0070475  BP     8  0 1.000000000
## GO:2000564  BP     8  0 1.000000000
## GO:1900262  BP     8  0 1.000000000
## GO:1903069  BP     8  0 1.000000000
## GO:0051136  BP     8  0 1.000000000
## GO:1900147  BP     8  0 1.000000000
## GO:0003307  BP     8  0 1.000000000
## GO:0070235  BP     8  0 1.000000000
## GO:0032347  BP     8  0 1.000000000
## GO:1905651  BP     8  0 1.000000000
## GO:0060371  BP     8  0 1.000000000
## GO:0051890  BP     8  0 1.000000000
## GO:0071649  BP     8  0 1.000000000
## GO:1904796  BP     8  0 1.000000000
## GO:0051459  BP     8  0 1.000000000
## GO:0010603  BP     8  0 1.000000000
## GO:1900247  BP     8  0 1.000000000
## GO:1901201  BP     8  0 1.000000000
## GO:0046880  BP     8  0 1.000000000
## GO:0031946  BP     8  0 1.000000000
## GO:0000820  BP     8  0 1.000000000
## GO:2000465  BP     8  0 1.000000000
## GO:0005981  BP     8  0 1.000000000
## GO:0090381  BP     8  0 1.000000000
## GO:1901725  BP     8  0 1.000000000
## GO:0010728  BP     8  0 1.000000000
## GO:1903795  BP     8  0 1.000000000
## GO:0045360  BP     8  0 1.000000000
## GO:2001182  BP     8  0 1.000000000
## GO:1905076  BP     8  0 1.000000000
## GO:0032661  BP     8  0 1.000000000
## GO:0032667  BP     8  0 1.000000000
## GO:0030300  BP     8  0 1.000000000
## GO:0032383  BP     8  0 1.000000000
## GO:0032377  BP     8  0 1.000000000
## GO:0032380  BP     8  0 1.000000000
## GO:0051340  BP     8  0 1.000000000
## GO:0033684  BP     8  0 1.000000000
## GO:0034182  BP     8  0 1.000000000
## GO:0060753  BP     8  0 1.000000000
## GO:0003339  BP     8  0 1.000000000
## GO:0032534  BP     8  0 1.000000000
## GO:0046602  BP     8  0 1.000000000
## GO:1905274  BP     8  0 1.000000000
## GO:0035507  BP     8  0 1.000000000
## GO:0043313  BP     8  0 1.000000000
## GO:2000169  BP     8  0 1.000000000
## GO:2000586  BP     8  0 1.000000000
## GO:1903286  BP     8  0 1.000000000
## GO:2000973  BP     8  0 1.000000000
## GO:1903564  BP     8  0 1.000000000
## GO:1902866  BP     8  0 1.000000000
## GO:1904393  BP     8  0 1.000000000
## GO:0048631  BP     8  0 1.000000000
## GO:1901620  BP     8  0 1.000000000
## GO:0001993  BP     8  0 1.000000000
## GO:0032909  BP     8  0 1.000000000
## GO:0036490  BP     8  0 1.000000000
## GO:1904415  BP     8  0 1.000000000
## GO:0060087  BP     8  0 1.000000000
## GO:0001999  BP     8  0 1.000000000
## GO:0072033  BP     8  0 1.000000000
## GO:0048478  BP     8  0 1.000000000
## GO:0070672  BP     8  0 1.000000000
## GO:0009415  BP     8  0 1.000000000
## GO:0016056  BP     8  0 1.000000000
## GO:0009191  BP     8  0 1.000000000
## GO:0009158  BP     8  0 1.000000000
## GO:0000055  BP     8  0 1.000000000
## GO:0001514  BP     8  0 1.000000000
## GO:0048752  BP     8  0 1.000000000
## GO:0071670  BP     8  0 1.000000000
## GO:0070253  BP     8  0 1.000000000
## GO:0006685  BP     8  0 1.000000000
## GO:0097501  BP     8  0 1.000000000
## GO:0006930  BP     8  0 1.000000000
## GO:0006105  BP     8  0 1.000000000
## GO:0000098  BP     8  0 1.000000000
## GO:0098883  BP     8  0 1.000000000
## GO:0099532  BP     8  0 1.000000000
## GO:0090656  BP     8  0 1.000000000
## GO:0042780  BP     8  0 1.000000000
## GO:0016078  BP     8  0 1.000000000
## GO:0090672  BP     8  0 1.000000000
## GO:0090671  BP     8  0 1.000000000
## GO:0090737  BP     8  0 1.000000000
## GO:0061820  BP     8  0 1.000000000
## GO:0090657  BP     8  0 1.000000000
## GO:0072553  BP     8  0 1.000000000
## GO:1902645  BP     8  0 1.000000000
## GO:0060534  BP     8  0 1.000000000
## GO:0032906  BP     8  0 1.000000000
## GO:0006451  BP     8  0 1.000000000
## GO:0044417  BP     8  0 1.000000000
## GO:0051836  BP     8  0 1.000000000
## GO:0003175  BP     8  0 1.000000000
## GO:0007021  BP     8  0 1.000000000
## GO:0010992  BP     8  0 1.000000000
## GO:0048280  BP     8  0 1.000000000
## GO:0072319  BP     8  0 1.000000000
## GO:0070561  BP     8  0 1.000000000
## GO:0042364  BP     8  0 1.000000000
## GO:0042908  BP     8  0 1.000000000
## GO:0071578  BP     8  0 1.000000000
## GO:0006241  BP     9  0 1.000000000
## GO:0046036  BP     9  0 1.000000000
## GO:0038096  BP     9  0 1.000000000
## GO:0045023  BP     9  0 1.000000000
## GO:1902023  BP     9  0 1.000000000
## GO:0006563  BP     9  0 1.000000000
## GO:0046498  BP     9  0 1.000000000
## GO:0086015  BP     9  0 1.000000000
## GO:0086070  BP     9  0 1.000000000
## GO:0086018  BP     9  0 1.000000000
## GO:0032933  BP     9  0 1.000000000
## GO:0006616  BP     9  0 1.000000000
## GO:0036135  BP     9  0 1.000000000
## GO:0046051  BP     9  0 1.000000000
## GO:1901374  BP     9  0 1.000000000
## GO:0015870  BP     9  0 1.000000000
## GO:0006382  BP     9  0 1.000000000
## GO:0008343  BP     9  0 1.000000000
## GO:0032328  BP     9  0 1.000000000
## GO:0030647  BP     9  0 1.000000000
## GO:0099641  BP     9  0 1.000000000
## GO:0042590  BP     9  0 1.000000000
## GO:0001547  BP     9  0 1.000000000
## GO:0015810  BP     9  0 1.000000000
## GO:0099624  BP     9  0 1.000000000
## GO:0003228  BP     9  0 1.000000000
## GO:0048102  BP     9  0 1.000000000
## GO:0048318  BP     9  0 1.000000000
## GO:0035095  BP     9  0 1.000000000
## GO:0060837  BP     9  0 1.000000000
## GO:0048539  BP     9  0 1.000000000
## GO:0016338  BP     9  0 1.000000000
## GO:0051934  BP     9  0 1.000000000
## GO:0060352  BP     9  0 1.000000000
## GO:0030644  BP     9  0 1.000000000
## GO:0071481  BP     9  0 1.000000000
## GO:0110096  BP     9  0 1.000000000
## GO:0071872  BP     9  0 1.000000000
## GO:0071372  BP     9  0 1.000000000
## GO:0071225  BP     9  0 1.000000000
## GO:0071394  BP     9  0 1.000000000
## GO:0097067  BP     9  0 1.000000000
## GO:0021796  BP     9  0 1.000000000
## GO:0071609  BP     9  0 1.000000000
## GO:0060717  BP     9  0 1.000000000
## GO:0061009  BP     9  0 1.000000000
## GO:0060028  BP     9  0 1.000000000
## GO:0061303  BP     9  0 1.000000000
## GO:0021957  BP     9  0 1.000000000
## GO:0090286  BP     9  0 1.000000000
## GO:0044597  BP     9  0 1.000000000
## GO:0099519  BP     9  0 1.000000000
## GO:0003140  BP     9  0 1.000000000
## GO:0060539  BP     9  0 1.000000000
## GO:0051583  BP     9  0 1.000000000
## GO:0044598  BP     9  0 1.000000000
## GO:0046618  BP     9  0 1.000000000
## GO:0035234  BP     9  0 1.000000000
## GO:0007343  BP     9  0 1.000000000
## GO:0048251  BP     9  0 1.000000000
## GO:0060136  BP     9  0 1.000000000
## GO:0034058  BP     9  0 1.000000000
## GO:0042118  BP     9  0 1.000000000
## GO:0043353  BP     9  0 1.000000000
## GO:0050957  BP     9  0 1.000000000
## GO:0001768  BP     9  0 1.000000000
## GO:0051660  BP     9  0 1.000000000
## GO:0001767  BP     9  0 1.000000000
## GO:0044849  BP     9  0 1.000000000
## GO:0042439  BP     9  0 1.000000000
## GO:0031017  BP     9  0 1.000000000
## GO:0052696  BP     9  0 1.000000000
## GO:0009396  BP     9  0 1.000000000
## GO:0006012  BP     9  0 1.000000000
## GO:0006681  BP     9  0 1.000000000
## GO:0035482  BP     9  0 1.000000000
## GO:0008354  BP     9  0 1.000000000
## GO:0032836  BP     9  0 1.000000000
## GO:0015886  BP     9  0 1.000000000
## GO:0034384  BP     9  0 1.000000000
## GO:0061525  BP     9  0 1.000000000
## GO:0036353  BP     9  0 1.000000000
## GO:0070544  BP     9  0 1.000000000
## GO:0034770  BP     9  0 1.000000000
## GO:0006971  BP     9  0 1.000000000
## GO:0002433  BP     9  0 1.000000000
## GO:0090713  BP     9  0 1.000000000
## GO:0097340  BP     9  0 1.000000000
## GO:0042222  BP     9  0 1.000000000
## GO:0021830  BP     9  0 1.000000000
## GO:0014827  BP     9  0 1.000000000
## GO:1902224  BP     9  0 1.000000000
## GO:0042182  BP     9  0 1.000000000
## GO:0070189  BP     9  0 1.000000000
## GO:0019249  BP     9  0 1.000000000
## GO:0044539  BP     9  0 1.000000000
## GO:0034374  BP     9  0 1.000000000
## GO:0060462  BP     9  0 1.000000000
## GO:0060463  BP     9  0 1.000000000
## GO:0060426  BP     9  0 1.000000000
## GO:0007042  BP     9  0 1.000000000
## GO:1905146  BP     9  0 1.000000000
## GO:0098734  BP     9  0 1.000000000
## GO:0044351  BP     9  0 1.000000000
## GO:0045199  BP     9  0 1.000000000
## GO:0060592  BP     9  0 1.000000000
## GO:0006013  BP     9  0 1.000000000
## GO:0044771  BP     9  0 1.000000000
## GO:0033206  BP     9  0 1.000000000
## GO:0072497  BP     9  0 1.000000000
## GO:0060638  BP     9  0 1.000000000
## GO:0051418  BP     9  0 1.000000000
## GO:0030917  BP     9  0 1.000000000
## GO:0034551  BP     9  0 1.000000000
## GO:0090646  BP     9  0 1.000000000
## GO:0090647  BP     9  0 1.000000000
## GO:0098828  BP     9  0 1.000000000
## GO:0035520  BP     9  0 1.000000000
## GO:0035878  BP     9  0 1.000000000
## GO:0043320  BP     9  0 1.000000000
## GO:0002713  BP     9  0 1.000000000
## GO:0002725  BP     9  0 1.000000000
## GO:0035562  BP     9  0 1.000000000
## GO:0032471  BP     9  0 1.000000000
## GO:1900102  BP     9  0 1.000000000
## GO:1903748  BP     9  0 1.000000000
## GO:1903054  BP     9  0 1.000000000
## GO:2000192  BP     9  0 1.000000000
## GO:2000270  BP     9  0 1.000000000
## GO:0034351  BP     9  0 1.000000000
## GO:0014050  BP     9  0 1.000000000
## GO:0002890  BP     9  0 1.000000000
## GO:0043569  BP     9  0 1.000000000
## GO:0050713  BP     9  0 1.000000000
## GO:0045617  BP     9  0 1.000000000
## GO:0010985  BP     9  0 1.000000000
## GO:2000381  BP     9  0 1.000000000
## GO:0072217  BP     9  0 1.000000000
## GO:0002887  BP     9  0 1.000000000
## GO:0007406  BP     9  0 1.000000000
## GO:2000051  BP     9  0 1.000000000
## GO:0046533  BP     9  0 1.000000000
## GO:0033234  BP     9  0 1.000000000
## GO:1904153  BP     9  0 1.000000000
## GO:0045869  BP     9  0 1.000000000
## GO:0045988  BP     9  0 1.000000000
## GO:1904354  BP     9  0 1.000000000
## GO:0010944  BP     9  0 1.000000000
## GO:0014029  BP     9  0 1.000000000
## GO:0001842  BP     9  0 1.000000000
## GO:0001839  BP     9  0 1.000000000
## GO:0060896  BP     9  0 1.000000000
## GO:0061101  BP     9  0 1.000000000
## GO:0048664  BP     9  0 1.000000000
## GO:0036480  BP     9  0 1.000000000
## GO:0030223  BP     9  0 1.000000000
## GO:0070944  BP     9  0 1.000000000
## GO:0051292  BP     9  0 1.000000000
## GO:0046113  BP     9  0 1.000000000
## GO:0009134  BP     9  0 1.000000000
## GO:0015858  BP     9  0 1.000000000
## GO:0043173  BP     9  0 1.000000000
## GO:0033683  BP     9  0 1.000000000
## GO:0098597  BP     9  0 1.000000000
## GO:0021891  BP     9  0 1.000000000
## GO:0009313  BP     9  0 1.000000000
## GO:0002158  BP     9  0 1.000000000
## GO:0048840  BP     9  0 1.000000000
## GO:0042473  BP     9  0 1.000000000
## GO:0003310  BP     9  0 1.000000000
## GO:0048341  BP     9  0 1.000000000
## GO:0007567  BP     9  0 1.000000000
## GO:0061004  BP     9  0 1.000000000
## GO:0007341  BP     9  0 1.000000000
## GO:0003344  BP     9  0 1.000000000
## GO:0016559  BP     9  0 1.000000000
## GO:0006646  BP     9  0 1.000000000
## GO:0070816  BP     9  0 1.000000000
## GO:0030638  BP     9  0 1.000000000
## GO:0015791  BP     9  0 1.000000000
## GO:2000969  BP     9  0 1.000000000
## GO:2001187  BP     9  0 1.000000000
## GO:1905216  BP     9  0 1.000000000
## GO:1904179  BP     9  0 1.000000000
## GO:1902669  BP     9  0 1.000000000
## GO:1903589  BP     9  0 1.000000000
## GO:1903012  BP     9  0 1.000000000
## GO:0010753  BP     9  0 1.000000000
## GO:1901978  BP     9  0 1.000000000
## GO:0010825  BP     9  0 1.000000000
## GO:0010873  BP     9  0 1.000000000
## GO:0046010  BP     9  0 1.000000000
## GO:2000848  BP     9  0 1.000000000
## GO:2001269  BP     9  0 1.000000000
## GO:0002741  BP     9  0 1.000000000
## GO:2000767  BP     9  0 1.000000000
## GO:0090045  BP     9  0 1.000000000
## GO:1905168  BP     9  0 1.000000000
## GO:1902237  BP     9  0 1.000000000
## GO:0031536  BP     9  0 1.000000000
## GO:0031622  BP     9  0 1.000000000
## GO:2000617  BP     9  0 1.000000000
## GO:0033129  BP     9  0 1.000000000
## GO:2001046  BP     9  0 1.000000000
## GO:0045084  BP     9  0 1.000000000
## GO:0051006  BP     9  0 1.000000000
## GO:1900454  BP     9  0 1.000000000
## GO:2000020  BP     9  0 1.000000000
## GO:1902101  BP     9  0 1.000000000
## GO:0090309  BP     9  0 1.000000000
## GO:0098779  BP     9  0 1.000000000
## GO:0045657  BP     9  0 1.000000000
## GO:0033034  BP     9  0 1.000000000
## GO:0060406  BP     9  0 1.000000000
## GO:2001140  BP     9  0 1.000000000
## GO:1902966  BP     9  0 1.000000000
## GO:2000234  BP     9  0 1.000000000
## GO:1900122  BP     9  0 1.000000000
## GO:1903911  BP     9  0 1.000000000
## GO:1901033  BP     9  0 1.000000000
## GO:0090070  BP     9  0 1.000000000
## GO:1904058  BP     9  0 1.000000000
## GO:0090031  BP     9  0 1.000000000
## GO:0010898  BP     9  0 1.000000000
## GO:0002894  BP     9  0 1.000000000
## GO:0001798  BP     9  0 1.000000000
## GO:0070474  BP     9  0 1.000000000
## GO:2001214  BP     9  0 1.000000000
## GO:0046598  BP     9  0 1.000000000
## GO:0000338  BP     9  0 1.000000000
## GO:0002084  BP     9  0 1.000000000
## GO:0099612  BP     9  0 1.000000000
## GO:1905383  BP     9  0 1.000000000
## GO:0018095  BP     9  0 1.000000000
## GO:0006152  BP     9  0 1.000000000
## GO:0009128  BP     9  0 1.000000000
## GO:0015865  BP     9  0 1.000000000
## GO:0046130  BP     9  0 1.000000000
## GO:0009221  BP     9  0 1.000000000
## GO:0006290  BP     9  0 1.000000000
## GO:0009129  BP     9  0 1.000000000
## GO:0090481  BP     9  0 1.000000000
## GO:0031125  BP     9  0 1.000000000
## GO:0070316  BP     9  0 1.000000000
## GO:0033860  BP     9  0 1.000000000
## GO:0010624  BP     9  0 1.000000000
## GO:1903715  BP     9  0 1.000000000
## GO:0032344  BP     9  0 1.000000000
## GO:0090237  BP     9  0 1.000000000
## GO:1902959  BP     9  0 1.000000000
## GO:0060312  BP     9  0 1.000000000
## GO:2000172  BP     9  0 1.000000000
## GO:0062042  BP     9  0 1.000000000
## GO:0086036  BP     9  0 1.000000000
## GO:0010881  BP     9  0 1.000000000
## GO:1903242  BP     9  0 1.000000000
## GO:0106049  BP     9  0 1.000000000
## GO:2001225  BP     9  0 1.000000000
## GO:0001672  BP     9  0 1.000000000
## GO:1903659  BP     9  0 1.000000000
## GO:0002604  BP     9  0 1.000000000
## GO:2000508  BP     9  0 1.000000000
## GO:0032070  BP     9  0 1.000000000
## GO:1904338  BP     9  0 1.000000000
## GO:0014060  BP     9  0 1.000000000
## GO:2000794  BP     9  0 1.000000000
## GO:0046643  BP     9  0 1.000000000
## GO:0045586  BP     9  0 1.000000000
## GO:1904304  BP     9  0 1.000000000
## GO:0048819  BP     9  0 1.000000000
## GO:0051095  BP     9  0 1.000000000
## GO:1902033  BP     9  0 1.000000000
## GO:2000489  BP     9  0 1.000000000
## GO:1900125  BP     9  0 1.000000000
## GO:0032650  BP     9  0 1.000000000
## GO:1904729  BP     9  0 1.000000000
## GO:0034756  BP     9  0 1.000000000
## GO:2000392  BP     9  0 1.000000000
## GO:1903236  BP     9  0 1.000000000
## GO:0034091  BP     9  0 1.000000000
## GO:0060631  BP     9  0 1.000000000
## GO:1901993  BP     9  0 1.000000000
## GO:0010635  BP     9  0 1.000000000
## GO:2000671  BP     9  0 1.000000000
## GO:0032817  BP     9  0 1.000000000
## GO:0150011  BP     9  0 1.000000000
## GO:1903376  BP     9  0 1.000000000
## GO:0010966  BP     9  0 1.000000000
## GO:0032429  BP     9  0 1.000000000
## GO:2001138  BP     9  0 1.000000000
## GO:0050932  BP     9  0 1.000000000
## GO:0010835  BP     9  0 1.000000000
## GO:1900044  BP     9  0 1.000000000
## GO:0061635  BP     9  0 1.000000000
## GO:1904776  BP     9  0 1.000000000
## GO:1902965  BP     9  0 1.000000000
## GO:1904749  BP     9  0 1.000000000
## GO:2000121  BP     9  0 1.000000000
## GO:0046877  BP     9  0 1.000000000
## GO:0014807  BP     9  0 1.000000000
## GO:0034139  BP     9  0 1.000000000
## GO:0034163  BP     9  0 1.000000000
## GO:0001810  BP     9  0 1.000000000
## GO:0002892  BP     9  0 1.000000000
## GO:0001796  BP     9  0 1.000000000
## GO:0003056  BP     9  0 1.000000000
## GO:0060556  BP     9  0 1.000000000
## GO:0072048  BP     9  0 1.000000000
## GO:0090399  BP     9  0 1.000000000
## GO:0017062  BP     9  0 1.000000000
## GO:0051412  BP     9  0 1.000000000
## GO:0071871  BP     9  0 1.000000000
## GO:0045472  BP     9  0 1.000000000
## GO:0051409  BP     9  0 1.000000000
## GO:0060040  BP     9  0 1.000000000
## GO:0046666  BP     9  0 1.000000000
## GO:0021546  BP     9  0 1.000000000
## GO:0003139  BP     9  0 1.000000000
## GO:0097264  BP     9  0 1.000000000
## GO:0035581  BP     9  0 1.000000000
## GO:0007210  BP     9  0 1.000000000
## GO:0030241  BP     9  0 1.000000000
## GO:0014816  BP     9  0 1.000000000
## GO:0070922  BP     9  0 1.000000000
## GO:0042795  BP     9  0 1.000000000
## GO:0090520  BP     9  0 1.000000000
## GO:0000244  BP     9  0 1.000000000
## GO:0071688  BP     9  0 1.000000000
## GO:0061549  BP     9  0 1.000000000
## GO:0022028  BP     9  0 1.000000000
## GO:0061370  BP     9  0 1.000000000
## GO:0046146  BP     9  0 1.000000000
## GO:0043587  BP     9  0 1.000000000
## GO:0099545  BP     9  0 1.000000000
## GO:0060290  BP     9  0 1.000000000
## GO:0036363  BP     9  0 1.000000000
## GO:0046794  BP     9  0 1.000000000
## GO:0016068  BP     9  0 1.000000000
## GO:0002445  BP     9  0 1.000000000
## GO:0001794  BP     9  0 1.000000000
## GO:0072197  BP     9  0 1.000000000
## GO:0060677  BP     9  0 1.000000000
## GO:0061042  BP     9  0 1.000000000
## GO:0003223  BP     9  0 1.000000000
## GO:0034372  BP     9  0 1.000000000
## GO:0021562  BP     9  0 1.000000000
## GO:0061032  BP     9  0 1.000000000
## GO:0050882  BP     9  0 1.000000000
## GO:0002246  BP     9  0 1.000000000
## GO:0052697  BP     9  0 1.000000000
## GO:0097341  BP     9  0 1.000000000
## GO:0060020  BP    10  0 1.000000000
## GO:0048208  BP    10  0 1.000000000
## GO:0006183  BP    10  0 1.000000000
## GO:0075522  BP    10  0 1.000000000
## GO:0006558  BP    10  0 1.000000000
## GO:0007220  BP    10  0 1.000000000
## GO:0036499  BP    10  0 1.000000000
## GO:0035744  BP    10  0 1.000000000
## GO:0009650  BP    10  0 1.000000000
## GO:0051639  BP    10  0 1.000000000
## GO:0046085  BP    10  0 1.000000000
## GO:0007191  BP    10  0 1.000000000
## GO:0042891  BP    10  0 1.000000000
## GO:0045176  BP    10  0 1.000000000
## GO:0048149  BP    10  0 1.000000000
## GO:0000492  BP    10  0 1.000000000
## GO:0099004  BP    10  0 1.000000000
## GO:0060379  BP    10  0 1.000000000
## GO:0003211  BP    10  0 1.000000000
## GO:0072203  BP    10  0 1.000000000
## GO:0070417  BP    10  0 1.000000000
## GO:0071257  BP    10  0 1.000000000
## GO:0071233  BP    10  0 1.000000000
## GO:1990253  BP    10  0 1.000000000
## GO:0071223  BP    10  0 1.000000000
## GO:0043562  BP    10  0 1.000000000
## GO:0006995  BP    10  0 1.000000000
## GO:0140052  BP    10  0 1.000000000
## GO:0071501  BP    10  0 1.000000000
## GO:0071305  BP    10  0 1.000000000
## GO:0021800  BP    10  0 1.000000000
## GO:0061684  BP    10  0 1.000000000
## GO:0072321  BP    10  0 1.000000000
## GO:0006707  BP    10  0 1.000000000
## GO:0060710  BP    10  0 1.000000000
## GO:0000183  BP    10  0 1.000000000
## GO:0015937  BP    10  0 1.000000000
## GO:0060982  BP    10  0 1.000000000
## GO:0051458  BP    10  0 1.000000000
## GO:0034650  BP    10  0 1.000000000
## GO:0000290  BP    10  0 1.000000000
## GO:1990504  BP    10  0 1.000000000
## GO:0032253  BP    10  0 1.000000000
## GO:1901950  BP    10  0 1.000000000
## GO:0002934  BP    10  0 1.000000000
## GO:0046543  BP    10  0 1.000000000
## GO:0072017  BP    10  0 1.000000000
## GO:0006488  BP    10  0 1.000000000
## GO:0035907  BP    10  0 1.000000000
## GO:0048703  BP    10  0 1.000000000
## GO:0000478  BP    10  0 1.000000000
## GO:0000479  BP    10  0 1.000000000
## GO:0035646  BP    10  0 1.000000000
## GO:0043485  BP    10  0 1.000000000
## GO:0048242  BP    10  0 1.000000000
## GO:1902221  BP    10  0 1.000000000
## GO:0046485  BP    10  0 1.000000000
## GO:0051601  BP    10  0 1.000000000
## GO:0043928  BP    10  0 1.000000000
## GO:1900116  BP    10  0 1.000000000
## GO:1900115  BP    10  0 1.000000000
## GO:0021612  BP    10  0 1.000000000
## GO:1901569  BP    10  0 1.000000000
## GO:0090269  BP    10  0 1.000000000
## GO:0046884  BP    10  0 1.000000000
## GO:0021873  BP    10  0 1.000000000
## GO:0006000  BP    10  0 1.000000000
## GO:0019374  BP    10  0 1.000000000
## GO:0016264  BP    10  0 1.000000000
## GO:0061620  BP    10  0 1.000000000
## GO:0003129  BP    10  0 1.000000000
## GO:0015014  BP    10  0 1.000000000
## GO:0034380  BP    10  0 1.000000000
## GO:0002349  BP    10  0 1.000000000
## GO:0002553  BP    10  0 1.000000000
## GO:0002441  BP    10  0 1.000000000
## GO:0044154  BP    10  0 1.000000000
## GO:0098532  BP    10  0 1.000000000
## GO:0010452  BP    10  0 1.000000000
## GO:0052803  BP    10  0 1.000000000
## GO:1901142  BP    10  0 1.000000000
## GO:0045350  BP    10  0 1.000000000
## GO:0022027  BP    10  0 1.000000000
## GO:0072610  BP    10  0 1.000000000
## GO:0032621  BP    10  0 1.000000000
## GO:0008300  BP    10  0 1.000000000
## GO:0098598  BP    10  0 1.000000000
## GO:0043651  BP    10  0 1.000000000
## GO:0035336  BP    10  0 1.000000000
## GO:0072070  BP    10  0 1.000000000
## GO:0060484  BP    10  0 1.000000000
## GO:0071888  BP    10  0 1.000000000
## GO:0035090  BP    10  0 1.000000000
## GO:0035437  BP    10  0 1.000000000
## GO:0002176  BP    10  0 1.000000000
## GO:0002315  BP    10  0 1.000000000
## GO:0051791  BP    10  0 1.000000000
## GO:0051177  BP    10  0 1.000000000
## GO:0045144  BP    10  0 1.000000000
## GO:0003149  BP    10  0 1.000000000
## GO:0048382  BP    10  0 1.000000000
## GO:0072173  BP    10  0 1.000000000
## GO:0010587  BP    10  0 1.000000000
## GO:0034454  BP    10  0 1.000000000
## GO:0033314  BP    10  0 1.000000000
## GO:0072674  BP    10  0 1.000000000
## GO:0030049  BP    10  0 1.000000000
## GO:0002318  BP    10  0 1.000000000
## GO:0031034  BP    10  0 1.000000000
## GO:0002420  BP    10  0 1.000000000
## GO:0044793  BP    10  0 1.000000000
## GO:0043922  BP    10  0 1.000000000
## GO:0045759  BP    10  0 1.000000000
## GO:1903011  BP    10  0 1.000000000
## GO:1900038  BP    10  0 1.000000000
## GO:0032375  BP    10  0 1.000000000
## GO:1902018  BP    10  0 1.000000000
## GO:0048671  BP    10  0 1.000000000
## GO:0030853  BP    10  0 1.000000000
## GO:0043301  BP    10  0 1.000000000
## GO:0010745  BP    10  0 1.000000000
## GO:1905522  BP    10  0 1.000000000
## GO:0031642  BP    10  0 1.000000000
## GO:0051001  BP    10  0 1.000000000
## GO:0033689  BP    10  0 1.000000000
## GO:0070862  BP    10  0 1.000000000
## GO:0032372  BP    10  0 1.000000000
## GO:0070244  BP    10  0 1.000000000
## GO:0071635  BP    10  0 1.000000000
## GO:1904468  BP    10  0 1.000000000
## GO:1904667  BP    10  0 1.000000000
## GO:0035811  BP    10  0 1.000000000
## GO:0039532  BP    10  0 1.000000000
## GO:0060052  BP    10  0 1.000000000
## GO:0007158  BP    10  0 1.000000000
## GO:1990535  BP    10  0 1.000000000
## GO:0007270  BP    10  0 1.000000000
## GO:0098700  BP    10  0 1.000000000
## GO:0099628  BP    10  0 1.000000000
## GO:0042421  BP    10  0 1.000000000
## GO:0031468  BP    10  0 1.000000000
## GO:0034427  BP    10  0 1.000000000
## GO:0015780  BP    10  0 1.000000000
## GO:0006591  BP    10  0 1.000000000
## GO:0018026  BP    10  0 1.000000000
## GO:0061626  BP    10  0 1.000000000
## GO:0019336  BP    10  0 1.000000000
## GO:0007603  BP    10  0 1.000000000
## GO:0048757  BP    10  0 1.000000000
## GO:0030311  BP    10  0 1.000000000
## GO:0030309  BP    10  0 1.000000000
## GO:0032927  BP    10  0 1.000000000
## GO:0045762  BP    10  0 1.000000000
## GO:0090336  BP    10  0 1.000000000
## GO:1901724  BP    10  0 1.000000000
## GO:2000774  BP    10  0 1.000000000
## GO:0021940  BP    10  0 1.000000000
## GO:1905820  BP    10  0 1.000000000
## GO:1900103  BP    10  0 1.000000000
## GO:0045741  BP    10  0 1.000000000
## GO:1903749  BP    10  0 1.000000000
## GO:1904851  BP    10  0 1.000000000
## GO:0090091  BP    10  0 1.000000000
## GO:0032000  BP    10  0 1.000000000
## GO:1902093  BP    10  0 1.000000000
## GO:0030854  BP    10  0 1.000000000
## GO:2000347  BP    10  0 1.000000000
## GO:0033625  BP    10  0 1.000000000
## GO:0060907  BP    10  0 1.000000000
## GO:1901526  BP    10  0 1.000000000
## GO:0070257  BP    10  0 1.000000000
## GO:2000391  BP    10  0 1.000000000
## GO:1903800  BP    10  0 1.000000000
## GO:0031274  BP    10  0 1.000000000
## GO:0090129  BP    10  0 1.000000000
## GO:0032224  BP    10  0 1.000000000
## GO:2000302  BP    10  0 1.000000000
## GO:0002645  BP    10  0 1.000000000
## GO:0034145  BP    10  0 1.000000000
## GO:1901838  BP    10  0 1.000000000
## GO:0051971  BP    10  0 1.000000000
## GO:0061365  BP    10  0 1.000000000
## GO:2001280  BP    10  0 1.000000000
## GO:0097119  BP    10  0 1.000000000
## GO:0098970  BP    10  0 1.000000000
## GO:0097105  BP    10  0 1.000000000
## GO:0060215  BP    10  0 1.000000000
## GO:0090009  BP    10  0 1.000000000
## GO:0006560  BP    10  0 1.000000000
## GO:0015824  BP    10  0 1.000000000
## GO:0060513  BP    10  0 1.000000000
## GO:0031848  BP    10  0 1.000000000
## GO:0035871  BP    10  0 1.000000000
## GO:0018242  BP    10  0 1.000000000
## GO:0034975  BP    10  0 1.000000000
## GO:0034214  BP    10  0 1.000000000
## GO:0051204  BP    10  0 1.000000000
## GO:0090435  BP    10  0 1.000000000
## GO:0009209  BP    10  0 1.000000000
## GO:0098953  BP    10  0 1.000000000
## GO:0032875  BP    10  0 1.000000000
## GO:0042996  BP    10  0 1.000000000
## GO:0051133  BP    10  0 1.000000000
## GO:0035542  BP    10  0 1.000000000
## GO:2000551  BP    10  0 1.000000000
## GO:0010692  BP    10  0 1.000000000
## GO:0010958  BP    10  0 1.000000000
## GO:1905245  BP    10  0 1.000000000
## GO:1901096  BP    10  0 1.000000000
## GO:0070857  BP    10  0 1.000000000
## GO:0010612  BP    10  0 1.000000000
## GO:2000303  BP    10  0 1.000000000
## GO:2001135  BP    10  0 1.000000000
## GO:0031620  BP    10  0 1.000000000
## GO:0051917  BP    10  0 1.000000000
## GO:0090270  BP    10  0 1.000000000
## GO:0002634  BP    10  0 1.000000000
## GO:0031943  BP    10  0 1.000000000
## GO:0033131  BP    10  0 1.000000000
## GO:0035947  BP    10  0 1.000000000
## GO:0040009  BP    10  0 1.000000000
## GO:1905097  BP    10  0 1.000000000
## GO:1902036  BP    10  0 1.000000000
## GO:0033182  BP    10  0 1.000000000
## GO:0033084  BP    10  0 1.000000000
## GO:0045607  BP    10  0 1.000000000
## GO:2000980  BP    10  0 1.000000000
## GO:0045357  BP    10  0 1.000000000
## GO:2001179  BP    10  0 1.000000000
## GO:1900040  BP    10  0 1.000000000
## GO:1905456  BP    10  0 1.000000000
## GO:1902415  BP    10  0 1.000000000
## GO:2000109  BP    10  0 1.000000000
## GO:0045631  BP    10  0 1.000000000
## GO:1904526  BP    10  0 1.000000000
## GO:2000574  BP    10  0 1.000000000
## GO:0002858  BP    10  0 1.000000000
## GO:0098908  BP    10  0 1.000000000
## GO:1902563  BP    10  0 1.000000000
## GO:0033029  BP    10  0 1.000000000
## GO:2000389  BP    10  0 1.000000000
## GO:1900193  BP    10  0 1.000000000
## GO:0090186  BP    10  0 1.000000000
## GO:0099509  BP    10  0 1.000000000
## GO:0043497  BP    10  0 1.000000000
## GO:1904779  BP    10  0 1.000000000
## GO:2000644  BP    10  0 1.000000000
## GO:0060297  BP    10  0 1.000000000
## GO:0014062  BP    10  0 1.000000000
## GO:0043416  BP    10  0 1.000000000
## GO:0051823  BP    10  0 1.000000000
## GO:2000807  BP    10  0 1.000000000
## GO:1902947  BP    10  0 1.000000000
## GO:0070170  BP    10  0 1.000000000
## GO:0032908  BP    10  0 1.000000000
## GO:0032354  BP    10  0 1.000000000
## GO:0070673  BP    10  0 1.000000000
## GO:0010288  BP    10  0 1.000000000
## GO:0043201  BP    10  0 1.000000000
## GO:0070391  BP    10  0 1.000000000
## GO:0051775  BP    10  0 1.000000000
## GO:1902074  BP    10  0 1.000000000
## GO:0033299  BP    10  0 1.000000000
## GO:0000012  BP    10  0 1.000000000
## GO:0035093  BP    10  0 1.000000000
## GO:0008216  BP    10  0 1.000000000
## GO:0046512  BP    10  0 1.000000000
## GO:0016127  BP    10  0 1.000000000
## GO:0021843  BP    10  0 1.000000000
## GO:0021826  BP    10  0 1.000000000
## GO:0051124  BP    10  0 1.000000000
## GO:0006388  BP    10  0 1.000000000
## GO:0099542  BP    10  0 1.000000000
## GO:0099541  BP    10  0 1.000000000
## GO:0006283  BP    10  0 1.000000000
## GO:0033572  BP    10  0 1.000000000
## GO:0014883  BP    10  0 1.000000000
## GO:0034370  BP    10  0 1.000000000
## GO:0048207  BP    10  0 1.000000000
## GO:0009265  BP    11  0 1.000000000
## GO:0097113  BP    11  0 1.000000000
## GO:0086016  BP    11  0 1.000000000
## GO:0086027  BP    11  0 1.000000000
## GO:0035739  BP    11  0 1.000000000
## GO:0006977  BP    11  0 1.000000000
## GO:0042023  BP    11  0 1.000000000
## GO:0006266  BP    11  0 1.000000000
## GO:0086103  BP    11  0 1.000000000
## GO:0046040  BP    11  0 1.000000000
## GO:0033327  BP    11  0 1.000000000
## GO:0006054  BP    11  0 1.000000000
## GO:0001865  BP    11  0 1.000000000
## GO:0000394  BP    11  0 1.000000000
## GO:0014010  BP    11  0 1.000000000
## GO:0051764  BP    11  0 1.000000000
## GO:0051014  BP    11  0 1.000000000
## GO:0098870  BP    11  0 1.000000000
## GO:0002118  BP    11  0 1.000000000
## GO:0032342  BP    11  0 1.000000000
## GO:0035881  BP    11  0 1.000000000
## GO:0006527  BP    11  0 1.000000000
## GO:0015809  BP    11  0 1.000000000
## GO:0014824  BP    11  0 1.000000000
## GO:0030953  BP    11  0 1.000000000
## GO:0098722  BP    11  0 1.000000000
## GO:0070831  BP    11  0 1.000000000
## GO:0060346  BP    11  0 1.000000000
## GO:0006171  BP    11  0 1.000000000
## GO:0036444  BP    11  0 1.000000000
## GO:1901660  BP    11  0 1.000000000
## GO:0061309  BP    11  0 1.000000000
## GO:0003263  BP    11  0 1.000000000
## GO:0072584  BP    11  0 1.000000000
## GO:0043482  BP    11  0 1.000000000
## GO:0036006  BP    11  0 1.000000000
## GO:0071732  BP    11  0 1.000000000
## GO:0071415  BP    11  0 1.000000000
## GO:0070601  BP    11  0 1.000000000
## GO:0035627  BP    11  0 1.000000000
## GO:0021684  BP    11  0 1.000000000
## GO:0021707  BP    11  0 1.000000000
## GO:0021892  BP    11  0 1.000000000
## GO:0030206  BP    11  0 1.000000000
## GO:0031055  BP    11  0 1.000000000
## GO:0038063  BP    11  0 1.000000000
## GO:0035726  BP    11  0 1.000000000
## GO:0001867  BP    11  0 1.000000000
## GO:0097278  BP    11  0 1.000000000
## GO:0097709  BP    11  0 1.000000000
## GO:0007028  BP    11  0 1.000000000
## GO:0002468  BP    11  0 1.000000000
## GO:0098935  BP    11  0 1.000000000
## GO:0046385  BP    11  0 1.000000000
## GO:0046386  BP    11  0 1.000000000
## GO:0032490  BP    11  0 1.000000000
## GO:0048263  BP    11  0 1.000000000
## GO:0048262  BP    11  0 1.000000000
## GO:0060600  BP    11  0 1.000000000
## GO:0016102  BP    11  0 1.000000000
## GO:0000727  BP    11  0 1.000000000
## GO:0060900  BP    11  0 1.000000000
## GO:0048617  BP    11  0 1.000000000
## GO:0048241  BP    11  0 1.000000000
## GO:0070278  BP    11  0 1.000000000
## GO:1903867  BP    11  0 1.000000000
## GO:0033539  BP    11  0 1.000000000
## GO:0009812  BP    11  0 1.000000000
## GO:0006002  BP    11  0 1.000000000
## GO:0001574  BP    11  0 1.000000000
## GO:0036093  BP    11  0 1.000000000
## GO:0072102  BP    11  0 1.000000000
## GO:1901072  BP    11  0 1.000000000
## GO:0006072  BP    11  0 1.000000000
## GO:0008626  BP    11  0 1.000000000
## GO:0035733  BP    11  0 1.000000000
## GO:0031507  BP    11  0 1.000000000
## GO:0033080  BP    11  0 1.000000000
## GO:0006586  BP    11  0 1.000000000
## GO:1904862  BP    11  0 1.000000000
## GO:0072642  BP    11  0 1.000000000
## GO:0032610  BP    11  0 1.000000000
## GO:0042090  BP    11  0 1.000000000
## GO:0048312  BP    11  0 1.000000000
## GO:1901678  BP    11  0 1.000000000
## GO:0033210  BP    11  0 1.000000000
## GO:0060174  BP    11  0 1.000000000
## GO:0097421  BP    11  0 1.000000000
## GO:0051657  BP    11  0 1.000000000
## GO:0099558  BP    11  0 1.000000000
## GO:0060056  BP    11  0 1.000000000
## GO:0090148  BP    11  0 1.000000000
## GO:0001765  BP    11  0 1.000000000
## GO:0072172  BP    11  0 1.000000000
## GO:0072075  BP    11  0 1.000000000
## GO:0043653  BP    11  0 1.000000000
## GO:0014889  BP    11  0 1.000000000
## GO:0002423  BP    11  0 1.000000000
## GO:2000320  BP    11  0 1.000000000
## GO:0046007  BP    11  0 1.000000000
## GO:0090281  BP    11  0 1.000000000
## GO:1902260  BP    11  0 1.000000000
## GO:0045602  BP    11  0 1.000000000
## GO:0090394  BP    11  0 1.000000000
## GO:0010459  BP    11  0 1.000000000
## GO:0034115  BP    11  0 1.000000000
## GO:1902166  BP    11  0 1.000000000
## GO:0150079  BP    11  0 1.000000000
## GO:1903799  BP    11  0 1.000000000
## GO:0032463  BP    11  0 1.000000000
## GO:0051967  BP    11  0 1.000000000
## GO:0090209  BP    11  0 1.000000000
## GO:0072178  BP    11  0 1.000000000
## GO:0038180  BP    11  0 1.000000000
## GO:0019227  BP    11  0 1.000000000
## GO:0098887  BP    11  0 1.000000000
## GO:0070943  BP    11  0 1.000000000
## GO:0009125  BP    11  0 1.000000000
## GO:0021554  BP    11  0 1.000000000
## GO:0071600  BP    11  0 1.000000000
## GO:0006107  BP    11  0 1.000000000
## GO:0018206  BP    11  0 1.000000000
## GO:0019511  BP    11  0 1.000000000
## GO:0048935  BP    11  0 1.000000000
## GO:0048934  BP    11  0 1.000000000
## GO:0006658  BP    11  0 1.000000000
## GO:0033700  BP    11  0 1.000000000
## GO:0035845  BP    11  0 1.000000000
## GO:2000344  BP    11  0 1.000000000
## GO:0002579  BP    11  0 1.000000000
## GO:2000786  BP    11  0 1.000000000
## GO:1903431  BP    11  0 1.000000000
## GO:0071864  BP    11  0 1.000000000
## GO:1901857  BP    11  0 1.000000000
## GO:2000343  BP    11  0 1.000000000
## GO:0033603  BP    11  0 1.000000000
## GO:1903977  BP    11  0 1.000000000
## GO:0051574  BP    11  0 1.000000000
## GO:0043568  BP    11  0 1.000000000
## GO:1902741  BP    11  0 1.000000000
## GO:0045416  BP    11  0 1.000000000
## GO:1902231  BP    11  0 1.000000000
## GO:0031442  BP    11  0 1.000000000
## GO:0010744  BP    11  0 1.000000000
## GO:0051561  BP    11  0 1.000000000
## GO:0051901  BP    11  0 1.000000000
## GO:1901030  BP    11  0 1.000000000
## GO:0032464  BP    11  0 1.000000000
## GO:0010739  BP    11  0 1.000000000
## GO:0090037  BP    11  0 1.000000000
## GO:0010870  BP    11  0 1.000000000
## GO:0045876  BP    11  0 1.000000000
## GO:0045945  BP    11  0 1.000000000
## GO:1990440  BP    11  0 1.000000000
## GO:0048563  BP    11  0 1.000000000
## GO:0031077  BP    11  0 1.000000000
## GO:0097104  BP    11  0 1.000000000
## GO:0098789  BP    11  0 1.000000000
## GO:0097354  BP    11  0 1.000000000
## GO:0070213  BP    11  0 1.000000000
## GO:0007039  BP    11  0 1.000000000
## GO:0097499  BP    11  0 1.000000000
## GO:0018342  BP    11  0 1.000000000
## GO:0018298  BP    11  0 1.000000000
## GO:0021860  BP    11  0 1.000000000
## GO:0009208  BP    11  0 1.000000000
## GO:2000561  BP    11  0 1.000000000
## GO:0002664  BP    11  0 1.000000000
## GO:2000822  BP    11  0 1.000000000
## GO:0060693  BP    11  0 1.000000000
## GO:1902514  BP    11  0 1.000000000
## GO:1901894  BP    11  0 1.000000000
## GO:0070587  BP    11  0 1.000000000
## GO:0010872  BP    11  0 1.000000000
## GO:0002676  BP    11  0 1.000000000
## GO:0003356  BP    11  0 1.000000000
## GO:0150065  BP    11  0 1.000000000
## GO:1903998  BP    11  0 1.000000000
## GO:0060768  BP    11  0 1.000000000
## GO:0070203  BP    11  0 1.000000000
## GO:1903365  BP    11  0 1.000000000
## GO:0045924  BP    11  0 1.000000000
## GO:0014052  BP    11  0 1.000000000
## GO:2000322  BP    11  0 1.000000000
## GO:2000849  BP    11  0 1.000000000
## GO:1903299  BP    11  0 1.000000000
## GO:0035330  BP    11  0 1.000000000
## GO:0061085  BP    11  0 1.000000000
## GO:0002923  BP    11  0 1.000000000
## GO:1902739  BP    11  0 1.000000000
## GO:0045075  BP    11  0 1.000000000
## GO:0048021  BP    11  0 1.000000000
## GO:1905038  BP    11  0 1.000000000
## GO:0002855  BP    11  0 1.000000000
## GO:0072182  BP    11  0 1.000000000
## GO:1902513  BP    11  0 1.000000000
## GO:2001204  BP    11  0 1.000000000
## GO:0060405  BP    11  0 1.000000000
## GO:0046532  BP    11  0 1.000000000
## GO:0048548  BP    11  0 1.000000000
## GO:0031392  BP    11  0 1.000000000
## GO:1903332  BP    11  0 1.000000000
## GO:0031272  BP    11  0 1.000000000
## GO:0003266  BP    11  0 1.000000000
## GO:0045091  BP    11  0 1.000000000
## GO:0090153  BP    11  0 1.000000000
## GO:1901339  BP    11  0 1.000000000
## GO:0042762  BP    11  0 1.000000000
## GO:0031630  BP    11  0 1.000000000
## GO:0010807  BP    11  0 1.000000000
## GO:0034135  BP    11  0 1.000000000
## GO:0043619  BP    11  0 1.000000000
## GO:0006450  BP    11  0 1.000000000
## GO:1901163  BP    11  0 1.000000000
## GO:0090043  BP    11  0 1.000000000
## GO:1905459  BP    11  0 1.000000000
## GO:0044557  BP    11  0 1.000000000
## GO:0002679  BP    11  0 1.000000000
## GO:0034776  BP    11  0 1.000000000
## GO:0017085  BP    11  0 1.000000000
## GO:0036005  BP    11  0 1.000000000
## GO:0010042  BP    11  0 1.000000000
## GO:0046689  BP    11  0 1.000000000
## GO:0051385  BP    11  0 1.000000000
## GO:0006991  BP    11  0 1.000000000
## GO:0014874  BP    11  0 1.000000000
## GO:0061299  BP    11  0 1.000000000
## GO:0002138  BP    11  0 1.000000000
## GO:0060013  BP    11  0 1.000000000
## GO:0060872  BP    11  0 1.000000000
## GO:0048630  BP    11  0 1.000000000
## GO:0043589  BP    11  0 1.000000000
## GO:0009301  BP    11  0 1.000000000
## GO:0046520  BP    11  0 1.000000000
## GO:0061669  BP    11  0 1.000000000
## GO:0070142  BP    11  0 1.000000000
## GO:0016188  BP    11  0 1.000000000
## GO:0035999  BP    11  0 1.000000000
## GO:0070493  BP    11  0 1.000000000
## GO:0006384  BP    11  0 1.000000000
## GO:0032905  BP    11  0 1.000000000
## GO:0021559  BP    11  0 1.000000000
## GO:0006568  BP    11  0 1.000000000
## GO:0072641  BP    11  0 1.000000000
## GO:0006570  BP    11  0 1.000000000
## GO:0000050  BP    11  0 1.000000000
## GO:1905288  BP    11  0 1.000000000
## GO:0097084  BP    11  0 1.000000000
## GO:0048845  BP    11  0 1.000000000
## GO:0055015  BP    11  0 1.000000000
## GO:0042368  BP    11  0 1.000000000
## GO:0009111  BP    11  0 1.000000000
## GO:0098792  BP    11  0 1.000000000
## GO:0019471  BP    12  0 1.000000000
## GO:0032488  BP    12  0 1.000000000
## GO:0071712  BP    12  0 1.000000000
## GO:0035588  BP    12  0 1.000000000
## GO:0090161  BP    12  0 1.000000000
## GO:0036498  BP    12  0 1.000000000
## GO:0072683  BP    12  0 1.000000000
## GO:0072540  BP    12  0 1.000000000
## GO:0006047  BP    12  0 1.000000000
## GO:0003306  BP    12  0 1.000000000
## GO:0006086  BP    12  0 1.000000000
## GO:0033275  BP    12  0 1.000000000
## GO:0001973  BP    12  0 1.000000000
## GO:0007195  BP    12  0 1.000000000
## GO:0019646  BP    12  0 1.000000000
## GO:0032341  BP    12  0 1.000000000
## GO:0060033  BP    12  0 1.000000000
## GO:0038166  BP    12  0 1.000000000
## GO:0009068  BP    12  0 1.000000000
## GO:0019896  BP    12  0 1.000000000
## GO:0035630  BP    12  0 1.000000000
## GO:0060433  BP    12  0 1.000000000
## GO:0006182  BP    12  0 1.000000000
## GO:0061577  BP    12  0 1.000000000
## GO:0003207  BP    12  0 1.000000000
## GO:0032048  BP    12  0 1.000000000
## GO:0009437  BP    12  0 1.000000000
## GO:0060573  BP    12  0 1.000000000
## GO:0071838  BP    12  0 1.000000000
## GO:0070586  BP    12  0 1.000000000
## GO:0045217  BP    12  0 1.000000000
## GO:0071318  BP    12  0 1.000000000
## GO:0071468  BP    12  0 1.000000000
## GO:0036295  BP    12  0 1.000000000
## GO:0035457  BP    12  0 1.000000000
## GO:0071281  BP    12  0 1.000000000
## GO:0071294  BP    12  0 1.000000000
## GO:0070508  BP    12  0 1.000000000
## GO:0048096  BP    12  0 1.000000000
## GO:0072044  BP    12  0 1.000000000
## GO:0006957  BP    12  0 1.000000000
## GO:0009264  BP    12  0 1.000000000
## GO:0043649  BP    12  0 1.000000000
## GO:0090494  BP    12  0 1.000000000
## GO:0060502  BP    12  0 1.000000000
## GO:0060767  BP    12  0 1.000000000
## GO:0090557  BP    12  0 1.000000000
## GO:0021561  BP    12  0 1.000000000
## GO:0021610  BP    12  0 1.000000000
## GO:0070341  BP    12  0 1.000000000
## GO:0007440  BP    12  0 1.000000000
## GO:0001731  BP    12  0 1.000000000
## GO:0030388  BP    12  0 1.000000000
## GO:0035933  BP    12  0 1.000000000
## GO:0097688  BP    12  0 1.000000000
## GO:0006750  BP    12  0 1.000000000
## GO:0006662  BP    12  0 1.000000000
## GO:0015816  BP    12  0 1.000000000
## GO:0042541  BP    12  0 1.000000000
## GO:0034375  BP    12  0 1.000000000
## GO:0033523  BP    12  0 1.000000000
## GO:0070933  BP    12  0 1.000000000
## GO:0034969  BP    12  0 1.000000000
## GO:0071044  BP    12  0 1.000000000
## GO:0006020  BP    12  0 1.000000000
## GO:0072608  BP    12  0 1.000000000
## GO:0072615  BP    12  0 1.000000000
## GO:0070970  BP    12  0 1.000000000
## GO:0006880  BP    12  0 1.000000000
## GO:1902400  BP    12  0 1.000000000
## GO:0021670  BP    12  0 1.000000000
## GO:0070986  BP    12  0 1.000000000
## GO:0032799  BP    12  0 1.000000000
## GO:0060430  BP    12  0 1.000000000
## GO:0032275  BP    12  0 1.000000000
## GO:0098787  BP    12  0 1.000000000
## GO:0034088  BP    12  0 1.000000000
## GO:0060179  BP    12  0 1.000000000
## GO:0007135  BP    12  0 1.000000000
## GO:0061983  BP    12  0 1.000000000
## GO:0007128  BP    12  0 1.000000000
## GO:0045141  BP    12  0 1.000000000
## GO:0086013  BP    12  0 1.000000000
## GO:0003337  BP    12  0 1.000000000
## GO:0009086  BP    12  0 1.000000000
## GO:0072393  BP    12  0 1.000000000
## GO:0060073  BP    12  0 1.000000000
## GO:0006705  BP    12  0 1.000000000
## GO:0006123  BP    12  0 1.000000000
## GO:0006122  BP    12  0 1.000000000
## GO:0007100  BP    12  0 1.000000000
## GO:0003183  BP    12  0 1.000000000
## GO:0097049  BP    12  0 1.000000000
## GO:0060586  BP    12  0 1.000000000
## GO:0031033  BP    12  0 1.000000000
## GO:0001787  BP    12  0 1.000000000
## GO:2000317  BP    12  0 1.000000000
## GO:0061052  BP    12  0 1.000000000
## GO:0010826  BP    12  0 1.000000000
## GO:1900118  BP    12  0 1.000000000
## GO:0045717  BP    12  0 1.000000000
## GO:0032353  BP    12  0 1.000000000
## GO:0002921  BP    12  0 1.000000000
## GO:1900272  BP    12  0 1.000000000
## GO:2000402  BP    12  0 1.000000000
## GO:0033004  BP    12  0 1.000000000
## GO:0014745  BP    12  0 1.000000000
## GO:0046929  BP    12  0 1.000000000
## GO:2000009  BP    12  0 1.000000000
## GO:0051280  BP    12  0 1.000000000
## GO:0034392  BP    12  0 1.000000000
## GO:0097201  BP    12  0 1.000000000
## GO:0072176  BP    12  0 1.000000000
## GO:0001840  BP    12  0 1.000000000
## GO:0045161  BP    12  0 1.000000000
## GO:0099639  BP    12  0 1.000000000
## GO:0001781  BP    12  0 1.000000000
## GO:0043312  BP    12  0 1.000000000
## GO:0048570  BP    12  0 1.000000000
## GO:0070431  BP    12  0 1.000000000
## GO:0070423  BP    12  0 1.000000000
## GO:0070444  BP    12  0 1.000000000
## GO:0006490  BP    12  0 1.000000000
## GO:0006098  BP    12  0 1.000000000
## GO:0030432  BP    12  0 1.000000000
## GO:0006654  BP    12  0 1.000000000
## GO:0055091  BP    12  0 1.000000000
## GO:0043476  BP    12  0 1.000000000
## GO:0001778  BP    12  0 1.000000000
## GO:2000105  BP    12  0 1.000000000
## GO:0030836  BP    12  0 1.000000000
## GO:1903961  BP    12  0 1.000000000
## GO:0090343  BP    12  0 1.000000000
## GO:0033240  BP    12  0 1.000000000
## GO:0046607  BP    12  0 1.000000000
## GO:0045080  BP    12  0 1.000000000
## GO:1900426  BP    12  0 1.000000000
## GO:2000253  BP    12  0 1.000000000
## GO:0032725  BP    12  0 1.000000000
## GO:0060124  BP    12  0 1.000000000
## GO:0051798  BP    12  0 1.000000000
## GO:0051024  BP    12  0 1.000000000
## GO:0045078  BP    12  0 1.000000000
## GO:0045086  BP    12  0 1.000000000
## GO:0032754  BP    12  0 1.000000000
## GO:0010838  BP    12  0 1.000000000
## GO:0071639  BP    12  0 1.000000000
## GO:0032825  BP    12  0 1.000000000
## GO:0060213  BP    12  0 1.000000000
## GO:0071073  BP    12  0 1.000000000
## GO:0032308  BP    12  0 1.000000000
## GO:1905668  BP    12  0 1.000000000
## GO:1902459  BP    12  0 1.000000000
## GO:1900244  BP    12  0 1.000000000
## GO:1902805  BP    12  0 1.000000000
## GO:0002329  BP    12  0 1.000000000
## GO:0051324  BP    12  0 1.000000000
## GO:0060525  BP    12  0 1.000000000
## GO:0006517  BP    12  0 1.000000000
## GO:0016926  BP    12  0 1.000000000
## GO:0016558  BP    12  0 1.000000000
## GO:1902946  BP    12  0 1.000000000
## GO:0097428  BP    12  0 1.000000000
## GO:0021859  BP    12  0 1.000000000
## GO:0009219  BP    12  0 1.000000000
## GO:0007168  BP    12  0 1.000000000
## GO:0060368  BP    12  0 1.000000000
## GO:1905214  BP    12  0 1.000000000
## GO:0045625  BP    12  0 1.000000000
## GO:1903789  BP    12  0 1.000000000
## GO:1902510  BP    12  0 1.000000000
## GO:0051988  BP    12  0 1.000000000
## GO:1904251  BP    12  0 1.000000000
## GO:0002016  BP    12  0 1.000000000
## GO:0003264  BP    12  0 1.000000000
## GO:0071863  BP    12  0 1.000000000
## GO:0033632  BP    12  0 1.000000000
## GO:0006521  BP    12  0 1.000000000
## GO:0043471  BP    12  0 1.000000000
## GO:0042268  BP    12  0 1.000000000
## GO:0002730  BP    12  0 1.000000000
## GO:0060159  BP    12  0 1.000000000
## GO:0070202  BP    12  0 1.000000000
## GO:0070344  BP    12  0 1.000000000
## GO:0060453  BP    12  0 1.000000000
## GO:0072124  BP    12  0 1.000000000
## GO:0070092  BP    12  0 1.000000000
## GO:2000615  BP    12  0 1.000000000
## GO:1900112  BP    12  0 1.000000000
## GO:1901298  BP    12  0 1.000000000
## GO:0033083  BP    12  0 1.000000000
## GO:0010749  BP    12  0 1.000000000
## GO:0070445  BP    12  0 1.000000000
## GO:2000232  BP    12  0 1.000000000
## GO:1904152  BP    12  0 1.000000000
## GO:1900376  BP    12  0 1.000000000
## GO:0010889  BP    12  0 1.000000000
## GO:0014842  BP    12  0 1.000000000
## GO:2000035  BP    12  0 1.000000000
## GO:0000083  BP    12  0 1.000000000
## GO:0010998  BP    12  0 1.000000000
## GO:2000674  BP    12  0 1.000000000
## GO:0070472  BP    12  0 1.000000000
## GO:0003091  BP    12  0 1.000000000
## GO:0032026  BP    12  0 1.000000000
## GO:0046548  BP    12  0 1.000000000
## GO:0043691  BP    12  0 1.000000000
## GO:1902287  BP    12  0 1.000000000
## GO:0042989  BP    12  0 1.000000000
## GO:0072431  BP    12  0 1.000000000
## GO:0039692  BP    12  0 1.000000000
## GO:0000491  BP    12  0 1.000000000
## GO:0031126  BP    12  0 1.000000000
## GO:0035376  BP    12  0 1.000000000
## GO:0001682  BP    12  0 1.000000000
## GO:0060439  BP    12  0 1.000000000
## GO:0061450  BP    12  0 1.000000000
## GO:0046415  BP    12  0 1.000000000
## GO:0019627  BP    12  0 1.000000000
## GO:0014832  BP    12  0 1.000000000
## GO:0060068  BP    12  0 1.000000000
## GO:0021521  BP    12  0 1.000000000
## GO:0039702  BP    12  0 1.000000000
## GO:0086067  BP    13  0 1.000000000
## GO:0018410  BP    13  0 1.000000000
## GO:0006268  BP    13  0 1.000000000
## GO:0006983  BP    13  0 1.000000000
## GO:0038094  BP    13  0 1.000000000
## GO:0007213  BP    13  0 1.000000000
## GO:0006895  BP    13  0 1.000000000
## GO:0002756  BP    13  0 1.000000000
## GO:0006491  BP    13  0 1.000000000
## GO:0051132  BP    13  0 1.000000000
## GO:0016246  BP    13  0 1.000000000
## GO:0032486  BP    13  0 1.000000000
## GO:0007183  BP    13  0 1.000000000
## GO:0002517  BP    13  0 1.000000000
## GO:0070914  BP    13  0 1.000000000
## GO:0097202  BP    13  0 1.000000000
## GO:0052646  BP    13  0 1.000000000
## GO:0042983  BP    13  0 1.000000000
## GO:0031145  BP    13  0 1.000000000
## GO:0008595  BP    13  0 1.000000000
## GO:0051315  BP    13  0 1.000000000
## GO:0031223  BP    13  0 1.000000000
## GO:0015802  BP    13  0 1.000000000
## GO:0032060  BP    13  0 1.000000000
## GO:0060670  BP    13  0 1.000000000
## GO:0060911  BP    13  0 1.000000000
## GO:0090493  BP    13  0 1.000000000
## GO:0021924  BP    13  0 1.000000000
## GO:0042402  BP    13  0 1.000000000
## GO:0052695  BP    13  0 1.000000000
## GO:0071397  BP    13  0 1.000000000
## GO:0097011  BP    13  0 1.000000000
## GO:0072711  BP    13  0 1.000000000
## GO:0071285  BP    13  0 1.000000000
## GO:0071380  BP    13  0 1.000000000
## GO:1902170  BP    13  0 1.000000000
## GO:0071295  BP    13  0 1.000000000
## GO:0051299  BP    13  0 1.000000000
## GO:0021683  BP    13  0 1.000000000
## GO:0021930  BP    13  0 1.000000000
## GO:0090220  BP    13  0 1.000000000
## GO:0038065  BP    13  0 1.000000000
## GO:0071679  BP    13  0 1.000000000
## GO:0002430  BP    13  0 1.000000000
## GO:0021604  BP    13  0 1.000000000
## GO:0042994  BP    13  0 1.000000000
## GO:0002371  BP    13  0 1.000000000
## GO:0045136  BP    13  0 1.000000000
## GO:0009950  BP    13  0 1.000000000
## GO:0060272  BP    13  0 1.000000000
## GO:0003157  BP    13  0 1.000000000
## GO:0015682  BP    13  0 1.000000000
## GO:0001660  BP    13  0 1.000000000
## GO:0021877  BP    13  0 1.000000000
## GO:0042492  BP    13  0 1.000000000
## GO:0072311  BP    13  0 1.000000000
## GO:0072110  BP    13  0 1.000000000
## GO:0072112  BP    13  0 1.000000000
## GO:0070091  BP    13  0 1.000000000
## GO:0006544  BP    13  0 1.000000000
## GO:0061615  BP    13  0 1.000000000
## GO:1901070  BP    13  0 1.000000000
## GO:0048012  BP    13  0 1.000000000
## GO:0043970  BP    13  0 1.000000000
## GO:0033169  BP    13  0 1.000000000
## GO:0033079  BP    13  0 1.000000000
## GO:0090594  BP    13  0 1.000000000
## GO:0007320  BP    13  0 1.000000000
## GO:0030299  BP    13  0 1.000000000
## GO:0008298  BP    13  0 1.000000000
## GO:0035721  BP    13  0 1.000000000
## GO:0060601  BP    13  0 1.000000000
## GO:0019370  BP    13  0 1.000000000
## GO:0061140  BP    13  0 1.000000000
## GO:0001553  BP    13  0 1.000000000
## GO:0034086  BP    13  0 1.000000000
## GO:0002551  BP    13  0 1.000000000
## GO:0098764  BP    13  0 1.000000000
## GO:0098762  BP    13  0 1.000000000
## GO:0007501  BP    13  0 1.000000000
## GO:0008212  BP    13  0 1.000000000
## GO:0034982  BP    13  0 1.000000000
## GO:0003174  BP    13  0 1.000000000
## GO:0019054  BP    13  0 1.000000000
## GO:0042693  BP    13  0 1.000000000
## GO:1904293  BP    13  0 1.000000000
## GO:0043508  BP    13  0 1.000000000
## GO:0032926  BP    13  0 1.000000000
## GO:0002674  BP    13  0 1.000000000
## GO:0106072  BP    13  0 1.000000000
## GO:0046642  BP    13  0 1.000000000
## GO:0032099  BP    13  0 1.000000000
## GO:1902902  BP    13  0 1.000000000
## GO:0045955  BP    13  0 1.000000000
## GO:0046606  BP    13  0 1.000000000
## GO:0046322  BP    13  0 1.000000000
## GO:0045820  BP    13  0 1.000000000
## GO:0051573  BP    13  0 1.000000000
## GO:0032351  BP    13  0 1.000000000
## GO:0002638  BP    13  0 1.000000000
## GO:0050711  BP    13  0 1.000000000
## GO:0033147  BP    13  0 1.000000000
## GO:2001054  BP    13  0 1.000000000
## GO:0060546  BP    13  0 1.000000000
## GO:2001223  BP    13  0 1.000000000
## GO:0060394  BP    13  0 1.000000000
## GO:0031953  BP    13  0 1.000000000
## GO:1900121  BP    13  0 1.000000000
## GO:0002091  BP    13  0 1.000000000
## GO:2000650  BP    13  0 1.000000000
## GO:1900025  BP    13  0 1.000000000
## GO:0051974  BP    13  0 1.000000000
## GO:0034244  BP    13  0 1.000000000
## GO:0060339  BP    13  0 1.000000000
## GO:0030948  BP    13  0 1.000000000
## GO:0045906  BP    13  0 1.000000000
## GO:1903817  BP    13  0 1.000000000
## GO:0072160  BP    13  0 1.000000000
## GO:0070942  BP    13  0 1.000000000
## GO:0071941  BP    13  0 1.000000000
## GO:0071027  BP    13  0 1.000000000
## GO:0071028  BP    13  0 1.000000000
## GO:0006862  BP    13  0 1.000000000
## GO:0035872  BP    13  0 1.000000000
## GO:0042048  BP    13  0 1.000000000
## GO:0006857  BP    13  0 1.000000000
## GO:0001542  BP    13  0 1.000000000
## GO:0048340  BP    13  0 1.000000000
## GO:0019321  BP    13  0 1.000000000
## GO:0018216  BP    13  0 1.000000000
## GO:0001845  BP    13  0 1.000000000
## GO:0035435  BP    13  0 1.000000000
## GO:0046471  BP    13  0 1.000000000
## GO:0006596  BP    13  0 1.000000000
## GO:0021548  BP    13  0 1.000000000
## GO:0045899  BP    13  0 1.000000000
## GO:0060391  BP    13  0 1.000000000
## GO:1904925  BP    13  0 1.000000000
## GO:0060452  BP    13  0 1.000000000
## GO:1903651  BP    13  0 1.000000000
## GO:2001034  BP    13  0 1.000000000
## GO:0090193  BP    13  0 1.000000000
## GO:0042635  BP    13  0 1.000000000
## GO:0031652  BP    13  0 1.000000000
## GO:1902715  BP    13  0 1.000000000
## GO:2000484  BP    13  0 1.000000000
## GO:0033148  BP    13  0 1.000000000
## GO:0048304  BP    13  0 1.000000000
## GO:0051549  BP    13  0 1.000000000
## GO:1904181  BP    13  0 1.000000000
## GO:0072216  BP    13  0 1.000000000
## GO:0010918  BP    13  0 1.000000000
## GO:1902857  BP    13  0 1.000000000
## GO:0042482  BP    13  0 1.000000000
## GO:1903862  BP    13  0 1.000000000
## GO:0090073  BP    13  0 1.000000000
## GO:1904816  BP    13  0 1.000000000
## GO:1902916  BP    13  0 1.000000000
## GO:2000833  BP    13  0 1.000000000
## GO:0060340  BP    13  0 1.000000000
## GO:0035810  BP    13  0 1.000000000
## GO:0044090  BP    13  0 1.000000000
## GO:0097090  BP    13  0 1.000000000
## GO:0034309  BP    13  0 1.000000000
## GO:0002328  BP    13  0 1.000000000
## GO:1903441  BP    13  0 1.000000000
## GO:0034497  BP    13  0 1.000000000
## GO:0031269  BP    13  0 1.000000000
## GO:0009148  BP    13  0 1.000000000
## GO:1900225  BP    13  0 1.000000000
## GO:1903025  BP    13  0 1.000000000
## GO:0045628  BP    13  0 1.000000000
## GO:1904177  BP    13  0 1.000000000
## GO:0042984  BP    13  0 1.000000000
## GO:0010359  BP    13  0 1.000000000
## GO:1903587  BP    13  0 1.000000000
## GO:0021936  BP    13  0 1.000000000
## GO:0010885  BP    13  0 1.000000000
## GO:1902950  BP    13  0 1.000000000
## GO:0034350  BP    13  0 1.000000000
## GO:0003093  BP    13  0 1.000000000
## GO:0032276  BP    13  0 1.000000000
## GO:0090239  BP    13  0 1.000000000
## GO:0045072  BP    13  0 1.000000000
## GO:1904478  BP    13  0 1.000000000
## GO:0050746  BP    13  0 1.000000000
## GO:0010988  BP    13  0 1.000000000
## GO:0035751  BP    13  0 1.000000000
## GO:2000018  BP    13  0 1.000000000
## GO:1905048  BP    13  0 1.000000000
## GO:0090308  BP    13  0 1.000000000
## GO:0099159  BP    13  0 1.000000000
## GO:0070255  BP    13  0 1.000000000
## GO:1904396  BP    13  0 1.000000000
## GO:0033262  BP    13  0 1.000000000
## GO:0060281  BP    13  0 1.000000000
## GO:1905879  BP    13  0 1.000000000
## GO:0010755  BP    13  0 1.000000000
## GO:0090085  BP    13  0 1.000000000
## GO:1905666  BP    13  0 1.000000000
## GO:0002087  BP    13  0 1.000000000
## GO:0048742  BP    13  0 1.000000000
## GO:0061418  BP    13  0 1.000000000
## GO:0043558  BP    13  0 1.000000000
## GO:2001279  BP    13  0 1.000000000
## GO:0055119  BP    13  0 1.000000000
## GO:0061318  BP    13  0 1.000000000
## GO:0036296  BP    13  0 1.000000000
## GO:0032494  BP    13  0 1.000000000
## GO:0033280  BP    13  0 1.000000000
## GO:0000054  BP    13  0 1.000000000
## GO:0033750  BP    13  0 1.000000000
## GO:0048733  BP    13  0 1.000000000
## GO:1902285  BP    13  0 1.000000000
## GO:0097577  BP    13  0 1.000000000
## GO:0009071  BP    13  0 1.000000000
## GO:0007614  BP    13  0 1.000000000
## GO:0006465  BP    13  0 1.000000000
## GO:0072425  BP    13  0 1.000000000
## GO:0014841  BP    13  0 1.000000000
## GO:0030240  BP    13  0 1.000000000
## GO:0036376  BP    13  0 1.000000000
## GO:0032525  BP    13  0 1.000000000
## GO:0006670  BP    13  0 1.000000000
## GO:0021520  BP    13  0 1.000000000
## GO:0070525  BP    13  0 1.000000000
## GO:0043247  BP    13  0 1.000000000
## GO:0021794  BP    13  0 1.000000000
## GO:0014820  BP    13  0 1.000000000
## GO:0007351  BP    13  0 1.000000000
## GO:0072512  BP    13  0 1.000000000
## GO:0090042  BP    13  0 1.000000000
## GO:0014848  BP    13  0 1.000000000
## GO:0070471  BP    13  0 1.000000000
## GO:0042761  BP    13  0 1.000000000
## GO:0000076  BP    14  0 1.000000000
## GO:0097154  BP    14  0 1.000000000
## GO:0048313  BP    14  0 1.000000000
## GO:0098712  BP    14  0 1.000000000
## GO:0000279  BP    14  0 1.000000000
## GO:0044546  BP    14  0 1.000000000
## GO:0048541  BP    14  0 1.000000000
## GO:0090503  BP    14  0 1.000000000
## GO:0046500  BP    14  0 1.000000000
## GO:0035745  BP    14  0 1.000000000
## GO:0042976  BP    14  0 1.000000000
## GO:0006924  BP    14  0 1.000000000
## GO:0021984  BP    14  0 1.000000000
## GO:0046185  BP    14  0 1.000000000
## GO:0009310  BP    14  0 1.000000000
## GO:0006577  BP    14  0 1.000000000
## GO:0019886  BP    14  0 1.000000000
## GO:0048755  BP    14  0 1.000000000
## GO:0086069  BP    14  0 1.000000000
## GO:0046058  BP    14  0 1.000000000
## GO:0061308  BP    14  0 1.000000000
## GO:0090110  BP    14  0 1.000000000
## GO:0010644  BP    14  0 1.000000000
## GO:0021534  BP    14  0 1.000000000
## GO:0030007  BP    14  0 1.000000000
## GO:0071371  BP    14  0 1.000000000
## GO:0010457  BP    14  0 1.000000000
## GO:0021702  BP    14  0 1.000000000
## GO:0034435  BP    14  0 1.000000000
## GO:0015936  BP    14  0 1.000000000
## GO:0009263  BP    14  0 1.000000000
## GO:0043650  BP    14  0 1.000000000
## GO:0072505  BP    14  0 1.000000000
## GO:0048484  BP    14  0 1.000000000
## GO:0090136  BP    14  0 1.000000000
## GO:0045198  BP    14  0 1.000000000
## GO:0090151  BP    14  0 1.000000000
## GO:0030950  BP    14  0 1.000000000
## GO:0042362  BP    14  0 1.000000000
## GO:0030497  BP    14  0 1.000000000
## GO:0060180  BP    14  0 1.000000000
## GO:0072537  BP    14  0 1.000000000
## GO:0007342  BP    14  0 1.000000000
## GO:0014831  BP    14  0 1.000000000
## GO:0042921  BP    14  0 1.000000000
## GO:0006007  BP    14  0 1.000000000
## GO:0019585  BP    14  0 1.000000000
## GO:0046479  BP    14  0 1.000000000
## GO:0032604  BP    14  0 1.000000000
## GO:0070365  BP    14  0 1.000000000
## GO:0021932  BP    14  0 1.000000000
## GO:0050667  BP    14  0 1.000000000
## GO:0030213  BP    14  0 1.000000000
## GO:0010421  BP    14  0 1.000000000
## GO:0031573  BP    14  0 1.000000000
## GO:0003334  BP    14  0 1.000000000
## GO:0070486  BP    14  0 1.000000000
## GO:0031987  BP    14  0 1.000000000
## GO:0080009  BP    14  0 1.000000000
## GO:0097531  BP    14  0 1.000000000
## GO:0072224  BP    14  0 1.000000000
## GO:1904948  BP    14  0 1.000000000
## GO:0006264  BP    14  0 1.000000000
## GO:0000963  BP    14  0 1.000000000
## GO:1902969  BP    14  0 1.000000000
## GO:0071850  BP    14  0 1.000000000
## GO:0048537  BP    14  0 1.000000000
## GO:0051451  BP    14  0 1.000000000
## GO:0007194  BP    14  0 1.000000000
## GO:1902931  BP    14  0 1.000000000
## GO:0051782  BP    14  0 1.000000000
## GO:1903430  BP    14  0 1.000000000
## GO:0045792  BP    14  0 1.000000000
## GO:0051198  BP    14  0 1.000000000
## GO:0032966  BP    14  0 1.000000000
## GO:0010713  BP    14  0 1.000000000
## GO:0007175  BP    14  0 1.000000000
## GO:0045647  BP    14  0 1.000000000
## GO:0010561  BP    14  0 1.000000000
## GO:0010839  BP    14  0 1.000000000
## GO:0043031  BP    14  0 1.000000000
## GO:0032769  BP    14  0 1.000000000
## GO:0030812  BP    14  0 1.000000000
## GO:0090331  BP    14  0 1.000000000
## GO:0010642  BP    14  0 1.000000000
## GO:1904590  BP    14  0 1.000000000
## GO:0042308  BP    14  0 1.000000000
## GO:0032096  BP    14  0 1.000000000
## GO:1902306  BP    14  0 1.000000000
## GO:0010804  BP    14  0 1.000000000
## GO:0002829  BP    14  0 1.000000000
## GO:0042532  BP    14  0 1.000000000
## GO:0043116  BP    14  0 1.000000000
## GO:0045060  BP    14  0 1.000000000
## GO:0019184  BP    14  0 1.000000000
## GO:0006999  BP    14  0 1.000000000
## GO:0009226  BP    14  0 1.000000000
## GO:0019755  BP    14  0 1.000000000
## GO:0048308  BP    14  0 1.000000000
## GO:0018119  BP    14  0 1.000000000
## GO:0035970  BP    14  0 1.000000000
## GO:0055062  BP    14  0 1.000000000
## GO:0046473  BP    14  0 1.000000000
## GO:0090179  BP    14  0 1.000000000
## GO:0035791  BP    14  0 1.000000000
## GO:0043517  BP    14  0 1.000000000
## GO:0010820  BP    14  0 1.000000000
## GO:1904263  BP    14  0 1.000000000
## GO:0048711  BP    14  0 1.000000000
## GO:0048680  BP    14  0 1.000000000
## GO:0035563  BP    14  0 1.000000000
## GO:0031937  BP    14  0 1.000000000
## GO:0045938  BP    14  0 1.000000000
## GO:0048672  BP    14  0 1.000000000
## GO:1905516  BP    14  0 1.000000000
## GO:1905941  BP    14  0 1.000000000
## GO:0034116  BP    14  0 1.000000000
## GO:0002885  BP    14  0 1.000000000
## GO:0060732  BP    14  0 1.000000000
## GO:0032736  BP    14  0 1.000000000
## GO:0045618  BP    14  0 1.000000000
## GO:0045651  BP    14  0 1.000000000
## GO:0090141  BP    14  0 1.000000000
## GO:2000052  BP    14  0 1.000000000
## GO:0033690  BP    14  0 1.000000000
## GO:0071803  BP    14  0 1.000000000
## GO:0070863  BP    14  0 1.000000000
## GO:0045591  BP    14  0 1.000000000
## GO:0035815  BP    14  0 1.000000000
## GO:0051284  BP    14  0 1.000000000
## GO:0051152  BP    14  0 1.000000000
## GO:0031915  BP    14  0 1.000000000
## GO:0030949  BP    14  0 1.000000000
## GO:0031340  BP    14  0 1.000000000
## GO:1901387  BP    14  0 1.000000000
## GO:0006620  BP    14  0 1.000000000
## GO:0097468  BP    14  0 1.000000000
## GO:0060736  BP    14  0 1.000000000
## GO:0043248  BP    14  0 1.000000000
## GO:0072697  BP    14  0 1.000000000
## GO:0018158  BP    14  0 1.000000000
## GO:0070071  BP    14  0 1.000000000
## GO:0042559  BP    14  0 1.000000000
## GO:0009215  BP    14  0 1.000000000
## GO:0046134  BP    14  0 1.000000000
## GO:0046132  BP    14  0 1.000000000
## GO:0071428  BP    14  0 1.000000000
## GO:0060019  BP    14  0 1.000000000
## GO:1903624  BP    14  0 1.000000000
## GO:0046831  BP    14  0 1.000000000
## GO:1900221  BP    14  0 1.000000000
## GO:1904923  BP    14  0 1.000000000
## GO:1900402  BP    14  0 1.000000000
## GO:0010882  BP    14  0 1.000000000
## GO:0032536  BP    14  0 1.000000000
## GO:2000047  BP    14  0 1.000000000
## GO:2000341  BP    14  0 1.000000000
## GO:0045188  BP    14  0 1.000000000
## GO:1901550  BP    14  0 1.000000000
## GO:1903140  BP    14  0 1.000000000
## GO:0032645  BP    14  0 1.000000000
## GO:1901841  BP    14  0 1.000000000
## GO:0033127  BP    14  0 1.000000000
## GO:2001044  BP    14  0 1.000000000
## GO:0090266  BP    14  0 1.000000000
## GO:1903504  BP    14  0 1.000000000
## GO:0060211  BP    14  0 1.000000000
## GO:0035358  BP    14  0 1.000000000
## GO:0099151  BP    14  0 1.000000000
## GO:0032306  BP    14  0 1.000000000
## GO:0060049  BP    14  0 1.000000000
## GO:0060263  BP    14  0 1.000000000
## GO:0047484  BP    14  0 1.000000000
## GO:0090069  BP    14  0 1.000000000
## GO:0014819  BP    14  0 1.000000000
## GO:0048505  BP    14  0 1.000000000
## GO:1901836  BP    14  0 1.000000000
## GO:0010896  BP    14  0 1.000000000
## GO:0061469  BP    14  0 1.000000000
## GO:1905063  BP    14  0 1.000000000
## GO:2001212  BP    14  0 1.000000000
## GO:0098911  BP    14  0 1.000000000
## GO:0010225  BP    14  0 1.000000000
## GO:0097012  BP    14  0 1.000000000
## GO:0072710  BP    14  0 1.000000000
## GO:0010226  BP    14  0 1.000000000
## GO:0097066  BP    14  0 1.000000000
## GO:0042574  BP    14  0 1.000000000
## GO:0032988  BP    14  0 1.000000000
## GO:0042454  BP    14  0 1.000000000
## GO:0021903  BP    14  0 1.000000000
## GO:0046459  BP    14  0 1.000000000
## GO:0071340  BP    14  0 1.000000000
## GO:0014866  BP    14  0 1.000000000
## GO:0060831  BP    14  0 1.000000000
## GO:0043144  BP    14  0 1.000000000
## GO:0098719  BP    14  0 1.000000000
## GO:0016446  BP    14  0 1.000000000
## GO:0035092  BP    14  0 1.000000000
## GO:0021527  BP    14  0 1.000000000
## GO:0098814  BP    14  0 1.000000000
## GO:0034433  BP    14  0 1.000000000
## GO:0034434  BP    14  0 1.000000000
## GO:0042271  BP    14  0 1.000000000
## GO:0016081  BP    14  0 1.000000000
## GO:0099116  BP    14  0 1.000000000
## GO:0034397  BP    14  0 1.000000000
## GO:0099550  BP    14  0 1.000000000
## GO:0006415  BP    14  0 1.000000000
## GO:0072506  BP    14  0 1.000000000
## GO:0045351  BP    14  0 1.000000000
## GO:0006063  BP    14  0 1.000000000
## GO:0006901  BP    14  0 1.000000000
## GO:0019081  BP    14  0 1.000000000
## GO:0046033  BP    15  0 1.000000000
## GO:0006978  BP    15  0 1.000000000
## GO:0051645  BP    15  0 1.000000000
## GO:0006896  BP    15  0 1.000000000
## GO:0051938  BP    15  0 1.000000000
## GO:0071025  BP    15  0 1.000000000
## GO:0033151  BP    15  0 1.000000000
## GO:0046348  BP    15  0 1.000000000
## GO:0060055  BP    15  0 1.000000000
## GO:0086014  BP    15  0 1.000000000
## GO:0086066  BP    15  0 1.000000000
## GO:0086026  BP    15  0 1.000000000
## GO:0016553  BP    15  0 1.000000000
## GO:0061430  BP    15  0 1.000000000
## GO:0009083  BP    15  0 1.000000000
## GO:0060442  BP    15  0 1.000000000
## GO:0061307  BP    15  0 1.000000000
## GO:0006878  BP    15  0 1.000000000
## GO:0071243  BP    15  0 1.000000000
## GO:0071280  BP    15  0 1.000000000
## GO:0071378  BP    15  0 1.000000000
## GO:0071404  BP    15  0 1.000000000
## GO:0021694  BP    15  0 1.000000000
## GO:0051131  BP    15  0 1.000000000
## GO:0072567  BP    15  0 1.000000000
## GO:0042033  BP    15  0 1.000000000
## GO:0010878  BP    15  0 1.000000000
## GO:0042748  BP    15  0 1.000000000
## GO:0031958  BP    15  0 1.000000000
## GO:0070593  BP    15  0 1.000000000
## GO:0042416  BP    15  0 1.000000000
## GO:0010172  BP    15  0 1.000000000
## GO:0072498  BP    15  0 1.000000000
## GO:0001711  BP    15  0 1.000000000
## GO:0060742  BP    15  0 1.000000000
## GO:0043249  BP    15  0 1.000000000
## GO:0060856  BP    15  0 1.000000000
## GO:0061029  BP    15  0 1.000000000
## GO:0055089  BP    15  0 1.000000000
## GO:0035337  BP    15  0 1.000000000
## GO:0015669  BP    15  0 1.000000000
## GO:0021781  BP    15  0 1.000000000
## GO:0072010  BP    15  0 1.000000000
## GO:0006704  BP    15  0 1.000000000
## GO:0019377  BP    15  0 1.000000000
## GO:0060396  BP    15  0 1.000000000
## GO:0003128  BP    15  0 1.000000000
## GO:0060347  BP    15  0 1.000000000
## GO:0003188  BP    15  0 1.000000000
## GO:0043981  BP    15  0 1.000000000
## GO:0043982  BP    15  0 1.000000000
## GO:0001771  BP    15  0 1.000000000
## GO:0050930  BP    15  0 1.000000000
## GO:0036159  BP    15  0 1.000000000
## GO:0046855  BP    15  0 1.000000000
## GO:0042095  BP    15  0 1.000000000
## GO:0070102  BP    15  0 1.000000000
## GO:0060576  BP    15  0 1.000000000
## GO:0034755  BP    15  0 1.000000000
## GO:0072074  BP    15  0 1.000000000
## GO:0051382  BP    15  0 1.000000000
## GO:0021819  BP    15  0 1.000000000
## GO:0070307  BP    15  0 1.000000000
## GO:0030259  BP    15  0 1.000000000
## GO:0042159  BP    15  0 1.000000000
## GO:0044872  BP    15  0 1.000000000
## GO:0042953  BP    15  0 1.000000000
## GO:0035641  BP    15  0 1.000000000
## GO:0042759  BP    15  0 1.000000000
## GO:0010960  BP    15  0 1.000000000
## GO:0015693  BP    15  0 1.000000000
## GO:0000212  BP    15  0 1.000000000
## GO:0072283  BP    15  0 1.000000000
## GO:0007076  BP    15  0 1.000000000
## GO:0044827  BP    15  0 1.000000000
## GO:0070254  BP    15  0 1.000000000
## GO:0043217  BP    15  0 1.000000000
## GO:0034471  BP    15  0 1.000000000
## GO:0043383  BP    15  0 1.000000000
## GO:0032785  BP    15  0 1.000000000
## GO:1902430  BP    15  0 1.000000000
## GO:2000811  BP    15  0 1.000000000
## GO:0048681  BP    15  0 1.000000000
## GO:0010523  BP    15  0 1.000000000
## GO:0031280  BP    15  0 1.000000000
## GO:0061000  BP    15  0 1.000000000
## GO:0045605  BP    15  0 1.000000000
## GO:2000252  BP    15  0 1.000000000
## GO:0060965  BP    15  0 1.000000000
## GO:0002862  BP    15  0 1.000000000
## GO:0032717  BP    15  0 1.000000000
## GO:0045835  BP    15  0 1.000000000
## GO:0031115  BP    15  0 1.000000000
## GO:0010917  BP    15  0 1.000000000
## GO:1902894  BP    15  0 1.000000000
## GO:1901386  BP    15  0 1.000000000
## GO:0000291  BP    15  0 1.000000000
## GO:0009143  BP    15  0 1.000000000
## GO:0006337  BP    15  0 1.000000000
## GO:0009312  BP    15  0 1.000000000
## GO:0071599  BP    15  0 1.000000000
## GO:0030157  BP    15  0 1.000000000
## GO:0015919  BP    15  0 1.000000000
## GO:1904294  BP    15  0 1.000000000
## GO:0033089  BP    15  0 1.000000000
## GO:0050862  BP    15  0 1.000000000
## GO:0051127  BP    15  0 1.000000000
## GO:0045760  BP    15  0 1.000000000
## GO:0061051  BP    15  0 1.000000000
## GO:0090197  BP    15  0 1.000000000
## GO:1903543  BP    15  0 1.000000000
## GO:2001241  BP    15  0 1.000000000
## GO:1902043  BP    15  0 1.000000000
## GO:0014049  BP    15  0 1.000000000
## GO:0051571  BP    15  0 1.000000000
## GO:0051712  BP    15  0 1.000000000
## GO:0051044  BP    15  0 1.000000000
## GO:0070572  BP    15  0 1.000000000
## GO:0033235  BP    15  0 1.000000000
## GO:1900029  BP    15  0 1.000000000
## GO:0034393  BP    15  0 1.000000000
## GO:1903423  BP    15  0 1.000000000
## GO:0043117  BP    15  0 1.000000000
## GO:1903818  BP    15  0 1.000000000
## GO:0099527  BP    15  0 1.000000000
## GO:0098926  BP    15  0 1.000000000
## GO:0031054  BP    15  0 1.000000000
## GO:0060134  BP    15  0 1.000000000
## GO:1902570  BP    15  0 1.000000000
## GO:0017014  BP    15  0 1.000000000
## GO:0031268  BP    15  0 1.000000000
## GO:0009151  BP    15  0 1.000000000
## GO:0035587  BP    15  0 1.000000000
## GO:0006206  BP    15  0 1.000000000
## GO:0009220  BP    15  0 1.000000000
## GO:1903358  BP    15  0 1.000000000
## GO:0039535  BP    15  0 1.000000000
## GO:0010819  BP    15  0 1.000000000
## GO:2000095  BP    15  0 1.000000000
## GO:0045073  BP    15  0 1.000000000
## GO:0003352  BP    15  0 1.000000000
## GO:2000369  BP    15  0 1.000000000
## GO:2001267  BP    15  0 1.000000000
## GO:0048070  BP    15  0 1.000000000
## GO:0090178  BP    15  0 1.000000000
## GO:0010715  BP    15  0 1.000000000
## GO:2000194  BP    15  0 1.000000000
## GO:1901317  BP    15  0 1.000000000
## GO:0031650  BP    15  0 1.000000000
## GO:0090083  BP    15  0 1.000000000
## GO:0033623  BP    15  0 1.000000000
## GO:0060334  BP    15  0 1.000000000
## GO:0045414  BP    15  0 1.000000000
## GO:1902165  BP    15  0 1.000000000
## GO:0051547  BP    15  0 1.000000000
## GO:0051004  BP    15  0 1.000000000
## GO:0010935  BP    15  0 1.000000000
## GO:2000628  BP    15  0 1.000000000
## GO:1903978  BP    15  0 1.000000000
## GO:0032530  BP    15  0 1.000000000
## GO:1903729  BP    15  0 1.000000000
## GO:0098962  BP    15  0 1.000000000
## GO:1904814  BP    15  0 1.000000000
## GO:1901077  BP    15  0 1.000000000
## GO:0060330  BP    15  0 1.000000000
## GO:0048385  BP    15  0 1.000000000
## GO:0060700  BP    15  0 1.000000000
## GO:0043455  BP    15  0 1.000000000
## GO:0014857  BP    15  0 1.000000000
## GO:2001256  BP    15  0 1.000000000
## GO:0032222  BP    15  0 1.000000000
## GO:1901213  BP    15  0 1.000000000
## GO:0030656  BP    15  0 1.000000000
## GO:0070293  BP    15  0 1.000000000
## GO:0034698  BP    15  0 1.000000000
## GO:0071731  BP    15  0 1.000000000
## GO:0098917  BP    15  0 1.000000000
## GO:0046541  BP    15  0 1.000000000
## GO:0007379  BP    15  0 1.000000000
## GO:0030730  BP    15  0 1.000000000
## GO:0009070  BP    15  0 1.000000000
## GO:0042428  BP    15  0 1.000000000
## GO:1902402  BP    15  0 1.000000000
## GO:1902403  BP    15  0 1.000000000
## GO:0072413  BP    15  0 1.000000000
## GO:0002566  BP    15  0 1.000000000
## GO:0051923  BP    15  0 1.000000000
## GO:0000097  BP    15  0 1.000000000
## GO:0043129  BP    15  0 1.000000000
## GO:0000722  BP    15  0 1.000000000
## GO:0016114  BP    15  0 1.000000000
## GO:0006590  BP    15  0 1.000000000
## GO:0034162  BP    15  0 1.000000000
## GO:0097050  BP    15  0 1.000000000
## GO:0035461  BP    15  0 1.000000000
## GO:0050872  BP    15  0 1.000000000
## GO:0006103  BP    16  0 1.000000000
## GO:0043374  BP    16  0 1.000000000
## GO:0042772  BP    16  0 1.000000000
## GO:0000729  BP    16  0 1.000000000
## GO:0006271  BP    16  0 1.000000000
## GO:0002431  BP    16  0 1.000000000
## GO:0006044  BP    16  0 1.000000000
## GO:0002295  BP    16  0 1.000000000
## GO:0007250  BP    16  0 1.000000000
## GO:0007512  BP    16  0 1.000000000
## GO:1990000  BP    16  0 1.000000000
## GO:0042640  BP    16  0 1.000000000
## GO:0099640  BP    16  0 1.000000000
## GO:0009081  BP    16  0 1.000000000
## GO:0098703  BP    16  0 1.000000000
## GO:0046835  BP    16  0 1.000000000
## GO:0003161  BP    16  0 1.000000000
## GO:0060581  BP    16  0 1.000000000
## GO:0033631  BP    16  0 1.000000000
## GO:0006968  BP    16  0 1.000000000
## GO:0071498  BP    16  0 1.000000000
## GO:0044320  BP    16  0 1.000000000
## GO:0071379  BP    16  0 1.000000000
## GO:0036315  BP    16  0 1.000000000
## GO:0090171  BP    16  0 1.000000000
## GO:0003414  BP    16  0 1.000000000
## GO:0002544  BP    16  0 1.000000000
## GO:0060026  BP    16  0 1.000000000
## GO:0055070  BP    16  0 1.000000000
## GO:0006825  BP    16  0 1.000000000
## GO:0097094  BP    16  0 1.000000000
## GO:0042407  BP    16  0 1.000000000
## GO:0006534  BP    16  0 1.000000000
## GO:0002407  BP    16  0 1.000000000
## GO:0016045  BP    16  0 1.000000000
## GO:0098543  BP    16  0 1.000000000
## GO:0051852  BP    16  0 1.000000000
## GO:0070166  BP    16  0 1.000000000
## GO:0099638  BP    16  0 1.000000000
## GO:0001886  BP    16  0 1.000000000
## GO:0061154  BP    16  0 1.000000000
## GO:0043652  BP    16  0 1.000000000
## GO:0002070  BP    16  0 1.000000000
## GO:0090177  BP    16  0 1.000000000
## GO:0070200  BP    16  0 1.000000000
## GO:0018904  BP    16  0 1.000000000
## GO:0046629  BP    16  0 1.000000000
## GO:0061548  BP    16  0 1.000000000
## GO:0035112  BP    16  0 1.000000000
## GO:0002467  BP    16  0 1.000000000
## GO:0072109  BP    16  0 1.000000000
## GO:0009084  BP    16  0 1.000000000
## GO:0019682  BP    16  0 1.000000000
## GO:0003429  BP    16  0 1.000000000
## GO:0097284  BP    16  0 1.000000000
## GO:0001821  BP    16  0 1.000000000
## GO:0070932  BP    16  0 1.000000000
## GO:0002327  BP    16  0 1.000000000
## GO:0042228  BP    16  0 1.000000000
## GO:0098856  BP    16  0 1.000000000
## GO:0035235  BP    16  0 1.000000000
## GO:0051873  BP    16  0 1.000000000
## GO:0072673  BP    16  0 1.000000000
## GO:0044241  BP    16  0 1.000000000
## GO:0002281  BP    16  0 1.000000000
## GO:0030011  BP    16  0 1.000000000
## GO:0030238  BP    16  0 1.000000000
## GO:0006828  BP    16  0 1.000000000
## GO:0007638  BP    16  0 1.000000000
## GO:0061952  BP    16  0 1.000000000
## GO:0098885  BP    16  0 1.000000000
## GO:0044068  BP    16  0 1.000000000
## GO:0003159  BP    16  0 1.000000000
## GO:0043518  BP    16  0 1.000000000
## GO:0060766  BP    16  0 1.000000000
## GO:0045779  BP    16  0 1.000000000
## GO:0070885  BP    16  0 1.000000000
## GO:0106057  BP    16  0 1.000000000
## GO:0090051  BP    16  0 1.000000000
## GO:1900016  BP    16  0 1.000000000
## GO:0032688  BP    16  0 1.000000000
## GO:0002689  BP    16  0 1.000000000
## GO:0060192  BP    16  0 1.000000000
## GO:0048715  BP    16  0 1.000000000
## GO:0014067  BP    16  0 1.000000000
## GO:0032105  BP    16  0 1.000000000
## GO:0032108  BP    16  0 1.000000000
## GO:2001015  BP    16  0 1.000000000
## GO:0051151  BP    16  0 1.000000000
## GO:2000647  BP    16  0 1.000000000
## GO:1902187  BP    16  0 1.000000000
## GO:0055057  BP    16  0 1.000000000
## GO:0016322  BP    16  0 1.000000000
## GO:0036445  BP    16  0 1.000000000
## GO:0002283  BP    16  0 1.000000000
## GO:0072672  BP    16  0 1.000000000
## GO:0043584  BP    16  0 1.000000000
## GO:0046112  BP    16  0 1.000000000
## GO:0036035  BP    16  0 1.000000000
## GO:0043084  BP    16  0 1.000000000
## GO:0018027  BP    16  0 1.000000000
## GO:0070262  BP    16  0 1.000000000
## GO:0043923  BP    16  0 1.000000000
## GO:0002866  BP    16  0 1.000000000
## GO:1902004  BP    16  0 1.000000000
## GO:0010875  BP    16  0 1.000000000
## GO:1900119  BP    16  0 1.000000000
## GO:1904996  BP    16  0 1.000000000
## GO:1905155  BP    16  0 1.000000000
## GO:0062033  BP    16  0 1.000000000
## GO:0060100  BP    16  0 1.000000000
## GO:1901881  BP    16  0 1.000000000
## GO:2000651  BP    16  0 1.000000000
## GO:0032230  BP    16  0 1.000000000
## GO:0002830  BP    16  0 1.000000000
## GO:1905564  BP    16  0 1.000000000
## GO:1902188  BP    16  0 1.000000000
## GO:0045059  BP    16  0 1.000000000
## GO:0098974  BP    16  0 1.000000000
## GO:0099188  BP    16  0 1.000000000
## GO:1901160  BP    16  0 1.000000000
## GO:0042448  BP    16  0 1.000000000
## GO:0016540  BP    16  0 1.000000000
## GO:1902414  BP    16  0 1.000000000
## GO:0009147  BP    16  0 1.000000000
## GO:0009218  BP    16  0 1.000000000
## GO:0072529  BP    16  0 1.000000000
## GO:0015697  BP    16  0 1.000000000
## GO:0034315  BP    16  0 1.000000000
## GO:0045898  BP    16  0 1.000000000
## GO:0106070  BP    16  0 1.000000000
## GO:1902337  BP    16  0 1.000000000
## GO:0090335  BP    16  0 1.000000000
## GO:2000479  BP    16  0 1.000000000
## GO:0010752  BP    16  0 1.000000000
## GO:1903779  BP    16  0 1.000000000
## GO:0042659  BP    16  0 1.000000000
## GO:1901722  BP    16  0 1.000000000
## GO:1900037  BP    16  0 1.000000000
## GO:0090196  BP    16  0 1.000000000
## GO:0030449  BP    16  0 1.000000000
## GO:0002739  BP    16  0 1.000000000
## GO:0040034  BP    16  0 1.000000000
## GO:1903541  BP    16  0 1.000000000
## GO:0010310  BP    16  0 1.000000000
## GO:0048302  BP    16  0 1.000000000
## GO:0051709  BP    16  0 1.000000000
## GO:2001053  BP    16  0 1.000000000
## GO:1901524  BP    16  0 1.000000000
## GO:0045655  BP    16  0 1.000000000
## GO:0098696  BP    16  0 1.000000000
## GO:0051386  BP    16  0 1.000000000
## GO:0032239  BP    16  0 1.000000000
## GO:0044065  BP    16  0 1.000000000
## GO:0060314  BP    16  0 1.000000000
## GO:0014733  BP    16  0 1.000000000
## GO:0090231  BP    16  0 1.000000000
## GO:0090128  BP    16  0 1.000000000
## GO:0006359  BP    16  0 1.000000000
## GO:0001977  BP    16  0 1.000000000
## GO:0010224  BP    16  0 1.000000000
## GO:0097329  BP    16  0 1.000000000
## GO:0031000  BP    16  0 1.000000000
## GO:0036270  BP    16  0 1.000000000
## GO:0032570  BP    16  0 1.000000000
## GO:0032252  BP    16  0 1.000000000
## GO:0014856  BP    16  0 1.000000000
## GO:0046519  BP    16  0 1.000000000
## GO:0006684  BP    16  0 1.000000000
## GO:0030322  BP    16  0 1.000000000
## GO:0008272  BP    16  0 1.000000000
## GO:0021978  BP    16  0 1.000000000
## GO:0034134  BP    16  0 1.000000000
## GO:0019985  BP    16  0 1.000000000
## GO:0060979  BP    16  0 1.000000000
## GO:0060579  BP    16  0 1.000000000
## GO:0003222  BP    16  0 1.000000000
## GO:0042359  BP    16  0 1.000000000
## GO:0061158  BP    17  0 1.000000000
## GO:0043373  BP    17  0 1.000000000
## GO:0007216  BP    17  0 1.000000000
## GO:0006474  BP    17  0 1.000000000
## GO:0000966  BP    17  0 1.000000000
## GO:0090502  BP    17  0 1.000000000
## GO:0006614  BP    17  0 1.000000000
## GO:0045064  BP    17  0 1.000000000
## GO:0007202  BP    17  0 1.000000000
## GO:0044406  BP    17  0 1.000000000
## GO:0060413  BP    17  0 1.000000000
## GO:0015701  BP    17  0 1.000000000
## GO:0007350  BP    17  0 1.000000000
## GO:0048739  BP    17  0 1.000000000
## GO:0035459  BP    17  0 1.000000000
## GO:0034331  BP    17  0 1.000000000
## GO:0042074  BP    17  0 1.000000000
## GO:0060973  BP    17  0 1.000000000
## GO:0071360  BP    17  0 1.000000000
## GO:0035729  BP    17  0 1.000000000
## GO:0098761  BP    17  0 1.000000000
## GO:0036120  BP    17  0 1.000000000
## GO:0021681  BP    17  0 1.000000000
## GO:0048875  BP    17  0 1.000000000
## GO:0050755  BP    17  0 1.000000000
## GO:0090195  BP    17  0 1.000000000
## GO:0035988  BP    17  0 1.000000000
## GO:0031498  BP    17  0 1.000000000
## GO:0009109  BP    17  0 1.000000000
## GO:0002024  BP    17  0 1.000000000
## GO:0042756  BP    17  0 1.000000000
## GO:0060788  BP    17  0 1.000000000
## GO:0071697  BP    17  0 1.000000000
## GO:0071786  BP    17  0 1.000000000
## GO:0003198  BP    17  0 1.000000000
## GO:0072663  BP    17  0 1.000000000
## GO:0048853  BP    17  0 1.000000000
## GO:0036065  BP    17  0 1.000000000
## GO:0014051  BP    17  0 1.000000000
## GO:0034349  BP    17  0 1.000000000
## GO:0006677  BP    17  0 1.000000000
## GO:0003422  BP    17  0 1.000000000
## GO:0043968  BP    17  0 1.000000000
## GO:0080182  BP    17  0 1.000000000
## GO:0036124  BP    17  0 1.000000000
## GO:0008334  BP    17  0 1.000000000
## GO:0050665  BP    17  0 1.000000000
## GO:0021854  BP    17  0 1.000000000
## GO:0000188  BP    17  0 1.000000000
## GO:0071545  BP    17  0 1.000000000
## GO:0048291  BP    17  0 1.000000000
## GO:0048368  BP    17  0 1.000000000
## GO:0010934  BP    17  0 1.000000000
## GO:0030277  BP    17  0 1.000000000
## GO:0060644  BP    17  0 1.000000000
## GO:0000463  BP    17  0 1.000000000
## GO:0032438  BP    17  0 1.000000000
## GO:0032402  BP    17  0 1.000000000
## GO:0086012  BP    17  0 1.000000000
## GO:0060081  BP    17  0 1.000000000
## GO:0097152  BP    17  0 1.000000000
## GO:0072234  BP    17  0 1.000000000
## GO:0006555  BP    17  0 1.000000000
## GO:0030033  BP    17  0 1.000000000
## GO:2001170  BP    17  0 1.000000000
## GO:1902992  BP    17  0 1.000000000
## GO:1903960  BP    17  0 1.000000000
## GO:0010454  BP    17  0 1.000000000
## GO:2000042  BP    17  0 1.000000000
## GO:0051895  BP    17  0 1.000000000
## GO:0060967  BP    17  0 1.000000000
## GO:0060253  BP    17  0 1.000000000
## GO:1903019  BP    17  0 1.000000000
## GO:0035067  BP    17  0 1.000000000
## GO:0061179  BP    17  0 1.000000000
## GO:0090185  BP    17  0 1.000000000
## GO:0010888  BP    17  0 1.000000000
## GO:0051350  BP    17  0 1.000000000
## GO:0045653  BP    17  0 1.000000000
## GO:1905331  BP    17  0 1.000000000
## GO:0040015  BP    17  0 1.000000000
## GO:0070571  BP    17  0 1.000000000
## GO:1902176  BP    17  0 1.000000000
## GO:0060149  BP    17  0 1.000000000
## GO:0032460  BP    17  0 1.000000000
## GO:0042135  BP    17  0 1.000000000
## GO:0038092  BP    17  0 1.000000000
## GO:0030575  BP    17  0 1.000000000
## GO:0009164  BP    17  0 1.000000000
## GO:0043574  BP    17  0 1.000000000
## GO:0046337  BP    17  0 1.000000000
## GO:0046838  BP    17  0 1.000000000
## GO:0045026  BP    17  0 1.000000000
## GO:0045579  BP    17  0 1.000000000
## GO:0070886  BP    17  0 1.000000000
## GO:0106058  BP    17  0 1.000000000
## GO:0045793  BP    17  0 1.000000000
## GO:2001028  BP    17  0 1.000000000
## GO:0045603  BP    17  0 1.000000000
## GO:0045725  BP    17  0 1.000000000
## GO:0002922  BP    17  0 1.000000000
## GO:0032305  BP    17  0 1.000000000
## GO:0002839  BP    17  0 1.000000000
## GO:0032740  BP    17  0 1.000000000
## GO:0045410  BP    17  0 1.000000000
## GO:0140131  BP    17  0 1.000000000
## GO:0045836  BP    17  0 1.000000000
## GO:0051000  BP    17  0 1.000000000
## GO:0032516  BP    17  0 1.000000000
## GO:0001921  BP    17  0 1.000000000
## GO:0002836  BP    17  0 1.000000000
## GO:0045989  BP    17  0 1.000000000
## GO:1904355  BP    17  0 1.000000000
## GO:0071636  BP    17  0 1.000000000
## GO:0010867  BP    17  0 1.000000000
## GO:0009886  BP    17  0 1.000000000
## GO:0099171  BP    17  0 1.000000000
## GO:0032310  BP    17  0 1.000000000
## GO:0035269  BP    17  0 1.000000000
## GO:0034501  BP    17  0 1.000000000
## GO:0035372  BP    17  0 1.000000000
## GO:0072662  BP    17  0 1.000000000
## GO:0006625  BP    17  0 1.000000000
## GO:0032986  BP    17  0 1.000000000
## GO:0001522  BP    17  0 1.000000000
## GO:0003184  BP    17  0 1.000000000
## GO:1901663  BP    17  0 1.000000000
## GO:0050855  BP    17  0 1.000000000
## GO:2001185  BP    17  0 1.000000000
## GO:2000001  BP    17  0 1.000000000
## GO:0060628  BP    17  0 1.000000000
## GO:0035020  BP    17  0 1.000000000
## GO:0060046  BP    17  0 1.000000000
## GO:1904748  BP    17  0 1.000000000
## GO:0045540  BP    17  0 1.000000000
## GO:1904889  BP    17  0 1.000000000
## GO:0007096  BP    17  0 1.000000000
## GO:0090192  BP    17  0 1.000000000
## GO:0002883  BP    17  0 1.000000000
## GO:0010919  BP    17  0 1.000000000
## GO:1902713  BP    17  0 1.000000000
## GO:1900452  BP    17  0 1.000000000
## GO:1900363  BP    17  0 1.000000000
## GO:2000380  BP    17  0 1.000000000
## GO:1905244  BP    17  0 1.000000000
## GO:0060544  BP    17  0 1.000000000
## GO:0042487  BP    17  0 1.000000000
## GO:0071071  BP    17  0 1.000000000
## GO:2000257  BP    17  0 1.000000000
## GO:0106118  BP    17  0 1.000000000
## GO:0032225  BP    17  0 1.000000000
## GO:0043555  BP    17  0 1.000000000
## GO:0006448  BP    17  0 1.000000000
## GO:1900746  BP    17  0 1.000000000
## GO:0098760  BP    17  0 1.000000000
## GO:0043278  BP    17  0 1.000000000
## GO:0046549  BP    17  0 1.000000000
## GO:0001820  BP    17  0 1.000000000
## GO:0007288  BP    17  0 1.000000000
## GO:0001967  BP    17  0 1.000000000
## GO:0002098  BP    17  0 1.000000000
## GO:0006744  BP    17  0 1.000000000
## GO:0055012  BP    17  0 1.000000000
## GO:0046755  BP    17  0 1.000000000
## GO:0071625  BP    17  0 1.000000000
## GO:0006833  BP    17  0 1.000000000
## GO:0035313  BP    17  0 1.000000000
## GO:0070935  BP    18  0 1.000000000
## GO:0006700  BP    18  0 1.000000000
## GO:0038093  BP    18  0 1.000000000
## GO:0002031  BP    18  0 1.000000000
## GO:0007252  BP    18  0 1.000000000
## GO:0039529  BP    18  0 1.000000000
## GO:0006085  BP    18  0 1.000000000
## GO:0001675  BP    18  0 1.000000000
## GO:0009309  BP    18  0 1.000000000
## GO:0048791  BP    18  0 1.000000000
## GO:0060947  BP    18  0 1.000000000
## GO:0010002  BP    18  0 1.000000000
## GO:0030002  BP    18  0 1.000000000
## GO:0042401  BP    18  0 1.000000000
## GO:0043094  BP    18  0 1.000000000
## GO:0042219  BP    18  0 1.000000000
## GO:0030320  BP    18  0 1.000000000
## GO:0048268  BP    18  0 1.000000000
## GO:0022038  BP    18  0 1.000000000
## GO:0006613  BP    18  0 1.000000000
## GO:0021542  BP    18  0 1.000000000
## GO:0050961  BP    18  0 1.000000000
## GO:0050965  BP    18  0 1.000000000
## GO:0034312  BP    18  0 1.000000000
## GO:0007398  BP    18  0 1.000000000
## GO:0071696  BP    18  0 1.000000000
## GO:0072148  BP    18  0 1.000000000
## GO:0035089  BP    18  0 1.000000000
## GO:0032401  BP    18  0 1.000000000
## GO:0042249  BP    18  0 1.000000000
## GO:0030952  BP    18  0 1.000000000
## GO:0030540  BP    18  0 1.000000000
## GO:0015812  BP    18  0 1.000000000
## GO:0009251  BP    18  0 1.000000000
## GO:0051156  BP    18  0 1.000000000
## GO:0005980  BP    18  0 1.000000000
## GO:0006027  BP    18  0 1.000000000
## GO:0016137  BP    18  0 1.000000000
## GO:0032274  BP    18  0 1.000000000
## GO:0020027  BP    18  0 1.000000000
## GO:0051608  BP    18  0 1.000000000
## GO:0035518  BP    18  0 1.000000000
## GO:0042447  BP    18  0 1.000000000
## GO:0002524  BP    18  0 1.000000000
## GO:0001833  BP    18  0 1.000000000
## GO:0045324  BP    18  0 1.000000000
## GO:0034389  BP    18  0 1.000000000
## GO:0042711  BP    18  0 1.000000000
## GO:0086011  BP    18  0 1.000000000
## GO:0001710  BP    18  0 1.000000000
## GO:0035278  BP    18  0 1.000000000
## GO:0006851  BP    18  0 1.000000000
## GO:0006390  BP    18  0 1.000000000
## GO:0060572  BP    18  0 1.000000000
## GO:1904262  BP    18  0 1.000000000
## GO:0046851  BP    18  0 1.000000000
## GO:0060044  BP    18  0 1.000000000
## GO:0033604  BP    18  0 1.000000000
## GO:0042754  BP    18  0 1.000000000
## GO:0045721  BP    18  0 1.000000000
## GO:0032700  BP    18  0 1.000000000
## GO:0045837  BP    18  0 1.000000000
## GO:0010832  BP    18  0 1.000000000
## GO:0060547  BP    18  0 1.000000000
## GO:0045019  BP    18  0 1.000000000
## GO:1904406  BP    18  0 1.000000000
## GO:0030809  BP    18  0 1.000000000
## GO:0010801  BP    18  0 1.000000000
## GO:1900372  BP    18  0 1.000000000
## GO:0051444  BP    18  0 1.000000000
## GO:1904706  BP    18  0 1.000000000
## GO:0072578  BP    18  0 1.000000000
## GO:0042415  BP    18  0 1.000000000
## GO:0048243  BP    18  0 1.000000000
## GO:0042790  BP    18  0 1.000000000
## GO:0016584  BP    18  0 1.000000000
## GO:0002076  BP    18  0 1.000000000
## GO:0036158  BP    18  0 1.000000000
## GO:0016486  BP    18  0 1.000000000
## GO:0006656  BP    18  0 1.000000000
## GO:0017121  BP    18  0 1.000000000
## GO:0034587  BP    18  0 1.000000000
## GO:0048753  BP    18  0 1.000000000
## GO:0051904  BP    18  0 1.000000000
## GO:0016973  BP    18  0 1.000000000
## GO:0032793  BP    18  0 1.000000000
## GO:1903599  BP    18  0 1.000000000
## GO:0031281  BP    18  0 1.000000000
## GO:0046321  BP    18  0 1.000000000
## GO:0010763  BP    18  0 1.000000000
## GO:0045722  BP    18  0 1.000000000
## GO:0070131  BP    18  0 1.000000000
## GO:1900153  BP    18  0 1.000000000
## GO:1903209  BP    18  0 1.000000000
## GO:0071435  BP    18  0 1.000000000
## GO:0097623  BP    18  0 1.000000000
## GO:0021783  BP    18  0 1.000000000
## GO:0030150  BP    18  0 1.000000000
## GO:0006622  BP    18  0 1.000000000
## GO:1904424  BP    18  0 1.000000000
## GO:2000810  BP    18  0 1.000000000
## GO:1902547  BP    18  0 1.000000000
## GO:2000846  BP    18  0 1.000000000
## GO:2000641  BP    18  0 1.000000000
## GO:2000696  BP    18  0 1.000000000
## GO:0032674  BP    18  0 1.000000000
## GO:0010566  BP    18  0 1.000000000
## GO:0014041  BP    18  0 1.000000000
## GO:1902855  BP    18  0 1.000000000
## GO:0014061  BP    18  0 1.000000000
## GO:0071801  BP    18  0 1.000000000
## GO:0150052  BP    18  0 1.000000000
## GO:0099150  BP    18  0 1.000000000
## GO:1903909  BP    18  0 1.000000000
## GO:0001991  BP    18  0 1.000000000
## GO:0060850  BP    18  0 1.000000000
## GO:0039531  BP    18  0 1.000000000
## GO:0072077  BP    18  0 1.000000000
## GO:0000712  BP    18  0 1.000000000
## GO:0060416  BP    18  0 1.000000000
## GO:0014072  BP    18  0 1.000000000
## GO:0044321  BP    18  0 1.000000000
## GO:0036119  BP    18  0 1.000000000
## GO:0034695  BP    18  0 1.000000000
## GO:0033574  BP    18  0 1.000000000
## GO:0042670  BP    18  0 1.000000000
## GO:0043252  BP    18  0 1.000000000
## GO:0060712  BP    18  0 1.000000000
## GO:0021756  BP    18  0 1.000000000
## GO:0097091  BP    18  0 1.000000000
## GO:0034138  BP    18  0 1.000000000
## GO:0060707  BP    18  0 1.000000000
## GO:0006743  BP    18  0 1.000000000
## GO:0043162  BP    18  0 1.000000000
## GO:0060841  BP    18  0 1.000000000
## GO:0021514  BP    18  0 1.000000000
## GO:0032011  BP    19  0 1.000000000
## GO:0015740  BP    19  0 1.000000000
## GO:0043046  BP    19  0 1.000000000
## GO:0009435  BP    19  0 1.000000000
## GO:0010818  BP    19  0 1.000000000
## GO:0046184  BP    19  0 1.000000000
## GO:0002363  BP    19  0 1.000000000
## GO:0008209  BP    19  0 1.000000000
## GO:0002495  BP    19  0 1.000000000
## GO:0003180  BP    19  0 1.000000000
## GO:0006309  BP    19  0 1.000000000
## GO:0009074  BP    19  0 1.000000000
## GO:0060088  BP    19  0 1.000000000
## GO:0002043  BP    19  0 1.000000000
## GO:0046068  BP    19  0 1.000000000
## GO:0003214  BP    19  0 1.000000000
## GO:0003215  BP    19  0 1.000000000
## GO:0001502  BP    19  0 1.000000000
## GO:0021535  BP    19  0 1.000000000
## GO:1904385  BP    19  0 1.000000000
## GO:0006883  BP    19  0 1.000000000
## GO:0021692  BP    19  0 1.000000000
## GO:0050650  BP    19  0 1.000000000
## GO:0035930  BP    19  0 1.000000000
## GO:0033962  BP    19  0 1.000000000
## GO:0051818  BP    19  0 1.000000000
## GO:0034643  BP    19  0 1.000000000
## GO:0051905  BP    19  0 1.000000000
## GO:0006071  BP    19  0 1.000000000
## GO:0032634  BP    19  0 1.000000000
## GO:0051546  BP    19  0 1.000000000
## GO:0051883  BP    19  0 1.000000000
## GO:0042789  BP    19  0 1.000000000
## GO:0060231  BP    19  0 1.000000000
## GO:0099118  BP    19  0 1.000000000
## GO:0033617  BP    19  0 1.000000000
## GO:0048311  BP    19  0 1.000000000
## GO:0047497  BP    19  0 1.000000000
## GO:0031571  BP    19  0 1.000000000
## GO:0071605  BP    19  0 1.000000000
## GO:1902579  BP    19  0 1.000000000
## GO:0044766  BP    19  0 1.000000000
## GO:0030889  BP    19  0 1.000000000
## GO:2000104  BP    19  0 1.000000000
## GO:0002710  BP    19  0 1.000000000
## GO:0050860  BP    19  0 1.000000000
## GO:0051956  BP    19  0 1.000000000
## GO:0048712  BP    19  0 1.000000000
## GO:0030502  BP    19  0 1.000000000
## GO:2000773  BP    19  0 1.000000000
## GO:0031936  BP    19  0 1.000000000
## GO:0050774  BP    19  0 1.000000000
## GO:1902236  BP    19  0 1.000000000
## GO:0040037  BP    19  0 1.000000000
## GO:0034111  BP    19  0 1.000000000
## GO:0032695  BP    19  0 1.000000000
## GO:0045953  BP    19  0 1.000000000
## GO:0010544  BP    19  0 1.000000000
## GO:0010766  BP    19  0 1.000000000
## GO:0032211  BP    19  0 1.000000000
## GO:0040033  BP    19  0 1.000000000
## GO:0010529  BP    19  0 1.000000000
## GO:0050884  BP    19  0 1.000000000
## GO:0034656  BP    19  0 1.000000000
## GO:0070989  BP    19  0 1.000000000
## GO:0060746  BP    19  0 1.000000000
## GO:0030220  BP    19  0 1.000000000
## GO:0030859  BP    19  0 1.000000000
## GO:0006595  BP    19  0 1.000000000
## GO:0044794  BP    19  0 1.000000000
## GO:0002726  BP    19  0 1.000000000
## GO:2000251  BP    19  0 1.000000000
## GO:0060456  BP    19  0 1.000000000
## GO:1900451  BP    19  0 1.000000000
## GO:0070875  BP    19  0 1.000000000
## GO:0046886  BP    19  0 1.000000000
## GO:0051349  BP    19  0 1.000000000
## GO:0090026  BP    19  0 1.000000000
## GO:0061081  BP    19  0 1.000000000
## GO:0046827  BP    19  0 1.000000000
## GO:1904754  BP    19  0 1.000000000
## GO:0010623  BP    19  0 1.000000000
## GO:0070208  BP    19  0 1.000000000
## GO:0045116  BP    19  0 1.000000000
## GO:0098840  BP    19  0 1.000000000
## GO:0016075  BP    19  0 1.000000000
## GO:0032012  BP    19  0 1.000000000
## GO:1900424  BP    19  0 1.000000000
## GO:1902259  BP    19  0 1.000000000
## GO:1905276  BP    19  0 1.000000000
## GO:2000114  BP    19  0 1.000000000
## GO:0031998  BP    19  0 1.000000000
## GO:2000269  BP    19  0 1.000000000
## GO:1903975  BP    19  0 1.000000000
## GO:0030852  BP    19  0 1.000000000
## GO:0060123  BP    19  0 1.000000000
## GO:2000345  BP    19  0 1.000000000
## GO:0032656  BP    19  0 1.000000000
## GO:0045076  BP    19  0 1.000000000
## GO:0031664  BP    19  0 1.000000000
## GO:0010984  BP    19  0 1.000000000
## GO:0071637  BP    19  0 1.000000000
## GO:0032823  BP    19  0 1.000000000
## GO:0060099  BP    19  0 1.000000000
## GO:1905874  BP    19  0 1.000000000
## GO:0090036  BP    19  0 1.000000000
## GO:1903214  BP    19  0 1.000000000
## GO:0010880  BP    19  0 1.000000000
## GO:0032095  BP    19  0 1.000000000
## GO:0048172  BP    19  0 1.000000000
## GO:0090030  BP    19  0 1.000000000
## GO:0002643  BP    19  0 1.000000000
## GO:0045974  BP    19  0 1.000000000
## GO:0010528  BP    19  0 1.000000000
## GO:0010447  BP    19  0 1.000000000
## GO:0001975  BP    19  0 1.000000000
## GO:0070723  BP    19  0 1.000000000
## GO:0035728  BP    19  0 1.000000000
## GO:0033194  BP    19  0 1.000000000
## GO:0035994  BP    19  0 1.000000000
## GO:0072520  BP    19  0 1.000000000
## GO:0051238  BP    19  0 1.000000000
## GO:0016074  BP    19  0 1.000000000
## GO:0034063  BP    19  0 1.000000000
## GO:1902644  BP    19  0 1.000000000
## GO:0072189  BP    19  0 1.000000000
## GO:0080111  BP    20  0 1.000000000
## GO:0044783  BP    20  0 1.000000000
## GO:0002755  BP    20  0 1.000000000
## GO:0032148  BP    20  0 1.000000000
## GO:0048490  BP    20  0 1.000000000
## GO:0002504  BP    20  0 1.000000000
## GO:0006525  BP    20  0 1.000000000
## GO:0048143  BP    20  0 1.000000000
## GO:0006699  BP    20  0 1.000000000
## GO:0035584  BP    20  0 1.000000000
## GO:0098743  BP    20  0 1.000000000
## GO:0061323  BP    20  0 1.000000000
## GO:0044247  BP    20  0 1.000000000
## GO:0046514  BP    20  0 1.000000000
## GO:0055064  BP    20  0 1.000000000
## GO:0060294  BP    20  0 1.000000000
## GO:0046697  BP    20  0 1.000000000
## GO:0036336  BP    20  0 1.000000000
## GO:0009200  BP    20  0 1.000000000
## GO:0050966  BP    20  0 1.000000000
## GO:0050910  BP    20  0 1.000000000
## GO:1990403  BP    20  0 1.000000000
## GO:0048557  BP    20  0 1.000000000
## GO:0048245  BP    20  0 1.000000000
## GO:0061162  BP    20  0 1.000000000
## GO:0008210  BP    20  0 1.000000000
## GO:1990182  BP    20  0 1.000000000
## GO:0042730  BP    20  0 1.000000000
## GO:0001573  BP    20  0 1.000000000
## GO:0001696  BP    20  0 1.000000000
## GO:0006688  BP    20  0 1.000000000
## GO:0070828  BP    20  0 1.000000000
## GO:0070498  BP    20  0 1.000000000
## GO:0016226  BP    20  0 1.000000000
## GO:0051383  BP    20  0 1.000000000
## GO:0006089  BP    20  0 1.000000000
## GO:0002523  BP    20  0 1.000000000
## GO:0006691  BP    20  0 1.000000000
## GO:0001946  BP    20  0 1.000000000
## GO:0006379  BP    20  0 1.000000000
## GO:0002313  BP    20  0 1.000000000
## GO:0035855  BP    20  0 1.000000000
## GO:0031163  BP    20  0 1.000000000
## GO:0072243  BP    20  0 1.000000000
## GO:0044819  BP    20  0 1.000000000
## GO:0032288  BP    20  0 1.000000000
## GO:0043011  BP    20  0 1.000000000
## GO:0045623  BP    20  0 1.000000000
## GO:1903392  BP    20  0 1.000000000
## GO:2000726  BP    20  0 1.000000000
## GO:0071157  BP    20  0 1.000000000
## GO:0051195  BP    20  0 1.000000000
## GO:0051481  BP    20  0 1.000000000
## GO:1902254  BP    20  0 1.000000000
## GO:0033033  BP    20  0 1.000000000
## GO:0002716  BP    20  0 1.000000000
## GO:0048261  BP    20  0 1.000000000
## GO:0090201  BP    20  0 1.000000000
## GO:0045986  BP    20  0 1.000000000
## GO:2000678  BP    20  0 1.000000000
## GO:0072079  BP    20  0 1.000000000
## GO:0043931  BP    20  0 1.000000000
## GO:0034377  BP    20  0 1.000000000
## GO:0034369  BP    20  0 1.000000000
## GO:0097320  BP    20  0 1.000000000
## GO:0036344  BP    20  0 1.000000000
## GO:1902993  BP    20  0 1.000000000
## GO:0033605  BP    20  0 1.000000000
## GO:0033630  BP    20  0 1.000000000
## GO:1900409  BP    20  0 1.000000000
## GO:0060252  BP    20  0 1.000000000
## GO:0045821  BP    20  0 1.000000000
## GO:0045838  BP    20  0 1.000000000
## GO:0045948  BP    20  0 1.000000000
## GO:0050434  BP    20  0 1.000000000
## GO:0018279  BP    20  0 1.000000000
## GO:0034368  BP    20  0 1.000000000
## GO:0042451  BP    20  0 1.000000000
## GO:0046129  BP    20  0 1.000000000
## GO:0046131  BP    20  0 1.000000000
## GO:0070269  BP    20  0 1.000000000
## GO:0031167  BP    20  0 1.000000000
## GO:0002577  BP    20  0 1.000000000
## GO:2000136  BP    20  0 1.000000000
## GO:0042053  BP    20  0 1.000000000
## GO:1900101  BP    20  0 1.000000000
## GO:1904994  BP    20  0 1.000000000
## GO:0045649  BP    20  0 1.000000000
## GO:0033599  BP    20  0 1.000000000
## GO:1905153  BP    20  0 1.000000000
## GO:1901028  BP    20  0 1.000000000
## GO:1900151  BP    20  0 1.000000000
## GO:1903798  BP    20  0 1.000000000
## GO:0010869  BP    20  0 1.000000000
## GO:0034143  BP    20  0 1.000000000
## GO:0060307  BP    20  0 1.000000000
## GO:0072087  BP    20  0 1.000000000
## GO:0014075  BP    20  0 1.000000000
## GO:1990776  BP    20  0 1.000000000
## GO:0010039  BP    20  0 1.000000000
## GO:0032495  BP    20  0 1.000000000
## GO:0010842  BP    20  0 1.000000000
## GO:0008090  BP    20  0 1.000000000
## GO:0034472  BP    20  0 1.000000000
## GO:0099514  BP    20  0 1.000000000
## GO:0099517  BP    20  0 1.000000000
## GO:0046653  BP    20  0 1.000000000
## GO:0070633  BP    20  0 1.000000000
## GO:0007035  BP    20  0 1.000000000
## GO:0048199  BP    20  0 1.000000000
## GO:0042178  BP    20  0 1.000000000
## GO:0043369  BP    21  0 1.000000000
## GO:0015813  BP    21  0 1.000000000
## GO:0007190  BP    21  0 1.000000000
## GO:0017000  BP    21  0 1.000000000
## GO:0008356  BP    21  0 1.000000000
## GO:0003283  BP    21  0 1.000000000
## GO:0032291  BP    21  0 1.000000000
## GO:0051016  BP    21  0 1.000000000
## GO:0022010  BP    21  0 1.000000000
## GO:0007635  BP    21  0 1.000000000
## GO:0000469  BP    21  0 1.000000000
## GO:0051220  BP    21  0 1.000000000
## GO:0050962  BP    21  0 1.000000000
## GO:0050908  BP    21  0 1.000000000
## GO:0046339  BP    21  0 1.000000000
## GO:0061339  BP    21  0 1.000000000
## GO:0097734  BP    21  0 1.000000000
## GO:0044346  BP    21  0 1.000000000
## GO:0003094  BP    21  0 1.000000000
## GO:0006541  BP    21  0 1.000000000
## GO:0006516  BP    21  0 1.000000000
## GO:0007625  BP    21  0 1.000000000
## GO:0006783  BP    21  0 1.000000000
## GO:0043984  BP    21  0 1.000000000
## GO:0060333  BP    21  0 1.000000000
## GO:0042094  BP    21  0 1.000000000
## GO:0045475  BP    21  0 1.000000000
## GO:0036303  BP    21  0 1.000000000
## GO:0000466  BP    21  0 1.000000000
## GO:0042438  BP    21  0 1.000000000
## GO:0032400  BP    21  0 1.000000000
## GO:0031579  BP    21  0 1.000000000
## GO:0072170  BP    21  0 1.000000000
## GO:0006120  BP    21  0 1.000000000
## GO:0008053  BP    21  0 1.000000000
## GO:0007095  BP    21  0 1.000000000
## GO:0046716  BP    21  0 1.000000000
## GO:1901223  BP    21  0 1.000000000
## GO:0032682  BP    21  0 1.000000000
## GO:0060457  BP    21  0 1.000000000
## GO:0046325  BP    21  0 1.000000000
## GO:0032693  BP    21  0 1.000000000
## GO:0051447  BP    21  0 1.000000000
## GO:1901017  BP    21  0 1.000000000
## GO:0001976  BP    21  0 1.000000000
## GO:0098969  BP    21  0 1.000000000
## GO:0048486  BP    21  0 1.000000000
## GO:0018196  BP    21  0 1.000000000
## GO:0035357  BP    21  0 1.000000000
## GO:0006907  BP    21  0 1.000000000
## GO:0046174  BP    21  0 1.000000000
## GO:0090050  BP    21  0 1.000000000
## GO:0032332  BP    21  0 1.000000000
## GO:0051197  BP    21  0 1.000000000
## GO:1900017  BP    21  0 1.000000000
## GO:2000193  BP    21  0 1.000000000
## GO:0010560  BP    21  0 1.000000000
## GO:0031065  BP    21  0 1.000000000
## GO:0002863  BP    21  0 1.000000000
## GO:0010759  BP    21  0 1.000000000
## GO:2001224  BP    21  0 1.000000000
## GO:0051770  BP    21  0 1.000000000
## GO:0030813  BP    21  0 1.000000000
## GO:0032930  BP    21  0 1.000000000
## GO:1901522  BP    21  0 1.000000000
## GO:0042535  BP    21  0 1.000000000
## GO:0048569  BP    21  0 1.000000000
## GO:0097107  BP    21  0 1.000000000
## GO:0015732  BP    21  0 1.000000000
## GO:0000413  BP    21  0 1.000000000
## GO:0034367  BP    21  0 1.000000000
## GO:0003177  BP    21  0 1.000000000
## GO:2000209  BP    21  0 1.000000000
## GO:0042069  BP    21  0 1.000000000
## GO:2001032  BP    21  0 1.000000000
## GO:0006349  BP    21  0 1.000000000
## GO:0051023  BP    21  0 1.000000000
## GO:2000482  BP    21  0 1.000000000
## GO:1901623  BP    21  0 1.000000000
## GO:0010743  BP    21  0 1.000000000
## GO:0051900  BP    21  0 1.000000000
## GO:1901673  BP    21  0 1.000000000
## GO:0090330  BP    21  0 1.000000000
## GO:1901626  BP    21  0 1.000000000
## GO:0070920  BP    21  0 1.000000000
## GO:0010866  BP    21  0 1.000000000
## GO:1904666  BP    21  0 1.000000000
## GO:0014808  BP    21  0 1.000000000
## GO:0019430  BP    21  0 1.000000000
## GO:0098780  BP    21  0 1.000000000
## GO:0034694  BP    21  0 1.000000000
## GO:0031290  BP    21  0 1.000000000
## GO:0000028  BP    21  0 1.000000000
## GO:0044273  BP    21  0 1.000000000
## GO:0002097  BP    21  0 1.000000000
## GO:0043586  BP    21  0 1.000000000
## GO:0071577  BP    21  0 1.000000000
## GO:0035510  BP    22  0 1.000000000
## GO:0006353  BP    22  0 1.000000000
## GO:0035493  BP    22  0 1.000000000
## GO:0060009  BP    22  0 1.000000000
## GO:0045063  BP    22  0 1.000000000
## GO:0019400  BP    22  0 1.000000000
## GO:0048532  BP    22  0 1.000000000
## GO:0009067  BP    22  0 1.000000000
## GO:0042537  BP    22  0 1.000000000
## GO:0070977  BP    22  0 1.000000000
## GO:0060602  BP    22  0 1.000000000
## GO:0072111  BP    22  0 1.000000000
## GO:0071475  BP    22  0 1.000000000
## GO:0071870  BP    22  0 1.000000000
## GO:0003433  BP    22  0 1.000000000
## GO:0030204  BP    22  0 1.000000000
## GO:0002374  BP    22  0 1.000000000
## GO:0002183  BP    22  0 1.000000000
## GO:0097062  BP    22  0 1.000000000
## GO:0098581  BP    22  0 1.000000000
## GO:0016048  BP    22  0 1.000000000
## GO:0021516  BP    22  0 1.000000000
## GO:0043153  BP    22  0 1.000000000
## GO:0051654  BP    22  0 1.000000000
## GO:1903540  BP    22  0 1.000000000
## GO:0030252  BP    22  0 1.000000000
## GO:0003418  BP    22  0 1.000000000
## GO:0044851  BP    22  0 1.000000000
## GO:0031649  BP    22  0 1.000000000
## GO:0070734  BP    22  0 1.000000000
## GO:0070841  BP    22  0 1.000000000
## GO:0060080  BP    22  0 1.000000000
## GO:0032616  BP    22  0 1.000000000
## GO:0060575  BP    22  0 1.000000000
## GO:0032367  BP    22  0 1.000000000
## GO:0032366  BP    22  0 1.000000000
## GO:0007141  BP    22  0 1.000000000
## GO:0060749  BP    22  0 1.000000000
## GO:0061377  BP    22  0 1.000000000
## GO:0072273  BP    22  0 1.000000000
## GO:0032042  BP    22  0 1.000000000
## GO:0000423  BP    22  0 1.000000000
## GO:0032780  BP    22  0 1.000000000
## GO:1901889  BP    22  0 1.000000000
## GO:0032331  BP    22  0 1.000000000
## GO:0045683  BP    22  0 1.000000000
## GO:0032691  BP    22  0 1.000000000
## GO:0046823  BP    22  0 1.000000000
## GO:2000757  BP    22  0 1.000000000
## GO:0014912  BP    22  0 1.000000000
## GO:0046597  BP    22  0 1.000000000
## GO:0032897  BP    22  0 1.000000000
## GO:0048857  BP    22  0 1.000000000
## GO:0098877  BP    22  0 1.000000000
## GO:0001780  BP    22  0 1.000000000
## GO:0015874  BP    22  0 1.000000000
## GO:0048339  BP    22  0 1.000000000
## GO:0018230  BP    22  0 1.000000000
## GO:0018231  BP    22  0 1.000000000
## GO:0090382  BP    22  0 1.000000000
## GO:0051875  BP    22  0 1.000000000
## GO:0071800  BP    22  0 1.000000000
## GO:0046641  BP    22  0 1.000000000
## GO:0050857  BP    22  0 1.000000000
## GO:0010666  BP    22  0 1.000000000
## GO:2000353  BP    22  0 1.000000000
## GO:0045606  BP    22  0 1.000000000
## GO:1903055  BP    22  0 1.000000000
## GO:0046628  BP    22  0 1.000000000
## GO:0033145  BP    22  0 1.000000000
## GO:0010884  BP    22  0 1.000000000
## GO:0033008  BP    22  0 1.000000000
## GO:0043306  BP    22  0 1.000000000
## GO:0031643  BP    22  0 1.000000000
## GO:1901741  BP    22  0 1.000000000
## GO:2000010  BP    22  0 1.000000000
## GO:1902307  BP    22  0 1.000000000
## GO:0003084  BP    22  0 1.000000000
## GO:1904469  BP    22  0 1.000000000
## GO:0099170  BP    22  0 1.000000000
## GO:0071459  BP    22  0 1.000000000
## GO:0035268  BP    22  0 1.000000000
## GO:0002864  BP    22  0 1.000000000
## GO:0032098  BP    22  0 1.000000000
## GO:0046599  BP    22  0 1.000000000
## GO:2001026  BP    22  0 1.000000000
## GO:0051797  BP    22  0 1.000000000
## GO:0032303  BP    22  0 1.000000000
## GO:0002837  BP    22  0 1.000000000
## GO:0051043  BP    22  0 1.000000000
## GO:0072215  BP    22  0 1.000000000
## GO:0032462  BP    22  0 1.000000000
## GO:1902914  BP    22  0 1.000000000
## GO:0002834  BP    22  0 1.000000000
## GO:0007063  BP    22  0 1.000000000
## GO:1905562  BP    22  0 1.000000000
## GO:1903514  BP    22  0 1.000000000
## GO:0097205  BP    22  0 1.000000000
## GO:0008535  BP    22  0 1.000000000
## GO:0010996  BP    22  0 1.000000000
## GO:0051602  BP    22  0 1.000000000
## GO:0034405  BP    22  0 1.000000000
## GO:0014850  BP    22  0 1.000000000
## GO:0036314  BP    22  0 1.000000000
## GO:0035634  BP    22  0 1.000000000
## GO:0007130  BP    22  0 1.000000000
## GO:0009404  BP    22  0 1.000000000
## GO:0060438  BP    22  0 1.000000000
## GO:0032196  BP    22  0 1.000000000
## GO:0003323  BP    22  0 1.000000000
## GO:0101023  BP    22  0 1.000000000
## GO:0099625  BP    22  0 1.000000000
## GO:0009110  BP    22  0 1.000000000
## GO:0015986  BP    23  0 1.000000000
## GO:0035743  BP    23  0 1.000000000
## GO:0022616  BP    23  0 1.000000000
## GO:0003176  BP    23  0 1.000000000
## GO:0002093  BP    23  0 1.000000000
## GO:0015721  BP    23  0 1.000000000
## GO:0022403  BP    23  0 1.000000000
## GO:0072202  BP    23  0 1.000000000
## GO:0071276  BP    23  0 1.000000000
## GO:0071359  BP    23  0 1.000000000
## GO:0071218  BP    23  0 1.000000000
## GO:0071868  BP    23  0 1.000000000
## GO:0071450  BP    23  0 1.000000000
## GO:0071467  BP    23  0 1.000000000
## GO:0071451  BP    23  0 1.000000000
## GO:0039528  BP    23  0 1.000000000
## GO:0015985  BP    23  0 1.000000000
## GO:0140112  BP    23  0 1.000000000
## GO:0008211  BP    23  0 1.000000000
## GO:0046475  BP    23  0 1.000000000
## GO:0032959  BP    23  0 1.000000000
## GO:0060972  BP    23  0 1.000000000
## GO:0034383  BP    23  0 1.000000000
## GO:0002320  BP    23  0 1.000000000
## GO:0051457  BP    23  0 1.000000000
## GO:0030539  BP    23  0 1.000000000
## GO:0097502  BP    23  0 1.000000000
## GO:0006582  BP    23  0 1.000000000
## GO:0048333  BP    23  0 1.000000000
## GO:0006346  BP    23  0 1.000000000
## GO:0007020  BP    23  0 1.000000000
## GO:1902410  BP    23  0 1.000000000
## GO:0072337  BP    23  0 1.000000000
## GO:0002903  BP    23  0 1.000000000
## GO:0043371  BP    23  0 1.000000000
## GO:0045736  BP    23  0 1.000000000
## GO:0002719  BP    23  0 1.000000000
## GO:0001911  BP    23  0 1.000000000
## GO:0050765  BP    23  0 1.000000000
## GO:1903077  BP    23  0 1.000000000
## GO:1903306  BP    23  0 1.000000000
## GO:0009648  BP    23  0 1.000000000
## GO:0000272  BP    23  0 1.000000000
## GO:0046931  BP    23  0 1.000000000
## GO:0002827  BP    23  0 1.000000000
## GO:0090190  BP    23  0 1.000000000
## GO:1903020  BP    23  0 1.000000000
## GO:0032727  BP    23  0 1.000000000
## GO:0010592  BP    23  0 1.000000000
## GO:0031954  BP    23  0 1.000000000
## GO:0032461  BP    23  0 1.000000000
## GO:1902884  BP    23  0 1.000000000
## GO:0010663  BP    23  0 1.000000000
## GO:0045943  BP    23  0 1.000000000
## GO:0032968  BP    23  0 1.000000000
## GO:0060261  BP    23  0 1.000000000
## GO:0043687  BP    23  0 1.000000000
## GO:0036010  BP    23  0 1.000000000
## GO:0006144  BP    23  0 1.000000000
## GO:0009154  BP    23  0 1.000000000
## GO:0060390  BP    23  0 1.000000000
## GO:0010874  BP    23  0 1.000000000
## GO:0099149  BP    23  0 1.000000000
## GO:0010738  BP    23  0 1.000000000
## GO:0043576  BP    23  0 1.000000000
## GO:2000831  BP    23  0 1.000000000
## GO:1900242  BP    23  0 1.000000000
## GO:0051969  BP    23  0 1.000000000
## GO:0071869  BP    23  0 1.000000000
## GO:0009261  BP    23  0 1.000000000
## GO:0006837  BP    23  0 1.000000000
## GO:0023019  BP    23  0 1.000000000
## GO:0043501  BP    23  0 1.000000000
## GO:0048485  BP    23  0 1.000000000
## GO:0045056  BP    23  0 1.000000000
## GO:0097186  BP    24  0 1.000000000
## GO:0003181  BP    24  0 1.000000000
## GO:0098869  BP    24  0 1.000000000
## GO:0071392  BP    24  0 1.000000000
## GO:0006882  BP    24  0 1.000000000
## GO:0009190  BP    24  0 1.000000000
## GO:0052652  BP    24  0 1.000000000
## GO:0060216  BP    24  0 1.000000000
## GO:0034311  BP    24  0 1.000000000
## GO:0009048  BP    24  0 1.000000000
## GO:0003272  BP    24  0 1.000000000
## GO:0072677  BP    24  0 1.000000000
## GO:0070199  BP    24  0 1.000000000
## GO:0042044  BP    24  0 1.000000000
## GO:0009065  BP    24  0 1.000000000
## GO:0016578  BP    24  0 1.000000000
## GO:0002418  BP    24  0 1.000000000
## GO:0033622  BP    24  0 1.000000000
## GO:0072643  BP    24  0 1.000000000
## GO:0072207  BP    24  0 1.000000000
## GO:0042474  BP    24  0 1.000000000
## GO:0051882  BP    24  0 1.000000000
## GO:0070584  BP    24  0 1.000000000
## GO:0006312  BP    24  0 1.000000000
## GO:0007064  BP    24  0 1.000000000
## GO:0052472  BP    24  0 1.000000000
## GO:0043921  BP    24  0 1.000000000
## GO:0019048  BP    24  0 1.000000000
## GO:0052312  BP    24  0 1.000000000
## GO:1905208  BP    24  0 1.000000000
## GO:0050687  BP    24  0 1.000000000
## GO:0045922  BP    24  0 1.000000000
## GO:0031061  BP    24  0 1.000000000
## GO:0050995  BP    24  0 1.000000000
## GO:0048025  BP    24  0 1.000000000
## GO:1903204  BP    24  0 1.000000000
## GO:1901984  BP    24  0 1.000000000
## GO:0034104  BP    24  0 1.000000000
## GO:0097150  BP    24  0 1.000000000
## GO:0021889  BP    24  0 1.000000000
## GO:0030728  BP    24  0 1.000000000
## GO:0046856  BP    24  0 1.000000000
## GO:0002693  BP    24  0 1.000000000
## GO:0045723  BP    24  0 1.000000000
## GO:2000637  BP    24  0 1.000000000
## GO:0032352  BP    24  0 1.000000000
## GO:0032753  BP    24  0 1.000000000
## GO:0032770  BP    24  0 1.000000000
## GO:0006301  BP    24  0 1.000000000
## GO:0010499  BP    24  0 1.000000000
## GO:0007205  BP    24  0 1.000000000
## GO:0065005  BP    24  0 1.000000000
## GO:0006221  BP    24  0 1.000000000
## GO:0099623  BP    24  0 1.000000000
## GO:0035561  BP    24  0 1.000000000
## GO:0048670  BP    24  0 1.000000000
## GO:0032878  BP    24  0 1.000000000
## GO:0051580  BP    24  0 1.000000000
## GO:0043496  BP    24  0 1.000000000
## GO:0033233  BP    24  0 1.000000000
## GO:1900120  BP    24  0 1.000000000
## GO:1902683  BP    24  0 1.000000000
## GO:0035813  BP    24  0 1.000000000
## GO:0032928  BP    24  0 1.000000000
## GO:0046685  BP    24  0 1.000000000
## GO:0035455  BP    24  0 1.000000000
## GO:0071867  BP    24  0 1.000000000
## GO:0042572  BP    24  0 1.000000000
## GO:0062009  BP    24  0 1.000000000
## GO:0006706  BP    24  0 1.000000000
## GO:0021544  BP    24  0 1.000000000
## GO:0034505  BP    24  0 1.000000000
## GO:0001829  BP    24  0 1.000000000
## GO:0019068  BP    24  0 1.000000000
## GO:0090114  BP    25  0 1.000000000
## GO:0095500  BP    25  0 1.000000000
## GO:0071616  BP    25  0 1.000000000
## GO:0030325  BP    25  0 1.000000000
## GO:0031100  BP    25  0 1.000000000
## GO:0002478  BP    25  0 1.000000000
## GO:0007413  BP    25  0 1.000000000
## GO:0071711  BP    25  0 1.000000000
## GO:0048148  BP    25  0 1.000000000
## GO:0048266  BP    25  0 1.000000000
## GO:0086019  BP    25  0 1.000000000
## GO:0071312  BP    25  0 1.000000000
## GO:0071234  BP    25  0 1.000000000
## GO:0021895  BP    25  0 1.000000000
## GO:0021801  BP    25  0 1.000000000
## GO:0050832  BP    25  0 1.000000000
## GO:0009595  BP    25  0 1.000000000
## GO:0032469  BP    25  0 1.000000000
## GO:0009649  BP    25  0 1.000000000
## GO:0003351  BP    25  0 1.000000000
## GO:0010669  BP    25  0 1.000000000
## GO:0085029  BP    25  0 1.000000000
## GO:0006760  BP    25  0 1.000000000
## GO:1901658  BP    25  0 1.000000000
## GO:0019320  BP    25  0 1.000000000
## GO:0043486  BP    25  0 1.000000000
## GO:0042430  BP    25  0 1.000000000
## GO:0006925  BP    25  0 1.000000000
## GO:0072606  BP    25  0 1.000000000
## GO:0010742  BP    25  0 1.000000000
## GO:0006298  BP    25  0 1.000000000
## GO:0046426  BP    25  0 1.000000000
## GO:0035024  BP    25  0 1.000000000
## GO:0090344  BP    25  0 1.000000000
## GO:2001039  BP    25  0 1.000000000
## GO:1904030  BP    25  0 1.000000000
## GO:0042059  BP    25  0 1.000000000
## GO:1903206  BP    25  0 1.000000000
## GO:0032703  BP    25  0 1.000000000
## GO:1902230  BP    25  0 1.000000000
## GO:0032515  BP    25  0 1.000000000
## GO:0120033  BP    25  0 1.000000000
## GO:1904376  BP    25  0 1.000000000
## GO:1901032  BP    25  0 1.000000000
## GO:1903671  BP    25  0 1.000000000
## GO:2000737  BP    25  0 1.000000000
## GO:0010894  BP    25  0 1.000000000
## GO:0045939  BP    25  0 1.000000000
## GO:1905809  BP    25  0 1.000000000
## GO:1904357  BP    25  0 1.000000000
## GO:0032480  BP    25  0 1.000000000
## GO:0070050  BP    25  0 1.000000000
## GO:0106030  BP    25  0 1.000000000
## GO:0098810  BP    25  0 1.000000000
## GO:0030903  BP    25  0 1.000000000
## GO:0000289  BP    25  0 1.000000000
## GO:0043171  BP    25  0 1.000000000
## GO:0018200  BP    25  0 1.000000000
## GO:0014821  BP    25  0 1.000000000
## GO:0006817  BP    25  0 1.000000000
## GO:0031639  BP    25  0 1.000000000
## GO:0030194  BP    25  0 1.000000000
## GO:0090280  BP    25  0 1.000000000
## GO:0032376  BP    25  0 1.000000000
## GO:0045737  BP    25  0 1.000000000
## GO:0045648  BP    25  0 1.000000000
## GO:0051894  BP    25  0 1.000000000
## GO:1900048  BP    25  0 1.000000000
## GO:0061213  BP    25  0 1.000000000
## GO:0071677  BP    25  0 1.000000000
## GO:0001956  BP    25  0 1.000000000
## GO:0090023  BP    25  0 1.000000000
## GO:0060148  BP    25  0 1.000000000
## GO:1901798  BP    25  0 1.000000000
## GO:0032373  BP    25  0 1.000000000
## GO:0034123  BP    25  0 1.000000000
## GO:2000679  BP    25  0 1.000000000
## GO:0051443  BP    25  0 1.000000000
## GO:0010575  BP    25  0 1.000000000
## GO:0001516  BP    25  0 1.000000000
## GO:0046457  BP    25  0 1.000000000
## GO:0018126  BP    25  0 1.000000000
## GO:0051205  BP    25  0 1.000000000
## GO:0032800  BP    25  0 1.000000000
## GO:0060004  BP    25  0 1.000000000
## GO:2000765  BP    25  0 1.000000000
## GO:1903649  BP    25  0 1.000000000
## GO:1903747  BP    25  0 1.000000000
## GO:0014048  BP    25  0 1.000000000
## GO:1905939  BP    25  0 1.000000000
## GO:0034114  BP    25  0 1.000000000
## GO:0043567  BP    25  0 1.000000000
## GO:0090140  BP    25  0 1.000000000
## GO:1901739  BP    25  0 1.000000000
## GO:0150077  BP    25  0 1.000000000
## GO:0010640  BP    25  0 1.000000000
## GO:0070861  BP    25  0 1.000000000
## GO:0032104  BP    25  0 1.000000000
## GO:0032107  BP    25  0 1.000000000
## GO:0060338  BP    25  0 1.000000000
## GO:1904752  BP    25  0 1.000000000
## GO:0010165  BP    25  0 1.000000000
## GO:0046688  BP    25  0 1.000000000
## GO:0055094  BP    25  0 1.000000000
## GO:0051788  BP    25  0 1.000000000
## GO:0080053  BP    25  0 1.000000000
## GO:0042573  BP    25  0 1.000000000
## GO:0050951  BP    25  0 1.000000000
## GO:1903831  BP    25  0 1.000000000
## GO:0021513  BP    25  0 1.000000000
## GO:0031629  BP    25  0 1.000000000
## GO:0070193  BP    25  0 1.000000000
## GO:0022030  BP    25  0 1.000000000
## GO:0035384  BP    25  0 1.000000000
## GO:0042403  BP    25  0 1.000000000
## GO:1904738  BP    25  0 1.000000000
## GO:0055069  BP    25  0 1.000000000
## GO:0000737  BP    26  0 1.000000000
## GO:0051123  BP    26  0 1.000000000
## GO:0089718  BP    26  0 1.000000000
## GO:0006026  BP    26  0 1.000000000
## GO:0048799  BP    26  0 1.000000000
## GO:0045117  BP    26  0 1.000000000
## GO:0014898  BP    26  0 1.000000000
## GO:0055003  BP    26  0 1.000000000
## GO:0009713  BP    26  0 1.000000000
## GO:0042423  BP    26  0 1.000000000
## GO:0071474  BP    26  0 1.000000000
## GO:0071549  BP    26  0 1.000000000
## GO:0007620  BP    26  0 1.000000000
## GO:0007549  BP    26  0 1.000000000
## GO:0072575  BP    26  0 1.000000000
## GO:0061436  BP    26  0 1.000000000
## GO:0090077  BP    26  0 1.000000000
## GO:0072012  BP    26  0 1.000000000
## GO:1901071  BP    26  0 1.000000000
## GO:0071425  BP    26  0 1.000000000
## GO:0072574  BP    26  0 1.000000000
## GO:0033522  BP    26  0 1.000000000
## GO:0045109  BP    26  0 1.000000000
## GO:0006891  BP    26  0 1.000000000
## GO:0060716  BP    26  0 1.000000000
## GO:0016556  BP    26  0 1.000000000
## GO:0009299  BP    26  0 1.000000000
## GO:0000460  BP    26  0 1.000000000
## GO:0034453  BP    26  0 1.000000000
## GO:0032528  BP    26  0 1.000000000
## GO:0099010  BP    26  0 1.000000000
## GO:0003299  BP    26  0 1.000000000
## GO:1903579  BP    26  0 1.000000000
## GO:1904893  BP    26  0 1.000000000
## GO:0070233  BP    26  0 1.000000000
## GO:0050858  BP    26  0 1.000000000
## GO:0070168  BP    26  0 1.000000000
## GO:2000780  BP    26  0 1.000000000
## GO:0010829  BP    26  0 1.000000000
## GO:1901380  BP    26  0 1.000000000
## GO:0048642  BP    26  0 1.000000000
## GO:0051497  BP    26  0 1.000000000
## GO:0007263  BP    26  0 1.000000000
## GO:0051767  BP    26  0 1.000000000
## GO:0006730  BP    26  0 1.000000000
## GO:0006779  BP    26  0 1.000000000
## GO:0042104  BP    26  0 1.000000000
## GO:1900078  BP    26  0 1.000000000
## GO:0045742  BP    26  0 1.000000000
## GO:1900273  BP    26  0 1.000000000
## GO:1905523  BP    26  0 1.000000000
## GO:0010863  BP    26  0 1.000000000
## GO:0050927  BP    26  0 1.000000000
## GO:2000738  BP    26  0 1.000000000
## GO:0090208  BP    26  0 1.000000000
## GO:0036342  BP    26  0 1.000000000
## GO:0034067  BP    26  0 1.000000000
## GO:0006213  BP    26  0 1.000000000
## GO:0000154  BP    26  0 1.000000000
## GO:2000311  BP    26  0 1.000000000
## GO:0051125  BP    26  0 1.000000000
## GO:0045761  BP    26  0 1.000000000
## GO:1903010  BP    26  0 1.000000000
## GO:0090189  BP    26  0 1.000000000
## GO:0098901  BP    26  0 1.000000000
## GO:0007176  BP    26  0 1.000000000
## GO:0051570  BP    26  0 1.000000000
## GO:0070129  BP    26  0 1.000000000
## GO:0090025  BP    26  0 1.000000000
## GO:0051769  BP    26  0 1.000000000
## GO:2000050  BP    26  0 1.000000000
## GO:0033688  BP    26  0 1.000000000
## GO:1902175  BP    26  0 1.000000000
## GO:1902473  BP    26  0 1.000000000
## GO:0010155  BP    26  0 1.000000000
## GO:1904353  BP    26  0 1.000000000
## GO:0035809  BP    26  0 1.000000000
## GO:0035812  BP    26  0 1.000000000
## GO:0000303  BP    26  0 1.000000000
## GO:0016180  BP    26  0 1.000000000
## GO:0007289  BP    26  0 1.000000000
## GO:0035929  BP    26  0 1.000000000
## GO:0016082  BP    26  0 1.000000000
## GO:0019433  BP    26  0 1.000000000
## GO:0060065  BP    26  0 1.000000000
## GO:0099500  BP    26  0 1.000000000
## GO:0009394  BP    27  0 1.000000000
## GO:0036037  BP    27  0 1.000000000
## GO:0031365  BP    27  0 1.000000000
## GO:0060008  BP    27  0 1.000000000
## GO:0003171  BP    27  0 1.000000000
## GO:0060219  BP    27  0 1.000000000
## GO:0014887  BP    27  0 1.000000000
## GO:0060536  BP    27  0 1.000000000
## GO:0021533  BP    27  0 1.000000000
## GO:1905145  BP    27  0 1.000000000
## GO:0071361  BP    27  0 1.000000000
## GO:0071402  BP    27  0 1.000000000
## GO:0071472  BP    27  0 1.000000000
## GO:0090103  BP    27  0 1.000000000
## GO:0019692  BP    27  0 1.000000000
## GO:0008340  BP    27  0 1.000000000
## GO:0035987  BP    27  0 1.000000000
## GO:1903513  BP    27  0 1.000000000
## GO:0032509  BP    27  0 1.000000000
## GO:0021871  BP    27  0 1.000000000
## GO:0007214  BP    27  0 1.000000000
## GO:0016577  BP    27  0 1.000000000
## GO:0070076  BP    27  0 1.000000000
## GO:0030212  BP    27  0 1.000000000
## GO:0042538  BP    27  0 1.000000000
## GO:0048305  BP    27  0 1.000000000
## GO:0032957  BP    27  0 1.000000000
## GO:0032365  BP    27  0 1.000000000
## GO:0061440  BP    27  0 1.000000000
## GO:0060713  BP    27  0 1.000000000
## GO:0050901  BP    27  0 1.000000000
## GO:0006376  BP    27  0 1.000000000
## GO:0000470  BP    27  0 1.000000000
## GO:0002335  BP    27  0 1.000000000
## GO:0003338  BP    27  0 1.000000000
## GO:0051560  BP    27  0 1.000000000
## GO:0045738  BP    27  0 1.000000000
## GO:1901185  BP    27  0 1.000000000
## GO:0046639  BP    27  0 1.000000000
## GO:0048843  BP    27  0 1.000000000
## GO:0050849  BP    27  0 1.000000000
## GO:0031342  BP    27  0 1.000000000
## GO:0051354  BP    27  0 1.000000000
## GO:0061099  BP    27  0 1.000000000
## GO:1900543  BP    27  0 1.000000000
## GO:2000272  BP    27  0 1.000000000
## GO:0003085  BP    27  0 1.000000000
## GO:0009163  BP    27  0 1.000000000
## GO:0018195  BP    27  0 1.000000000
## GO:0045332  BP    27  0 1.000000000
## GO:0010971  BP    27  0 1.000000000
## GO:0046852  BP    27  0 1.000000000
## GO:0045780  BP    27  0 1.000000000
## GO:0045956  BP    27  0 1.000000000
## GO:2000727  BP    27  0 1.000000000
## GO:0060045  BP    27  0 1.000000000
## GO:0042753  BP    27  0 1.000000000
## GO:1903861  BP    27  0 1.000000000
## GO:0061003  BP    27  0 1.000000000
## GO:0071624  BP    27  0 1.000000000
## GO:0010460  BP    27  0 1.000000000
## GO:0045830  BP    27  0 1.000000000
## GO:1903489  BP    27  0 1.000000000
## GO:0050996  BP    27  0 1.000000000
## GO:0002052  BP    27  0 1.000000000
## GO:1901018  BP    27  0 1.000000000
## GO:0010954  BP    27  0 1.000000000
## GO:0010893  BP    27  0 1.000000000
## GO:0036003  BP    27  0 1.000000000
## GO:0071108  BP    27  0 1.000000000
## GO:0006515  BP    27  0 1.000000000
## GO:0072528  BP    27  0 1.000000000
## GO:0032801  BP    27  0 1.000000000
## GO:0032925  BP    27  0 1.000000000
## GO:1901532  BP    27  0 1.000000000
## GO:0045408  BP    27  0 1.000000000
## GO:0031440  BP    27  0 1.000000000
## GO:0032069  BP    27  0 1.000000000
## GO:0050926  BP    27  0 1.000000000
## GO:0003071  BP    27  0 1.000000000
## GO:0061437  BP    27  0 1.000000000
## GO:0045730  BP    27  0 1.000000000
## GO:1905144  BP    27  0 1.000000000
## GO:0000305  BP    27  0 1.000000000
## GO:0002347  BP    27  0 1.000000000
## GO:0061298  BP    27  0 1.000000000
## GO:0030970  BP    27  0 1.000000000
## GO:0042455  BP    27  0 1.000000000
## GO:0044550  BP    27  0 1.000000000
## GO:0048745  BP    27  0 1.000000000
## GO:0021511  BP    27  0 1.000000000
## GO:0033014  BP    27  0 1.000000000
## GO:0045061  BP    27  0 1.000000000
## GO:0030878  BP    27  0 1.000000000
## GO:0060343  BP    27  0 1.000000000
## GO:0044342  BP    27  0 1.000000000
## GO:0014829  BP    27  0 1.000000000
## GO:0039694  BP    27  0 1.000000000
## GO:0002360  BP    28  0 1.000000000
## GO:0060444  BP    28  0 1.000000000
## GO:0060445  BP    28  0 1.000000000
## GO:0061311  BP    28  0 1.000000000
## GO:0021952  BP    28  0 1.000000000
## GO:0034508  BP    28  0 1.000000000
## GO:0021697  BP    28  0 1.000000000
## GO:0002029  BP    28  0 1.000000000
## GO:0048596  BP    28  0 1.000000000
## GO:0035162  BP    28  0 1.000000000
## GO:1904861  BP    28  0 1.000000000
## GO:0010458  BP    28  0 1.000000000
## GO:0002068  BP    28  0 1.000000000
## GO:0048820  BP    28  0 1.000000000
## GO:0060384  BP    28  0 1.000000000
## GO:0042226  BP    28  0 1.000000000
## GO:0036297  BP    28  0 1.000000000
## GO:0002089  BP    28  0 1.000000000
## GO:0034204  BP    28  0 1.000000000
## GO:0072576  BP    28  0 1.000000000
## GO:0001945  BP    28  0 1.000000000
## GO:0051307  BP    28  0 1.000000000
## GO:0044003  BP    28  0 1.000000000
## GO:0044788  BP    28  0 1.000000000
## GO:0022401  BP    28  0 1.000000000
## GO:1902668  BP    28  0 1.000000000
## GO:0048521  BP    28  0 1.000000000
## GO:0045992  BP    28  0 1.000000000
## GO:0010719  BP    28  0 1.000000000
## GO:0045822  BP    28  0 1.000000000
## GO:0032369  BP    28  0 1.000000000
## GO:2000178  BP    28  0 1.000000000
## GO:0051589  BP    28  0 1.000000000
## GO:0045980  BP    28  0 1.000000000
## GO:0032891  BP    28  0 1.000000000
## GO:0045671  BP    28  0 1.000000000
## GO:0001759  BP    28  0 1.000000000
## GO:0035335  BP    28  0 1.000000000
## GO:0060039  BP    28  0 1.000000000
## GO:0060037  BP    28  0 1.000000000
## GO:1901186  BP    28  0 1.000000000
## GO:1902932  BP    28  0 1.000000000
## GO:0051957  BP    28  0 1.000000000
## GO:1903846  BP    28  0 1.000000000
## GO:0051984  BP    28  0 1.000000000
## GO:0045724  BP    28  0 1.000000000
## GO:0050820  BP    28  0 1.000000000
## GO:0051194  BP    28  0 1.000000000
## GO:1904031  BP    28  0 1.000000000
## GO:0043032  BP    28  0 1.000000000
## GO:0051446  BP    28  0 1.000000000
## GO:0045663  BP    28  0 1.000000000
## GO:1900745  BP    28  0 1.000000000
## GO:0090312  BP    28  0 1.000000000
## GO:0090314  BP    28  0 1.000000000
## GO:0090200  BP    28  0 1.000000000
## GO:0030511  BP    28  0 1.000000000
## GO:0098698  BP    28  0 1.000000000
## GO:0071168  BP    28  0 1.000000000
## GO:0070198  BP    28  0 1.000000000
## GO:0006195  BP    28  0 1.000000000
## GO:1904292  BP    28  0 1.000000000
## GO:2000310  BP    28  0 1.000000000
## GO:0060765  BP    28  0 1.000000000
## GO:0061050  BP    28  0 1.000000000
## GO:0045187  BP    28  0 1.000000000
## GO:0080154  BP    28  0 1.000000000
## GO:0010962  BP    28  0 1.000000000
## GO:0005979  BP    28  0 1.000000000
## GO:0031063  BP    28  0 1.000000000
## GO:0032647  BP    28  0 1.000000000
## GO:0061217  BP    28  0 1.000000000
## GO:0010939  BP    28  0 1.000000000
## GO:0045589  BP    28  0 1.000000000
## GO:0090169  BP    28  0 1.000000000
## GO:0033198  BP    28  0 1.000000000
## GO:0007530  BP    28  0 1.000000000
## GO:0048103  BP    28  0 1.000000000
## GO:0006929  BP    28  0 1.000000000
## GO:0002507  BP    28  0 1.000000000
## GO:0086005  BP    28  0 1.000000000
## GO:0006270  BP    29  0 1.000000000
## GO:0006336  BP    29  0 1.000000000
## GO:0000731  BP    29  0 1.000000000
## GO:0046039  BP    29  0 1.000000000
## GO:0006734  BP    29  0 1.000000000
## GO:0031295  BP    29  0 1.000000000
## GO:0071880  BP    29  0 1.000000000
## GO:0043090  BP    29  0 1.000000000
## GO:0030262  BP    29  0 1.000000000
## GO:0060117  BP    29  0 1.000000000
## GO:0008206  BP    29  0 1.000000000
## GO:0099622  BP    29  0 1.000000000
## GO:0034629  BP    29  0 1.000000000
## GO:0071480  BP    29  0 1.000000000
## GO:0071353  BP    29  0 1.000000000
## GO:0071354  BP    29  0 1.000000000
## GO:0003413  BP    29  0 1.000000000
## GO:0050802  BP    29  0 1.000000000
## GO:0006536  BP    29  0 1.000000000
## GO:0060914  BP    29  0 1.000000000
## GO:0007007  BP    29  0 1.000000000
## GO:0045292  BP    29  0 1.000000000
## GO:0030318  BP    29  0 1.000000000
## GO:0010586  BP    29  0 1.000000000
## GO:0097345  BP    29  0 1.000000000
## GO:0030224  BP    29  0 1.000000000
## GO:1903131  BP    29  0 1.000000000
## GO:0046365  BP    29  0 1.000000000
## GO:0060571  BP    29  0 1.000000000
## GO:0044458  BP    29  0 1.000000000
## GO:0033119  BP    29  0 1.000000000
## GO:0043951  BP    29  0 1.000000000
## GO:1902042  BP    29  0 1.000000000
## GO:0033137  BP    29  0 1.000000000
## GO:0099637  BP    29  0 1.000000000
## GO:0042119  BP    29  0 1.000000000
## GO:0033687  BP    29  0 1.000000000
## GO:0003148  BP    29  0 1.000000000
## GO:0007602  BP    29  0 1.000000000
## GO:0002230  BP    29  0 1.000000000
## GO:0031116  BP    29  0 1.000000000
## GO:0033141  BP    29  0 1.000000000
## GO:0010800  BP    29  0 1.000000000
## GO:0043552  BP    29  0 1.000000000
## GO:1903319  BP    29  0 1.000000000
## GO:0002092  BP    29  0 1.000000000
## GO:0099632  BP    29  0 1.000000000
## GO:0090181  BP    29  0 1.000000000
## GO:1902235  BP    29  0 1.000000000
## GO:1903487  BP    29  0 1.000000000
## GO:0001919  BP    29  0 1.000000000
## GO:1900027  BP    29  0 1.000000000
## GO:0034391  BP    29  0 1.000000000
## GO:0060260  BP    29  0 1.000000000
## GO:0071548  BP    29  0 1.000000000
## GO:0033273  BP    29  0 1.000000000
## GO:1990126  BP    29  0 1.000000000
## GO:0070296  BP    29  0 1.000000000
## GO:0072422  BP    29  0 1.000000000
## GO:0072401  BP    29  0 1.000000000
## GO:0072395  BP    29  0 1.000000000
## GO:0034390  BP    29  0 1.000000000
## GO:0030149  BP    29  0 1.000000000
## GO:0030488  BP    29  0 1.000000000
## GO:0034724  BP    30  0 1.000000000
## GO:0002438  BP    30  0 1.000000000
## GO:0023058  BP    30  0 1.000000000
## GO:0008608  BP    30  0 1.000000000
## GO:0060317  BP    30  0 1.000000000
## GO:0006921  BP    30  0 1.000000000
## GO:0051085  BP    30  0 1.000000000
## GO:0050654  BP    30  0 1.000000000
## GO:0021602  BP    30  0 1.000000000
## GO:0021904  BP    30  0 1.000000000
## GO:0035767  BP    30  0 1.000000000
## GO:0090505  BP    30  0 1.000000000
## GO:0000132  BP    30  0 1.000000000
## GO:0035640  BP    30  0 1.000000000
## GO:0022617  BP    30  0 1.000000000
## GO:0042168  BP    30  0 1.000000000
## GO:0015012  BP    30  0 1.000000000
## GO:0035329  BP    30  0 1.000000000
## GO:0010390  BP    30  0 1.000000000
## GO:0042744  BP    30  0 1.000000000
## GO:0032607  BP    30  0 1.000000000
## GO:0070306  BP    30  0 1.000000000
## GO:0022011  BP    30  0 1.000000000
## GO:0061082  BP    30  0 1.000000000
## GO:0070266  BP    30  0 1.000000000
## GO:0034260  BP    30  0 1.000000000
## GO:0055022  BP    30  0 1.000000000
## GO:0061037  BP    30  0 1.000000000
## GO:0061117  BP    30  0 1.000000000
## GO:0032692  BP    30  0 1.000000000
## GO:0016242  BP    30  0 1.000000000
## GO:0031645  BP    30  0 1.000000000
## GO:0099645  BP    30  0 1.000000000
## GO:0032292  BP    30  0 1.000000000
## GO:1902751  BP    30  0 1.000000000
## GO:0035066  BP    30  0 1.000000000
## GO:2000778  BP    30  0 1.000000000
## GO:1902745  BP    30  0 1.000000000
## GO:0048026  BP    30  0 1.000000000
## GO:0033005  BP    30  0 1.000000000
## GO:0048714  BP    30  0 1.000000000
## GO:0010922  BP    30  0 1.000000000
## GO:0048643  BP    30  0 1.000000000
## GO:0060143  BP    30  0 1.000000000
## GO:0008214  BP    30  0 1.000000000
## GO:0006482  BP    30  0 1.000000000
## GO:0099633  BP    30  0 1.000000000
## GO:0042026  BP    30  0 1.000000000
## GO:0009303  BP    30  0 1.000000000
## GO:0002902  BP    30  0 1.000000000
## GO:0002724  BP    30  0 1.000000000
## GO:0002825  BP    30  0 1.000000000
## GO:1902003  BP    30  0 1.000000000
## GO:1903859  BP    30  0 1.000000000
## GO:0044062  BP    30  0 1.000000000
## GO:1900117  BP    30  0 1.000000000
## GO:0051569  BP    30  0 1.000000000
## GO:0034110  BP    30  0 1.000000000
## GO:0032673  BP    30  0 1.000000000
## GO:1902253  BP    30  0 1.000000000
## GO:0042481  BP    30  0 1.000000000
## GO:1900274  BP    30  0 1.000000000
## GO:0042534  BP    30  0 1.000000000
## GO:0010803  BP    30  0 1.000000000
## GO:0031297  BP    30  0 1.000000000
## GO:0010043  BP    30  0 1.000000000
## GO:0048384  BP    30  0 1.000000000
## GO:0042533  BP    30  0 1.000000000
## GO:0003309  BP    30  0 1.000000000
## GO:0000038  BP    30  0 1.000000000
## GO:0044319  BP    30  0 1.000000000
## GO:0006829  BP    30  0 1.000000000
## GO:0006335  BP    31  0 1.000000000
## GO:0034723  BP    31  0 1.000000000
## GO:0006506  BP    31  0 1.000000000
## GO:0071875  BP    31  0 1.000000000
## GO:0043276  BP    31  0 1.000000000
## GO:0019884  BP    31  0 1.000000000
## GO:1903963  BP    31  0 1.000000000
## GO:0050482  BP    31  0 1.000000000
## GO:0097352  BP    31  0 1.000000000
## GO:0001832  BP    31  0 1.000000000
## GO:0060795  BP    31  0 1.000000000
## GO:0006884  BP    31  0 1.000000000
## GO:0009584  BP    31  0 1.000000000
## GO:0001958  BP    31  0 1.000000000
## GO:0090504  BP    31  0 1.000000000
## GO:0019373  BP    31  0 1.000000000
## GO:0090162  BP    31  0 1.000000000
## GO:1901659  BP    31  0 1.000000000
## GO:0060218  BP    31  0 1.000000000
## GO:0008299  BP    31  0 1.000000000
## GO:0048535  BP    31  0 1.000000000
## GO:0031294  BP    31  0 1.000000000
## GO:0061157  BP    31  0 1.000000000
## GO:0001893  BP    31  0 1.000000000
## GO:0000462  BP    31  0 1.000000000
## GO:0086010  BP    31  0 1.000000000
## GO:0044818  BP    31  0 1.000000000
## GO:2000515  BP    31  0 1.000000000
## GO:0032232  BP    31  0 1.000000000
## GO:0043537  BP    31  0 1.000000000
## GO:1901020  BP    31  0 1.000000000
## GO:0010614  BP    31  0 1.000000000
## GO:0042036  BP    31  0 1.000000000
## GO:2000352  BP    31  0 1.000000000
## GO:0045920  BP    31  0 1.000000000
## GO:0045932  BP    31  0 1.000000000
## GO:0045662  BP    31  0 1.000000000
## GO:1905476  BP    31  0 1.000000000
## GO:1901797  BP    31  0 1.000000000
## GO:0048011  BP    31  0 1.000000000
## GO:0009225  BP    31  0 1.000000000
## GO:0001556  BP    31  0 1.000000000
## GO:2000144  BP    31  0 1.000000000
## GO:1903393  BP    31  0 1.000000000
## GO:0061036  BP    31  0 1.000000000
## GO:0032967  BP    31  0 1.000000000
## GO:2000781  BP    31  0 1.000000000
## GO:0051491  BP    31  0 1.000000000
## GO:0050718  BP    31  0 1.000000000
## GO:0043302  BP    31  0 1.000000000
## GO:0032816  BP    31  0 1.000000000
## GO:0140239  BP    31  0 1.000000000
## GO:0098884  BP    31  0 1.000000000
## GO:0055075  BP    31  0 1.000000000
## GO:0070979  BP    31  0 1.000000000
## GO:0070536  BP    31  0 1.000000000
## GO:1901661  BP    31  0 1.000000000
## GO:0044030  BP    31  0 1.000000000
## GO:0043457  BP    31  0 1.000000000
## GO:0042749  BP    31  0 1.000000000
## GO:0042634  BP    31  0 1.000000000
## GO:0010758  BP    31  0 1.000000000
## GO:0045652  BP    31  0 1.000000000
## GO:0060632  BP    31  0 1.000000000
## GO:0090022  BP    31  0 1.000000000
## GO:0050999  BP    31  0 1.000000000
## GO:0033139  BP    31  0 1.000000000
## GO:2001014  BP    31  0 1.000000000
## GO:1903421  BP    31  0 1.000000000
## GO:0002026  BP    31  0 1.000000000
## GO:0002828  BP    31  0 1.000000000
## GO:0010574  BP    31  0 1.000000000
## GO:0033561  BP    31  0 1.000000000
## GO:0045066  BP    31  0 1.000000000
## GO:0090075  BP    31  0 1.000000000
## GO:0036075  BP    31  0 1.000000000
## GO:0070670  BP    31  0 1.000000000
## GO:0070741  BP    31  0 1.000000000
## GO:1905314  BP    31  0 1.000000000
## GO:0000387  BP    31  0 1.000000000
## GO:0060074  BP    31  0 1.000000000
## GO:0099560  BP    31  0 1.000000000
## GO:0006099  BP    31  0 1.000000000
## GO:0006767  BP    31  0 1.000000000
## GO:0032508  BP    32  0 1.000000000
## GO:0031572  BP    32  0 1.000000000
## GO:0006505  BP    32  0 1.000000000
## GO:0097242  BP    32  0 1.000000000
## GO:0002486  BP    32  0 1.000000000
## GO:0060561  BP    32  0 1.000000000
## GO:0070286  BP    32  0 1.000000000
## GO:0060706  BP    32  0 1.000000000
## GO:1904646  BP    32  0 1.000000000
## GO:0051642  BP    32  0 1.000000000
## GO:0022410  BP    32  0 1.000000000
## GO:0006101  BP    32  0 1.000000000
## GO:0048668  BP    32  0 1.000000000
## GO:0060977  BP    32  0 1.000000000
## GO:0017004  BP    32  0 1.000000000
## GO:0009262  BP    32  0 1.000000000
## GO:0048048  BP    32  0 1.000000000
## GO:0060669  BP    32  0 1.000000000
## GO:0046466  BP    32  0 1.000000000
## GO:0071985  BP    32  0 1.000000000
## GO:0001779  BP    32  0 1.000000000
## GO:0034661  BP    32  0 1.000000000
## GO:0032689  BP    32  0 1.000000000
## GO:0050686  BP    32  0 1.000000000
## GO:1900181  BP    32  0 1.000000000
## GO:0007274  BP    32  0 1.000000000
## GO:0036475  BP    32  0 1.000000000
## GO:0002446  BP    32  0 1.000000000
## GO:0007097  BP    32  0 1.000000000
## GO:0007031  BP    32  0 1.000000000
## GO:2001171  BP    32  0 1.000000000
## GO:0035025  BP    32  0 1.000000000
## GO:0032728  BP    32  0 1.000000000
## GO:0032743  BP    32  0 1.000000000
## GO:1902110  BP    32  0 1.000000000
## GO:0045672  BP    32  0 1.000000000
## GO:0043243  BP    32  0 1.000000000
## GO:0032212  BP    32  0 1.000000000
## GO:0006623  BP    32  0 1.000000000
## GO:0042558  BP    32  0 1.000000000
## GO:0006220  BP    32  0 1.000000000
## GO:0045577  BP    32  0 1.000000000
## GO:0010453  BP    32  0 1.000000000
## GO:2000191  BP    32  0 1.000000000
## GO:0040036  BP    32  0 1.000000000
## GO:0045616  BP    32  0 1.000000000
## GO:0010591  BP    32  0 1.000000000
## GO:0060306  BP    32  0 1.000000000
## GO:1903203  BP    32  0 1.000000000
## GO:0051150  BP    32  0 1.000000000
## GO:0030947  BP    32  0 1.000000000
## GO:1902186  BP    32  0 1.000000000
## GO:0003016  BP    32  0 1.000000000
## GO:0001964  BP    32  0 1.000000000
## GO:0051180  BP    32  0 1.000000000
## GO:0034314  BP    33  0 1.000000000
## GO:0006308  BP    33  0 1.000000000
## GO:0050779  BP    33  0 1.000000000
## GO:0014044  BP    33  0 1.000000000
## GO:0006084  BP    33  0 1.000000000
## GO:0002484  BP    33  0 1.000000000
## GO:0002476  BP    33  0 1.000000000
## GO:0021680  BP    33  0 1.000000000
## GO:0048566  BP    33  0 1.000000000
## GO:0001706  BP    33  0 1.000000000
## GO:0035883  BP    33  0 1.000000000
## GO:0048013  BP    33  0 1.000000000
## GO:0040001  BP    33  0 1.000000000
## GO:0006775  BP    33  0 1.000000000
## GO:0060487  BP    33  0 1.000000000
## GO:0033598  BP    33  0 1.000000000
## GO:0071709  BP    33  0 1.000000000
## GO:0061842  BP    33  0 1.000000000
## GO:0099563  BP    33  0 1.000000000
## GO:0010667  BP    33  0 1.000000000
## GO:2001240  BP    33  0 1.000000000
## GO:0007026  BP    33  0 1.000000000
## GO:0014741  BP    33  0 1.000000000
## GO:1901099  BP    33  0 1.000000000
## GO:0045879  BP    33  0 1.000000000
## GO:0071827  BP    33  0 1.000000000
## GO:0043950  BP    33  0 1.000000000
## GO:1901890  BP    33  0 1.000000000
## GO:0032467  BP    33  0 1.000000000
## GO:0090218  BP    33  0 1.000000000
## GO:0031112  BP    33  0 1.000000000
## GO:0045070  BP    33  0 1.000000000
## GO:0060740  BP    33  0 1.000000000
## GO:0071539  BP    33  0 1.000000000
## GO:0045047  BP    33  0 1.000000000
## GO:1903146  BP    33  0 1.000000000
## GO:0048841  BP    33  0 1.000000000
## GO:0002691  BP    33  0 1.000000000
## GO:0086091  BP    33  0 1.000000000
## GO:1903205  BP    33  0 1.000000000
## GO:0032660  BP    33  0 1.000000000
## GO:0010837  BP    33  0 1.000000000
## GO:0002082  BP    33  0 1.000000000
## GO:0010543  BP    33  0 1.000000000
## GO:1905606  BP    33  0 1.000000000
## GO:2000036  BP    33  0 1.000000000
## GO:0003081  BP    33  0 1.000000000
## GO:1904467  BP    33  0 1.000000000
## GO:0046596  BP    33  0 1.000000000
## GO:0035094  BP    33  0 1.000000000
## GO:0048240  BP    33  0 1.000000000
## GO:0007271  BP    33  0 1.000000000
## GO:0034142  BP    33  0 1.000000000
## GO:0070897  BP    33  0 1.000000000
## GO:0010573  BP    33  0 1.000000000
## GO:0021591  BP    33  0 1.000000000
## GO:0006984  BP    34  0 1.000000000
## GO:0048194  BP    34  0 1.000000000
## GO:0006739  BP    34  0 1.000000000
## GO:0000186  BP    34  0 1.000000000
## GO:0002428  BP    34  0 1.000000000
## GO:0003209  BP    34  0 1.000000000
## GO:0044275  BP    34  0 1.000000000
## GO:0042832  BP    34  0 1.000000000
## GO:0003203  BP    34  0 1.000000000
## GO:0035890  BP    34  0 1.000000000
## GO:0035891  BP    34  0 1.000000000
## GO:0140115  BP    34  0 1.000000000
## GO:0014047  BP    34  0 1.000000000
## GO:0031069  BP    34  0 1.000000000
## GO:0060479  BP    34  0 1.000000000
## GO:0000002  BP    34  0 1.000000000
## GO:1902686  BP    34  0 1.000000000
## GO:0008045  BP    34  0 1.000000000
## GO:0052192  BP    34  0 1.000000000
## GO:0052126  BP    34  0 1.000000000
## GO:0001773  BP    34  0 1.000000000
## GO:0032435  BP    34  0 1.000000000
## GO:0009311  BP    34  0 1.000000000
## GO:0018208  BP    34  0 1.000000000
## GO:2000406  BP    34  0 1.000000000
## GO:0010714  BP    34  0 1.000000000
## GO:0050716  BP    34  0 1.000000000
## GO:1902624  BP    34  0 1.000000000
## GO:2000758  BP    34  0 1.000000000
## GO:1905898  BP    34  0 1.000000000
## GO:0099068  BP    34  0 1.000000000
## GO:0060512  BP    34  0 1.000000000
## GO:0010737  BP    34  0 1.000000000
## GO:1905508  BP    34  0 1.000000000
## GO:0018345  BP    34  0 1.000000000
## GO:2000785  BP    34  0 1.000000000
## GO:0048679  BP    34  0 1.000000000
## GO:1901976  BP    34  0 1.000000000
## GO:1903429  BP    34  0 1.000000000
## GO:0033032  BP    34  0 1.000000000
## GO:0090313  BP    34  0 1.000000000
## GO:0090322  BP    34  0 1.000000000
## GO:0006356  BP    34  0 1.000000000
## GO:0071634  BP    34  0 1.000000000
## GO:0031338  BP    34  0 1.000000000
## GO:0097366  BP    34  0 1.000000000
## GO:0002021  BP    34  0 1.000000000
## GO:0032094  BP    34  0 1.000000000
## GO:0002931  BP    34  0 1.000000000
## GO:0019076  BP    34  0 1.000000000
## GO:0051084  BP    35  0 1.000000000
## GO:0046464  BP    35  0 1.000000000
## GO:0055090  BP    35  0 1.000000000
## GO:0035909  BP    35  0 1.000000000
## GO:0009072  BP    35  0 1.000000000
## GO:0021846  BP    35  0 1.000000000
## GO:1990748  BP    35  0 1.000000000
## GO:1990090  BP    35  0 1.000000000
## GO:0001539  BP    35  0 1.000000000
## GO:0060285  BP    35  0 1.000000000
## GO:0042745  BP    35  0 1.000000000
## GO:0009187  BP    35  0 1.000000000
## GO:0019835  BP    35  0 1.000000000
## GO:0060441  BP    35  0 1.000000000
## GO:0007143  BP    35  0 1.000000000
## GO:0036230  BP    35  0 1.000000000
## GO:1901068  BP    35  0 1.000000000
## GO:0030201  BP    35  0 1.000000000
## GO:0051567  BP    35  0 1.000000000
## GO:0016572  BP    35  0 1.000000000
## GO:0006972  BP    35  0 1.000000000
## GO:0051452  BP    35  0 1.000000000
## GO:0031424  BP    35  0 1.000000000
## GO:0060292  BP    35  0 1.000000000
## GO:0055083  BP    35  0 1.000000000
## GO:0008156  BP    35  0 1.000000000
## GO:2000171  BP    35  0 1.000000000
## GO:0048147  BP    35  0 1.000000000
## GO:0045686  BP    35  0 1.000000000
## GO:1902116  BP    35  0 1.000000000
## GO:0002701  BP    35  0 1.000000000
## GO:0035308  BP    35  0 1.000000000
## GO:0032205  BP    35  0 1.000000000
## GO:0034122  BP    35  0 1.000000000
## GO:0015804  BP    35  0 1.000000000
## GO:0046461  BP    35  0 1.000000000
## GO:0033866  BP    35  0 1.000000000
## GO:0034381  BP    35  0 1.000000000
## GO:0032786  BP    35  0 1.000000000
## GO:0032733  BP    35  0 1.000000000
## GO:1902895  BP    35  0 1.000000000
## GO:0045940  BP    35  0 1.000000000
## GO:0051973  BP    35  0 1.000000000
## GO:1904707  BP    35  0 1.000000000
## GO:0097106  BP    35  0 1.000000000
## GO:0006471  BP    35  0 1.000000000
## GO:0009954  BP    35  0 1.000000000
## GO:0034033  BP    35  0 1.000000000
## GO:0043516  BP    35  0 1.000000000
## GO:2000249  BP    35  0 1.000000000
## GO:1903959  BP    35  0 1.000000000
## GO:0048710  BP    35  0 1.000000000
## GO:0033238  BP    35  0 1.000000000
## GO:2001038  BP    35  0 1.000000000
## GO:0031279  BP    35  0 1.000000000
## GO:0046320  BP    35  0 1.000000000
## GO:0070873  BP    35  0 1.000000000
## GO:0033146  BP    35  0 1.000000000
## GO:0043304  BP    35  0 1.000000000
## GO:0032228  BP    35  0 1.000000000
## GO:0060142  BP    35  0 1.000000000
## GO:0043114  BP    35  0 1.000000000
## GO:0014823  BP    35  0 1.000000000
## GO:0046686  BP    35  0 1.000000000
## GO:1990089  BP    35  0 1.000000000
## GO:0034030  BP    35  0 1.000000000
## GO:0019432  BP    35  0 1.000000000
## GO:0070328  BP    35  0 1.000000000
## GO:1990774  BP    35  0 1.000000000
## GO:0038084  BP    35  0 1.000000000
## GO:0006458  BP    36  0 1.000000000
## GO:0034205  BP    36  0 1.000000000
## GO:0003401  BP    36  0 1.000000000
## GO:0098751  BP    36  0 1.000000000
## GO:0071320  BP    36  0 1.000000000
## GO:0071398  BP    36  0 1.000000000
## GO:0072583  BP    36  0 1.000000000
## GO:0051181  BP    36  0 1.000000000
## GO:0030574  BP    36  0 1.000000000
## GO:0035115  BP    36  0 1.000000000
## GO:0051294  BP    36  0 1.000000000
## GO:0001702  BP    36  0 1.000000000
## GO:0003417  BP    36  0 1.000000000
## GO:0061384  BP    36  0 1.000000000
## GO:0048009  BP    36  0 1.000000000
## GO:0007617  BP    36  0 1.000000000
## GO:0046329  BP    36  0 1.000000000
## GO:0051953  BP    36  0 1.000000000
## GO:0060969  BP    36  0 1.000000000
## GO:1903427  BP    36  0 1.000000000
## GO:0010664  BP    36  0 1.000000000
## GO:0046839  BP    36  0 1.000000000
## GO:0045745  BP    36  0 1.000000000
## GO:1905209  BP    36  0 1.000000000
## GO:0051482  BP    36  0 1.000000000
## GO:1904037  BP    36  0 1.000000000
## GO:0045815  BP    36  0 1.000000000
## GO:0032735  BP    36  0 1.000000000
## GO:0045987  BP    36  0 1.000000000
## GO:1904358  BP    36  0 1.000000000
## GO:0070528  BP    36  0 1.000000000
## GO:0061462  BP    36  0 1.000000000
## GO:1902991  BP    36  0 1.000000000
## GO:0045601  BP    36  0 1.000000000
## GO:0002920  BP    36  0 1.000000000
## GO:0002861  BP    36  0 1.000000000
## GO:0048169  BP    36  0 1.000000000
## GO:0033006  BP    36  0 1.000000000
## GO:0031114  BP    36  0 1.000000000
## GO:0034243  BP    36  0 1.000000000
## GO:0033363  BP    36  0 1.000000000
## GO:0042501  BP    36  0 1.000000000
## GO:0072348  BP    36  0 1.000000000
## GO:0001963  BP    36  0 1.000000000
## GO:0071604  BP    36  0 1.000000000
## GO:0035886  BP    36  0 1.000000000
## GO:0042311  BP    36  0 1.000000000
## GO:0006903  BP    36  0 1.000000000
## GO:0001782  BP    37  0 1.000000000
## GO:0060071  BP    37  0 1.000000000
## GO:0007340  BP    37  0 1.000000000
## GO:0051693  BP    37  0 1.000000000
## GO:0048846  BP    37  0 1.000000000
## GO:0019934  BP    37  0 1.000000000
## GO:0086065  BP    37  0 1.000000000
## GO:0036474  BP    37  0 1.000000000
## GO:0071391  BP    37  0 1.000000000
## GO:0021799  BP    37  0 1.000000000
## GO:0002753  BP    37  0 1.000000000
## GO:0097028  BP    37  0 1.000000000
## GO:0035850  BP    37  0 1.000000000
## GO:0072599  BP    37  0 1.000000000
## GO:0021884  BP    37  0 1.000000000
## GO:0071514  BP    37  0 1.000000000
## GO:0032633  BP    37  0 1.000000000
## GO:0050892  BP    37  0 1.000000000
## GO:0061756  BP    37  0 1.000000000
## GO:0007094  BP    37  0 1.000000000
## GO:0033028  BP    37  0 1.000000000
## GO:0045746  BP    37  0 1.000000000
## GO:1903792  BP    37  0 1.000000000
## GO:0033144  BP    37  0 1.000000000
## GO:1903318  BP    37  0 1.000000000
## GO:0010955  BP    37  0 1.000000000
## GO:0048665  BP    37  0 1.000000000
## GO:1902284  BP    37  0 1.000000000
## GO:0033260  BP    37  0 1.000000000
## GO:0000184  BP    37  0 1.000000000
## GO:0009112  BP    37  0 1.000000000
## GO:0051647  BP    37  0 1.000000000
## GO:0014003  BP    37  0 1.000000000
## GO:0015695  BP    37  0 1.000000000
## GO:0046470  BP    37  0 1.000000000
## GO:0060674  BP    37  0 1.000000000
## GO:0002675  BP    37  0 1.000000000
## GO:0071158  BP    37  0 1.000000000
## GO:0045684  BP    37  0 1.000000000
## GO:2000463  BP    37  0 1.000000000
## GO:0002053  BP    37  0 1.000000000
## GO:0035794  BP    37  0 1.000000000
## GO:0045954  BP    37  0 1.000000000
## GO:0002717  BP    37  0 1.000000000
## GO:0030810  BP    37  0 1.000000000
## GO:1900373  BP    37  0 1.000000000
## GO:0045880  BP    37  0 1.000000000
## GO:0071825  BP    37  0 1.000000000
## GO:1903432  BP    37  0 1.000000000
## GO:0046640  BP    37  0 1.000000000
## GO:1902229  BP    37  0 1.000000000
## GO:0045191  BP    37  0 1.000000000
## GO:0040020  BP    37  0 1.000000000
## GO:0032885  BP    37  0 1.000000000
## GO:0099174  BP    37  0 1.000000000
## GO:1901385  BP    37  0 1.000000000
## GO:0000027  BP    37  0 1.000000000
## GO:0007435  BP    37  0 1.000000000
## GO:0071173  BP    37  0 1.000000000
## GO:0000096  BP    37  0 1.000000000
## GO:0042554  BP    37  0 1.000000000
## GO:0016233  BP    37  0 1.000000000
## GO:0006383  BP    37  0 1.000000000
## GO:0072350  BP    37  0 1.000000000
## GO:0042092  BP    37  0 1.000000000
## GO:0032392  BP    38  0 1.000000000
## GO:0045005  BP    38  0 1.000000000
## GO:1902475  BP    38  0 1.000000000
## GO:0016601  BP    38  0 1.000000000
## GO:0046463  BP    38  0 1.000000000
## GO:0002475  BP    38  0 1.000000000
## GO:0014002  BP    38  0 1.000000000
## GO:0006284  BP    38  0 1.000000000
## GO:0016339  BP    38  0 1.000000000
## GO:0003230  BP    38  0 1.000000000
## GO:0042149  BP    38  0 1.000000000
## GO:0007099  BP    38  0 1.000000000
## GO:0032506  BP    38  0 1.000000000
## GO:0000578  BP    38  0 1.000000000
## GO:0030851  BP    38  0 1.000000000
## GO:0007616  BP    38  0 1.000000000
## GO:0072595  BP    38  0 1.000000000
## GO:0072210  BP    38  0 1.000000000
## GO:0043628  BP    38  0 1.000000000
## GO:0001953  BP    38  0 1.000000000
## GO:0043267  BP    38  0 1.000000000
## GO:0099590  BP    38  0 1.000000000
## GO:0046460  BP    38  0 1.000000000
## GO:0046854  BP    38  0 1.000000000
## GO:0006778  BP    38  0 1.000000000
## GO:0043368  BP    38  0 1.000000000
## GO:0032781  BP    38  0 1.000000000
## GO:0030513  BP    38  0 1.000000000
## GO:0040019  BP    38  0 1.000000000
## GO:2000403  BP    38  0 1.000000000
## GO:0010831  BP    38  0 1.000000000
## GO:2001025  BP    38  0 1.000000000
## GO:1900026  BP    38  0 1.000000000
## GO:0051968  BP    38  0 1.000000000
## GO:0097300  BP    38  0 1.000000000
## GO:0032594  BP    38  0 1.000000000
## GO:0046006  BP    38  0 1.000000000
## GO:0031935  BP    38  0 1.000000000
## GO:0060259  BP    38  0 1.000000000
## GO:0010762  BP    38  0 1.000000000
## GO:0051339  BP    38  0 1.000000000
## GO:0060236  BP    38  0 1.000000000
## GO:0070570  BP    38  0 1.000000000
## GO:1904645  BP    38  0 1.000000000
## GO:0048265  BP    38  0 1.000000000
## GO:0001562  BP    38  0 1.000000000
## GO:0006636  BP    38  0 1.000000000
## GO:0008207  BP    39  0 1.000000000
## GO:0043001  BP    39  0 1.000000000
## GO:0007257  BP    39  0 1.000000000
## GO:0030521  BP    39  0 1.000000000
## GO:0002483  BP    39  0 1.000000000
## GO:0019885  BP    39  0 1.000000000
## GO:0044331  BP    39  0 1.000000000
## GO:0071357  BP    39  0 1.000000000
## GO:0098534  BP    39  0 1.000000000
## GO:1902476  BP    39  0 1.000000000
## GO:0044364  BP    39  0 1.000000000
## GO:0031076  BP    39  0 1.000000000
## GO:0097009  BP    39  0 1.000000000
## GO:0048730  BP    39  0 1.000000000
## GO:0006826  BP    39  0 1.000000000
## GO:0031640  BP    39  0 1.000000000
## GO:0071174  BP    39  0 1.000000000
## GO:2001024  BP    39  0 1.000000000
## GO:0006998  BP    39  0 1.000000000
## GO:0050931  BP    39  0 1.000000000
## GO:0021983  BP    39  0 1.000000000
## GO:1900087  BP    39  0 1.000000000
## GO:0032008  BP    39  0 1.000000000
## GO:1901021  BP    39  0 1.000000000
## GO:0010613  BP    39  0 1.000000000
## GO:1905710  BP    39  0 1.000000000
## GO:0010661  BP    39  0 1.000000000
## GO:2000142  BP    39  0 1.000000000
## GO:0090049  BP    39  0 1.000000000
## GO:0090175  BP    39  0 1.000000000
## GO:0060251  BP    39  0 1.000000000
## GO:0046885  BP    39  0 1.000000000
## GO:1902108  BP    39  0 1.000000000
## GO:1902692  BP    39  0 1.000000000
## GO:0043551  BP    39  0 1.000000000
## GO:0044088  BP    39  0 1.000000000
## GO:0009620  BP    39  0 1.000000000
## GO:0009651  BP    39  0 1.000000000
## GO:0009069  BP    39  0 1.000000000
## GO:0030431  BP    39  0 1.000000000
## GO:0010092  BP    39  0 1.000000000
## GO:1901998  BP    39  0 1.000000000
## GO:0060337  BP    39  0 1.000000000
## GO:0014037  BP    40  0 1.000000000
## GO:0002369  BP    40  0 1.000000000
## GO:0046633  BP    40  0 1.000000000
## GO:0007339  BP    40  0 1.000000000
## GO:0001835  BP    40  0 1.000000000
## GO:0042398  BP    40  0 1.000000000
## GO:0071542  BP    40  0 1.000000000
## GO:0045022  BP    40  0 1.000000000
## GO:0048821  BP    40  0 1.000000000
## GO:0060325  BP    40  0 1.000000000
## GO:0035188  BP    40  0 1.000000000
## GO:0046456  BP    40  0 1.000000000
## GO:0032620  BP    40  0 1.000000000
## GO:0030225  BP    40  0 1.000000000
## GO:0060603  BP    40  0 1.000000000
## GO:0044091  BP    40  0 1.000000000
## GO:0000266  BP    40  0 1.000000000
## GO:0044764  BP    40  0 1.000000000
## GO:0002323  BP    40  0 1.000000000
## GO:0110111  BP    40  0 1.000000000
## GO:0002686  BP    40  0 1.000000000
## GO:0038179  BP    40  0 1.000000000
## GO:0071684  BP    40  0 1.000000000
## GO:0045851  BP    40  0 1.000000000
## GO:0045911  BP    40  0 1.000000000
## GO:0045747  BP    40  0 1.000000000
## GO:0048520  BP    40  0 1.000000000
## GO:0031062  BP    40  0 1.000000000
## GO:1905332  BP    40  0 1.000000000
## GO:0014742  BP    40  0 1.000000000
## GO:0035307  BP    40  0 1.000000000
## GO:2000273  BP    40  0 1.000000000
## GO:0034105  BP    40  0 1.000000000
## GO:0006693  BP    40  0 1.000000000
## GO:0006692  BP    40  0 1.000000000
## GO:0070207  BP    40  0 1.000000000
## GO:0044743  BP    40  0 1.000000000
## GO:0072523  BP    40  0 1.000000000
## GO:0001881  BP    40  0 1.000000000
## GO:0070884  BP    40  0 1.000000000
## GO:0106056  BP    40  0 1.000000000
## GO:0086004  BP    40  0 1.000000000
## GO:1903053  BP    40  0 1.000000000
## GO:0010470  BP    40  0 1.000000000
## GO:0050706  BP    40  0 1.000000000
## GO:0046825  BP    40  0 1.000000000
## GO:0098801  BP    40  0 1.000000000
## GO:0009409  BP    40  0 1.000000000
## GO:0009268  BP    40  0 1.000000000
## GO:0003009  BP    40  0 1.000000000
## GO:0048741  BP    40  0 1.000000000
## GO:0001783  BP    41  0 1.000000000
## GO:0006953  BP    41  0 1.000000000
## GO:0046164  BP    41  0 1.000000000
## GO:0009066  BP    41  0 1.000000000
## GO:0061049  BP    41  0 1.000000000
## GO:0033059  BP    41  0 1.000000000
## GO:0071364  BP    41  0 1.000000000
## GO:0021955  BP    41  0 1.000000000
## GO:0021696  BP    41  0 1.000000000
## GO:0033344  BP    41  0 1.000000000
## GO:0097484  BP    41  0 1.000000000
## GO:0042417  BP    41  0 1.000000000
## GO:0045197  BP    41  0 1.000000000
## GO:0060122  BP    41  0 1.000000000
## GO:0006509  BP    41  0 1.000000000
## GO:0086009  BP    41  0 1.000000000
## GO:2000279  BP    41  0 1.000000000
## GO:0010972  BP    41  0 1.000000000
## GO:1903170  BP    41  0 1.000000000
## GO:0055026  BP    41  0 1.000000000
## GO:2001258  BP    41  0 1.000000000
## GO:0001937  BP    41  0 1.000000000
## GO:0046627  BP    41  0 1.000000000
## GO:1905953  BP    41  0 1.000000000
## GO:0045841  BP    41  0 1.000000000
## GO:0002832  BP    41  0 1.000000000
## GO:0051154  BP    41  0 1.000000000
## GO:0038083  BP    41  0 1.000000000
## GO:0045494  BP    41  0 1.000000000
## GO:0003301  BP    41  0 1.000000000
## GO:0003298  BP    41  0 1.000000000
## GO:0030501  BP    41  0 1.000000000
## GO:0046326  BP    41  0 1.000000000
## GO:0035774  BP    41  0 1.000000000
## GO:0050685  BP    41  0 1.000000000
## GO:0051281  BP    41  0 1.000000000
## GO:1903672  BP    41  0 1.000000000
## GO:0099084  BP    41  0 1.000000000
## GO:0050856  BP    41  0 1.000000000
## GO:0033628  BP    41  0 1.000000000
## GO:2000772  BP    41  0 1.000000000
## GO:0042304  BP    41  0 1.000000000
## GO:1905521  BP    41  0 1.000000000
## GO:1900744  BP    41  0 1.000000000
## GO:2000008  BP    41  0 1.000000000
## GO:0032459  BP    41  0 1.000000000
## GO:0046782  BP    41  0 1.000000000
## GO:0007431  BP    41  0 1.000000000
## GO:0031577  BP    41  0 1.000000000
## GO:0006418  BP    41  0 1.000000000
## GO:0019883  BP    42  0 1.000000000
## GO:1902742  BP    42  0 1.000000000
## GO:0001709  BP    42  0 1.000000000
## GO:0034198  BP    42  0 1.000000000
## GO:0030866  BP    42  0 1.000000000
## GO:0006687  BP    42  0 1.000000000
## GO:0048873  BP    42  0 1.000000000
## GO:0032958  BP    42  0 1.000000000
## GO:0048255  BP    42  0 1.000000000
## GO:0000959  BP    42  0 1.000000000
## GO:0007080  BP    42  0 1.000000000
## GO:0030835  BP    42  0 1.000000000
## GO:0002823  BP    42  0 1.000000000
## GO:0046636  BP    42  0 1.000000000
## GO:1903523  BP    42  0 1.000000000
## GO:2000816  BP    42  0 1.000000000
## GO:0046621  BP    42  0 1.000000000
## GO:1903573  BP    42  0 1.000000000
## GO:0045740  BP    42  0 1.000000000
## GO:0055023  BP    42  0 1.000000000
## GO:0045923  BP    42  0 1.000000000
## GO:0010518  BP    42  0 1.000000000
## GO:0010765  BP    42  0 1.000000000
## GO:1900015  BP    42  0 1.000000000
## GO:0050691  BP    42  0 1.000000000
## GO:0010559  BP    42  0 1.000000000
## GO:2000826  BP    42  0 1.000000000
## GO:1902743  BP    42  0 1.000000000
## GO:0010883  BP    42  0 1.000000000
## GO:0032768  BP    42  0 1.000000000
## GO:1902622  BP    42  0 1.000000000
## GO:0090224  BP    42  0 1.000000000
## GO:0042220  BP    42  0 1.000000000
## GO:0097178  BP    42  0 1.000000000
## GO:0021522  BP    42  0 1.000000000
## GO:0098927  BP    42  0 1.000000000
## GO:0038202  BP    43  0 1.000000000
## GO:0032924  BP    43  0 1.000000000
## GO:0006040  BP    43  0 1.000000000
## GO:0043277  BP    43  0 1.000000000
## GO:0048854  BP    43  0 1.000000000
## GO:0086002  BP    43  0 1.000000000
## GO:0031670  BP    43  0 1.000000000
## GO:0031128  BP    43  0 1.000000000
## GO:0003416  BP    43  0 1.000000000
## GO:0072666  BP    43  0 1.000000000
## GO:0051293  BP    43  0 1.000000000
## GO:0042462  BP    43  0 1.000000000
## GO:0009250  BP    43  0 1.000000000
## GO:0005978  BP    43  0 1.000000000
## GO:0006024  BP    43  0 1.000000000
## GO:0042771  BP    43  0 1.000000000
## GO:0008631  BP    43  0 1.000000000
## GO:0048246  BP    43  0 1.000000000
## GO:0030490  BP    43  0 1.000000000
## GO:0051673  BP    43  0 1.000000000
## GO:0031057  BP    43  0 1.000000000
## GO:0090317  BP    43  0 1.000000000
## GO:1902100  BP    43  0 1.000000000
## GO:0009395  BP    43  0 1.000000000
## GO:0010907  BP    43  0 1.000000000
## GO:0045823  BP    43  0 1.000000000
## GO:0040018  BP    43  0 1.000000000
## GO:1901381  BP    43  0 1.000000000
## GO:1901985  BP    43  0 1.000000000
## GO:0042307  BP    43  0 1.000000000
## GO:1990573  BP    43  0 1.000000000
## GO:0032527  BP    43  0 1.000000000
## GO:0016925  BP    43  0 1.000000000
## GO:0010824  BP    43  0 1.000000000
## GO:0032374  BP    43  0 1.000000000
## GO:0060964  BP    43  0 1.000000000
## GO:1901031  BP    43  0 1.000000000
## GO:0032371  BP    43  0 1.000000000
## GO:0006890  BP    43  0 1.000000000
## GO:0043403  BP    43  0 1.000000000
## GO:0016073  BP    43  0 1.000000000
## GO:0043044  BP    44  0 1.000000000
## GO:0070830  BP    44  0 1.000000000
## GO:0001569  BP    44  0 1.000000000
## GO:0071385  BP    44  0 1.000000000
## GO:0043616  BP    44  0 1.000000000
## GO:0042181  BP    44  0 1.000000000
## GO:0014904  BP    44  0 1.000000000
## GO:0098781  BP    44  0 1.000000000
## GO:0050919  BP    44  0 1.000000000
## GO:1905819  BP    44  0 1.000000000
## GO:0032873  BP    44  0 1.000000000
## GO:0070303  BP    44  0 1.000000000
## GO:0070527  BP    44  0 1.000000000
## GO:0050918  BP    44  0 1.000000000
## GO:0061098  BP    44  0 1.000000000
## GO:0003156  BP    44  0 1.000000000
## GO:0010569  BP    44  0 1.000000000
## GO:0032881  BP    44  0 1.000000000
## GO:0070849  BP    44  0 1.000000000
## GO:0034340  BP    44  0 1.000000000
## GO:0043039  BP    44  0 1.000000000
## GO:0006904  BP    44  0 1.000000000
## GO:0019083  BP    44  0 1.000000000
## GO:0010257  BP    45  0 1.000000000
## GO:0043038  BP    45  0 1.000000000
## GO:0042987  BP    45  0 1.000000000
## GO:0002063  BP    45  0 1.000000000
## GO:0002534  BP    45  0 1.000000000
## GO:0050974  BP    45  0 1.000000000
## GO:0007212  BP    45  0 1.000000000
## GO:0014046  BP    45  0 1.000000000
## GO:0061028  BP    45  0 1.000000000
## GO:0035136  BP    45  0 1.000000000
## GO:0061647  BP    45  0 1.000000000
## GO:0002269  BP    45  0 1.000000000
## GO:0006378  BP    45  0 1.000000000
## GO:0060135  BP    45  0 1.000000000
## GO:0001774  BP    45  0 1.000000000
## GO:0032981  BP    45  0 1.000000000
## GO:0051646  BP    45  0 1.000000000
## GO:0010259  BP    45  0 1.000000000
## GO:1900077  BP    45  0 1.000000000
## GO:0033048  BP    45  0 1.000000000
## GO:0019228  BP    45  0 1.000000000
## GO:0018023  BP    45  0 1.000000000
## GO:1903580  BP    45  0 1.000000000
## GO:0030890  BP    45  0 1.000000000
## GO:0001961  BP    45  0 1.000000000
## GO:0060421  BP    45  0 1.000000000
## GO:0090184  BP    45  0 1.000000000
## GO:0002888  BP    45  0 1.000000000
## GO:0035196  BP    45  0 1.000000000
## GO:0032965  BP    45  0 1.000000000
## GO:0014059  BP    45  0 1.000000000
## GO:0003254  BP    45  0 1.000000000
## GO:0010464  BP    45  0 1.000000000
## GO:0032814  BP    45  0 1.000000000
## GO:1902893  BP    45  0 1.000000000
## GO:0031952  BP    45  0 1.000000000
## GO:0090207  BP    45  0 1.000000000
## GO:0071526  BP    45  0 1.000000000
## GO:0000245  BP    45  0 1.000000000
## GO:0120192  BP    45  0 1.000000000
## GO:0019674  BP    46  0 1.000000000
## GO:0043029  BP    46  0 1.000000000
## GO:0045010  BP    46  0 1.000000000
## GO:0050798  BP    46  0 1.000000000
## GO:0007628  BP    46  0 1.000000000
## GO:0098868  BP    46  0 1.000000000
## GO:0006576  BP    46  0 1.000000000
## GO:0071384  BP    46  0 1.000000000
## GO:0035458  BP    46  0 1.000000000
## GO:0006695  BP    46  0 1.000000000
## GO:0098754  BP    46  0 1.000000000
## GO:0032456  BP    46  0 1.000000000
## GO:0003382  BP    46  0 1.000000000
## GO:0060323  BP    46  0 1.000000000
## GO:0042073  BP    46  0 1.000000000
## GO:0032007  BP    46  0 1.000000000
## GO:0030517  BP    46  0 1.000000000
## GO:0010677  BP    46  0 1.000000000
## GO:0002707  BP    46  0 1.000000000
## GO:0031111  BP    46  0 1.000000000
## GO:0021772  BP    46  0 1.000000000
## GO:0018198  BP    46  0 1.000000000
## GO:0033120  BP    46  0 1.000000000
## GO:0032757  BP    46  0 1.000000000
## GO:1903727  BP    46  0 1.000000000
## GO:0001941  BP    46  0 1.000000000
## GO:2000404  BP    46  0 1.000000000
## GO:1902667  BP    46  0 1.000000000
## GO:0090279  BP    46  0 1.000000000
## GO:0060966  BP    46  0 1.000000000
## GO:0006110  BP    46  0 1.000000000
## GO:0030811  BP    46  0 1.000000000
## GO:0010799  BP    46  0 1.000000000
## GO:0060147  BP    46  0 1.000000000
## GO:1990928  BP    46  0 1.000000000
## GO:0035036  BP    46  0 1.000000000
## GO:0048536  BP    46  0 1.000000000
## GO:0033013  BP    46  0 1.000000000
## GO:0043631  BP    47  0 1.000000000
## GO:0071300  BP    47  0 1.000000000
## GO:0030261  BP    47  0 1.000000000
## GO:0031050  BP    47  0 1.000000000
## GO:0003197  BP    47  0 1.000000000
## GO:0003179  BP    47  0 1.000000000
## GO:0016574  BP    47  0 1.000000000
## GO:0032309  BP    47  0 1.000000000
## GO:0050702  BP    47  0 1.000000000
## GO:0030520  BP    47  0 1.000000000
## GO:0002820  BP    47  0 1.000000000
## GO:0120163  BP    47  0 1.000000000
## GO:0033046  BP    47  0 1.000000000
## GO:0021532  BP    47  0 1.000000000
## GO:0001504  BP    47  0 1.000000000
## GO:0010718  BP    47  0 1.000000000
## GO:0002639  BP    47  0 1.000000000
## GO:0045429  BP    47  0 1.000000000
## GO:0045907  BP    47  0 1.000000000
## GO:0070918  BP    47  0 1.000000000
## GO:2001239  BP    47  0 1.000000000
## GO:1902041  BP    47  0 1.000000000
## GO:0051489  BP    47  0 1.000000000
## GO:1903018  BP    47  0 1.000000000
## GO:0050704  BP    47  0 1.000000000
## GO:0090199  BP    47  0 1.000000000
## GO:0001990  BP    47  0 1.000000000
## GO:1902653  BP    47  0 1.000000000
## GO:0006368  BP    47  0 1.000000000
## GO:0048010  BP    47  0 1.000000000
## GO:0043489  BP    48  0 1.000000000
## GO:0042088  BP    48  0 1.000000000
## GO:0050435  BP    48  0 1.000000000
## GO:0008089  BP    48  0 1.000000000
## GO:0048483  BP    48  0 1.000000000
## GO:0044848  BP    48  0 1.000000000
## GO:0050873  BP    48  0 1.000000000
## GO:0044786  BP    48  0 1.000000000
## GO:0061005  BP    48  0 1.000000000
## GO:0001580  BP    48  0 1.000000000
## GO:0042755  BP    48  0 1.000000000
## GO:0007157  BP    48  0 1.000000000
## GO:0045104  BP    48  0 1.000000000
## GO:0043303  BP    48  0 1.000000000
## GO:0007520  BP    48  0 1.000000000
## GO:0045910  BP    48  0 1.000000000
## GO:0030857  BP    48  0 1.000000000
## GO:0002762  BP    48  0 1.000000000
## GO:0021988  BP    48  0 1.000000000
## GO:0022602  BP    48  0 1.000000000
## GO:0038066  BP    48  0 1.000000000
## GO:0002714  BP    48  0 1.000000000
## GO:0050850  BP    48  0 1.000000000
## GO:1902808  BP    48  0 1.000000000
## GO:0002891  BP    48  0 1.000000000
## GO:0032731  BP    48  0 1.000000000
## GO:0051590  BP    48  0 1.000000000
## GO:1904407  BP    48  0 1.000000000
## GO:0032892  BP    48  0 1.000000000
## GO:0010862  BP    48  0 1.000000000
## GO:1904591  BP    48  0 1.000000000
## GO:0010107  BP    48  0 1.000000000
## GO:0070534  BP    48  0 1.000000000
## GO:0031648  BP    48  0 1.000000000
## GO:0007131  BP    48  0 1.000000000
## GO:1903115  BP    48  0 1.000000000
## GO:2000725  BP    48  0 1.000000000
## GO:0090342  BP    48  0 1.000000000
## GO:0043550  BP    48  0 1.000000000
## GO:0090311  BP    48  0 1.000000000
## GO:0051972  BP    48  0 1.000000000
## GO:0051438  BP    48  0 1.000000000
## GO:0051653  BP    48  0 1.000000000
## GO:0047496  BP    48  0 1.000000000
## GO:0090659  BP    48  0 1.000000000
## GO:0017001  BP    49  0 1.000000000
## GO:0002474  BP    49  0 1.000000000
## GO:0033173  BP    49  0 1.000000000
## GO:0071470  BP    49  0 1.000000000
## GO:0098586  BP    49  0 1.000000000
## GO:0090102  BP    49  0 1.000000000
## GO:0021545  BP    49  0 1.000000000
## GO:0035088  BP    49  0 1.000000000
## GO:0061245  BP    49  0 1.000000000
## GO:0035825  BP    49  0 1.000000000
## GO:0045103  BP    49  0 1.000000000
## GO:0046834  BP    49  0 1.000000000
## GO:0002279  BP    49  0 1.000000000
## GO:0002448  BP    49  0 1.000000000
## GO:0030195  BP    49  0 1.000000000
## GO:1904036  BP    49  0 1.000000000
## GO:0070229  BP    49  0 1.000000000
## GO:0048599  BP    49  0 1.000000000
## GO:0001916  BP    49  0 1.000000000
## GO:0070169  BP    49  0 1.000000000
## GO:0051955  BP    49  0 1.000000000
## GO:0045646  BP    49  0 1.000000000
## GO:0043300  BP    49  0 1.000000000
## GO:0032941  BP    49  0 1.000000000
## GO:0061912  BP    49  0 1.000000000
## GO:0014888  BP    49  0 1.000000000
## GO:0060612  BP    50  0 1.000000000
## GO:0030865  BP    50  0 1.000000000
## GO:0006303  BP    50  0 1.000000000
## GO:0048701  BP    50  0 1.000000000
## GO:0010761  BP    50  0 1.000000000
## GO:0042491  BP    50  0 1.000000000
## GO:0031663  BP    50  0 1.000000000
## GO:0006406  BP    50  0 1.000000000
## GO:0071427  BP    50  0 1.000000000
## GO:0050891  BP    50  0 1.000000000
## GO:0051985  BP    50  0 1.000000000
## GO:0010596  BP    50  0 1.000000000
## GO:1900047  BP    50  0 1.000000000
## GO:0051055  BP    50  0 1.000000000
## GO:1902373  BP    50  0 1.000000000
## GO:2000059  BP    50  0 1.000000000
## GO:0008038  BP    50  0 1.000000000
## GO:0000288  BP    50  0 1.000000000
## GO:0046189  BP    50  0 1.000000000
## GO:0010828  BP    50  0 1.000000000
## GO:0061014  BP    50  0 1.000000000
## GO:0045981  BP    50  0 1.000000000
## GO:1900544  BP    50  0 1.000000000
## GO:0099054  BP    50  0 1.000000000
## GO:0090329  BP    50  0 1.000000000
## GO:1902930  BP    50  0 1.000000000
## GO:0045124  BP    50  0 1.000000000
## GO:0060043  BP    50  0 1.000000000
## GO:0032330  BP    50  0 1.000000000
## GO:0071622  BP    50  0 1.000000000
## GO:0033003  BP    50  0 1.000000000
## GO:0071675  BP    50  0 1.000000000
## GO:0010332  BP    50  0 1.000000000
## GO:0007129  BP    50  0 1.000000000
## GO:0120193  BP    50  0 1.000000000
## GO:0006360  BP    50  0 1.000000000
## GO:0031146  BP    51  0 1.000000000
## GO:0031103  BP    51  0 1.000000000
## GO:0001974  BP    51  0 1.000000000
## GO:0009583  BP    51  0 1.000000000
## GO:0031018  BP    51  0 1.000000000
## GO:0007032  BP    51  0 1.000000000
## GO:0048806  BP    51  0 1.000000000
## GO:0060428  BP    51  0 1.000000000
## GO:0007140  BP    51  0 1.000000000
## GO:0033619  BP    51  0 1.000000000
## GO:0072132  BP    51  0 1.000000000
## GO:0030901  BP    51  0 1.000000000
## GO:0070265  BP    51  0 1.000000000
## GO:0045912  BP    51  0 1.000000000
## GO:0050819  BP    51  0 1.000000000
## GO:0051954  BP    51  0 1.000000000
## GO:0051353  BP    51  0 1.000000000
## GO:0060760  BP    51  0 1.000000000
## GO:0032206  BP    51  0 1.000000000
## GO:0032784  BP    51  0 1.000000000
## GO:0030834  BP    51  0 1.000000000
## GO:0061001  BP    51  0 1.000000000
## GO:0044058  BP    51  0 1.000000000
## GO:0006111  BP    51  0 1.000000000
## GO:0032648  BP    51  0 1.000000000
## GO:2000649  BP    51  0 1.000000000
## GO:0043618  BP    51  0 1.000000000
## GO:0019098  BP    51  0 1.000000000
## GO:0032355  BP    51  0 1.000000000
## GO:0070542  BP    51  0 1.000000000
## GO:0050913  BP    51  0 1.000000000
## GO:0017145  BP    51  0 1.000000000
## GO:0060412  BP    51  0 1.000000000
## GO:0001662  BP    52  0 1.000000000
## GO:0097720  BP    52  0 1.000000000
## GO:0060351  BP    52  0 1.000000000
## GO:0035924  BP    52  0 1.000000000
## GO:0021587  BP    52  0 1.000000000
## GO:0061077  BP    52  0 1.000000000
## GO:0050912  BP    52  0 1.000000000
## GO:1901570  BP    52  0 1.000000000
## GO:0048247  BP    52  0 1.000000000
## GO:0007019  BP    52  0 1.000000000
## GO:1902750  BP    52  0 1.000000000
## GO:0001960  BP    52  0 1.000000000
## GO:1903202  BP    52  0 1.000000000
## GO:0046148  BP    52  0 1.000000000
## GO:0001954  BP    52  0 1.000000000
## GO:0043268  BP    52  0 1.000000000
## GO:0032481  BP    52  0 1.000000000
## GO:0061614  BP    52  0 1.000000000
## GO:0072698  BP    52  0 1.000000000
## GO:0072527  BP    52  0 1.000000000
## GO:0010712  BP    52  0 1.000000000
## GO:1900271  BP    52  0 1.000000000
## GO:0097035  BP    52  0 1.000000000
## GO:0048713  BP    52  0 1.000000000
## GO:2000677  BP    52  0 1.000000000
## GO:0001895  BP    52  0 1.000000000
## GO:0031529  BP    52  0 1.000000000
## GO:0016126  BP    52  0 1.000000000
## GO:0006023  BP    53  0 1.000000000
## GO:0009948  BP    53  0 1.000000000
## GO:0002209  BP    53  0 1.000000000
## GO:0071242  BP    53  0 1.000000000
## GO:0048546  BP    53  0 1.000000000
## GO:1901571  BP    53  0 1.000000000
## GO:0061900  BP    53  0 1.000000000
## GO:0034113  BP    53  0 1.000000000
## GO:0071715  BP    53  0 1.000000000
## GO:0032608  BP    53  0 1.000000000
## GO:0051703  BP    53  0 1.000000000
## GO:0045190  BP    53  0 1.000000000
## GO:0030219  BP    53  0 1.000000000
## GO:0098815  BP    53  0 1.000000000
## GO:0030514  BP    53  0 1.000000000
## GO:0043392  BP    53  0 1.000000000
## GO:1900408  BP    53  0 1.000000000
## GO:0014014  BP    53  0 1.000000000
## GO:1901799  BP    53  0 1.000000000
## GO:0048662  BP    53  0 1.000000000
## GO:0009994  BP    53  0 1.000000000
## GO:0045777  BP    53  0 1.000000000
## GO:0002720  BP    53  0 1.000000000
## GO:0045933  BP    53  0 1.000000000
## GO:0030850  BP    53  0 1.000000000
## GO:0031113  BP    53  0 1.000000000
## GO:0046902  BP    53  0 1.000000000
## GO:0030071  BP    53  0 1.000000000
## GO:0042269  BP    53  0 1.000000000
## GO:0010517  BP    53  0 1.000000000
## GO:0043666  BP    53  0 1.000000000
## GO:0051930  BP    53  0 1.000000000
## GO:1900024  BP    53  0 1.000000000
## GO:0032210  BP    53  0 1.000000000
## GO:1904705  BP    53  0 1.000000000
## GO:0045214  BP    53  0 1.000000000
## GO:0035176  BP    53  0 1.000000000
## GO:0055078  BP    53  0 1.000000000
## GO:0002208  BP    53  0 1.000000000
## GO:0002204  BP    53  0 1.000000000
## GO:0051932  BP    53  0 1.000000000
## GO:0061383  BP    53  0 1.000000000
## GO:1990874  BP    53  0 1.000000000
## GO:0055010  BP    53  0 1.000000000
## GO:0099518  BP    53  0 1.000000000
## GO:0043297  BP    54  0 1.000000000
## GO:0086001  BP    54  0 1.000000000
## GO:0032964  BP    54  0 1.000000000
## GO:0030199  BP    54  0 1.000000000
## GO:0035272  BP    54  0 1.000000000
## GO:0042738  BP    54  0 1.000000000
## GO:0014009  BP    54  0 1.000000000
## GO:0046503  BP    54  0 1.000000000
## GO:0051568  BP    54  0 1.000000000
## GO:0050922  BP    54  0 1.000000000
## GO:0045599  BP    54  0 1.000000000
## GO:0006289  BP    54  0 1.000000000
## GO:0055025  BP    54  0 1.000000000
## GO:0045687  BP    54  0 1.000000000
## GO:0060193  BP    54  0 1.000000000
## GO:2000648  BP    54  0 1.000000000
## GO:0051496  BP    54  0 1.000000000
## GO:0051290  BP    54  0 1.000000000
## GO:0001914  BP    54  0 1.000000000
## GO:0044060  BP    54  0 1.000000000
## GO:2000351  BP    54  0 1.000000000
## GO:0045604  BP    54  0 1.000000000
## GO:0035065  BP    54  0 1.000000000
## GO:0032350  BP    54  0 1.000000000
## GO:0043030  BP    54  0 1.000000000
## GO:0002715  BP    54  0 1.000000000
## GO:1903533  BP    54  0 1.000000000
## GO:0051931  BP    54  0 1.000000000
## GO:0007585  BP    54  0 1.000000000
## GO:0046718  BP    54  0 1.000000000
## GO:0045058  BP    55  0 1.000000000
## GO:0030042  BP    55  0 1.000000000
## GO:0002042  BP    55  0 1.000000000
## GO:0046513  BP    55  0 1.000000000
## GO:0021795  BP    55  0 1.000000000
## GO:0048066  BP    55  0 1.000000000
## GO:0035315  BP    55  0 1.000000000
## GO:0050701  BP    55  0 1.000000000
## GO:0002548  BP    55  0 1.000000000
## GO:0046580  BP    55  0 1.000000000
## GO:0046676  BP    55  0 1.000000000
## GO:0010823  BP    55  0 1.000000000
## GO:0045839  BP    55  0 1.000000000
## GO:0050732  BP    55  0 1.000000000
## GO:0007528  BP    55  0 1.000000000
## GO:0045773  BP    55  0 1.000000000
## GO:0050775  BP    55  0 1.000000000
## GO:0035306  BP    55  0 1.000000000
## GO:0002833  BP    55  0 1.000000000
## GO:0042531  BP    55  0 1.000000000
## GO:0061512  BP    55  0 1.000000000
## GO:1903539  BP    55  0 1.000000000
## GO:0030166  BP    55  0 1.000000000
## GO:0043470  BP    55  0 1.000000000
## GO:0010665  BP    55  0 1.000000000
## GO:0032653  BP    55  0 1.000000000
## GO:0032655  BP    55  0 1.000000000
## GO:0003044  BP    55  0 1.000000000
## GO:0001523  BP    55  0 1.000000000
## GO:0035019  BP    55  0 1.000000000
## GO:0006900  BP    55  0 1.000000000
## GO:0019369  BP    56  0 1.000000000
## GO:0009712  BP    56  0 1.000000000
## GO:0006584  BP    56  0 1.000000000
## GO:0008333  BP    56  0 1.000000000
## GO:0007588  BP    56  0 1.000000000
## GO:0042596  BP    56  0 1.000000000
## GO:0021575  BP    56  0 1.000000000
## GO:0042743  BP    56  0 1.000000000
## GO:0002227  BP    56  0 1.000000000
## GO:0065002  BP    56  0 1.000000000
## GO:1905517  BP    56  0 1.000000000
## GO:0007618  BP    56  0 1.000000000
## GO:0044773  BP    56  0 1.000000000
## GO:0002704  BP    56  0 1.000000000
## GO:0060761  BP    56  0 1.000000000
## GO:1902883  BP    56  0 1.000000000
## GO:0035567  BP    56  0 1.000000000
## GO:0043536  BP    56  0 1.000000000
## GO:0032732  BP    56  0 1.000000000
## GO:0090303  BP    56  0 1.000000000
## GO:0043620  BP    56  0 1.000000000
## GO:0051196  BP    56  0 1.000000000
## GO:1900449  BP    56  0 1.000000000
## GO:1902099  BP    56  0 1.000000000
## GO:0031641  BP    56  0 1.000000000
## GO:0072347  BP    56  0 1.000000000
## GO:0035456  BP    56  0 1.000000000
## GO:0007062  BP    56  0 1.000000000
## GO:0048538  BP    56  0 1.000000000
## GO:0030104  BP    56  0 1.000000000
## GO:0001825  BP    57  0 1.000000000
## GO:0006879  BP    57  0 1.000000000
## GO:0016101  BP    57  0 1.000000000
## GO:0072577  BP    57  0 1.000000000
## GO:0001736  BP    57  0 1.000000000
## GO:0001754  BP    57  0 1.000000000
## GO:0002067  BP    57  0 1.000000000
## GO:0009247  BP    57  0 1.000000000
## GO:0003170  BP    57  0 1.000000000
## GO:0048016  BP    57  0 1.000000000
## GO:0010463  BP    57  0 1.000000000
## GO:0051310  BP    57  0 1.000000000
## GO:0007091  BP    57  0 1.000000000
## GO:0042775  BP    57  0 1.000000000
## GO:0090307  BP    57  0 1.000000000
## GO:0050879  BP    57  0 1.000000000
## GO:0050881  BP    57  0 1.000000000
## GO:0045071  BP    57  0 1.000000000
## GO:0042551  BP    57  0 1.000000000
## GO:0000726  BP    57  0 1.000000000
## GO:0046622  BP    57  0 1.000000000
## GO:0048260  BP    57  0 1.000000000
## GO:0099172  BP    57  0 1.000000000
## GO:0071806  BP    57  0 1.000000000
## GO:0050854  BP    57  0 1.000000000
## GO:0090109  BP    57  0 1.000000000
## GO:0051893  BP    57  0 1.000000000
## GO:0050994  BP    57  0 1.000000000
## GO:0019080  BP    57  0 1.000000000
## GO:0090501  BP    58  0 1.000000000
## GO:0072678  BP    58  0 1.000000000
## GO:0098930  BP    58  0 1.000000000
## GO:0061337  BP    58  0 1.000000000
## GO:0043954  BP    58  0 1.000000000
## GO:0051187  BP    58  0 1.000000000
## GO:0051806  BP    58  0 1.000000000
## GO:0044409  BP    58  0 1.000000000
## GO:0030260  BP    58  0 1.000000000
## GO:0051828  BP    58  0 1.000000000
## GO:0007164  BP    58  0 1.000000000
## GO:0032835  BP    58  0 1.000000000
## GO:0032615  BP    58  0 1.000000000
## GO:0015909  BP    58  0 1.000000000
## GO:0060443  BP    58  0 1.000000000
## GO:0002011  BP    58  0 1.000000000
## GO:1903510  BP    58  0 1.000000000
## GO:1902369  BP    58  0 1.000000000
## GO:0010656  BP    58  0 1.000000000
## GO:1901616  BP    58  0 1.000000000
## GO:1903902  BP    58  0 1.000000000
## GO:0044380  BP    58  0 1.000000000
## GO:0072665  BP    58  0 1.000000000
## GO:0046128  BP    58  0 1.000000000
## GO:0098900  BP    58  0 1.000000000
## GO:0046605  BP    58  0 1.000000000
## GO:0032663  BP    58  0 1.000000000
## GO:0051445  BP    58  0 1.000000000
## GO:0010965  BP    58  0 1.000000000
## GO:0010662  BP    58  0 1.000000000
## GO:0043330  BP    58  0 1.000000000
## GO:0016447  BP    58  0 1.000000000
## GO:0021517  BP    58  0 1.000000000
## GO:0015807  BP    59  0 1.000000000
## GO:0010659  BP    59  0 1.000000000
## GO:0031122  BP    59  0 1.000000000
## GO:0050907  BP    59  0 1.000000000
## GO:0015872  BP    59  0 1.000000000
## GO:0060986  BP    59  0 1.000000000
## GO:0007029  BP    59  0 1.000000000
## GO:0008347  BP    59  0 1.000000000
## GO:0006749  BP    59  0 1.000000000
## GO:0060119  BP    59  0 1.000000000
## GO:0098661  BP    59  0 1.000000000
## GO:0032613  BP    59  0 1.000000000
## GO:0060711  BP    59  0 1.000000000
## GO:0031124  BP    59  0 1.000000000
## GO:0045806  BP    59  0 1.000000000
## GO:0051148  BP    59  0 1.000000000
## GO:0001755  BP    59  0 1.000000000
## GO:0006661  BP    59  0 1.000000000
## GO:0010524  BP    59  0 1.000000000
## GO:2001238  BP    59  0 1.000000000
## GO:1903078  BP    59  0 1.000000000
## GO:0070936  BP    59  0 1.000000000
## GO:0070972  BP    59  0 1.000000000
## GO:2000401  BP    59  0 1.000000000
## GO:1901016  BP    59  0 1.000000000
## GO:1901607  BP    60  0 1.000000000
## GO:0042982  BP    60  0 1.000000000
## GO:0070098  BP    60  0 1.000000000
## GO:0050982  BP    60  0 1.000000000
## GO:0060324  BP    60  0 1.000000000
## GO:0046847  BP    60  0 1.000000000
## GO:0001947  BP    60  0 1.000000000
## GO:0007595  BP    60  0 1.000000000
## GO:0044784  BP    60  0 1.000000000
## GO:0045744  BP    60  0 1.000000000
## GO:2000134  BP    60  0 1.000000000
## GO:0030837  BP    60  0 1.000000000
## GO:0045776  BP    60  0 1.000000000
## GO:0045824  BP    60  0 1.000000000
## GO:0031102  BP    60  0 1.000000000
## GO:0046850  BP    60  0 1.000000000
## GO:0071156  BP    60  0 1.000000000
## GO:1902017  BP    60  0 1.000000000
## GO:0090183  BP    60  0 1.000000000
## GO:0001836  BP    60  0 1.000000000
## GO:0033209  BP    60  0 1.000000000
## GO:0042773  BP    61  0 1.000000000
## GO:0021515  BP    61  0 1.000000000
## GO:0048512  BP    61  0 1.000000000
## GO:0045143  BP    61  0 1.000000000
## GO:0048286  BP    61  0 1.000000000
## GO:0007040  BP    61  0 1.000000000
## GO:0080171  BP    61  0 1.000000000
## GO:0010812  BP    61  0 1.000000000
## GO:0051058  BP    61  0 1.000000000
## GO:0042698  BP    61  0 1.000000000
## GO:0042461  BP    61  0 1.000000000
## GO:0045600  BP    61  0 1.000000000
## GO:0045840  BP    61  0 1.000000000
## GO:1903428  BP    61  0 1.000000000
## GO:1903307  BP    61  0 1.000000000
## GO:0006493  BP    61  0 1.000000000
## GO:1905207  BP    61  0 1.000000000
## GO:0042058  BP    61  0 1.000000000
## GO:0097006  BP    61  0 1.000000000
## GO:1902305  BP    61  0 1.000000000
## GO:0051591  BP    61  0 1.000000000
## GO:0015800  BP    62  0 1.000000000
## GO:0010171  BP    62  0 1.000000000
## GO:0086003  BP    62  0 1.000000000
## GO:0060038  BP    62  0 1.000000000
## GO:0071260  BP    62  0 1.000000000
## GO:0021695  BP    62  0 1.000000000
## GO:0070988  BP    62  0 1.000000000
## GO:0061951  BP    62  0 1.000000000
## GO:0043966  BP    62  0 1.000000000
## GO:0002437  BP    62  0 1.000000000
## GO:0051306  BP    62  0 1.000000000
## GO:1905268  BP    62  0 1.000000000
## GO:0045668  BP    62  0 1.000000000
## GO:0032720  BP    62  0 1.000000000
## GO:0018149  BP    62  0 1.000000000
## GO:0048008  BP    62  0 1.000000000
## GO:0030858  BP    62  0 1.000000000
## GO:0014911  BP    62  0 1.000000000
## GO:0034308  BP    62  0 1.000000000
## GO:0070206  BP    62  0 1.000000000
## GO:0042278  BP    62  0 1.000000000
## GO:0043949  BP    62  0 1.000000000
## GO:0060393  BP    62  0 1.000000000
## GO:1904356  BP    62  0 1.000000000
## GO:0010658  BP    62  0 1.000000000
## GO:0006721  BP    62  0 1.000000000
## GO:0006367  BP    62  0 1.000000000
## GO:0003229  BP    62  0 1.000000000
## GO:0030330  BP    63  0 1.000000000
## GO:0006278  BP    63  0 1.000000000
## GO:0035904  BP    63  0 1.000000000
## GO:0045454  BP    63  0 1.000000000
## GO:0008652  BP    63  0 1.000000000
## GO:0043967  BP    63  0 1.000000000
## GO:0070059  BP    63  0 1.000000000
## GO:1903556  BP    63  0 1.000000000
## GO:0015914  BP    63  0 1.000000000
## GO:0043388  BP    63  0 1.000000000
## GO:0046579  BP    63  0 1.000000000
## GO:0032722  BP    63  0 1.000000000
## GO:0060999  BP    63  0 1.000000000
## GO:0140238  BP    63  0 1.000000000
## GO:2001169  BP    63  0 1.000000000
## GO:0043462  BP    63  0 1.000000000
## GO:0002712  BP    63  0 1.000000000
## GO:0002889  BP    63  0 1.000000000
## GO:0032677  BP    63  0 1.000000000
## GO:0045661  BP    63  0 1.000000000
## GO:0010830  BP    63  0 1.000000000
## GO:0099601  BP    63  0 1.000000000
## GO:2000756  BP    63  0 1.000000000
## GO:0034121  BP    63  0 1.000000000
## GO:0007622  BP    63  0 1.000000000
## GO:0048488  BP    63  0 1.000000000
## GO:0007004  BP    63  0 1.000000000
## GO:0042246  BP    63  0 1.000000000
## GO:0001658  BP    64  0 1.000000000
## GO:1901264  BP    64  0 1.000000000
## GO:0009988  BP    64  0 1.000000000
## GO:0034605  BP    64  0 1.000000000
## GO:0071479  BP    64  0 1.000000000
## GO:0090398  BP    64  0 1.000000000
## GO:0007566  BP    64  0 1.000000000
## GO:0009880  BP    64  0 1.000000000
## GO:0044774  BP    64  0 1.000000000
## GO:0042267  BP    64  0 1.000000000
## GO:0051926  BP    64  0 1.000000000
## GO:1902807  BP    64  0 1.000000000
## GO:0030512  BP    64  0 1.000000000
## GO:0032233  BP    64  0 1.000000000
## GO:0010676  BP    64  0 1.000000000
## GO:0002763  BP    64  0 1.000000000
## GO:0046824  BP    64  0 1.000000000
## GO:1903391  BP    64  0 1.000000000
## GO:1905818  BP    64  0 1.000000000
## GO:0042306  BP    64  0 1.000000000
## GO:2000736  BP    64  0 1.000000000
## GO:0043331  BP    64  0 1.000000000
## GO:0060042  BP    64  0 1.000000000
## GO:0048278  BP    64  0 1.000000000
## GO:0006354  BP    65  0 1.000000000
## GO:0006893  BP    65  0 1.000000000
## GO:0001510  BP    65  0 1.000000000
## GO:0000422  BP    65  0 1.000000000
## GO:0033627  BP    65  0 1.000000000
## GO:0045123  BP    65  0 1.000000000
## GO:0030968  BP    65  0 1.000000000
## GO:0009064  BP    65  0 1.000000000
## GO:0002381  BP    65  0 1.000000000
## GO:0043647  BP    65  0 1.000000000
## GO:0030032  BP    65  0 1.000000000
## GO:0060425  BP    65  0 1.000000000
## GO:0001707  BP    65  0 1.000000000
## GO:0061726  BP    65  0 1.000000000
## GO:2000242  BP    65  0 1.000000000
## GO:0003407  BP    65  0 1.000000000
## GO:0150076  BP    65  0 1.000000000
## GO:0060389  BP    65  0 1.000000000
## GO:0042440  BP    65  0 1.000000000
## GO:1903793  BP    65  0 1.000000000
## GO:0006487  BP    65  0 1.000000000
## GO:0090559  BP    65  0 1.000000000
## GO:0002886  BP    65  0 1.000000000
## GO:0019748  BP    65  0 1.000000000
## GO:0016445  BP    65  0 1.000000000
## GO:0031638  BP    65  0 1.000000000
## GO:1904322  BP    66  0 1.000000000
## GO:0032922  BP    66  0 1.000000000
## GO:0032623  BP    66  0 1.000000000
## GO:0002228  BP    66  0 1.000000000
## GO:1903845  BP    66  0 1.000000000
## GO:0090278  BP    66  0 1.000000000
## GO:0045739  BP    66  0 1.000000000
## GO:1904377  BP    66  0 1.000000000
## GO:0034394  BP    66  0 1.000000000
## GO:1901184  BP    66  0 1.000000000
## GO:0046324  BP    66  0 1.000000000
## GO:1904321  BP    66  0 1.000000000
## GO:0071426  BP    66  0 1.000000000
## GO:0042274  BP    66  0 1.000000000
## GO:0140253  BP    67  0 1.000000000
## GO:0033692  BP    67  0 1.000000000
## GO:0051298  BP    67  0 1.000000000
## GO:0061371  BP    67  0 1.000000000
## GO:0003143  BP    67  0 1.000000000
## GO:0001885  BP    67  0 1.000000000
## GO:0097194  BP    67  0 1.000000000
## GO:0006635  BP    67  0 1.000000000
## GO:0050771  BP    67  0 1.000000000
## GO:0051784  BP    67  0 1.000000000
## GO:2000378  BP    67  0 1.000000000
## GO:1905515  BP    67  0 1.000000000
## GO:0016239  BP    67  0 1.000000000
## GO:2000179  BP    67  0 1.000000000
## GO:0043113  BP    67  0 1.000000000
## GO:0002673  BP    67  0 1.000000000
## GO:0060688  BP    67  0 1.000000000
## GO:0048168  BP    67  0 1.000000000
## GO:0006940  BP    67  0 1.000000000
## GO:0048678  BP    67  0 1.000000000
## GO:0061478  BP    67  0 1.000000000
## GO:0071166  BP    67  0 1.000000000
## GO:0016444  BP    67  0 1.000000000
## GO:0002562  BP    67  0 1.000000000
## GO:0006801  BP    67  0 1.000000000
## GO:0000768  BP    67  0 1.000000000
## GO:0032482  BP    68  0 1.000000000
## GO:0055081  BP    68  0 1.000000000
## GO:0048002  BP    68  0 1.000000000
## GO:0035082  BP    68  0 1.000000000
## GO:1904888  BP    68  0 1.000000000
## GO:0006855  BP    68  0 1.000000000
## GO:0034109  BP    68  0 1.000000000
## GO:0032387  BP    68  0 1.000000000
## GO:2001244  BP    68  0 1.000000000
## GO:0045669  BP    68  0 1.000000000
## GO:0006513  BP    68  0 1.000000000
## GO:0051453  BP    68  0 1.000000000
## GO:0045428  BP    68  0 1.000000000
## GO:0006305  BP    69  0 1.000000000
## GO:0006306  BP    69  0 1.000000000
## GO:0060997  BP    69  0 1.000000000
## GO:0021536  BP    69  0 1.000000000
## GO:0007492  BP    69  0 1.000000000
## GO:0032637  BP    69  0 1.000000000
## GO:0043299  BP    69  0 1.000000000
## GO:0045576  BP    69  0 1.000000000
## GO:0048332  BP    69  0 1.000000000
## GO:0000281  BP    69  0 1.000000000
## GO:0043407  BP    69  0 1.000000000
## GO:0010633  BP    69  0 1.000000000
## GO:2000107  BP    69  0 1.000000000
## GO:0007405  BP    69  0 1.000000000
## GO:0050885  BP    69  0 1.000000000
## GO:0001541  BP    69  0 1.000000000
## GO:0048146  BP    69  0 1.000000000
## GO:0032370  BP    69  0 1.000000000
## GO:0030888  BP    69  0 1.000000000
## GO:0055117  BP    69  0 1.000000000
## GO:0061035  BP    69  0 1.000000000
## GO:0033047  BP    69  0 1.000000000
## GO:1904589  BP    69  0 1.000000000
## GO:1903670  BP    69  0 1.000000000
## GO:0006949  BP    69  0 1.000000000
## GO:0008542  BP    69  0 1.000000000
## GO:0006766  BP    69  0 1.000000000
## GO:0006081  BP    70  0 1.000000000
## GO:1990869  BP    70  0 1.000000000
## GO:0003341  BP    70  0 1.000000000
## GO:0019915  BP    70  0 1.000000000
## GO:0002385  BP    70  0 1.000000000
## GO:0042130  BP    70  0 1.000000000
## GO:2001021  BP    70  0 1.000000000
## GO:0046173  BP    70  0 1.000000000
## GO:0051057  BP    70  0 1.000000000
## GO:1903725  BP    70  0 1.000000000
## GO:0002090  BP    70  0 1.000000000
## GO:1901796  BP    70  0 1.000000000
## GO:0048641  BP    70  0 1.000000000
## GO:1990868  BP    70  0 1.000000000
## GO:0009119  BP    70  0 1.000000000
## GO:0050909  BP    70  0 1.000000000
## GO:0022029  BP    70  0 1.000000000
## GO:0070192  BP    71  0 1.000000000
## GO:0042733  BP    71  0 1.000000000
## GO:0032413  BP    71  0 1.000000000
## GO:1903051  BP    71  0 1.000000000
## GO:0061045  BP    71  0 1.000000000
## GO:0002711  BP    71  0 1.000000000
## GO:0014068  BP    71  0 1.000000000
## GO:0097120  BP    71  0 1.000000000
## GO:0010611  BP    71  0 1.000000000
## GO:0050433  BP    71  0 1.000000000
## GO:0042509  BP    71  0 1.000000000
## GO:0042255  BP    71  0 1.000000000
## GO:0060675  BP    71  0 1.000000000
## GO:0048645  BP    72  0 1.000000000
## GO:0016575  BP    72  0 1.000000000
## GO:0072171  BP    72  0 1.000000000
## GO:0030239  BP    72  0 1.000000000
## GO:0002251  BP    72  0 1.000000000
## GO:0097755  BP    72  0 1.000000000
## GO:0000079  BP    72  0 1.000000000
## GO:0043627  BP    72  0 1.000000000
## GO:0006400  BP    72  0 1.000000000
## GO:0007632  BP    72  0 1.000000000
## GO:0009060  BP    73  0 1.000000000
## GO:0019731  BP    73  0 1.000000000
## GO:0021885  BP    73  0 1.000000000
## GO:0006094  BP    73  0 1.000000000
## GO:1990542  BP    73  0 1.000000000
## GO:0051851  BP    73  0 1.000000000
## GO:0031397  BP    73  0 1.000000000
## GO:0007422  BP    73  0 1.000000000
## GO:1903036  BP    73  0 1.000000000
## GO:0051155  BP    73  0 1.000000000
## GO:0051865  BP    73  0 1.000000000
## GO:0006626  BP    73  0 1.000000000
## GO:2000779  BP    73  0 1.000000000
## GO:0031060  BP    73  0 1.000000000
## GO:0002637  BP    73  0 1.000000000
## GO:0060191  BP    73  0 1.000000000
## GO:0045670  BP    73  0 1.000000000
## GO:0050810  BP    73  0 1.000000000
## GO:0051145  BP    73  0 1.000000000
## GO:0006414  BP    73  0 1.000000000
## GO:0006919  BP    74  0 1.000000000
## GO:0007193  BP    74  0 1.000000000
## GO:0003333  BP    74  0 1.000000000
## GO:0045453  BP    74  0 1.000000000
## GO:0050432  BP    74  0 1.000000000
## GO:0002066  BP    74  0 1.000000000
## GO:0008543  BP    74  0 1.000000000
## GO:0021766  BP    74  0 1.000000000
## GO:0010507  BP    74  0 1.000000000
## GO:1901880  BP    74  0 1.000000000
## GO:2000573  BP    74  0 1.000000000
## GO:1901224  BP    74  0 1.000000000
## GO:0042108  BP    74  0 1.000000000
## GO:0010822  BP    74  0 1.000000000
## GO:0002532  BP    74  0 1.000000000
## GO:0032651  BP    74  0 1.000000000
## GO:0014743  BP    74  0 1.000000000
## GO:1903201  BP    74  0 1.000000000
## GO:1901983  BP    74  0 1.000000000
## GO:0097327  BP    74  0 1.000000000
## GO:0036465  BP    74  0 1.000000000
## GO:0051303  BP    75  0 1.000000000
## GO:0008625  BP    75  0 1.000000000
## GO:0046323  BP    75  0 1.000000000
## GO:0042446  BP    75  0 1.000000000
## GO:0032418  BP    75  0 1.000000000
## GO:0032507  BP    75  0 1.000000000
## GO:0032543  BP    75  0 1.000000000
## GO:0051705  BP    75  0 1.000000000
## GO:0070373  BP    75  0 1.000000000
## GO:0032272  BP    75  0 1.000000000
## GO:0045843  BP    75  0 1.000000000
## GO:0060563  BP    75  0 1.000000000
## GO:0140056  BP    75  0 1.000000000
## GO:0000271  BP    75  0 1.000000000
## GO:1900182  BP    75  0 1.000000000
## GO:0030641  BP    75  0 1.000000000
## GO:0051193  BP    75  0 1.000000000
## GO:0046626  BP    75  0 1.000000000
## GO:0030808  BP    75  0 1.000000000
## GO:0061097  BP    75  0 1.000000000
## GO:1900371  BP    75  0 1.000000000
## GO:0002200  BP    75  0 1.000000000
## GO:0007260  BP    75  0 1.000000000
## GO:0030433  BP    75  0 1.000000000
## GO:0006405  BP    76  0 1.000000000
## GO:0001913  BP    76  0 1.000000000
## GO:1901606  BP    76  0 1.000000000
## GO:0048844  BP    76  0 1.000000000
## GO:0008088  BP    76  0 1.000000000
## GO:0055008  BP    76  0 1.000000000
## GO:0007045  BP    76  0 1.000000000
## GO:0050000  BP    76  0 1.000000000
## GO:0060350  BP    76  0 1.000000000
## GO:0048041  BP    76  0 1.000000000
## GO:0021879  BP    76  0 1.000000000
## GO:0019319  BP    76  0 1.000000000
## GO:0006809  BP    76  0 1.000000000
## GO:0030168  BP    76  0 1.000000000
## GO:1904029  BP    76  0 1.000000000
## GO:0019229  BP    76  0 1.000000000
## GO:0071277  BP    77  0 1.000000000
## GO:0071347  BP    77  0 1.000000000
## GO:0030301  BP    77  0 1.000000000
## GO:0006835  BP    77  0 1.000000000
## GO:0072332  BP    77  0 1.000000000
## GO:0061180  BP    77  0 1.000000000
## GO:0033108  BP    77  0 1.000000000
## GO:0001738  BP    77  0 1.000000000
## GO:0048635  BP    77  0 1.000000000
## GO:2001259  BP    77  0 1.000000000
## GO:0032729  BP    77  0 1.000000000
## GO:0051785  BP    77  0 1.000000000
## GO:0050766  BP    77  0 1.000000000
## GO:0051965  BP    77  0 1.000000000
## GO:0030193  BP    77  0 1.000000000
## GO:0055021  BP    77  0 1.000000000
## GO:0050688  BP    77  0 1.000000000
## GO:1905897  BP    77  0 1.000000000
## GO:0051966  BP    77  0 1.000000000
## GO:0001756  BP    77  0 1.000000000
## GO:0030148  BP    77  0 1.000000000
## GO:0015918  BP    77  0 1.000000000
## GO:0014855  BP    77  0 1.000000000
## GO:0010833  BP    77  0 1.000000000
## GO:0034637  BP    78  0 1.000000000
## GO:0006073  BP    78  0 1.000000000
## GO:0034644  BP    78  0 1.000000000
## GO:0060976  BP    78  0 1.000000000
## GO:0044042  BP    78  0 1.000000000
## GO:0005977  BP    78  0 1.000000000
## GO:0002260  BP    78  0 1.000000000
## GO:0046785  BP    78  0 1.000000000
## GO:0061515  BP    78  0 1.000000000
## GO:1901862  BP    78  0 1.000000000
## GO:0043507  BP    78  0 1.000000000
## GO:0010389  BP    78  0 1.000000000
## GO:1900046  BP    78  0 1.000000000
## GO:0051881  BP    78  0 1.000000000
## GO:0045471  BP    78  0 1.000000000
## GO:0003208  BP    79  0 1.000000000
## GO:0097192  BP    79  0 1.000000000
## GO:0051702  BP    79  0 1.000000000
## GO:0048663  BP    79  0 1.000000000
## GO:0051781  BP    79  0 1.000000000
## GO:0043525  BP    79  0 1.000000000
## GO:1902117  BP    79  0 1.000000000
## GO:0006029  BP    79  0 1.000000000
## GO:0032465  BP    79  0 1.000000000
## GO:0033143  BP    79  0 1.000000000
## GO:0032890  BP    79  0 1.000000000
## GO:0051279  BP    79  0 1.000000000
## GO:0042147  BP    79  0 1.000000000
## GO:0038034  BP    79  0 1.000000000
## GO:0044272  BP    79  0 1.000000000
## GO:0002312  BP    80  0 1.000000000
## GO:0060113  BP    80  0 1.000000000
## GO:0022406  BP    80  0 1.000000000
## GO:0043154  BP    80  0 1.000000000
## GO:0010923  BP    80  0 1.000000000
## GO:0050805  BP    80  0 1.000000000
## GO:0032410  BP    80  0 1.000000000
## GO:0072078  BP    80  0 1.000000000
## GO:0021675  BP    80  0 1.000000000
## GO:0046209  BP    80  0 1.000000000
## GO:1904427  BP    80  0 1.000000000
## GO:0030500  BP    80  0 1.000000000
## GO:0045682  BP    80  0 1.000000000
## GO:0070613  BP    80  0 1.000000000
## GO:0044106  BP    81  0 1.000000000
## GO:0006664  BP    81  0 1.000000000
## GO:1903312  BP    81  0 1.000000000
## GO:0007218  BP    81  0 1.000000000
## GO:0072384  BP    81  0 1.000000000
## GO:0046530  BP    81  0 1.000000000
## GO:0031646  BP    81  0 1.000000000
## GO:2000243  BP    81  0 1.000000000
## GO:0050818  BP    81  0 1.000000000
## GO:0061178  BP    81  0 1.000000000
## GO:0032479  BP    81  0 1.000000000
## GO:0022904  BP    81  0 1.000000000
## GO:0043279  BP    81  0 1.000000000
## GO:0042273  BP    81  0 1.000000000
## GO:0090630  BP    82  0 1.000000000
## GO:0006637  BP    82  0 1.000000000
## GO:0034620  BP    82  0 1.000000000
## GO:0035050  BP    82  0 1.000000000
## GO:0006720  BP    82  0 1.000000000
## GO:1903509  BP    82  0 1.000000000
## GO:0051899  BP    82  0 1.000000000
## GO:0046364  BP    82  0 1.000000000
## GO:0048747  BP    82  0 1.000000000
## GO:1903901  BP    82  0 1.000000000
## GO:0072088  BP    82  0 1.000000000
## GO:0015748  BP    82  0 1.000000000
## GO:0032436  BP    82  0 1.000000000
## GO:0002718  BP    82  0 1.000000000
## GO:1903317  BP    82  0 1.000000000
## GO:0032204  BP    82  0 1.000000000
## GO:0035383  BP    82  0 1.000000000
## GO:0006672  BP    83  0 1.000000000
## GO:0030203  BP    83  0 1.000000000
## GO:0097581  BP    83  0 1.000000000
## GO:0071674  BP    83  0 1.000000000
## GO:1903363  BP    83  0 1.000000000
## GO:0043242  BP    83  0 1.000000000
## GO:1903321  BP    83  0 1.000000000
## GO:0072028  BP    83  0 1.000000000
## GO:1901992  BP    83  0 1.000000000
## GO:1901019  BP    83  0 1.000000000
## GO:1901888  BP    83  0 1.000000000
## GO:0033045  BP    83  0 1.000000000
## GO:0006942  BP    83  0 1.000000000
## GO:0044728  BP    84  0 1.000000000
## GO:0006342  BP    84  0 1.000000000
## GO:0050672  BP    84  0 1.000000000
## GO:0032945  BP    84  0 1.000000000
## GO:0003151  BP    84  0 1.000000000
## GO:0045913  BP    84  0 1.000000000
## GO:0048636  BP    84  0 1.000000000
## GO:0045844  BP    84  0 1.000000000
## GO:0048524  BP    84  0 1.000000000
## GO:2001057  BP    84  0 1.000000000
## GO:0060420  BP    84  0 1.000000000
## GO:1901379  BP    84  0 1.000000000
## GO:0008589  BP    84  0 1.000000000
## GO:0034103  BP    84  0 1.000000000
## GO:0006970  BP    84  0 1.000000000
## GO:0034333  BP    85  0 1.000000000
## GO:0048708  BP    85  0 1.000000000
## GO:0042632  BP    85  0 1.000000000
## GO:0022900  BP    85  0 1.000000000
## GO:0098659  BP    85  0 1.000000000
## GO:0099587  BP    85  0 1.000000000
## GO:0002088  BP    85  0 1.000000000
## GO:0002275  BP    85  0 1.000000000
## GO:0014032  BP    85  0 1.000000000
## GO:1901863  BP    85  0 1.000000000
## GO:0034502  BP    85  0 1.000000000
## GO:0035418  BP    85  0 1.000000000
## GO:1900407  BP    85  0 1.000000000
## GO:0051341  BP    85  0 1.000000000
## GO:0014910  BP    85  0 1.000000000
## GO:0051384  BP    85  0 1.000000000
## GO:0032606  BP    85  0 1.000000000
## GO:0060411  BP    86  0 1.000000000
## GO:0007044  BP    86  0 1.000000000
## GO:0009593  BP    86  0 1.000000000
## GO:0043648  BP    86  0 1.000000000
## GO:0060079  BP    86  0 1.000000000
## GO:0015908  BP    86  0 1.000000000
## GO:0032611  BP    86  0 1.000000000
## GO:0055072  BP    86  0 1.000000000
## GO:0042490  BP    86  0 1.000000000
## GO:0001912  BP    86  0 1.000000000
## GO:0008593  BP    86  0 1.000000000
## GO:0010827  BP    86  0 1.000000000
## GO:0035304  BP    86  0 1.000000000
## GO:0061333  BP    86  0 1.000000000
## GO:0055092  BP    86  0 1.000000000
## GO:0003281  BP    86  0 1.000000000
## GO:0070252  BP    87  0 1.000000000
## GO:2000117  BP    87  0 1.000000000
## GO:0042475  BP    87  0 1.000000000
## GO:0002690  BP    87  0 1.000000000
## GO:0010717  BP    87  0 1.000000000
## GO:1901879  BP    87  0 1.000000000
## GO:0072091  BP    87  0 1.000000000
## GO:0044344  BP    88  0 1.000000000
## GO:0006112  BP    88  0 1.000000000
## GO:0070664  BP    88  0 1.000000000
## GO:1903035  BP    88  0 1.000000000
## GO:0009116  BP    88  0 1.000000000
## GO:0032024  BP    88  0 1.000000000
## GO:0051149  BP    88  0 1.000000000
## GO:0032642  BP    88  0 1.000000000
## GO:0019217  BP    88  0 1.000000000
## GO:0031110  BP    88  0 1.000000000
## GO:0051492  BP    88  0 1.000000000
## GO:0035914  BP    88  0 1.000000000
## GO:0051937  BP    89  0 1.000000000
## GO:0070301  BP    89  0 1.000000000
## GO:0021872  BP    89  0 1.000000000
## GO:0035773  BP    89  0 1.000000000
## GO:0007229  BP    89  0 1.000000000
## GO:0001656  BP    89  0 1.000000000
## GO:0060415  BP    89  0 1.000000000
## GO:1904063  BP    89  0 1.000000000
## GO:1903008  BP    89  0 1.000000000
## GO:0031016  BP    89  0 1.000000000
## GO:0014015  BP    89  0 1.000000000
## GO:1905954  BP    89  0 1.000000000
## GO:1900076  BP    89  0 1.000000000
## GO:1904035  BP    89  0 1.000000000
## GO:0031960  BP    89  0 1.000000000
## GO:0000041  BP    89  0 1.000000000
## GO:0019226  BP    89  0 1.000000000
## GO:0060395  BP    90  0 1.000000000
## GO:0009063  BP    90  0 1.000000000
## GO:0072655  BP    90  0 1.000000000
## GO:0006096  BP    90  0 1.000000000
## GO:0014031  BP    90  0 1.000000000
## GO:0045814  BP    90  0 1.000000000
## GO:0045833  BP    90  0 1.000000000
## GO:1903524  BP    90  0 1.000000000
## GO:1903313  BP    90  0 1.000000000
## GO:0006497  BP    90  0 1.000000000
## GO:1902600  BP    90  0 1.000000000
## GO:0043535  BP    90  0 1.000000000
## GO:0040014  BP    90  0 1.000000000
## GO:0071774  BP    90  0 1.000000000
## GO:0032526  BP    90  0 1.000000000
## GO:0042770  BP    90  0 1.000000000
## GO:0006757  BP    91  0 1.000000000
## GO:0009308  BP    91  0 1.000000000
## GO:0009798  BP    91  0 1.000000000
## GO:0021954  BP    91  0 1.000000000
## GO:0001938  BP    91  0 1.000000000
## GO:1903578  BP    91  0 1.000000000
## GO:0045685  BP    91  0 1.000000000
## GO:0032652  BP    91  0 1.000000000
## GO:0002028  BP    91  0 1.000000000
## GO:0046683  BP    91  0 1.000000000
## GO:0048864  BP    91  0 1.000000000
## GO:0032602  BP    92  0 1.000000000
## GO:0014033  BP    92  0 1.000000000
## GO:0030838  BP    92  0 1.000000000
## GO:0006476  BP    92  0 1.000000000
## GO:0060998  BP    92  0 1.000000000
## GO:0006885  BP    92  0 1.000000000
## GO:0014909  BP    92  0 1.000000000
## GO:0000045  BP    93  0 1.000000000
## GO:0036473  BP    93  0 1.000000000
## GO:0061640  BP    93  0 1.000000000
## GO:0009062  BP    93  0 1.000000000
## GO:0007215  BP    93  0 1.000000000
## GO:0001676  BP    93  0 1.000000000
## GO:0042116  BP    93  0 1.000000000
## GO:0051817  BP    93  0 1.000000000
## GO:0045445  BP    93  0 1.000000000
## GO:0035305  BP    93  0 1.000000000
## GO:0046889  BP    93  0 1.000000000
## GO:2000060  BP    93  0 1.000000000
## GO:0043506  BP    93  0 1.000000000
## GO:0002027  BP    93  0 1.000000000
## GO:0061844  BP    94  0 1.000000000
## GO:0002181  BP    94  0 1.000000000
## GO:0097061  BP    94  0 1.000000000
## GO:0042866  BP    94  0 1.000000000
## GO:0002709  BP    94  0 1.000000000
## GO:1902749  BP    94  0 1.000000000
## GO:0060968  BP    94  0 1.000000000
## GO:1902882  BP    94  0 1.000000000
## GO:0045069  BP    94  0 1.000000000
## GO:0070555  BP    94  0 1.000000000
## GO:0060021  BP    94  0 1.000000000
## GO:0001570  BP    94  0 1.000000000
## GO:0006906  BP    94  0 1.000000000
## GO:0046916  BP    95  0 1.000000000
## GO:0051304  BP    95  0 1.000000000
## GO:0007173  BP    95  0 1.000000000
## GO:0001704  BP    95  0 1.000000000
## GO:0042158  BP    95  0 1.000000000
## GO:0046888  BP    95  0 1.000000000
## GO:0048477  BP    95  0 1.000000000
## GO:0070585  BP    95  0 1.000000000
## GO:0006352  BP    96  0 1.000000000
## GO:0030004  BP    96  0 1.000000000
## GO:0071456  BP    96  0 1.000000000
## GO:0099565  BP    96  0 1.000000000
## GO:0140029  BP    96  0 1.000000000
## GO:0030279  BP    96  0 1.000000000
## GO:0007200  BP    96  0 1.000000000
## GO:1901989  BP    96  0 1.000000000
## GO:0120162  BP    96  0 1.000000000
## GO:0050795  BP    96  0 1.000000000
## GO:0014066  BP    96  0 1.000000000
## GO:0099072  BP    96  0 1.000000000
## GO:0061053  BP    96  0 1.000000000
## GO:0006304  BP    97  0 1.000000000
## GO:0036503  BP    97  0 1.000000000
## GO:1905037  BP    97  0 1.000000000
## GO:0072676  BP    97  0 1.000000000
## GO:0045132  BP    97  0 1.000000000
## GO:0048644  BP    97  0 1.000000000
## GO:0002444  BP    97  0 1.000000000
## GO:2001243  BP    97  0 1.000000000
## GO:0045638  BP    97  0 1.000000000
## GO:0048525  BP    97  0 1.000000000
## GO:0006334  BP    97  0 1.000000000
## GO:0006119  BP    97  0 1.000000000
## GO:0010595  BP    97  0 1.000000000
## GO:0031058  BP    97  0 1.000000000
## GO:0030510  BP    97  0 1.000000000
## GO:0070167  BP    97  0 1.000000000
## GO:0043502  BP    97  0 1.000000000
## GO:0046031  BP    98  0 1.000000000
## GO:0071482  BP    98  0 1.000000000
## GO:0019395  BP    98  0 1.000000000
## GO:0021761  BP    98  0 1.000000000
## GO:0007041  BP    98  0 1.000000000
## GO:0007006  BP    98  0 1.000000000
## GO:2001237  BP    98  0 1.000000000
## GO:0072080  BP    98  0 1.000000000
## GO:0042102  BP    98  0 1.000000000
## GO:0032760  BP    98  0 1.000000000
## GO:0043488  BP    98  0 1.000000000
## GO:0010660  BP    98  0 1.000000000
## GO:0006821  BP    99  0 1.000000000
## GO:0060993  BP    99  0 1.000000000
## GO:0033555  BP    99  0 1.000000000
## GO:0010771  BP    99  0 1.000000000
## GO:0062014  BP    99  0 1.000000000
## GO:0033865  BP    99  0 1.000000000
## GO:0045921  BP    99  0 1.000000000
## GO:0032755  BP    99  0 1.000000000
## GO:0045639  BP    99  0 1.000000000
## GO:1903557  BP    99  0 1.000000000
## GO:0006892  BP    99  0 1.000000000
## GO:0034032  BP    99  0 1.000000000
## GO:0033875  BP    99  0 1.000000000
## GO:0006641  BP    99  0 1.000000000
## GO:0098876  BP    99  0 1.000000000
## GO:0055013  BP   100  0 1.000000000
## GO:0034440  BP   100  0 1.000000000
## GO:0001578  BP   100  0 1.000000000
## GO:0030593  BP   100  0 1.000000000
## GO:0090174  BP   100  0 1.000000000
## GO:0031343  BP   100  0 1.000000000
## GO:0045778  BP   100  0 1.000000000
## GO:0002702  BP   100  0 1.000000000
## GO:0032006  BP   100  0 1.000000000
## GO:0110020  BP   100  0 1.000000000
## GO:0060359  BP   100  0 1.000000000
## GO:0007584  BP   100  0 1.000000000
## GO:0000077  BP   101  0 1.000000000
## GO:0006022  BP   101  0 1.000000000
## GO:0003300  BP   101  0 1.000000000
## GO:0051651  BP   101  0 1.000000000
## GO:0110110  BP   101  0 1.000000000
## GO:0090263  BP   101  0 1.000000000
## GO:2001022  BP   101  0 1.000000000
## GO:1901222  BP   101  0 1.000000000
## GO:0050848  BP   101  0 1.000000000
## GO:0055024  BP   101  0 1.000000000
## GO:2000300  BP   101  0 1.000000000
## GO:0034446  BP   101  0 1.000000000
## GO:0033559  BP   101  0 1.000000000
## GO:0042310  BP   101  0 1.000000000
## GO:0031123  BP   102  0 1.000000000
## GO:0046849  BP   102  0 1.000000000
## GO:0002367  BP   102  0 1.000000000
## GO:0050886  BP   102  0 1.000000000
## GO:0106027  BP   102  0 1.000000000
## GO:0046427  BP   102  0 1.000000000
## GO:0050772  BP   102  0 1.000000000
## GO:0051897  BP   102  0 1.000000000
## GO:1905477  BP   102  0 1.000000000
## GO:0010522  BP   102  0 1.000000000
## GO:0019218  BP   102  0 1.000000000
## GO:0021510  BP   102  0 1.000000000
## GO:0051225  BP   102  0 1.000000000
## GO:0001708  BP   103  0 1.000000000
## GO:0035967  BP   103  0 1.000000000
## GO:0009953  BP   103  0 1.000000000
## GO:0030317  BP   103  0 1.000000000
## GO:0098732  BP   103  0 1.000000000
## GO:0140053  BP   103  0 1.000000000
## GO:0010657  BP   103  0 1.000000000
## GO:0006165  BP   103  0 1.000000000
## GO:0048709  BP   103  0 1.000000000
## GO:1901800  BP   103  0 1.000000000
## GO:0035601  BP   103  0 1.000000000
## GO:0051289  BP   103  0 1.000000000
## GO:0009135  BP   103  0 1.000000000
## GO:0009179  BP   103  0 1.000000000
## GO:0000018  BP   103  0 1.000000000
## GO:0032231  BP   103  0 1.000000000
## GO:0043255  BP   103  0 1.000000000
## GO:1900542  BP   103  0 1.000000000
## GO:1903426  BP   103  0 1.000000000
## GO:0017015  BP   103  0 1.000000000
## GO:0009408  BP   103  0 1.000000000
## GO:0002224  BP   103  0 1.000000000
## GO:1905039  BP   104  0 1.000000000
## GO:0044264  BP   104  0 1.000000000
## GO:0021549  BP   104  0 1.000000000
## GO:0032612  BP   104  0 1.000000000
## GO:0030518  BP   104  0 1.000000000
## GO:0072163  BP   104  0 1.000000000
## GO:0072164  BP   104  0 1.000000000
## GO:0030101  BP   104  0 1.000000000
## GO:0042136  BP   104  0 1.000000000
## GO:1903825  BP   104  0 1.000000000
## GO:0007009  BP   104  0 1.000000000
## GO:0051983  BP   104  0 1.000000000
## GO:0061326  BP   104  0 1.000000000
## GO:0097722  BP   104  0 1.000000000
## GO:0001657  BP   104  0 1.000000000
## GO:0038127  BP   105  0 1.000000000
## GO:0008306  BP   105  0 1.000000000
## GO:0055017  BP   105  0 1.000000000
## GO:0034754  BP   105  0 1.000000000
## GO:0048704  BP   105  0 1.000000000
## GO:0007052  BP   105  0 1.000000000
## GO:0034766  BP   105  0 1.000000000
## GO:0000956  BP   105  0 1.000000000
## GO:0046939  BP   105  0 1.000000000
## GO:0043473  BP   105  0 1.000000000
## GO:1903844  BP   105  0 1.000000000
## GO:0016241  BP   105  0 1.000000000
## GO:0050764  BP   105  0 1.000000000
## GO:0043266  BP   105  0 1.000000000
## GO:0019236  BP   105  0 1.000000000
## GO:0035282  BP   105  0 1.000000000
## GO:0014897  BP   105  0 1.000000000
## GO:0035249  BP   105  0 1.000000000
## GO:0060840  BP   106  0 1.000000000
## GO:0055006  BP   106  0 1.000000000
## GO:0022600  BP   106  0 1.000000000
## GO:0045446  BP   106  0 1.000000000
## GO:0046474  BP   106  0 1.000000000
## GO:0045185  BP   106  0 1.000000000
## GO:0014812  BP   106  0 1.000000000
## GO:0032091  BP   106  0 1.000000000
## GO:0019359  BP   106  0 1.000000000
## GO:1904894  BP   106  0 1.000000000
## GO:0120034  BP   106  0 1.000000000
## GO:0048661  BP   106  0 1.000000000
## GO:1902803  BP   106  0 1.000000000
## GO:0038061  BP   107  0 1.000000000
## GO:0007043  BP   107  0 1.000000000
## GO:0001823  BP   107  0 1.000000000
## GO:0014896  BP   107  0 1.000000000
## GO:0097756  BP   107  0 1.000000000
## GO:0006275  BP   107  0 1.000000000
## GO:0043487  BP   107  0 1.000000000
## GO:0048145  BP   107  0 1.000000000
## GO:0006140  BP   107  0 1.000000000
## GO:0003014  BP   107  0 1.000000000
## GO:0014074  BP   107  0 1.000000000
## GO:0009185  BP   107  0 1.000000000
## GO:0030048  BP   108  0 1.000000000
## GO:1904659  BP   108  0 1.000000000
## GO:0051028  BP   108  0 1.000000000
## GO:0030316  BP   108  0 1.000000000
## GO:1900006  BP   108  0 1.000000000
## GO:0001959  BP   108  0 1.000000000
## GO:0035725  BP   108  0 1.000000000
## GO:0008344  BP   109  0 1.000000000
## GO:0032963  BP   109  0 1.000000000
## GO:0050829  BP   109  0 1.000000000
## GO:0048144  BP   109  0 1.000000000
## GO:0008645  BP   109  0 1.000000000
## GO:0034968  BP   109  0 1.000000000
## GO:0015844  BP   109  0 1.000000000
## GO:0072009  BP   109  0 1.000000000
## GO:0018958  BP   109  0 1.000000000
## GO:0032092  BP   109  0 1.000000000
## GO:2000379  BP   109  0 1.000000000
## GO:0006612  BP   109  0 1.000000000
## GO:0019363  BP   109  0 1.000000000
## GO:0042035  BP   109  0 1.000000000
## GO:0032649  BP   109  0 1.000000000
## GO:0001910  BP   109  0 1.000000000
## GO:1903076  BP   109  0 1.000000000
## GO:0048259  BP   109  0 1.000000000
## GO:0000086  BP   110  0 1.000000000
## GO:0019882  BP   110  0 1.000000000
## GO:1901657  BP   110  0 1.000000000
## GO:0007156  BP   110  0 1.000000000
## GO:0006690  BP   110  0 1.000000000
## GO:0001776  BP   110  0 1.000000000
## GO:0001843  BP   110  0 1.000000000
## GO:0090100  BP   110  0 1.000000000
## GO:0006986  BP   110  0 1.000000000
## GO:0031570  BP   111  0 1.000000000
## GO:0008637  BP   111  0 1.000000000
## GO:0021782  BP   111  0 1.000000000
## GO:0001942  BP   111  0 1.000000000
## GO:0007127  BP   111  0 1.000000000
## GO:0015749  BP   111  0 1.000000000
## GO:0071901  BP   111  0 1.000000000
## GO:0002688  BP   111  0 1.000000000
## GO:0043401  BP   111  0 1.000000000
## GO:0060606  BP   111  0 1.000000000
## GO:0019079  BP   111  0 1.000000000
## GO:0042100  BP   112  0 1.000000000
## GO:0007589  BP   112  0 1.000000000
## GO:0034219  BP   112  0 1.000000000
## GO:0001892  BP   112  0 1.000000000
## GO:0008630  BP   112  0 1.000000000
## GO:0072329  BP   112  0 1.000000000
## GO:0016525  BP   112  0 1.000000000
## GO:0043123  BP   112  0 1.000000000
## GO:1905269  BP   112  0 1.000000000
## GO:0031398  BP   112  0 1.000000000
## GO:0030516  BP   112  0 1.000000000
## GO:1905330  BP   112  0 1.000000000
## GO:0046822  BP   112  0 1.000000000
## GO:0060078  BP   112  0 1.000000000
## GO:0006939  BP   112  0 1.000000000
## GO:0006805  BP   112  0 1.000000000
## GO:1904019  BP   113  0 1.000000000
## GO:0008585  BP   113  0 1.000000000
## GO:0090101  BP   113  0 1.000000000
## GO:0090305  BP   113  0 1.000000000
## GO:0072525  BP   113  0 1.000000000
## GO:0001952  BP   113  0 1.000000000
## GO:2000177  BP   113  0 1.000000000
## GO:0098773  BP   113  0 1.000000000
## GO:0043534  BP   114  0 1.000000000
## GO:0022405  BP   114  0 1.000000000
## GO:0060419  BP   114  0 1.000000000
## GO:0042472  BP   114  0 1.000000000
## GO:0046467  BP   114  0 1.000000000
## GO:0022404  BP   114  0 1.000000000
## GO:0032414  BP   114  0 1.000000000
## GO:2000045  BP   114  0 1.000000000
## GO:0048814  BP   114  0 1.000000000
## GO:0000187  BP   115  0 1.000000000
## GO:0019730  BP   115  0 1.000000000
## GO:0071346  BP   115  0 1.000000000
## GO:0005976  BP   115  0 1.000000000
## GO:0016579  BP   115  0 1.000000000
## GO:0032368  BP   115  0 1.000000000
## GO:0043244  BP   115  0 1.000000000
## GO:2001023  BP   115  0 1.000000000
## GO:0051209  BP   115  0 1.000000000
## GO:0008033  BP   115  0 1.000000000
## GO:0030282  BP   116  0 1.000000000
## GO:0010927  BP   116  0 1.000000000
## GO:0046545  BP   116  0 1.000000000
## GO:0098739  BP   116  0 1.000000000
## GO:0061982  BP   116  0 1.000000000
## GO:0022037  BP   116  0 1.000000000
## GO:2000181  BP   116  0 1.000000000
## GO:1903828  BP   116  0 1.000000000
## GO:1903052  BP   116  0 1.000000000
## GO:0051261  BP   116  0 1.000000000
## GO:0002040  BP   116  0 1.000000000
## GO:0051701  BP   117  0 1.000000000
## GO:0007498  BP   117  0 1.000000000
## GO:0043500  BP   117  0 1.000000000
## GO:0051283  BP   117  0 1.000000000
## GO:0014020  BP   117  0 1.000000000
## GO:0006282  BP   117  0 1.000000000
## GO:0060349  BP   118  0 1.000000000
## GO:0042476  BP   118  0 1.000000000
## GO:0019751  BP   118  0 1.000000000
## GO:0006090  BP   118  0 1.000000000
## GO:0051952  BP   118  0 1.000000000
## GO:0046620  BP   118  0 1.000000000
## GO:0060759  BP   118  0 1.000000000
## GO:0031929  BP   119  0 1.000000000
## GO:0003158  BP   119  0 1.000000000
## GO:0090090  BP   119  0 1.000000000
## GO:1990266  BP   119  0 1.000000000
## GO:0043280  BP   119  0 1.000000000
## GO:2000278  BP   119  0 1.000000000
## GO:0051282  BP   119  0 1.000000000
## GO:0051963  BP   119  0 1.000000000
## GO:0003073  BP   119  0 1.000000000
## GO:1901136  BP   120  0 1.000000000
## GO:0002062  BP   120  0 1.000000000
## GO:0008584  BP   120  0 1.000000000
## GO:0031109  BP   120  0 1.000000000
## GO:0010508  BP   120  0 1.000000000
## GO:1901216  BP   120  0 1.000000000
## GO:0090277  BP   120  0 1.000000000
## GO:0045727  BP   120  0 1.000000000
## GO:0044070  BP   120  0 1.000000000
## GO:0051208  BP   120  0 1.000000000
## GO:0007030  BP   121  0 1.000000000
## GO:0046717  BP   121  0 1.000000000
## GO:0036294  BP   121  0 1.000000000
## GO:0031497  BP   121  0 1.000000000
## GO:0042089  BP   121  0 1.000000000
## GO:0046546  BP   121  0 1.000000000
## GO:0048565  BP   121  0 1.000000000
## GO:0008286  BP   121  0 1.000000000
## GO:0001889  BP   121  0 1.000000000
## GO:0009132  BP   121  0 1.000000000
## GO:0032411  BP   121  0 1.000000000
## GO:0006611  BP   121  0 1.000000000
## GO:1903409  BP   121  0 1.000000000
## GO:0010906  BP   121  0 1.000000000
## GO:1900180  BP   121  0 1.000000000
## GO:0042542  BP   121  0 1.000000000
## GO:0002526  BP   122  0 1.000000000
## GO:0006639  BP   122  0 1.000000000
## GO:0015837  BP   122  0 1.000000000
## GO:0007098  BP   122  0 1.000000000
## GO:0060996  BP   122  0 1.000000000
## GO:0007586  BP   122  0 1.000000000
## GO:0032609  BP   122  0 1.000000000
## GO:0006997  BP   122  0 1.000000000
## GO:0048284  BP   122  0 1.000000000
## GO:0018022  BP   122  0 1.000000000
## GO:0042752  BP   122  0 1.000000000
## GO:0061013  BP   122  0 1.000000000
## GO:0032434  BP   122  0 1.000000000
## GO:0006888  BP   123  0 1.000000000
## GO:0071621  BP   123  0 1.000000000
## GO:0042157  BP   123  0 1.000000000
## GO:0010921  BP   123  0 1.000000000
## GO:0051153  BP   123  0 1.000000000
## GO:0006665  BP   123  0 1.000000000
## GO:0060048  BP   124  0 1.000000000
## GO:0007368  BP   124  0 1.000000000
## GO:0061008  BP   124  0 1.000000000
## GO:0014902  BP   124  0 1.000000000
## GO:0006638  BP   124  0 1.000000000
## GO:0033138  BP   124  0 1.000000000
## GO:0000723  BP   124  0 1.000000000
## GO:0042107  BP   125  0 1.000000000
## GO:0007631  BP   125  0 1.000000000
## GO:0018107  BP   125  0 1.000000000
## GO:0032273  BP   125  0 1.000000000
## GO:0002761  BP   125  0 1.000000000
## GO:0099175  BP   125  0 1.000000000
## GO:0010212  BP   125  0 1.000000000
## GO:0034332  BP   126  0 1.000000000
## GO:0008203  BP   126  0 1.000000000
## GO:0009582  BP   126  0 1.000000000
## GO:0031623  BP   126  0 1.000000000
## GO:0032200  BP   126  0 1.000000000
## GO:0055076  BP   126  0 1.000000000
## GO:0044839  BP   127  0 1.000000000
## GO:0009581  BP   127  0 1.000000000
## GO:0000724  BP   127  0 1.000000000
## GO:0048640  BP   127  0 1.000000000
## GO:0014065  BP   127  0 1.000000000
## GO:0010811  BP   127  0 1.000000000
## GO:0000725  BP   127  0 1.000000000
## GO:0010565  BP   127  0 1.000000000
## GO:0061387  BP   127  0 1.000000000
## GO:0043467  BP   127  0 1.000000000
## GO:0051592  BP   127  0 1.000000000
## GO:0003279  BP   128  0 1.000000000
## GO:0035195  BP   128  0 1.000000000
## GO:1901343  BP   128  0 1.000000000
## GO:0051092  BP   128  0 1.000000000
## GO:1902806  BP   128  0 1.000000000
## GO:0050830  BP   129  0 1.000000000
## GO:0042177  BP   129  0 1.000000000
## GO:0046488  BP   129  0 1.000000000
## GO:0051101  BP   129  0 1.000000000
## GO:0045995  BP   129  0 1.000000000
## GO:0001936  BP   129  0 1.000000000
## GO:0007189  BP   130  0 1.000000000
## GO:1902850  BP   130  0 1.000000000
## GO:0031023  BP   130  0 1.000000000
## GO:0007093  BP   130  0 1.000000000
## GO:0008277  BP   130  0 1.000000000
## GO:0015696  BP   131  0 1.000000000
## GO:0030218  BP   131  0 1.000000000
## GO:0042633  BP   131  0 1.000000000
## GO:0042303  BP   131  0 1.000000000
## GO:0090316  BP   131  0 1.000000000
## GO:0031341  BP   131  0 1.000000000
## GO:0010469  BP   131  0 1.000000000
## GO:1902652  BP   131  0 1.000000000
## GO:0001508  BP   132  0 1.000000000
## GO:0001841  BP   132  0 1.000000000
## GO:0030177  BP   132  0 1.000000000
## GO:0016999  BP   133  0 1.000000000
## GO:1901655  BP   133  0 1.000000000
## GO:0050906  BP   133  0 1.000000000
## GO:0009855  BP   133  0 1.000000000
## GO:0001837  BP   133  0 1.000000000
## GO:1901568  BP   133  0 1.000000000
## GO:0061025  BP   133  0 1.000000000
## GO:0034763  BP   133  0 1.000000000
## GO:0018210  BP   133  0 1.000000000
## GO:0046928  BP   133  0 1.000000000
## GO:0035966  BP   133  0 1.000000000
## GO:0007034  BP   133  0 1.000000000
## GO:0055123  BP   134  0 1.000000000
## GO:0006633  BP   134  0 1.000000000
## GO:0002698  BP   134  0 1.000000000
## GO:0051928  BP   134  0 1.000000000
## GO:1903322  BP   134  0 1.000000000
## GO:0035194  BP   134  0 1.000000000
## GO:1904375  BP   134  0 1.000000000
## GO:0009799  BP   134  0 1.000000000
## GO:0006261  BP   135  0 1.000000000
## GO:0071453  BP   135  0 1.000000000
## GO:0051168  BP   135  0 1.000000000
## GO:1903364  BP   135  0 1.000000000
## GO:0070646  BP   135  0 1.000000000
## GO:0035023  BP   135  0 1.000000000
## GO:0045598  BP   135  0 1.000000000
## GO:0072331  BP   135  0 1.000000000
## GO:0016125  BP   135  0 1.000000000
## GO:0097553  BP   136  0 1.000000000
## GO:0043624  BP   136  0 1.000000000
## GO:0097306  BP   136  0 1.000000000
## GO:0042471  BP   136  0 1.000000000
## GO:0035270  BP   136  0 1.000000000
## GO:0050905  BP   136  0 1.000000000
## GO:0009166  BP   136  0 1.000000000
## GO:2001056  BP   136  0 1.000000000
## GO:0050671  BP   136  0 1.000000000
## GO:0009791  BP   136  0 1.000000000
## GO:0017158  BP   136  0 1.000000000
## GO:0010821  BP   136  0 1.000000000
## GO:0006754  BP   137  0 1.000000000
## GO:0002456  BP   137  0 1.000000000
## GO:0048675  BP   137  0 1.000000000
## GO:0048593  BP   137  0 1.000000000
## GO:0034728  BP   137  0 1.000000000
## GO:0002221  BP   137  0 1.000000000
## GO:0016441  BP   137  0 1.000000000
## GO:0009411  BP   137  0 1.000000000
## GO:0009451  BP   138  0 1.000000000
## GO:0007050  BP   138  0 1.000000000
## GO:0030010  BP   138  0 1.000000000
## GO:0016571  BP   138  0 1.000000000
## GO:0032946  BP   138  0 1.000000000
## GO:0016079  BP   138  0 1.000000000
## GO:0048706  BP   139  0 1.000000000
## GO:0016573  BP   139  0 1.000000000
## GO:0002758  BP   139  0 1.000000000
## GO:0015698  BP   139  0 1.000000000
## GO:0030216  BP   139  0 1.000000000
## GO:0007338  BP   139  0 1.000000000
## GO:0071333  BP   140  0 1.000000000
## GO:0050921  BP   140  0 1.000000000
## GO:0072089  BP   140  0 1.000000000
## GO:0046165  BP   141  0 1.000000000
## GO:0006338  BP   141  0 1.000000000
## GO:0045017  BP   141  0 1.000000000
## GO:0001909  BP   141  0 1.000000000
## GO:0055088  BP   141  0 1.000000000
## GO:0035637  BP   141  0 1.000000000
## GO:0061041  BP   141  0 1.000000000
## GO:0016052  BP   142  0 1.000000000
## GO:0071331  BP   142  0 1.000000000
## GO:0106106  BP   142  0 1.000000000
## GO:0034101  BP   142  0 1.000000000
## GO:0050680  BP   142  0 1.000000000
## GO:0050729  BP   142  0 1.000000000
## GO:0120161  BP   142  0 1.000000000
## GO:0045667  BP   142  0 1.000000000
## GO:0055007  BP   143  0 1.000000000
## GO:0071326  BP   143  0 1.000000000
## GO:0009267  BP   143  0 1.000000000
## GO:0001935  BP   143  0 1.000000000
## GO:0072073  BP   143  0 1.000000000
## GO:0090288  BP   143  0 1.000000000
## GO:1901991  BP   143  0 1.000000000
## GO:0031333  BP   143  0 1.000000000
## GO:0046330  BP   143  0 1.000000000
## GO:0010634  BP   143  0 1.000000000
## GO:0019233  BP   143  0 1.000000000
## GO:0007224  BP   143  0 1.000000000
## GO:0006333  BP   144  0 1.000000000
## GO:0002065  BP   144  0 1.000000000
## GO:0018393  BP   144  0 1.000000000
## GO:0007613  BP   144  0 1.000000000
## GO:0034250  BP   144  0 1.000000000
## GO:0002687  BP   144  0 1.000000000
## GO:0002708  BP   144  0 1.000000000
## GO:0098693  BP   144  0 1.000000000
## GO:0045216  BP   145  0 1.000000000
## GO:0007292  BP   145  0 1.000000000
## GO:0070665  BP   145  0 1.000000000
## GO:0031099  BP   145  0 1.000000000
## GO:1905952  BP   145  0 1.000000000
## GO:1903900  BP   145  0 1.000000000
## GO:0097530  BP   146  0 1.000000000
## GO:0000070  BP   146  0 1.000000000
## GO:2001251  BP   146  0 1.000000000
## GO:0072006  BP   146  0 1.000000000
## GO:0008643  BP   147  0 1.000000000
## GO:0016482  BP   147  0 1.000000000
## GO:0046660  BP   147  0 1.000000000
## GO:0006475  BP   147  0 1.000000000
## GO:1902904  BP   147  0 1.000000000
## GO:0042133  BP   147  0 1.000000000
## GO:0009206  BP   147  0 1.000000000
## GO:0030856  BP   147  0 1.000000000
## GO:0002831  BP   147  0 1.000000000
## GO:0050658  BP   148  0 1.000000000
## GO:0003206  BP   148  0 1.000000000
## GO:0003231  BP   148  0 1.000000000
## GO:0055067  BP   148  0 1.000000000
## GO:0050657  BP   148  0 1.000000000
## GO:1901292  BP   148  0 1.000000000
## GO:0009145  BP   148  0 1.000000000
## GO:0002700  BP   148  0 1.000000000
## GO:2000058  BP   148  0 1.000000000
## GO:0001824  BP   149  0 1.000000000
## GO:0050728  BP   149  0 1.000000000
## GO:0006865  BP   150  0 1.000000000
## GO:0071322  BP   150  0 1.000000000
## GO:0034614  BP   150  0 1.000000000
## GO:0022612  BP   150  0 1.000000000
## GO:0015718  BP   150  0 1.000000000
## GO:0050715  BP   150  0 1.000000000
## GO:0008360  BP   150  0 1.000000000
## GO:0014013  BP   150  0 1.000000000
## GO:0009201  BP   150  0 1.000000000
## GO:0051236  BP   151  0 1.000000000
## GO:0030178  BP   151  0 1.000000000
## GO:0006910  BP   151  0 1.000000000
## GO:0006606  BP   151  0 1.000000000
## GO:0042737  BP   152  0 1.000000000
## GO:0046661  BP   152  0 1.000000000
## GO:0010675  BP   152  0 1.000000000
## GO:0051053  BP   153  0 1.000000000
## GO:0010950  BP   153  0 1.000000000
## GO:0006457  BP   153  0 1.000000000
## GO:0031056  BP   153  0 1.000000000
## GO:0071248  BP   154  0 1.000000000
## GO:0071478  BP   154  0 1.000000000
## GO:0001838  BP   154  0 1.000000000
## GO:0006937  BP   154  0 1.000000000
## GO:0007569  BP   155  0 1.000000000
## GO:0051170  BP   155  0 1.000000000
## GO:0051494  BP   155  0 1.000000000
## GO:0018394  BP   155  0 1.000000000
## GO:0062013  BP   155  0 1.000000000
## GO:1990845  BP   156  0 1.000000000
## GO:0007596  BP   156  0 1.000000000
## GO:0071383  BP   156  0 1.000000000
## GO:0051302  BP   156  0 1.000000000
## GO:0006694  BP   156  0 1.000000000
## GO:0071466  BP   157  0 1.000000000
## GO:0000910  BP   157  0 1.000000000
## GO:0048015  BP   157  0 1.000000000
## GO:0045834  BP   157  0 1.000000000
## GO:0010594  BP   157  0 1.000000000
## GO:0033135  BP   157  0 1.000000000
## GO:0002244  BP   158  0 1.000000000
## GO:0007599  BP   158  0 1.000000000
## GO:0009755  BP   158  0 1.000000000
## GO:0050777  BP   158  0 1.000000000
## GO:0046496  BP   158  0 1.000000000
## GO:0008654  BP   158  0 1.000000000
## GO:0009127  BP   158  0 1.000000000
## GO:0009168  BP   158  0 1.000000000
## GO:0006941  BP   158  0 1.000000000
## GO:0007601  BP   158  0 1.000000000
## GO:0001678  BP   159  0 1.000000000
## GO:0050817  BP   159  0 1.000000000
## GO:0099111  BP   159  0 1.000000000
## GO:0042552  BP   159  0 1.000000000
## GO:0030833  BP   159  0 1.000000000
## GO:0010970  BP   159  0 1.000000000
## GO:0031214  BP   160  0 1.000000000
## GO:0007565  BP   160  0 1.000000000
## GO:0048017  BP   160  0 1.000000000
## GO:0035821  BP   160  0 1.000000000
## GO:1901988  BP   160  0 1.000000000
## GO:0009142  BP   160  0 1.000000000
## GO:0051291  BP   160  0 1.000000000
## GO:0019362  BP   160  0 1.000000000
## GO:1903169  BP   160  0 1.000000000
## GO:0072175  BP   161  0 1.000000000
## GO:2001236  BP   161  0 1.000000000
## GO:0051147  BP   161  0 1.000000000
## GO:0008366  BP   162  0 1.000000000
## GO:0071356  BP   162  0 1.000000000
## GO:0007272  BP   162  0 1.000000000
## GO:0031047  BP   162  0 1.000000000
## GO:0010952  BP   162  0 1.000000000
## GO:0009156  BP   162  0 1.000000000
## GO:0050953  BP   162  0 1.000000000
## GO:0007033  BP   162  0 1.000000000
## GO:0045333  BP   163  0 1.000000000
## GO:0030879  BP   163  0 1.000000000
## GO:1904064  BP   163  0 1.000000000
## GO:0007088  BP   163  0 1.000000000
## GO:0048660  BP   163  0 1.000000000
## GO:0009266  BP   163  0 1.000000000
## GO:0060041  BP   163  0 1.000000000
## GO:0002218  BP   164  0 1.000000000
## GO:0030902  BP   164  0 1.000000000
## GO:0006643  BP   164  0 1.000000000
## GO:0046887  BP   164  0 1.000000000
## GO:0032680  BP   164  0 1.000000000
## GO:0006958  BP   165  0 1.000000000
## GO:0043901  BP   165  0 1.000000000
## GO:0072524  BP   165  0 1.000000000
## GO:0046425  BP   165  0 1.000000000
## GO:0007051  BP   165  0 1.000000000
## GO:0019827  BP   165  0 1.000000000
## GO:0007179  BP   165  0 1.000000000
## GO:0045931  BP   166  0 1.000000000
## GO:1903555  BP   166  0 1.000000000
## GO:0042594  BP   166  0 1.000000000
## GO:0071897  BP   167  0 1.000000000
## GO:0035303  BP   167  0 1.000000000
## GO:0006399  BP   167  0 1.000000000
## GO:0032640  BP   167  0 1.000000000
## GO:0030509  BP   168  0 1.000000000
## GO:0097164  BP   168  0 1.000000000
## GO:0009124  BP   168  0 1.000000000
## GO:2001257  BP   168  0 1.000000000
## GO:0048659  BP   168  0 1.000000000
## GO:0006323  BP   169  0 1.000000000
## GO:0098727  BP   169  0 1.000000000
## GO:0050821  BP   169  0 1.000000000
## GO:2001242  BP   169  0 1.000000000
## GO:0097237  BP   170  0 1.000000000
## GO:0007369  BP   170  0 1.000000000
## GO:0001890  BP   170  0 1.000000000
## GO:1904892  BP   170  0 1.000000000
## GO:0042129  BP   170  0 1.000000000
## GO:0046890  BP   170  0 1.000000000
## GO:0071706  BP   170  0 1.000000000
## GO:0000082  BP   171  0 1.000000000
## GO:0030705  BP   171  0 1.000000000
## GO:0007612  BP   171  0 1.000000000
## GO:0043409  BP   171  0 1.000000000
## GO:0043271  BP   171  0 1.000000000
## GO:0032874  BP   171  0 1.000000000
## GO:0006403  BP   172  0 1.000000000
## GO:0071230  BP   172  0 1.000000000
## GO:0034404  BP   172  0 1.000000000
## GO:0070304  BP   172  0 1.000000000
## GO:0065004  BP   172  0 1.000000000
## GO:2000241  BP   172  0 1.000000000
## GO:1901654  BP   172  0 1.000000000
## GO:0051100  BP   173  0 1.000000000
## GO:0097746  BP   173  0 1.000000000
## GO:0050880  BP   173  0 1.000000000
## GO:0031644  BP   173  0 1.000000000
## GO:0035296  BP   173  0 1.000000000
## GO:0030041  BP   174  0 1.000000000
## GO:0006575  BP   174  0 1.000000000
## GO:0035150  BP   174  0 1.000000000
## GO:0017156  BP   175  0 1.000000000
## GO:0010977  BP   175  0 1.000000000
## GO:0045807  BP   175  0 1.000000000
## GO:0043902  BP   175  0 1.000000000
## GO:0097480  BP   176  0 1.000000000
## GO:0048592  BP   176  0 1.000000000
## GO:0002262  BP   176  0 1.000000000
## GO:0002705  BP   176  0 1.000000000
## GO:0008213  BP   176  0 1.000000000
## GO:0006479  BP   176  0 1.000000000
## GO:0008064  BP   176  0 1.000000000
## GO:0016202  BP   176  0 1.000000000
## GO:0009612  BP   176  0 1.000000000
## GO:0048489  BP   176  0 1.000000000
## GO:0035148  BP   176  0 1.000000000
## GO:0007219  BP   177  0 1.000000000
## GO:0006733  BP   177  0 1.000000000
## GO:0008016  BP   177  0 1.000000000
## GO:0000075  BP   178  0 1.000000000
## GO:0010951  BP   178  0 1.000000000
## GO:0043524  BP   178  0 1.000000000
## GO:0051588  BP   178  0 1.000000000
## GO:0061136  BP   178  0 1.000000000
## GO:0019933  BP   179  0 1.000000000
## GO:0001906  BP   179  0 1.000000000
## GO:0071773  BP   179  0 1.000000000
## GO:0140013  BP   179  0 1.000000000
## GO:0006839  BP   179  0 1.000000000
## GO:0034767  BP   179  0 1.000000000
## GO:0030832  BP   179  0 1.000000000
## GO:1901861  BP   179  0 1.000000000
## GO:1903034  BP   179  0 1.000000000
## GO:0071772  BP   179  0 1.000000000
## GO:0001659  BP   179  0 1.000000000
## GO:0002455  BP   180  0 1.000000000
## GO:0048634  BP   180  0 1.000000000
## GO:0000819  BP   180  0 1.000000000
## GO:0007416  BP   180  0 1.000000000
## GO:0098656  BP   181  0 1.000000000
## GO:0015931  BP   181  0 1.000000000
## GO:0009749  BP   181  0 1.000000000
## GO:0007259  BP   182  0 1.000000000
## GO:0035051  BP   182  0 1.000000000
## GO:0016331  BP   182  0 1.000000000
## GO:2001252  BP   182  0 1.000000000
## GO:0120032  BP   182  0 1.000000000
## GO:0061351  BP   183  0 1.000000000
## GO:2001235  BP   183  0 1.000000000
## GO:0050792  BP   183  0 1.000000000
## GO:0048754  BP   184  0 1.000000000
## GO:0060491  BP   184  0 1.000000000
## GO:0009746  BP   184  0 1.000000000
## GO:0044843  BP   185  0 1.000000000
## GO:0009566  BP   185  0 1.000000000
## GO:0051668  BP   185  0 1.000000000
## GO:0007269  BP   185  0 1.000000000
## GO:0045766  BP   185  0 1.000000000
## GO:0010770  BP   185  0 1.000000000
## GO:0050796  BP   185  0 1.000000000
## GO:0043200  BP   185  0 1.000000000
## GO:0034284  BP   185  0 1.000000000
## GO:0006109  BP   186  0 1.000000000
## GO:1905475  BP   186  0 1.000000000
## GO:1903305  BP   186  0 1.000000000
## GO:0099643  BP   186  0 1.000000000
## GO:0097696  BP   187  0 1.000000000
## GO:0030534  BP   187  0 1.000000000
## GO:0006956  BP   187  0 1.000000000
## GO:0006473  BP   187  0 1.000000000
## GO:0097479  BP   187  0 1.000000000
## GO:0046328  BP   188  0 1.000000000
## GO:0006911  BP   189  0 1.000000000
## GO:0071695  BP   190  0 1.000000000
## GO:0044706  BP   190  0 1.000000000
## GO:0071804  BP   191  0 1.000000000
## GO:0021915  BP   191  0 1.000000000
## GO:0071805  BP   191  0 1.000000000
## GO:0050773  BP   191  0 1.000000000
## GO:1901605  BP   193  0 1.000000000
## GO:0032869  BP   193  0 1.000000000
## GO:1990138  BP   193  0 1.000000000
## GO:0055002  BP   193  0 1.000000000
## GO:0048771  BP   193  0 1.000000000
## GO:0016051  BP   194  0 1.000000000
## GO:0031669  BP   194  0 1.000000000
## GO:0009108  BP   194  0 1.000000000
## GO:0006006  BP   194  0 1.000000000
## GO:0016236  BP   194  0 1.000000000
## GO:0030308  BP   194  0 1.000000000
## GO:0006469  BP   194  0 1.000000000
## GO:0099173  BP   194  0 1.000000000
## GO:0000209  BP   194  0 1.000000000
## GO:0007266  BP   195  0 1.000000000
## GO:0003205  BP   195  0 1.000000000
## GO:0042180  BP   195  0 1.000000000
## GO:0030307  BP   195  0 1.000000000
## GO:1902905  BP   195  0 1.000000000
## GO:0002706  BP   195  0 1.000000000
## GO:0051783  BP   195  0 1.000000000
## GO:0043413  BP   196  0 1.000000000
## GO:0006486  BP   196  0 1.000000000
## GO:1902275  BP   197  0 1.000000000
## GO:0007519  BP   197  0 1.000000000
## GO:0048469  BP   198  0 1.000000000
## GO:0043542  BP   198  0 1.000000000
## GO:1903046  BP   198  0 1.000000000
## GO:0099024  BP   198  0 1.000000000
## GO:0006364  BP   198  0 1.000000000
## GO:0043903  BP   198  0 1.000000000
## GO:0009743  BP   198  0 1.000000000
## GO:0044242  BP   199  0 1.000000000
## GO:0071236  BP   199  0 1.000000000
## GO:0030522  BP   199  0 1.000000000
## GO:0001649  BP   199  0 1.000000000
## GO:0050679  BP   199  0 1.000000000
## GO:0072376  BP   199  0 1.000000000
## GO:0070507  BP   199  0 1.000000000
## GO:0031396  BP   199  0 1.000000000
## GO:0019058  BP   199  0 1.000000000
## GO:0032388  BP   200  0 1.000000000
## GO:0008217  BP   200  0 1.000000000
## GO:2000377  BP   200  0 1.000000000
## GO:0008154  BP   201  0 1.000000000
## GO:0043281  BP   201  0 1.000000000
## GO:0002685  BP   201  0 1.000000000
## GO:0000302  BP   201  0 1.000000000
## GO:0007254  BP   202  0 1.000000000
## GO:0098742  BP   202  0 1.000000000
## GO:0003018  BP   203  0 1.000000000
## GO:0007188  BP   204  0 1.000000000
## GO:0007160  BP   204  0 1.000000000
## GO:0071560  BP   204  0 1.000000000
## GO:0016197  BP   204  0 1.000000000
## GO:1904018  BP   204  0 1.000000000
## GO:0001666  BP   204  0 1.000000000
## GO:0042098  BP   205  0 1.000000000
## GO:0010324  BP   205  0 1.000000000
## GO:0031345  BP   205  0 1.000000000
## GO:0051099  BP   205  0 1.000000000
## GO:0043112  BP   205  0 1.000000000
## GO:0050770  BP   205  0 1.000000000
## GO:0034329  BP   206  0 1.000000000
## GO:1902115  BP   206  0 1.000000000
## GO:0060538  BP   206  0 1.000000000
## GO:0015893  BP   207  0 1.000000000
## GO:0006402  BP   207  0 1.000000000
## GO:0055001  BP   207  0 1.000000000
## GO:0097529  BP   207  0 1.000000000
## GO:0007623  BP   208  0 1.000000000
## GO:1903050  BP   208  0 1.000000000
## GO:0071559  BP   208  0 1.000000000
## GO:0019722  BP   209  0 1.000000000
## GO:0017038  BP   209  0 1.000000000
## GO:2000027  BP   209  0 1.000000000
## GO:0008361  BP   209  0 1.000000000
## GO:2001020  BP   209  0 1.000000000
## GO:0097305  BP   209  0 1.000000000
## GO:0071103  BP   210  0 1.000000000
## GO:0019935  BP   210  0 1.000000000
## GO:0070085  BP   210  0 1.000000000
## GO:0046434  BP   210  0 1.000000000
## GO:0045732  BP   210  0 1.000000000
## GO:0033157  BP   210  0 1.000000000
## GO:0051216  BP   211  0 1.000000000
## GO:0060047  BP   211  0 1.000000000
## GO:0048839  BP   211  0 1.000000000
## GO:0030595  BP   211  0 1.000000000
## GO:0010810  BP   211  0 1.000000000
## GO:0006814  BP   211  0 1.000000000
## GO:0035264  BP   212  0 1.000000000
## GO:0032984  BP   212  0 1.000000000
## GO:0046395  BP   213  0 1.000000000
## GO:0009913  BP   213  0 1.000000000
## GO:0016054  BP   213  0 1.000000000
## GO:0050920  BP   213  0 1.000000000
## GO:0008406  BP   214  0 1.000000000
## GO:0033673  BP   214  0 1.000000000
## GO:0048639  BP   214  0 1.000000000
## GO:0002274  BP   215  0 1.000000000
## GO:0035265  BP   215  0 1.000000000
## GO:0050871  BP   215  0 1.000000000
## GO:0071824  BP   215  0 1.000000000
## GO:0045637  BP   215  0 1.000000000
## GO:0032271  BP   215  0 1.000000000
## GO:0007163  BP   216  0 1.000000000
## GO:0048762  BP   216  0 1.000000000
## GO:0002573  BP   216  0 1.000000000
## GO:0048545  BP   216  0 1.000000000
## GO:0043547  BP   217  0 1.000000000
## GO:0045137  BP   218  0 1.000000000
## GO:0042445  BP   218  0 1.000000000
## GO:0030258  BP   218  0 1.000000000
## GO:0070374  BP   218  0 1.000000000
## GO:0051495  BP   218  0 1.000000000
## GO:0007286  BP   218  0 1.000000000
## GO:0030324  BP   219  0 1.000000000
## GO:0006302  BP   220  0 1.000000000
## GO:0031348  BP   220  0 1.000000000
## GO:0043406  BP   220  0 1.000000000
## GO:0003015  BP   221  0 1.000000000
## GO:0061138  BP   221  0 1.000000000
## GO:0006898  BP   222  0 1.000000000
## GO:0030323  BP   222  0 1.000000000
## GO:0031668  BP   223  0 1.000000000
## GO:0090150  BP   223  0 1.000000000
## GO:0019318  BP   223  0 1.000000000
## GO:0030073  BP   223  0 1.000000000
## GO:0009152  BP   223  0 1.000000000
## GO:0022618  BP   223  0 1.000000000
## GO:0099504  BP   223  0 1.000000000
## GO:0060828  BP   224  0 1.000000000
## GO:0071241  BP   225  0 1.000000000
## GO:0021953  BP   225  0 1.000000000
## GO:0006650  BP   225  0 1.000000000
## GO:0010632  BP   225  0 1.000000000
## GO:0050670  BP   225  0 1.000000000
## GO:0032868  BP   225  0 1.000000000
## GO:0010948  BP   226  0 1.000000000
## GO:2000116  BP   226  0 1.000000000
## GO:0051607  BP   227  0 1.000000000
## GO:0032944  BP   227  0 1.000000000
## GO:0048515  BP   227  0 1.000000000
## GO:0051606  BP   228  0 1.000000000
## GO:0090276  BP   228  0 1.000000000
## GO:0048863  BP   228  0 1.000000000
## GO:0097191  BP   229  0 1.000000000
## GO:1901617  BP   229  0 1.000000000
## GO:1903320  BP   229  0 1.000000000
## GO:0016072  BP   230  0 1.000000000
## GO:0036293  BP   230  0 1.000000000
## GO:0009952  BP   231  0 1.000000000
## GO:0060348  BP   231  0 1.000000000
## GO:2001234  BP   231  0 1.000000000
## GO:0043543  BP   231  0 1.000000000
## GO:0045089  BP   232  0 1.000000000
## GO:0032872  BP   232  0 1.000000000
## GO:0009410  BP   232  0 1.000000000
## GO:0009260  BP   232  0 1.000000000
## GO:0001894  BP   232  0 1.000000000
## GO:0007187  BP   233  0 1.000000000
## GO:0045930  BP   233  0 1.000000000
## GO:0034764  BP   233  0 1.000000000
## GO:0030278  BP   233  0 1.000000000
## GO:0090092  BP   233  0 1.000000000
## GO:0033002  BP   234  0 1.000000000
## GO:0006813  BP   234  0 1.000000000
## GO:0070302  BP   234  0 1.000000000
## GO:0032886  BP   235  0 1.000000000
## GO:0071826  BP   236  0 1.000000000
## GO:0034976  BP   237  0 1.000000000
## GO:0006401  BP   238  0 1.000000000
## GO:0045444  BP   238  0 1.000000000
## GO:0006470  BP   238  0 1.000000000
## GO:0070663  BP   238  0 1.000000000
## GO:0010001  BP   239  0 1.000000000
## GO:0015850  BP   239  0 1.000000000
## GO:0016485  BP   239  0 1.000000000
## GO:1903522  BP   239  0 1.000000000
## GO:1903362  BP   239  0 1.000000000
## GO:0090257  BP   239  0 1.000000000
## GO:0046390  BP   239  0 1.000000000
## GO:0001763  BP   240  0 1.000000000
## GO:0046777  BP   240  0 1.000000000
## GO:0006164  BP   240  0 1.000000000
## GO:0043393  BP   240  0 1.000000000
## GO:0043583  BP   242  0 1.000000000
## GO:0010466  BP   242  0 1.000000000
## GO:0006260  BP   243  0 1.000000000
## GO:0071375  BP   244  0 1.000000000
## GO:1901215  BP   244  0 1.000000000
## GO:0051091  BP   244  0 1.000000000
## GO:0017157  BP   244  0 1.000000000
## GO:0007411  BP   245  0 1.000000000
## GO:0060291  BP   245  0 1.000000000
## GO:0051054  BP   245  0 1.000000000
## GO:0072522  BP   245  0 1.000000000
## GO:0051348  BP   246  0 1.000000000
## GO:0097485  BP   246  0 1.000000000
## GO:0031334  BP   246  0 1.000000000
## GO:0099003  BP   246  0 1.000000000
## GO:0046034  BP   247  0 1.000000000
## GO:0007568  BP   247  0 1.000000000
## GO:0002064  BP   247  0 1.000000000
## GO:0031330  BP   247  0 1.000000000
## GO:0010506  BP   247  0 1.000000000
## GO:0032147  BP   248  0 1.000000000
## GO:0090068  BP   249  0 1.000000000
## GO:0031503  BP   249  0 1.000000000
## GO:0002703  BP   250  0 1.000000000
## GO:0051188  BP   251  0 1.000000000
## GO:0060541  BP   251  0 1.000000000
## GO:0002377  BP   252  0 1.000000000
## GO:0005996  BP   253  0 1.000000000
## GO:0015980  BP   254  0 1.000000000
## GO:0007626  BP   254  0 1.000000000
## GO:0032412  BP   254  0 1.000000000
## GO:0034330  BP   255  0 1.000000000
## GO:0110053  BP   255  0 1.000000000
## GO:0006605  BP   256  0 1.000000000
## GO:0045055  BP   256  0 1.000000000
## GO:0140014  BP   257  0 1.000000000
## GO:0051403  BP   257  0 1.000000000
## GO:0051650  BP   258  0 1.000000000
## GO:0045926  BP   258  0 1.000000000
## GO:0098813  BP   258  0 1.000000000
## GO:0016064  BP   259  0 1.000000000
## GO:1901990  BP   259  0 1.000000000
## GO:0016050  BP   259  0 1.000000000
## GO:0048738  BP   260  0 1.000000000
## GO:0048588  BP   260  0 1.000000000
## GO:0016458  BP   260  0 1.000000000
## GO:0045665  BP   260  0 1.000000000
## GO:0006520  BP   261  0 1.000000000
## GO:0022898  BP   262  0 1.000000000
## GO:0048705  BP   262  0 1.000000000
## GO:0019724  BP   263  0 1.000000000
## GO:0048193  BP   263  0 1.000000000
## GO:0072330  BP   264  0 1.000000000
## GO:0043523  BP   264  0 1.000000000
## GO:0042593  BP   265  0 1.000000000
## GO:0033500  BP   266  0 1.000000000
## GO:0007605  BP   266  0 1.000000000
## GO:0008037  BP   267  0 1.000000000
## GO:0034599  BP   268  0 1.000000000
## GO:0030336  BP   268  0 1.000000000
## GO:0010038  BP   269  0 1.000000000
## GO:0060560  BP   270  0 1.000000000
## GO:0009615  BP   270  0 1.000000000
## GO:0030198  BP   271  0 1.000000000
## GO:0090287  BP   271  0 1.000000000
## GO:0060485  BP   272  0 1.000000000
## GO:0034504  BP   272  0 1.000000000
## GO:0009167  BP   272  0 1.000000000
## GO:0009205  BP   272  0 1.000000000
## GO:0051924  BP   272  0 1.000000000
## GO:0032409  BP   272  0 1.000000000
## GO:0006790  BP   272  0 1.000000000
## GO:0009126  BP   273  0 1.000000000
## GO:0051258  BP   274  0 1.000000000
## GO:0007018  BP   275  0 1.000000000
## GO:0031647  BP   275  0 1.000000000
## GO:0009161  BP   276  0 1.000000000
## GO:0009199  BP   276  0 1.000000000
## GO:0051648  BP   277  0 1.000000000
## GO:0071229  BP   278  0 1.000000000
## GO:0009101  BP   278  0 1.000000000
## GO:0030072  BP   278  0 1.000000000
## GO:0060070  BP   279  0 1.000000000
## GO:0071902  BP   279  0 1.000000000
## GO:0072659  BP   279  0 1.000000000
## GO:0006310  BP   280  0 1.000000000
## GO:0070588  BP   280  0 1.000000000
## GO:0010631  BP   280  0 1.000000000
## GO:0003007  BP   280  0 1.000000000
## GO:0001822  BP   281  0 1.000000000
## GO:2000146  BP   281  0 1.000000000
## GO:0009144  BP   281  0 1.000000000
## GO:0071222  BP   282  0 1.000000000
## GO:0090132  BP   282  0 1.000000000
## GO:0070482  BP   282  0 1.000000000
## GO:0016032  BP   283  0 1.000000000
## GO:0045165  BP   284  0 1.000000000
## GO:0044262  BP   284  0 1.000000000
## GO:0040029  BP   284  0 1.000000000
## GO:0090130  BP   284  0 1.000000000
## GO:0071496  BP   285  0 1.000000000
## GO:0061448  BP   285  0 1.000000000
## GO:0009123  BP   285  0 1.000000000
## GO:0009165  BP   285  0 1.000000000
## GO:0043414  BP   286  0 1.000000000
## GO:1901653  BP   287  0 1.000000000
## GO:0072593  BP   288  0 1.000000000
## GO:0007548  BP   288  0 1.000000000
## GO:0006936  BP   289  0 1.000000000
## GO:0051169  BP   289  0 1.000000000
## GO:0006913  BP   289  0 1.000000000
## GO:0045088  BP   289  0 1.000000000
## GO:0071219  BP   290  0 1.000000000
## GO:1901987  BP   290  0 1.000000000
## GO:0009416  BP   290  0 1.000000000
## GO:0031098  BP   290  0 1.000000000
## GO:1901293  BP   291  0 1.000000000
## GO:0048511  BP   291  0 1.000000000
## GO:0071214  BP   292  0 1.000000000
## GO:0104004  BP   292  0 1.000000000
## GO:0097193  BP   292  0 1.000000000
## GO:0007611  BP   292  0 1.000000000
## GO:0030111  BP   292  0 1.000000000
## GO:0051402  BP   293  0 1.000000000
## GO:0030100  BP   293  0 1.000000000
## GO:0043588  BP   293  0 1.000000000
## GO:0009895  BP   294  0 1.000000000
## GO:0042254  BP   294  0 1.000000000
## GO:0043087  BP   295  0 1.000000000
## GO:0043405  BP   295  0 1.000000000
## GO:0050954  BP   296  0 1.000000000
## GO:0006836  BP   297  0 1.000000000
## GO:1903829  BP   297  0 1.000000000
## GO:0009141  BP   298  0 1.000000000
## GO:0060326  BP   299  0 1.000000000
## GO:0060271  BP   299  0 1.000000000
## GO:0051604  BP   300  0 1.000000000
## GO:0046942  BP   301  0 1.000000000
## GO:0090596  BP   301  0 1.000000000
## GO:0008202  BP   301  0 1.000000000
## GO:0015849  BP   302  0 1.000000000
## GO:0050714  BP   302  0 1.000000000
## GO:0046883  BP   302  0 1.000000000
## GO:0072001  BP   302  0 1.000000000
## GO:0016042  BP   306  0 1.000000000
## GO:0070372  BP   306  0 1.000000000
## GO:0045765  BP   307  0 1.000000000
## GO:0046651  BP   308  0 1.000000000
## GO:0045927  BP   308  0 1.000000000
## GO:0032943  BP   310  0 1.000000000
## GO:1990830  BP   311  0 1.000000000
## GO:1990823  BP   311  0 1.000000000
## GO:0044282  BP   311  0 1.000000000
## GO:0032103  BP   312  0 1.000000000
## GO:0071216  BP   313  0 1.000000000
## GO:0006066  BP   314  0 1.000000000
## GO:0051321  BP   314  0 1.000000000
## GO:0043062  BP   315  0 1.000000000
## GO:0048872  BP   315  0 1.000000000
## GO:0051271  BP   316  0 1.000000000
## GO:0051146  BP   316  0 1.000000000
## GO:0007059  BP   317  0 1.000000000
## GO:0021700  BP   317  0 1.000000000
## GO:0048562  BP   318  0 1.000000000
## GO:0018105  BP   318  0 1.000000000
## GO:0051235  BP   322  0 1.000000000
## GO:0043270  BP   322  0 1.000000000
## GO:0070371  BP   323  0 1.000000000
## GO:0042063  BP   323  0 1.000000000
## GO:0043434  BP   324  0 1.000000000
## GO:0046486  BP   325  0 1.000000000
## GO:0050890  BP   326  0 1.000000000
## GO:0044782  BP   327  0 1.000000000
## GO:0045862  BP   328  0 1.000000000
## GO:0008544  BP   329  0 1.000000000
## GO:0006869  BP   330  0 1.000000000
## GO:0006732  BP   331  0 1.000000000
## GO:0070661  BP   331  0 1.000000000
## GO:0002793  BP   331  0 1.000000000
## GO:0040013  BP   332  0 1.000000000
## GO:0032102  BP   336  0 1.000000000
## GO:0006909  BP   336  0 1.000000000
## GO:0050768  BP   337  0 1.000000000
## GO:0052548  BP   337  0 1.000000000
## GO:0009100  BP   338  0 1.000000000
## GO:0032259  BP   338  0 1.000000000
## GO:0019216  BP   338  0 1.000000000
## GO:0031589  BP   339  0 1.000000000
## GO:0007281  BP   339  0 1.000000000
## GO:0050900  BP   340  0 1.000000000
## GO:0019221  BP   341  0 1.000000000
## GO:1901342  BP   341  0 1.000000000
## GO:0050878  BP   342  0 1.000000000
## GO:0034470  BP   343  0 1.000000000
## GO:0018209  BP   343  0 1.000000000
## GO:0010769  BP   343  0 1.000000000
## GO:0044403  BP   343  0 1.000000000
## GO:1990778  BP   344  0 1.000000000
## GO:0032956  BP   344  0 1.000000000
## GO:0009636  BP   344  0 1.000000000
## GO:0018205  BP   345  0 1.000000000
## GO:0002440  BP   345  0 1.000000000
## GO:0001655  BP   346  0 1.000000000
## GO:0043010  BP   348  0 1.000000000
## GO:0006644  BP   348  0 1.000000000
## GO:1902903  BP   348  0 1.000000000
## GO:0045861  BP   349  0 1.000000000
## GO:0045787  BP   349  0 1.000000000
## GO:1904062  BP   349  0 1.000000000
## GO:0050806  BP   350  0 1.000000000
## GO:0050727  BP   354  0 1.000000000
## GO:0006959  BP   355  0 1.000000000
## GO:0031331  BP   355  0 1.000000000
## GO:0044772  BP   356  0 1.000000000
## GO:0033044  BP   356  0 1.000000000
## GO:0022411  BP   357  0 1.000000000
## GO:0007178  BP   357  0 1.000000000
## GO:0050678  BP   358  0 1.000000000
## GO:0062012  BP   359  0 1.000000000
## GO:0032496  BP   359  0 1.000000000
## GO:0042060  BP   360  0 1.000000000
## GO:0051961  BP   361  0 1.000000000
## GO:0048167  BP   361  0 1.000000000
## GO:0046394  BP   362  0 1.000000000
## GO:0010976  BP   362  0 1.000000000
## GO:0016053  BP   363  0 1.000000000
## GO:0001101  BP   364  0 1.000000000
## GO:0046879  BP   365  0 1.000000000
## GO:0016311  BP   366  0 1.000000000
## GO:1901214  BP   368  0 1.000000000
## GO:0010876  BP   370  0 1.000000000
## GO:0031349  BP   370  0 1.000000000
## GO:0031667  BP   371  0 1.000000000
## GO:0001505  BP   372  0 1.000000000
## GO:0009914  BP   373  0 1.000000000
## GO:0003002  BP   373  0 1.000000000
## GO:0072594  BP   374  0 1.000000000
## GO:0006887  BP   375  0 1.000000000
## GO:0006631  BP   376  0 1.000000000
## GO:0002237  BP   377  0 1.000000000
## GO:0042176  BP   378  0 1.000000000
## GO:0006091  BP   379  0 1.000000000
## GO:0035690  BP   380  0 1.000000000
## GO:0060562  BP   380  0 1.000000000
## GO:0001503  BP   381  0 1.000000000
## GO:0051260  BP   383  0 1.000000000
## GO:0010256  BP   384  0 1.000000000
## GO:1901652  BP   384  0 1.000000000
## GO:0006914  BP   386  0 1.000000000
## GO:0061919  BP   386  0 1.000000000
## GO:0010721  BP   387  0 1.000000000
## GO:0043900  BP   391  0 1.000000000
## GO:0060249  BP   392  0 1.000000000
## GO:0003012  BP   392  0 1.000000000
## GO:0032970  BP   393  0 1.000000000
## GO:0044770  BP   394  0 1.000000000
## GO:0043161  BP   394  0 1.000000000
## GO:0042692  BP   395  0 1.000000000
## GO:0009314  BP   395  0 1.000000000
## GO:0001654  BP   397  0 1.000000000
## GO:0032535  BP   397  0 1.000000000
## GO:0006979  BP   400  0 1.000000000
## GO:0150063  BP   400  0 1.000000000
## GO:0030099  BP   401  0 1.000000000
## GO:0048638  BP   401  0 1.000000000
## GO:0009991  BP   401  0 1.000000000
## GO:0051346  BP   402  0 1.000000000
## GO:0010639  BP   403  0 1.000000000
## GO:0051098  BP   403  0 1.000000000
## GO:0048880  BP   403  0 1.000000000
## GO:0070997  BP   405  0 1.000000000
## GO:0001667  BP   406  0 1.000000000
## GO:0044419  BP   408  0 1.000000000
## GO:0001933  BP   408  0 1.000000000
## GO:0000280  BP   409  0 1.000000000
## GO:0052547  BP   411  0 1.000000000
## GO:2001233  BP   414  0 1.000000000
## GO:0015711  BP   415  0 1.000000000
## GO:0010959  BP   421  0 1.000000000
## GO:0009896  BP   422  0 1.000000000
## GO:0009150  BP   423  0 1.000000000
## GO:0007517  BP   424  0 1.000000000
## GO:0050673  BP   425  0 1.000000000
## GO:0002449  BP   425  0 1.000000000
## GO:0034655  BP   425  0 1.000000000
## GO:0016570  BP   427  0 1.000000000
## GO:0071900  BP   427  0 1.000000000
## GO:0019932  BP   427  0 1.000000000
## GO:0016055  BP   428  0 1.000000000
## GO:0042742  BP   428  0 1.000000000
## GO:0198738  BP   430  0 1.000000000
## GO:0001558  BP   431  0 1.000000000
## GO:0009259  BP   433  0 1.000000000
## GO:0051222  BP   435  0 1.000000000
## GO:0022412  BP   436  0 1.000000000
## GO:0045860  BP   438  0 1.000000000
## GO:0032386  BP   438  0 1.000000000
## GO:0042391  BP   439  0 1.000000000
## GO:0022613  BP   439  0 1.000000000
## GO:0051052  BP   440  0 1.000000000
## GO:0016569  BP   444  0 1.000000000
## GO:0006163  BP   447  0 1.000000000
## GO:0001819  BP   449  0 1.000000000
## GO:0048608  BP   449  0 1.000000000
## GO:0014706  BP   449  0 1.000000000
## GO:0019693  BP   450  0 1.000000000
## GO:0043254  BP   451  0 1.000000000
## GO:0045786  BP   452  0 1.000000000
## GO:0042326  BP   452  0 1.000000000
## GO:0061458  BP   453  0 1.000000000
## GO:1904951  BP   454  0 1.000000000
## GO:0015672  BP   455  0 1.000000000
## GO:0048285  BP   456  0 1.000000000
## GO:0007005  BP   459  0 1.000000000
## GO:0010498  BP   459  0 1.000000000
## GO:0045666  BP   461  0 1.000000000
## GO:0044270  BP   463  0 1.000000000
## GO:0006281  BP   464  0 1.000000000
## GO:0031346  BP   466  0 1.000000000
## GO:0048732  BP   467  0 1.000000000
## GO:0034660  BP   467  0 1.000000000
## GO:0007389  BP   468  0 1.000000000
## GO:0046700  BP   469  0 1.000000000
## GO:0007409  BP   470  0 1.000000000
## GO:0060537  BP   472  0 1.000000000
## GO:1903532  BP   472  0 1.000000000
## GO:0051656  BP   473  0 1.000000000
## GO:0033674  BP   476  0 1.000000000
## GO:0034765  BP   478  0 1.000000000
## GO:1901615  BP   481  0 1.000000000
## GO:0071407  BP   482  0 1.000000000
## GO:0019439  BP   483  0 1.000000000
## GO:0008015  BP   484  0 1.000000000
## GO:0048871  BP   486  0 1.000000000
## GO:0120031  BP   488  0 1.000000000
## GO:0072521  BP   490  0 1.000000000
## GO:0048568  BP   493  0 1.000000000
## GO:0007346  BP   493  0 1.000000000
## GO:0010035  BP   493  0 1.000000000
## GO:0003013  BP   495  0 1.000000000
## GO:0009611  BP   495  0 1.000000000
## GO:0030031  BP   501  0 1.000000000
## GO:0090407  BP   503  0 1.000000000
## GO:0061564  BP   506  0 1.000000000
## GO:0002443  BP   507  0 1.000000000
## GO:0051186  BP   509  0 1.000000000
## GO:0051345  BP   510  0 1.000000000
## GO:0001525  BP   513  0 1.000000000
## GO:0016049  BP   513  0 1.000000000
## GO:1901361  BP   513  0 1.000000000
## GO:0032870  BP   518  0 1.000000000
## GO:1903827  BP   520  0 1.000000000
## GO:1905114  BP   521  0 1.000000000
## GO:0022604  BP   523  0 1.000000000
## GO:0023061  BP   523  0 1.000000000
## GO:0051047  BP   527  0 1.000000000
## GO:0001501  BP   530  0 1.000000000
## GO:0044089  BP   534  0 1.000000000
## GO:0001701  BP   538  0 1.000000000
## GO:0051493  BP   538  0 1.000000000
## GO:0030335  BP   539  0 1.000000000
## GO:0072657  BP   543  0 1.000000000
## GO:0008610  BP   545  0 1.000000000
## GO:0005975  BP   546  0 1.000000000
## GO:0045936  BP   546  0 1.000000000
## GO:0010563  BP   546  0 1.000000000
## GO:0006820  BP   549  0 1.000000000
## GO:0051347  BP   551  0 1.000000000
## GO:0002009  BP   553  0 1.000000000
## GO:0007169  BP   553  0 1.000000000
## GO:0009117  BP   555  0 1.000000000
## GO:0010817  BP   557  0 1.000000000
## GO:2000147  BP   561  0 1.000000000
## GO:0090066  BP   561  0 1.000000000
## GO:0007283  BP   561  0 1.000000000
## GO:0031400  BP   564  0 1.000000000
## GO:0006753  BP   564  0 1.000000000
## GO:0071417  BP   568  0 1.000000000
## GO:0000226  BP   568  0 1.000000000
## GO:0016567  BP   568  0 1.000000000
## GO:0034762  BP   568  0 1.000000000
## GO:0060627  BP   568  0 1.000000000
## GO:0032787  BP   570  0 1.000000000
## GO:0051301  BP   574  0 1.000000000
## GO:0051272  BP   580  0 1.000000000
## GO:0050769  BP   580  0 1.000000000
## GO:0006511  BP   580  0 1.000000000
## GO:0048232  BP   581  0 1.000000000
## GO:0010564  BP   585  0 1.000000000
## GO:0019941  BP   592  0 1.000000000
## GO:0040017  BP   593  0 1.000000000
## GO:0010638  BP   595  0 1.000000000
## GO:0051640  BP   596  0 1.000000000
## GO:0044057  BP   596  0 1.000000000
## GO:0006935  BP   597  0 1.000000000
## GO:0042330  BP   600  0 1.000000000
## GO:1901137  BP   601  0 1.000000000
## GO:0071363  BP   602  0 1.000000000
## GO:0043632  BP   602  0 1.000000000
## GO:0010975  BP   603  0 1.000000000
## GO:0097190  BP   605  0 1.000000000
## GO:0007423  BP   606  0 1.000000000
## GO:0071396  BP   612  0 1.000000000
## GO:0098662  BP   613  0 1.000000000
## GO:0070848  BP   615  0 1.000000000
## GO:0032446  BP   620  0 1.000000000
## GO:0048514  BP   622  0 1.000000000
## GO:0030855  BP   626  0 1.000000000
## GO:0007507  BP   628  0 1.000000000
## GO:0055086  BP   630  0 1.000000000
## GO:1901699  BP   631  0 1.000000000
## GO:0031347  BP   640  0 1.000000000
## GO:1903047  BP   644  0 1.000000000
## GO:0044283  BP   650  0 1.000000000
## GO:0051962  BP   651  0 1.000000000
## GO:0098660  BP   656  0 1.000000000
## GO:0010720  BP   659  0 1.000000000
## GO:0050804  BP   661  0 1.000000000
## GO:0045859  BP   662  0 1.000000000
## GO:0099177  BP   662  0 1.000000000
## GO:0080135  BP   666  0 1.000000000
## GO:0098542  BP   667  0 1.000000000
## GO:0048729  BP   677  0 1.000000000
## GO:0008285  BP   681  0 1.000000000
## GO:0043086  BP   682  0 1.000000000
## GO:0098655  BP   690  0 1.000000000
## GO:0031329  BP   695  0 1.000000000
## GO:0051603  BP   696  0 1.000000000
## GO:0009725  BP   697  0 1.000000000
## GO:0061061  BP   701  0 1.000000000
## GO:0030162  BP   716  0 1.000000000
## GO:0040008  BP   717  0 1.000000000
## GO:0001568  BP   719  0 1.000000000
## GO:0007276  BP   719  0 1.000000000
## GO:0017144  BP   727  0 1.000000000
## GO:0007610  BP   728  0 1.000000000
## GO:0043549  BP   728  0 1.000000000
## GO:0043269  BP   732  0 1.000000000
## GO:0014070  BP   734  0 1.000000000
## GO:0006325  BP   735  0 1.000000000
## GO:0044257  BP   740  0 1.000000000
## GO:0006974  BP   740  0 1.000000000
## GO:0006897  BP   741  0 1.000000000
## GO:0070647  BP   741  0 1.000000000
## GO:0001944  BP   752  0 1.000000000
## GO:0051129  BP   755  0 1.000000000
## GO:0007017  BP   759  0 1.000000000
## GO:0072358  BP   765  0 1.000000000
## GO:0032101  BP   770  0 1.000000000
## GO:0120035  BP   772  0 1.000000000
## GO:0033365  BP   774  0 1.000000000
## GO:0045664  BP   776  0 1.000000000
## GO:0061024  BP   780  0 1.000000000
## GO:0031344  BP   781  0 1.000000000
## GO:0048589  BP   787  0 1.000000000
## GO:0003006  BP   791  0 1.000000000
## GO:0070925  BP   796  0 1.000000000
## GO:0000278  BP   799  0 1.000000000
## GO:0009894  BP   821  0 1.000000000
## GO:0033993  BP   822  0 1.000000000
## GO:0043009  BP   824  0 1.000000000
## GO:0051338  BP   832  0 1.000000000
## GO:0009792  BP   841  0 1.000000000
## GO:0098916  BP   856  0 1.000000000
## GO:0007268  BP   856  0 1.000000000
## GO:0048609  BP   858  0 1.000000000
## GO:0099537  BP   865  0 1.000000000
## GO:0032504  BP   869  0 1.000000000
## GO:0098657  BP   872  0 1.000000000
## GO:0055114  BP   872  0 1.000000000
## GO:0099536  BP   874  0 1.000000000
## GO:0034220  BP   878  0 1.000000000
## GO:0006886  BP   882  0 1.000000000
## GO:0010243  BP   883  0 1.000000000
## GO:0019953  BP   883  0 1.000000000
## GO:0007167  BP   890  0 1.000000000
## GO:0042493  BP   894  0 1.000000000
## GO:0030163  BP   898  0 1.000000000
## GO:0019752  BP   902  0 1.000000000
## GO:0035239  BP   905  0 1.000000000
## GO:0071345  BP   907  0 1.000000000
## GO:0006259  BP   915  0 1.000000000
## GO:0043066  BP   921  0 1.000000000
## GO:0044255  BP   932  0 1.000000000
## GO:0043069  BP   939  0 1.000000000
## GO:0043436  BP   941  0 1.000000000
## GO:0044087  BP   948  0 1.000000000
## GO:0019637  BP   954  0 1.000000000
## GO:0051726  BP   955  0 1.000000000
## GO:0060341  BP   958  0 1.000000000
## GO:0006082  BP   968  0 1.000000000
## GO:1901698  BP   982  0 1.000000000
## GO:0051336  BP   985  0 1.000000000
## GO:0034622  BP   996  0 1.000000000
## GO:1901135  BP  1003  0 1.000000000
## GO:0044265  BP  1013  0 1.000000000
## GO:0044703  BP  1028  0 1.000000000
## GO:0009628  BP  1030  0 1.000000000
## GO:0060548  BP  1049  0 1.000000000
## GO:0043085  BP  1051  0 1.000000000
## GO:0022603  BP  1076  0 1.000000000
## GO:0051050  BP  1081  0 1.000000000
## GO:0009887  BP  1090  0 1.000000000
## GO:0040007  BP  1097  0 1.000000000
## GO:0051276  BP  1103  0 1.000000000
## GO:0022402  BP  1108  0 1.000000000
## GO:0035295  BP  1122  0 1.000000000
## GO:0007608  BP  1138  0 1.000000000
## GO:0072359  BP  1143  0 1.000000000
## GO:1901565  BP  1151  0 1.000000000
## GO:0048646  BP  1157  0 1.000000000
## GO:0060429  BP  1172  0 1.000000000
## GO:1901701  BP  1206  0 1.000000000
## GO:0009057  BP  1218  0 1.000000000
## GO:0071495  BP  1223  0 1.000000000
## GO:0007606  BP  1236  0 1.000000000
## GO:0033043  BP  1242  0 1.000000000
## GO:0006629  BP  1258  0 1.000000000
## GO:0055085  BP  1266  0 1.000000000
## GO:0051130  BP  1290  0 1.000000000
## GO:0080134  BP  1337  0 1.000000000
## GO:0009719  BP  1409  0 1.000000000
## GO:0044093  BP  1429  0 1.000000000
## GO:0022414  BP  1471  0 1.000000000
## GO:0000003  BP  1472  0 1.000000000
## GO:0016192  BP  1501  0 1.000000000
## GO:0046907  BP  1502  0 1.000000000
## GO:1901700  BP  1589  0 1.000000000
## GO:0007267  BP  1596  0 1.000000000
## GO:0007049  BP  1639  0 1.000000000
## GO:0006508  BP  1657  0 1.000000000
## GO:0034613  BP  1676  0 1.000000000
## GO:0070727  BP  1686  0 1.000000000
## GO:0044281  BP  1753  0 1.000000000
## GO:0033554  BP  1763  0 1.000000000
## GO:0007600  BP  1791  0 1.000000000
## GO:0050790  BP  1807  0 1.000000000
## GO:1901575  BP  1857  0 1.000000000
## GO:0007186  BP  1921  0 1.000000000
## GO:0009888  BP  1956  0 1.000000000
## GO:0044248  BP  1996  0 1.000000000
## GO:0009056  BP  2257  0 1.000000000
## GO:0050877  BP  2299  0 1.000000000
## GO:0071310  BP  2433  0 1.000000000
## GO:0003008  BP  2939  0 1.000000000
## GO:0070887  BP  3023  0 1.000000000
## 
## [[1]][[11]]
##                                                                                                                                                           Term
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0008283                                                                                                                                  cell proliferation
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0001568                                                                                                                            blood vessel development
## GO:0001944                                                                                                                             vasculature development
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0010941                                                                                                                            regulation of cell death
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0008219                                                                                                                                          cell death
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0009058                                                                                                                                biosynthetic process
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:0072359                                                                                                                      circulatory system development
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0019538                                                                                                                           protein metabolic process
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0001525                                                                                                                                        angiogenesis
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0001892                                                                                                                      embryonic placenta development
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0010468                                                                                                                       regulation of gene expression
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0060309                                                                                                                           elastin catabolic process
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0001890                                                                                                                                placenta development
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0006508                                                                                                                                         proteolysis
## GO:0006473                                                                                                                                 protein acetylation
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0048839                                                                                                                               inner ear development
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0044237                                                                                                                          cellular metabolic process
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0044238                                                                                                                           primary metabolic process
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0042592                                                                                                                                 homeostatic process
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0043583                                                                                                                                     ear development
## GO:0012501                                                                                                                               programmed cell death
## GO:0050663                                                                                                                                  cytokine secretion
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0030163                                                                                                                           protein catabolic process
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0051046                                                                                                                             regulation of secretion
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:0060872                                                                                                                      semicircular canal development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0048513                                                                                                                            animal organ development
## GO:0048519                                                                                                           negative regulation of biological process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0002520                                                                                                                           immune system development
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0032940                                                                                                                                   secretion by cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0006909                                                                                                                                        phagocytosis
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0035295                                                                                                                                    tube development
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0031649                                                                                                                                     heat generation
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0046903                                                                                                                                           secretion
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0070997                                                                                                                                        neuron death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0033198                                                                                                                                     response to ATP
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0048608                                                                                                                  reproductive structure development
## GO:0061458                                                                                                                     reproductive system development
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0014047                                                                                                                                 glutamate secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0016477                                                                                                                                      cell migration
## GO:0048568                                                                                                                         embryonic organ development
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0014002                                                                                                                               astrocyte development
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0000003                                                                                                                                        reproduction
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0021983                                                                                                                         pituitary gland development
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0001709                                                                                                                             cell fate determination
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:0048731                                                                                                                                  system development
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0035176                                                                                                                                     social behavior
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0009306                                                                                                                                   protein secretion
## GO:0007423                                                                                                                           sensory organ development
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0002790                                                                                                                                   peptide secretion
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0034605                                                                                                                           cellular response to heat
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0001885                                                                                                                        endothelial cell development
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0040011                                                                                                                                          locomotion
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0021536                                                                                                                            diencephalon development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0019915                                                                                                                                       lipid storage
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0006915                                                                                                                                   apoptotic process
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0017144                                                                                                                              drug metabolic process
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0006897                                                                                                                                         endocytosis
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0007275                                                                                                                  multicellular organism development
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0051049                                                                                                                             regulation of transport
## GO:0001816                                                                                                                                 cytokine production
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0009888                                                                                                                                  tissue development
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0032602                                                                                                                                chemokine production
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0007584                                                                                                                                response to nutrient
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0009408                                                                                                                                    response to heat
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0098657                                                                                                                                    import into cell
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0002252                                                                                                                             immune effector process
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0007417                                                                                                                  central nervous system development
## GO:0021782                                                                                                                              glial cell development
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0050776                                                                                                                       regulation of immune response
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0048856                                                                                                                    anatomical structure development
## GO:0030282                                                                                                                                 bone mineralization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0003158                                                                                                                             endothelium development
## GO:1990266                                                                                                                                neutrophil migration
## GO:0009056                                                                                                                                   catabolic process
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0015837                                                                                                                                     amine transport
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0016043                                                                                                                     cellular component organization
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0045321                                                                                                                                leukocyte activation
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0016573                                                                                                                                 histone acetylation
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0097530                                                                                                                               granulocyte migration
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0006865                                                                                                                                amino acid transport
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0030154                                                                                                                                cell differentiation
## GO:0032502                                                                                                                               developmental process
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0007596                                                                                                                                   blood coagulation
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0007599                                                                                                                                          hemostasis
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0050817                                                                                                                                         coagulation
## GO:0031214                                                                                                                       biomineral tissue development
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0060284                                                                                                                      regulation of cell development
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0030902                                                                                                                               hindbrain development
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0001775                                                                                                                                     cell activation
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0048869                                                                                                                      cellular developmental process
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0050789                                                                                                                    regulation of biological process
## GO:0002376                                                                                                                               immune system process
## GO:0001764                                                                                                                                    neuron migration
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:0006956                                                                                                                               complement activation
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0048469                                                                                                                                     cell maturation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0007254                                                                                                                                         JNK cascade
## GO:0009790                                                                                                                                  embryo development
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0051216                                                                                                                               cartilage development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0032879                                                                                                                          regulation of localization
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0030073                                                                                                                                   insulin secretion
## GO:0007155                                                                                                                                       cell adhesion
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0032868                                                                                                                                 response to insulin
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0022610                                                                                                                                 biological adhesion
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0051607                                                                                                                           defense response to virus
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0030278                                                                                                                          regulation of ossification
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0080134                                                                                                                    regulation of response to stress
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0016485                                                                                                                                  protein processing
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0065007                                                                                                                               biological regulation
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0002064                                                                                                                         epithelial cell development
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0016050                                                                                                                                vesicle organization
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0030217                                                                                                                              T cell differentiation
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0009615                                                                                                                                   response to virus
## GO:0060485                                                                                                                              mesenchyme development
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0010631                                                                                                                           epithelial cell migration
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0045165                                                                                                                                cell fate commitment
## GO:0090130                                                                                                                                    tissue migration
## GO:0061448                                                                                                                       connective tissue development
## GO:1901653                                                                                                                        cellular response to peptide
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0030182                                                                                                                              neuron differentiation
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0007611                                                                                                                                  learning or memory
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0051604                                                                                                                                  protein maturation
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0043062                                                                                                                extracellular structure organization
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0051235                                                                                                                             maintenance of location
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0006952                                                                                                                                    defense response
## GO:0050890                                                                                                                                           cognition
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0006869                                                                                                                                     lipid transport
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0009987                                                                                                                                    cellular process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0006955                                                                                                                                     immune response
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0001655                                                                                                                       urogenital system development
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:0048699                                                                                                                               generation of neurons
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0042060                                                                                                                                       wound healing
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0046879                                                                                                                                   hormone secretion
## GO:0010876                                                                                                                                  lipid localization
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0009914                                                                                                                                   hormone transport
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0015031                                                                                                                                   protein transport
## GO:0035690                                                                                                                           cellular response to drug
## GO:0001503                                                                                                                                        ossification
## GO:0006996                                                                                                                              organelle organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0030900                                                                                                                               forebrain development
## GO:0033554                                                                                                                         cellular response to stress
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0022008                                                                                                                                        neurogenesis
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0015833                                                                                                                                   peptide transport
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0043412                                                                                                                          macromolecule modification
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0006950                                                                                                                                  response to stress
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:0042886                                                                                                                                     amide transport
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:0000280                                                                                                                                    nuclear division
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0015711                                                                                                                             organic anion transport
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0045184                                                                                                               establishment of protein localization
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0016570                                                                                                                                histone modification
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0032501                                                                                                                    multicellular organismal process
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0048285                                                                                                                                   organelle fission
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0048732                                                                                                                                   gland development
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0008015                                                                                                                                   blood circulation
## GO:0042110                                                                                                                                   T cell activation
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0003013                                                                                                                          circulatory system process
## GO:0009611                                                                                                                                response to wounding
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:0023061                                                                                                                                      signal release
## GO:0002253                                                                                                                       activation of immune response
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0001501                                                                                                                         skeletal system development
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0002250                                                                                                                            adaptive immune response
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0051640                                                                                                                              organelle localization
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0023052                                                                                                                                           signaling
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0007154                                                                                                                                  cell communication
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0007399                                                                                                                          nervous system development
## GO:0007420                                                                                                                                   brain development
## GO:0006810                                                                                                                                           transport
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0031347                                                                                                                      regulation of defense response
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0048468                                                                                                                                    cell development
## GO:0098542                                                                                                                  defense response to other organism
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0051234                                                                                                                       establishment of localization
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0060322                                                                                                                                    head development
## GO:0006954                                                                                                                               inflammatory response
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0009725                                                                                                                                 response to hormone
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0071702                                                                                                                         organic substance transport
## GO:0009605                                                                                                                       response to external stimulus
## GO:0007610                                                                                                                                            behavior
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0008104                                                                                                                                protein localization
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0061024                                                                                                                               membrane organization
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0033993                                                                                                                                   response to lipid
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0042493                                                                                                                                    response to drug
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0009617                                                                                                                               response to bacterium
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0033036                                                                                                                          macromolecule localization
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0003008                                                                                                                                      system process
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0023051                                                                                                                             regulation of signaling
## GO:0060429                                                                                                                              epithelium development
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0048666                                                                                                                                  neuron development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051179                                                                                                                                        localization
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0046907                                                                                                                             intracellular transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0006811                                                                                                                                       ion transport
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0007049                                                                                                                                          cell cycle
## GO:0042221                                                                                                                                response to chemical
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0050896                                                                                                                                response to stimulus
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0016310                                                                                                                                     phosphorylation
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0050877                                                                                                                              nervous system process
## GO:0051704                                                                                                                              multi-organism process
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0051641                                                                                                                               cellular localization
## GO:0008150                                                                                                                                  biological_process
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0022607                                                                                                                         cellular component assembly
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0007165                                                                                                                                 signal transduction
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0010033                                                                                                                       response to organic substance
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0072215                                                                                                               regulation of metanephros development
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:0032608                                                                                                                          interferon-beta production
## GO:0045190                                                                                                                                   isotype switching
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0007492                                                                                                                                endoderm development
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:0008542                                                                                                                                     visual learning
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0051702                                                                                                                           interaction with symbiont
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0014032                                                                                                                       neural crest cell development
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0048864                                                                                                                               stem cell development
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0060021                                                                                                                           roof of mouth development
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0048477                                                                                                                                           oogenesis
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:0036503                                                                                                                                        ERAD pathway
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:0072080                                                                                                                          nephron tubule development
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0046849                                                                                                                                     bone remodeling
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0030101                                                                                                                      natural killer cell activation
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0014812                                                                                                                               muscle cell migration
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006986                                                                                                                        response to unfolded protein
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0042100                                                                                                                                B cell proliferation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0007589                                                                                                                                body fluid secretion
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:0098773                                                                                                                          skin epidermis development
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0051261                                                                                                                            protein depolymerization
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:0008584                                                                                                                              male gonad development
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0048565                                                                                                                         digestive tract development
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0061025                                                                                                                                     membrane fusion
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0051168                                                                                                                                      nuclear export
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0048675                                                                                                                                      axon extension
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0046661                                                                                                                            male sex differentiation
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0006323                                                                                                                                       DNA packaging
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035150                                                                                                                             regulation of tube size
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0051262                                                                                                                             protein tetramerization
## GO:0050792                                                                                                                         regulation of viral process
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0006364                                                                                                                                     rRNA processing
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0019058                                                                                                                                    viral life cycle
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0007623                                                                                                                                    circadian rhythm
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0017038                                                                                                                                      protein import
## GO:0008361                                                                                                                             regulation of cell size
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0070085                                                                                                                                       glycosylation
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0060047                                                                                                                                   heart contraction
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0008406                                                                                                                                   gonad development
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0035265                                                                                                                                        organ growth
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0030258                                                                                                                                  lipid modification
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0048863                                                                                                                           stem cell differentiation
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0006813                                                                                                                             potassium ion transport
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0007411                                                                                                                                       axon guidance
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0048588                                                                                                                           developmental cell growth
## GO:0016458                                                                                                                                      gene silencing
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0010038                                                                                                                               response to metal ion
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0016032                                                                                                                                       viral process
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060271                                                                                                                                     cilium assembly
## GO:0072001                                                                                                                            renal system development
## GO:0046677                                                                                                                              response to antibiotic
## GO:0045927                                                                                                                       positive regulation of growth
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0044782                                                                                                                                 cilium organization
## GO:0008544                                                                                                                               epidermis development
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:0006417                                                                                                                           regulation of translation
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0032259                                                                                                                                         methylation
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:0044403                                                                                                                                    symbiont process
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0016311                                                                                                                                   dephosphorylation
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0010256                                                                                                                    endomembrane system organization
## GO:0006914                                                                                                                                           autophagy
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0003012                                                                                                                               muscle system process
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0009314                                                                                                                               response to radiation
## GO:0001654                                                                                                                                     eye development
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0007015                                                                                                                         actin filament organization
## GO:0150063                                                                                                                           visual system development
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0042113                                                                                                                                   B cell activation
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0007409                                                                                                                                        axonogenesis
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0061564                                                                                                                                    axon development
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:0016049                                                                                                                                         cell growth
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0048232                                                                                                                              male gamete generation
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0061061                                                                                                                        muscle structure development
## GO:0040008                                                                                                                                regulation of growth
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0007276                                                                                                                                   gamete generation
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0030029                                                                                                                        actin filament-based process
## GO:0007017                                                                                                                           microtubule-based process
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0048589                                                                                                                                developmental growth
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0006396                                                                                                                                      RNA processing
## GO:0030001                                                                                                                                 metal ion transport
## GO:0045087                                                                                                                              innate immune response
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0031175                                                                                                                       neuron projection development
## GO:0040007                                                                                                                                              growth
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0030030                                                                                                                        cell projection organization
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0007600                                                                                                                                  sensory perception
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0043933                                                                                                     protein-containing complex subunit organization
##            Ont     N DE         P.DE
## GO:0010557  BP  1799  6 1.101024e-05
## GO:0045935  BP  1833  6 1.227425e-05
## GO:0031328  BP  1903  6 1.525337e-05
## GO:0060548  BP  1049  5 1.585207e-05
## GO:0009891  BP  1943  6 1.720615e-05
## GO:0048871  BP   486  4 1.808538e-05
## GO:0008283  BP  1994  6 1.998870e-05
## GO:0031326  BP  3470  7 3.229912e-05
## GO:0045766  BP   185  3 3.482074e-05
## GO:0009889  BP  3542  7 3.707827e-05
## GO:2000178  BP    28  2 4.547741e-05
## GO:1904018  BP   204  3 4.659582e-05
## GO:0001894  BP   232  3 6.830374e-05
## GO:0043170  BP  8488  9 7.431176e-05
## GO:0001568  BP   719  4 8.367158e-05
## GO:0001944  BP   752  4 9.960841e-05
## GO:0045893  BP  1536  5 9.985707e-05
## GO:1903508  BP  1540  5 1.011078e-04
## GO:1902680  BP  1541  5 1.014223e-04
## GO:0072358  BP   765  4 1.064595e-04
## GO:0006807  BP  8923  9 1.165459e-04
## GO:0051254  BP  1638  5 1.357700e-04
## GO:0042127  BP  1649  5 1.401741e-04
## GO:0010941  BP  1685  5 1.553704e-04
## GO:0045765  BP   307  3 1.565799e-04
## GO:0032663  BP    58  2 1.977353e-04
## GO:1901342  BP   341  3 2.134362e-04
## GO:0051173  BP  3061  6 2.319516e-04
## GO:2000756  BP    63  2 2.333985e-04
## GO:0032623  BP    66  2 2.561968e-04
## GO:0008284  BP   972  4 2.684347e-04
## GO:0045428  BP    68  2 2.719781e-04
## GO:0031325  BP  3201  6 2.984473e-04
## GO:0010604  BP  3212  6 3.042635e-04
## GO:2000112  BP  3219  6 3.080122e-04
## GO:0060249  BP   392  3 3.215488e-04
## GO:1901983  BP    74  2 3.221115e-04
## GO:0071704  BP 10008  9 3.275026e-04
## GO:0010628  BP  1981  5 3.346251e-04
## GO:0044249  BP  4938  7 3.379466e-04
## GO:0006809  BP    76  2 3.397506e-04
## GO:0006357  BP  1993  5 3.442922e-04
## GO:0050766  BP    77  2 3.487439e-04
## GO:0010556  BP  3311  6 3.608500e-04
## GO:1900035  BP     1  1 3.688071e-04
## GO:0060311  BP     1  1 3.688071e-04
## GO:0035505  BP     1  1 3.688071e-04
## GO:0060310  BP     1  1 3.688071e-04
## GO:0035504  BP     1  1 3.688071e-04
## GO:0046209  BP    80  2 3.764177e-04
## GO:0019219  BP  3352  6 3.866412e-04
## GO:0006366  BP  2049  5 3.922981e-04
## GO:0022603  BP  1076  4 3.963393e-04
## GO:0008219  BP  2065  5 4.069203e-04
## GO:2001057  BP    84  2 4.149330e-04
## GO:0051171  BP  5104  7 4.199005e-04
## GO:0009058  BP  5125  7 4.313589e-04
## GO:0009893  BP  3486  6 4.815029e-04
## GO:0008152  BP 10485  9 4.980537e-04
## GO:0072359  BP  1143  4 4.991462e-04
## GO:0048646  BP  1157  4 5.228477e-04
## GO:1903532  BP   472  3 5.537528e-04
## GO:0019538  BP  5344  7 5.672316e-04
## GO:0031323  BP  5401  7 6.079164e-04
## GO:1903426  BP   103  2 6.229866e-04
## GO:0042136  BP   104  2 6.350805e-04
## GO:0050764  BP   105  2 6.472882e-04
## GO:0045944  BP  1226  4 6.517108e-04
## GO:0048522  BP  5469  7 6.596036e-04
## GO:0060255  BP  5486  7 6.730815e-04
## GO:0001525  BP   513  3 7.059052e-04
## GO:0034641  BP  5547  7 7.233452e-04
## GO:0001892  BP   112  2 7.359261e-04
## GO:1990079  BP     2  1 7.374933e-04
## GO:0035854  BP     2  1 7.374933e-04
## GO:0044467  BP     2  1 7.374933e-04
## GO:1900168  BP     2  1 7.374933e-04
## GO:1900166  BP     2  1 7.374933e-04
## GO:2000177  BP   113  2 7.490426e-04
## GO:0051047  BP   527  3 7.634148e-04
## GO:0010468  BP  3860  6 8.488441e-04
## GO:1903409  BP   121  2 8.580481e-04
## GO:0051241  BP  1343  4 9.203518e-04
## GO:0044271  BP  3993  6 1.023648e-03
## GO:0034645  BP  4022  6 1.065336e-03
## GO:0060309  BP     3  1 1.106059e-03
## GO:1900041  BP     3  1 1.106059e-03
## GO:0060559  BP     3  1 1.106059e-03
## GO:0071657  BP     3  1 1.106059e-03
## GO:1901258  BP     3  1 1.106059e-03
## GO:0060557  BP     3  1 1.106059e-03
## GO:0010725  BP     3  1 1.106059e-03
## GO:0019222  BP  5953  7 1.143811e-03
## GO:0001935  BP   143  2 1.194924e-03
## GO:0009059  BP  4121  6 1.217995e-03
## GO:0048514  BP   622  3 1.234185e-03
## GO:0042133  BP   147  2 1.261983e-03
## GO:0050715  BP   150  2 1.313444e-03
## GO:0050709  BP   152  2 1.348305e-03
## GO:0018394  BP   155  2 1.401428e-03
## GO:0048518  BP  6171  7 1.442511e-03
## GO:0071611  BP     4  1 1.474503e-03
## GO:0036301  BP     4  1 1.474503e-03
## GO:0070164  BP     4  1 1.474503e-03
## GO:2000173  BP     4  1 1.474503e-03
## GO:0045917  BP     4  1 1.474503e-03
## GO:0033092  BP     4  1 1.474503e-03
## GO:2000259  BP     4  1 1.474503e-03
## GO:0046136  BP     4  1 1.474503e-03
## GO:0071655  BP     4  1 1.474503e-03
## GO:1901256  BP     4  1 1.474503e-03
## GO:0090304  BP  4277  6 1.493550e-03
## GO:0043067  BP  1537  4 1.528346e-03
## GO:0002792  BP   162  2 1.529245e-03
## GO:1901564  BP  6234  7 1.539941e-03
## GO:0008285  BP   681  3 1.602669e-03
## GO:0006355  BP  2784  5 1.631879e-03
## GO:1903506  BP  2792  5 1.653500e-03
## GO:2001141  BP  2801  5 1.678082e-03
## GO:0001890  BP   170  2 1.681925e-03
## GO:0045807  BP   175  2 1.780912e-03
## GO:0002705  BP   176  2 1.801037e-03
## GO:0030222  BP     5  1 1.842827e-03
## GO:0070487  BP     5  1 1.842827e-03
## GO:0033091  BP     5  1 1.842827e-03
## GO:1900034  BP     5  1 1.842827e-03
## GO:0006351  BP  2875  5 1.890889e-03
## GO:0097659  BP  2883  5 1.915064e-03
## GO:0061351  BP   183  2 1.944967e-03
## GO:0032774  BP  2896  5 1.954848e-03
## GO:0006508  BP  1657  4 2.023079e-03
## GO:0006473  BP   187  2 2.029606e-03
## GO:0070162  BP     6  1 2.211030e-03
## GO:0045650  BP     6  1 2.211030e-03
## GO:0034242  BP     6  1 2.211030e-03
## GO:2000556  BP     6  1 2.211030e-03
## GO:0060319  BP     6  1 2.211030e-03
## GO:2000554  BP     6  1 2.211030e-03
## GO:0070163  BP     6  1 2.211030e-03
## GO:2000977  BP     6  1 2.211030e-03
## GO:2000377  BP   200  2 2.316642e-03
## GO:0051224  BP   204  2 2.408626e-03
## GO:0048523  BP  4687  6 2.459377e-03
## GO:0003006  BP   791  3 2.461818e-03
## GO:0051252  BP  3049  5 2.471672e-03
## GO:1903708  BP   208  2 2.502328e-03
## GO:1904950  BP   209  2 2.526021e-03
## GO:0048839  BP   211  2 2.573728e-03
## GO:0021902  BP     7  1 2.579112e-03
## GO:0051541  BP     7  1 2.579112e-03
## GO:0071971  BP     7  1 2.579112e-03
## GO:0070345  BP     7  1 2.579112e-03
## GO:0038001  BP     7  1 2.579112e-03
## GO:0060558  BP     7  1 2.579112e-03
## GO:0050707  BP   213  2 2.621864e-03
## GO:0044237  BP  9374  8 2.805454e-03
## GO:1903530  BP   831  3 2.833689e-03
## GO:0006139  BP  4813  6 2.838807e-03
## GO:0010467  BP  4814  6 2.841993e-03
## GO:0045654  BP     8  1 2.947073e-03
## GO:0031394  BP     8  1 2.947073e-03
## GO:0044238  BP  9443  8 2.963686e-03
## GO:0043543  BP   231  2 3.074235e-03
## GO:1903531  BP   232  2 3.100374e-03
## GO:0046483  BP  4940  6 3.266611e-03
## GO:0042592  BP  1887  4 3.271978e-03
## GO:0035234  BP     9  1 3.314914e-03
## GO:0014050  BP     9  1 3.314914e-03
## GO:1903589  BP     9  1 3.314914e-03
## GO:0031622  BP     9  1 3.314914e-03
## GO:2001214  BP     9  1 3.314914e-03
## GO:2000172  BP     9  1 3.314914e-03
## GO:0060556  BP     9  1 3.314914e-03
## GO:0043583  BP   242  2 3.367554e-03
## GO:0012501  BP  1908  4 3.407818e-03
## GO:0050663  BP   244  2 3.422251e-03
## GO:0051091  BP   244  2 3.422251e-03
## GO:0044260  BP  7099  7 3.527908e-03
## GO:0006725  BP  5012  6 3.530785e-03
## GO:0030163  BP   898  3 3.532112e-03
## GO:0034654  BP  3310  5 3.583381e-03
## GO:0002703  BP   250  2 3.588855e-03
## GO:1901576  BP  5031  6 3.603226e-03
## GO:0035239  BP   905  3 3.610701e-03
## GO:0051046  BP   911  3 3.678925e-03
## GO:0035744  BP    10  1 3.682634e-03
## GO:1900038  BP    10  1 3.682634e-03
## GO:2001280  BP    10  1 3.682634e-03
## GO:0060215  BP    10  1 3.682634e-03
## GO:0031620  BP    10  1 3.682634e-03
## GO:0033084  BP    10  1 3.682634e-03
## GO:1900040  BP    10  1 3.682634e-03
## GO:0030097  BP   921  3 3.794411e-03
## GO:0043066  BP   921  3 3.794411e-03
## GO:0002699  BP   259  2 3.845805e-03
## GO:0051048  BP   261  2 3.904048e-03
## GO:0018130  BP  3374  5 3.905456e-03
## GO:0019438  BP  3386  5 3.968179e-03
## GO:0043069  BP   939  3 4.007933e-03
## GO:0033080  BP    11  1 4.050234e-03
## GO:0031392  BP    11  1 4.050234e-03
## GO:0060872  BP    11  1 4.050234e-03
## GO:0042368  BP    11  1 4.050234e-03
## GO:1901360  BP  5208  6 4.335812e-03
## GO:0070341  BP    12  1 4.417713e-03
## GO:0070970  BP    12  1 4.417713e-03
## GO:0045080  BP    12  1 4.417713e-03
## GO:0032725  BP    12  1 4.417713e-03
## GO:0045086  BP    12  1 4.417713e-03
## GO:0071639  BP    12  1 4.417713e-03
## GO:0032308  BP    12  1 4.417713e-03
## GO:0070344  BP    12  1 4.417713e-03
## GO:0033083  BP    12  1 4.417713e-03
## GO:0048534  BP   972  3 4.418502e-03
## GO:0080090  BP  5248  6 4.516487e-03
## GO:0048513  BP  3504  5 4.625846e-03
## GO:0048519  BP  5278  6 4.655825e-03
## GO:1901362  BP  3510  5 4.661326e-03
## GO:0072593  BP   288  2 4.730739e-03
## GO:0001660  BP    13  1 4.785071e-03
## GO:0021877  BP    13  1 4.785071e-03
## GO:0033079  BP    13  1 4.785071e-03
## GO:0031652  BP    13  1 4.785071e-03
## GO:0042482  BP    13  1 4.785071e-03
## GO:1903587  BP    13  1 4.785071e-03
## GO:2001279  BP    13  1 4.785071e-03
## GO:1901135  BP  1003  3 4.827117e-03
## GO:0030100  BP   293  2 4.892028e-03
## GO:0009895  BP   294  2 4.924591e-03
## GO:1902105  BP   294  2 4.924591e-03
## GO:0097154  BP    14  1 5.152309e-03
## GO:0048755  BP    14  1 5.152309e-03
## GO:0042362  BP    14  1 5.152309e-03
## GO:0032604  BP    14  1 5.152309e-03
## GO:0030213  BP    14  1 5.152309e-03
## GO:0070486  BP    14  1 5.152309e-03
## GO:0048711  BP    14  1 5.152309e-03
## GO:0034116  BP    14  1 5.152309e-03
## GO:1901550  BP    14  1 5.152309e-03
## GO:1903140  BP    14  1 5.152309e-03
## GO:0032645  BP    14  1 5.152309e-03
## GO:0032306  BP    14  1 5.152309e-03
## GO:2001212  BP    14  1 5.152309e-03
## GO:0050714  BP   302  2 5.188752e-03
## GO:0002520  BP  1030  3 5.201439e-03
## GO:0042033  BP    15  1 5.519427e-03
## GO:0033089  BP    15  1 5.519427e-03
## GO:0051044  BP    15  1 5.519427e-03
## GO:0045073  BP    15  1 5.519427e-03
## GO:0031650  BP    15  1 5.519427e-03
## GO:0030656  BP    15  1 5.519427e-03
## GO:0030730  BP    15  1 5.519427e-03
## GO:2000026  BP  2184  4 5.579042e-03
## GO:0051093  BP  1070  3 5.788131e-03
## GO:0032940  BP  1070  3 5.788131e-03
## GO:1905155  BP    16  1 5.886424e-03
## GO:0060100  BP    16  1 5.886424e-03
## GO:1900037  BP    16  1 5.886424e-03
## GO:0030449  BP    16  1 5.886424e-03
## GO:0042359  BP    16  1 5.886424e-03
## GO:0051050  BP  1081  3 5.956296e-03
## GO:0007204  BP   327  2 6.055834e-03
## GO:0002793  BP   331  2 6.200370e-03
## GO:0045597  BP  1097  3 6.206214e-03
## GO:0050755  BP    17  1 6.253301e-03
## GO:1903019  BP    17  1 6.253301e-03
## GO:0002922  BP    17  1 6.253301e-03
## GO:0032305  BP    17  1 6.253301e-03
## GO:0045410  BP    17  1 6.253301e-03
## GO:0071636  BP    17  1 6.253301e-03
## GO:0032310  BP    17  1 6.253301e-03
## GO:2000257  BP    17  1 6.253301e-03
## GO:0016070  BP  3761  5 6.335961e-03
## GO:0006909  BP   336  2 6.383275e-03
## GO:0051172  BP  2271  4 6.425075e-03
## GO:0009100  BP   338  2 6.457130e-03
## GO:0050900  BP   340  2 6.531382e-03
## GO:0035295  BP  1122  3 6.609437e-03
## GO:0045019  BP    18  1 6.620057e-03
## GO:1904406  BP    18  1 6.620057e-03
## GO:0021514  BP    18  1 6.620057e-03
## GO:0018205  BP   345  2 6.718739e-03
## GO:0002043  BP    19  1 6.986693e-03
## GO:0050650  BP    19  1 6.986693e-03
## GO:0071605  BP    19  1 6.986693e-03
## GO:0051956  BP    19  1 6.986693e-03
## GO:0030502  BP    19  1 6.986693e-03
## GO:0002726  BP    19  1 6.986693e-03
## GO:0046886  BP    19  1 6.986693e-03
## GO:0010623  BP    19  1 6.986693e-03
## GO:0045076  BP    19  1 6.986693e-03
## GO:0071637  BP    19  1 6.986693e-03
## GO:0060099  BP    19  1 6.986693e-03
## GO:1901565  BP  1151  3 7.096837e-03
## GO:0048143  BP    20  1 7.353209e-03
## GO:0060252  BP    20  1 7.353209e-03
## GO:0045649  BP    20  1 7.353209e-03
## GO:1905153  BP    20  1 7.353209e-03
## GO:1901214  BP   368  2 7.612184e-03
## GO:0097734  BP    21  1 7.719604e-03
## GO:0006516  BP    21  1 7.719604e-03
## GO:0042094  BP    21  1 7.719604e-03
## GO:0090050  BP    21  1 7.719604e-03
## GO:2000193  BP    21  1 7.719604e-03
## GO:0015732  BP    21  1 7.719604e-03
## GO:0001505  BP   372  2 7.772830e-03
## GO:0051480  BP   374  2 7.853735e-03
## GO:0042176  BP   378  2 8.016705e-03
## GO:0031649  BP    22  1 8.085880e-03
## GO:0033008  BP    22  1 8.085880e-03
## GO:0043306  BP    22  1 8.085880e-03
## GO:0032303  BP    22  1 8.085880e-03
## GO:0051043  BP    22  1 8.085880e-03
## GO:0009110  BP    22  1 8.085880e-03
## GO:0009057  BP  1218  3 8.305155e-03
## GO:0031324  BP  2449  4 8.424145e-03
## GO:0035743  BP    23  1 8.452035e-03
## GO:0140112  BP    23  1 8.452035e-03
## GO:0002827  BP    23  1 8.452035e-03
## GO:0046903  BP  1227  3 8.476347e-03
## GO:0051090  BP   396  2 8.769124e-03
## GO:0060216  BP    24  1 8.818070e-03
## GO:0050995  BP    24  1 8.818070e-03
## GO:0045723  BP    24  1 8.818070e-03
## GO:0032352  BP    24  1 8.818070e-03
## GO:0032770  BP    24  1 8.818070e-03
## GO:0032268  BP  2494  4 8.989729e-03
## GO:0070997  BP   405  2 9.156950e-03
## GO:0032703  BP    25  1 9.183984e-03
## GO:0045648  BP    25  1 9.183984e-03
## GO:0090023  BP    25  1 9.183984e-03
## GO:0010575  BP    25  1 9.183984e-03
## GO:0001516  BP    25  1 9.183984e-03
## GO:0046457  BP    25  1 9.183984e-03
## GO:0014048  BP    25  1 9.183984e-03
## GO:0034114  BP    25  1 9.183984e-03
## GO:1903706  BP   407  2 9.244178e-03
## GO:0071425  BP    26  1 9.549779e-03
## GO:0060716  BP    26  1 9.549779e-03
## GO:0070168  BP    26  1 9.549779e-03
## GO:0010829  BP    26  1 9.549779e-03
## GO:0002697  BP   420  2 9.820385e-03
## GO:0021533  BP    27  1 9.915454e-03
## GO:0030212  BP    27  1 9.915454e-03
## GO:0071624  BP    27  1 9.915454e-03
## GO:0050996  BP    27  1 9.915454e-03
## GO:0010954  BP    27  1 9.915454e-03
## GO:0010893  BP    27  1 9.915454e-03
## GO:0045408  BP    27  1 9.915454e-03
## GO:0050673  BP   425  2 1.004624e-02
## GO:0010605  BP  2584  4 1.019756e-02
## GO:0035162  BP    28  1 1.028101e-02
## GO:0042226  BP    28  1 1.028101e-02
## GO:0032891  BP    28  1 1.028101e-02
## GO:1902932  BP    28  1 1.028101e-02
## GO:1900745  BP    28  1 1.028101e-02
## GO:0033198  BP    28  1 1.028101e-02
## GO:0051222  BP   435  2 1.050497e-02
## GO:1903319  BP    29  1 1.064644e-02
## GO:0050654  BP    30  1 1.101176e-02
## GO:2000778  BP    30  1 1.101176e-02
## GO:0033005  BP    30  1 1.101176e-02
## GO:0002724  BP    30  1 1.101176e-02
## GO:0002825  BP    30  1 1.101176e-02
## GO:0042481  BP    30  1 1.101176e-02
## GO:0002696  BP   446  2 1.102033e-02
## GO:0001819  BP   449  2 1.116282e-02
## GO:0048608  BP   449  2 1.116282e-02
## GO:0061458  BP   453  2 1.135411e-02
## GO:2000352  BP    31  1 1.137695e-02
## GO:0043302  BP    31  1 1.137695e-02
## GO:0033081  BP    31  1 1.137695e-02
## GO:0045652  BP    31  1 1.137695e-02
## GO:0090022  BP    31  1 1.137695e-02
## GO:0050999  BP    31  1 1.137695e-02
## GO:0010574  BP    31  1 1.137695e-02
## GO:1904951  BP   454  2 1.140216e-02
## GO:0051246  BP  2687  4 1.170985e-02
## GO:0050867  BP   461  2 1.174110e-02
## GO:0032743  BP    32  1 1.174203e-02
## GO:2000191  BP    32  1 1.174203e-02
## GO:0006775  BP    33  1 1.210698e-02
## GO:2001240  BP    33  1 1.210698e-02
## GO:1901099  BP    33  1 1.210698e-02
## GO:0010573  BP    33  1 1.210698e-02
## GO:0050793  BP  2721  4 1.224050e-02
## GO:0006874  BP   473  2 1.233257e-02
## GO:0014047  BP    34  1 1.247182e-02
## GO:1902624  BP    34  1 1.247182e-02
## GO:2000758  BP    34  1 1.247182e-02
## GO:0071634  BP    34  1 1.247182e-02
## GO:0009653  BP  2744  4 1.260852e-02
## GO:0032733  BP    35  1 1.283653e-02
## GO:1902895  BP    35  1 1.283653e-02
## GO:0045940  BP    35  1 1.283653e-02
## GO:0048710  BP    35  1 1.283653e-02
## GO:0043304  BP    35  1 1.283653e-02
## GO:0060142  BP    35  1 1.283653e-02
## GO:0055074  BP   489  2 1.314154e-02
## GO:0050708  BP   490  2 1.319286e-02
## GO:0051953  BP    36  1 1.320113e-02
## GO:1903427  BP    36  1 1.320113e-02
## GO:0045601  BP    36  1 1.320113e-02
## GO:0002920  BP    36  1 1.320113e-02
## GO:0033006  BP    36  1 1.320113e-02
## GO:0071604  BP    36  1 1.320113e-02
## GO:0016477  BP  1447  3 1.333965e-02
## GO:0048568  BP   493  2 1.334738e-02
## GO:0072503  BP   497  2 1.355467e-02
## GO:0045746  BP    37  1 1.356561e-02
## GO:1903792  BP    37  1 1.356561e-02
## GO:0060674  BP    37  1 1.356561e-02
## GO:0002675  BP    37  1 1.356561e-02
## GO:0014002  BP    38  1 1.392996e-02
## GO:0030851  BP    38  1 1.392996e-02
## GO:0006636  BP    38  1 1.392996e-02
## GO:0031327  BP  1471  3 1.395123e-02
## GO:0022414  BP  1471  3 1.395123e-02
## GO:0000003  BP  1472  3 1.397707e-02
## GO:0002443  BP   507  2 1.407914e-02
## GO:0009892  BP  2843  4 1.427766e-02
## GO:0021983  BP    39  1 1.429420e-02
## GO:0090049  BP    39  1 1.429420e-02
## GO:0060251  BP    39  1 1.429420e-02
## GO:0046885  BP    39  1 1.429420e-02
## GO:0002369  BP    40  1 1.465832e-02
## GO:0046456  BP    40  1 1.465832e-02
## GO:0030225  BP    40  1 1.465832e-02
## GO:0006693  BP    40  1 1.465832e-02
## GO:0006692  BP    40  1 1.465832e-02
## GO:0044267  BP  4569  5 1.477982e-02
## GO:0072507  BP   521  2 1.482832e-02
## GO:0009890  BP  1509  3 1.495304e-02
## GO:0006953  BP    41  1 1.502231e-02
## GO:0006509  BP    41  1 1.502231e-02
## GO:0046627  BP    41  1 1.502231e-02
## GO:1903672  BP    41  1 1.502231e-02
## GO:0042304  BP    41  1 1.502231e-02
## GO:1900744  BP    41  1 1.502231e-02
## GO:0042981  BP  1516  3 1.514208e-02
## GO:0002791  BP   529  2 1.526420e-02
## GO:0001709  BP    42  1 1.538619e-02
## GO:0048873  BP    42  1 1.538619e-02
## GO:0045740  BP    42  1 1.538619e-02
## GO:0045923  BP    42  1 1.538619e-02
## GO:0050691  BP    42  1 1.538619e-02
## GO:0032768  BP    42  1 1.538619e-02
## GO:1902622  BP    42  1 1.538619e-02
## GO:0006024  BP    43  1 1.574995e-02
## GO:1901985  BP    43  1 1.574995e-02
## GO:0001701  BP   538  2 1.576126e-02
## GO:0051094  BP  1540  3 1.580090e-02
## GO:0030335  BP   539  2 1.581692e-02
## GO:0051051  BP   540  2 1.587268e-02
## GO:0061028  BP    45  1 1.647711e-02
## GO:1900077  BP    45  1 1.647711e-02
## GO:0002888  BP    45  1 1.647711e-02
## GO:1902893  BP    45  1 1.647711e-02
## GO:0048585  BP  1576  3 1.682029e-02
## GO:0072604  BP    46  1 1.684051e-02
## GO:0032757  BP    46  1 1.684051e-02
## GO:2000147  BP   561  2 1.706351e-02
## GO:0032309  BP    47  1 1.720379e-02
## GO:0010718  BP    47  1 1.720379e-02
## GO:0045429  BP    47  1 1.720379e-02
## GO:2001239  BP    47  1 1.720379e-02
## GO:1903018  BP    47  1 1.720379e-02
## GO:0048870  BP  1595  3 1.737346e-02
## GO:0051674  BP  1595  3 1.737346e-02
## GO:0048731  BP  4746  5 1.737796e-02
## GO:0007267  BP  1596  3 1.740287e-02
## GO:0002521  BP   567  2 1.741072e-02
## GO:0060627  BP   568  2 1.746889e-02
## GO:0042088  BP    48  1 1.756695e-02
## GO:0043303  BP    48  1 1.756695e-02
## GO:0002762  BP    48  1 1.756695e-02
## GO:0038066  BP    48  1 1.756695e-02
## GO:1904407  BP    48  1 1.756695e-02
## GO:0032892  BP    48  1 1.756695e-02
## GO:0002279  BP    49  1 1.793000e-02
## GO:0002448  BP    49  1 1.793000e-02
## GO:0030195  BP    49  1 1.793000e-02
## GO:1904036  BP    49  1 1.793000e-02
## GO:0051955  BP    49  1 1.793000e-02
## GO:0045646  BP    49  1 1.793000e-02
## GO:0043300  BP    49  1 1.793000e-02
## GO:0051272  BP   580  2 1.817357e-02
## GO:0050769  BP   580  2 1.817357e-02
## GO:0006875  BP   582  2 1.829220e-02
## GO:0031663  BP    50  1 1.829292e-02
## GO:1900047  BP    50  1 1.829292e-02
## GO:1902930  BP    50  1 1.829292e-02
## GO:0071622  BP    50  1 1.829292e-02
## GO:0033003  BP    50  1 1.829292e-02
## GO:0033619  BP    51  1 1.865572e-02
## GO:0050819  BP    51  1 1.865572e-02
## GO:0051353  BP    51  1 1.865572e-02
## GO:0040017  BP   593  2 1.895075e-02
## GO:1901570  BP    52  1 1.901841e-02
## GO:0061614  BP    52  1 1.901841e-02
## GO:0006023  BP    53  1 1.938097e-02
## GO:1901571  BP    53  1 1.938097e-02
## GO:0061900  BP    53  1 1.938097e-02
## GO:0034113  BP    53  1 1.938097e-02
## GO:0071715  BP    53  1 1.938097e-02
## GO:0051703  BP    53  1 1.938097e-02
## GO:0030219  BP    53  1 1.938097e-02
## GO:0002720  BP    53  1 1.938097e-02
## GO:0035176  BP    53  1 1.938097e-02
## GO:1901137  BP   601  2 1.943608e-02
## GO:0009306  BP   605  2 1.968076e-02
## GO:0007423  BP   606  2 1.974214e-02
## GO:0014009  BP    54  1 1.974342e-02
## GO:0045599  BP    54  1 1.974342e-02
## GO:0045687  BP    54  1 1.974342e-02
## GO:0044060  BP    54  1 1.974342e-02
## GO:2000351  BP    54  1 1.974342e-02
## GO:0035065  BP    54  1 1.974342e-02
## GO:0032350  BP    54  1 1.974342e-02
## GO:0002042  BP    55  1 2.010575e-02
## GO:0030166  BP    55  1 2.010575e-02
## GO:0032653  BP    55  1 2.010575e-02
## GO:0035019  BP    55  1 2.010575e-02
## GO:0043536  BP    56  1 2.046795e-02
## GO:0072577  BP    57  1 2.083004e-02
## GO:0050994  BP    57  1 2.083004e-02
## GO:1903510  BP    58  1 2.119201e-02
## GO:0021517  BP    58  1 2.119201e-02
## GO:0043065  BP   632  2 2.136706e-02
## GO:0060986  BP    59  1 2.155387e-02
## GO:0032613  BP    59  1 2.155387e-02
## GO:0060711  BP    59  1 2.155387e-02
## GO:0043068  BP   637  2 2.168593e-02
## GO:0030003  BP   641  2 2.194249e-02
## GO:0021515  BP    61  1 2.227721e-02
## GO:0045840  BP    61  1 2.227721e-02
## GO:1903428  BP    61  1 2.227721e-02
## GO:1903307  BP    61  1 2.227721e-02
## GO:0051962  BP   651  2 2.258959e-02
## GO:0031399  BP  1760  3 2.262333e-02
## GO:0051239  BP  3248  4 2.263466e-02
## GO:0015800  BP    62  1 2.263871e-02
## GO:0032720  BP    62  1 2.263871e-02
## GO:0002790  BP   652  2 2.265475e-02
## GO:0002694  BP   652  2 2.265475e-02
## GO:0006873  BP   655  2 2.285070e-02
## GO:1903556  BP    63  1 2.300008e-02
## GO:0032722  BP    63  1 2.300008e-02
## GO:0032677  BP    63  1 2.300008e-02
## GO:0010720  BP   659  2 2.311310e-02
## GO:0034605  BP    64  1 2.336134e-02
## GO:0010629  BP  1783  3 2.341932e-02
## GO:0055065  BP   664  2 2.344291e-02
## GO:0080135  BP   666  2 2.357540e-02
## GO:0150076  BP    65  1 2.372248e-02
## GO:1903793  BP    65  1 2.372248e-02
## GO:0002886  BP    65  1 2.372248e-02
## GO:0001817  BP   679  2 2.444435e-02
## GO:0140253  BP    67  1 2.444440e-02
## GO:0001885  BP    67  1 2.444440e-02
## GO:0050710  BP    67  1 2.444440e-02
## GO:2000378  BP    67  1 2.444440e-02
## GO:0002673  BP    67  1 2.444440e-02
## GO:0060688  BP    67  1 2.444440e-02
## GO:0000768  BP    67  1 2.444440e-02
## GO:0040011  BP  1817  3 2.462504e-02
## GO:0043086  BP   682  2 2.464678e-02
## GO:0021536  BP    69  1 2.516584e-02
## GO:0032637  BP    69  1 2.516584e-02
## GO:0043299  BP    69  1 2.516584e-02
## GO:0045576  BP    69  1 2.516584e-02
## GO:0043407  BP    69  1 2.516584e-02
## GO:0032370  BP    69  1 2.516584e-02
## GO:1903670  BP    69  1 2.516584e-02
## GO:0006949  BP    69  1 2.516584e-02
## GO:0006766  BP    69  1 2.516584e-02
## GO:0050865  BP   693  2 2.539514e-02
## GO:0019915  BP    70  1 2.552639e-02
## GO:0010942  BP   695  2 2.553223e-02
## GO:0031329  BP   695  2 2.553223e-02
## GO:0061045  BP    71  1 2.588682e-02
## GO:0002711  BP    71  1 2.588682e-02
## GO:1901575  BP  1857  3 2.608803e-02
## GO:0051223  BP   708  2 2.643095e-02
## GO:0006915  BP  1867  3 2.646131e-02
## GO:0050810  BP    73  1 2.660731e-02
## GO:1901224  BP    74  1 2.696739e-02
## GO:0042108  BP    74  1 2.696739e-02
## GO:0030162  BP   716  2 2.699056e-02
## GO:0098609  BP   720  2 2.727222e-02
## GO:0042446  BP    75  1 2.732734e-02
## GO:0032418  BP    75  1 2.732734e-02
## GO:0051705  BP    75  1 2.732734e-02
## GO:0046626  BP    75  1 2.732734e-02
## GO:0021879  BP    76  1 2.768717e-02
## GO:0017144  BP   727  2 2.776810e-02
## GO:0006835  BP    77  1 2.804689e-02
## GO:0032729  BP    77  1 2.804689e-02
## GO:0051785  BP    77  1 2.804689e-02
## GO:0030193  BP    77  1 2.804689e-02
## GO:0050688  BP    77  1 2.804689e-02
## GO:0045595  BP  1909  3 2.806209e-02
## GO:0055080  BP   732  2 2.812461e-02
## GO:0043507  BP    78  1 2.840649e-02
## GO:1900046  BP    78  1 2.840649e-02
## GO:0070201  BP   740  2 2.869900e-02
## GO:0097192  BP    79  1 2.876597e-02
## GO:0048663  BP    79  1 2.876597e-02
## GO:0051781  BP    79  1 2.876597e-02
## GO:0043525  BP    79  1 2.876597e-02
## GO:0006029  BP    79  1 2.876597e-02
## GO:0032890  BP    79  1 2.876597e-02
## GO:0038034  BP    79  1 2.876597e-02
## GO:0006897  BP   741  2 2.877115e-02
## GO:0051240  BP  1929  3 2.884313e-02
## GO:0007275  BP  5362  5 2.896783e-02
## GO:0050805  BP    80  1 2.912533e-02
## GO:0030500  BP    80  1 2.912533e-02
## GO:0070613  BP    80  1 2.912533e-02
## GO:0098771  BP   746  2 2.913300e-02
## GO:0050778  BP   747  2 2.920560e-02
## GO:0090087  BP   749  2 2.935102e-02
## GO:0050818  BP    81  1 2.948457e-02
## GO:0051049  BP  1946  3 2.951655e-02
## GO:0001816  BP   755  2 2.978911e-02
## GO:0002718  BP    82  1 2.984370e-02
## GO:1903317  BP    82  1 2.984370e-02
## GO:0009888  BP  1956  3 2.991678e-02
## GO:0030203  BP    83  1 3.020270e-02
## GO:0032101  BP   770  2 3.089618e-02
## GO:0048708  BP    85  1 3.092036e-02
## GO:0002275  BP    85  1 3.092036e-02
## GO:0051341  BP    85  1 3.092036e-02
## GO:0015908  BP    86  1 3.127902e-02
## GO:0032611  BP    86  1 3.127902e-02
## GO:0008593  BP    86  1 3.127902e-02
## GO:0010827  BP    86  1 3.127902e-02
## GO:0045664  BP   776  2 3.134371e-02
## GO:0044248  BP  1996  3 3.154805e-02
## GO:0002690  BP    87  1 3.163755e-02
## GO:0010717  BP    87  1 3.163755e-02
## GO:0033077  BP    88  1 3.199597e-02
## GO:1903035  BP    88  1 3.199597e-02
## GO:0032642  BP    88  1 3.199597e-02
## GO:0019217  BP    88  1 3.199597e-02
## GO:0006928  BP  2014  3 3.229799e-02
## GO:0021872  BP    89  1 3.235427e-02
## GO:0014015  BP    89  1 3.235427e-02
## GO:1905954  BP    89  1 3.235427e-02
## GO:1900076  BP    89  1 3.235427e-02
## GO:1904035  BP    89  1 3.235427e-02
## GO:0045833  BP    90  1 3.271245e-02
## GO:0043535  BP    90  1 3.271245e-02
## GO:0021954  BP    91  1 3.307051e-02
## GO:0001938  BP    91  1 3.307051e-02
## GO:0045685  BP    91  1 3.307051e-02
## GO:0046683  BP    91  1 3.307051e-02
## GO:0045596  BP   799  2 3.308396e-02
## GO:0032602  BP    92  1 3.342846e-02
## GO:0046889  BP    93  1 3.378628e-02
## GO:0043506  BP    93  1 3.378628e-02
## GO:0055082  BP   810  2 3.392996e-02
## GO:0050801  BP   812  2 3.408472e-02
## GO:0002709  BP    94  1 3.414399e-02
## GO:0070555  BP    94  1 3.414399e-02
## GO:0001570  BP    94  1 3.414399e-02
## GO:0046888  BP    95  1 3.450158e-02
## GO:0045582  BP    95  1 3.450158e-02
## GO:0009894  BP   821  2 3.478474e-02
## GO:0071456  BP    96  1 3.485906e-02
## GO:0030279  BP    96  1 3.485906e-02
## GO:0043009  BP   824  2 3.501938e-02
## GO:0002444  BP    97  1 3.521642e-02
## GO:0045638  BP    97  1 3.521642e-02
## GO:0010595  BP    97  1 3.521642e-02
## GO:0070167  BP    97  1 3.521642e-02
## GO:2001237  BP    98  1 3.557365e-02
## GO:0042102  BP    98  1 3.557365e-02
## GO:0045921  BP    99  1 3.593078e-02
## GO:0032755  BP    99  1 3.593078e-02
## GO:0045639  BP    99  1 3.593078e-02
## GO:0030593  BP   100  1 3.628778e-02
## GO:0002702  BP   100  1 3.628778e-02
## GO:0007584  BP   100  1 3.628778e-02
## GO:0009792  BP   841  2 3.636116e-02
## GO:0006022  BP   101  1 3.664467e-02
## GO:0110110  BP   101  1 3.664467e-02
## GO:1901222  BP   101  1 3.664467e-02
## GO:0033559  BP   101  1 3.664467e-02
## GO:0002367  BP   102  1 3.700144e-02
## GO:0050886  BP   102  1 3.700144e-02
## GO:1902106  BP   102  1 3.700144e-02
## GO:0019218  BP   102  1 3.700144e-02
## GO:0021510  BP   102  1 3.700144e-02
## GO:0009408  BP   103  1 3.735809e-02
## GO:0000122  BP   857  2 3.764277e-02
## GO:0032612  BP   104  1 3.771462e-02
## GO:0045446  BP   106  1 3.842734e-02
## GO:0038061  BP   107  1 3.878352e-02
## GO:0006275  BP   107  1 3.878352e-02
## GO:0014074  BP   107  1 3.878352e-02
## GO:0098657  BP   872  2 3.886060e-02
## GO:1904659  BP   108  1 3.913958e-02
## GO:0045621  BP   108  1 3.913958e-02
## GO:0002252  BP   879  2 3.943428e-02
## GO:0008645  BP   109  1 3.949553e-02
## GO:2000379  BP   109  1 3.949553e-02
## GO:0042035  BP   109  1 3.949553e-02
## GO:0032649  BP   109  1 3.949553e-02
## GO:0006690  BP   110  1 3.985136e-02
## GO:0007417  BP   888  2 4.017683e-02
## GO:0021782  BP   111  1 4.020707e-02
## GO:0015749  BP   111  1 4.020707e-02
## GO:0071901  BP   111  1 4.020707e-02
## GO:0002688  BP   111  1 4.020707e-02
## GO:0030334  BP   892  2 4.050865e-02
## GO:0034219  BP   112  1 4.056267e-02
## GO:0043123  BP   112  1 4.056267e-02
## GO:1904019  BP   113  1 4.091815e-02
## GO:0043534  BP   114  1 4.127351e-02
## GO:0042472  BP   114  1 4.127351e-02
## GO:0050776  BP   903  2 4.142677e-02
## GO:0000187  BP   115  1 4.162876e-02
## GO:0032368  BP   115  1 4.162876e-02
## GO:0048856  BP  5871  5 4.192988e-02
## GO:0030282  BP   116  1 4.198388e-02
## GO:0002040  BP   116  1 4.198388e-02
## GO:0042476  BP   118  1 4.269379e-02
## GO:0051952  BP   118  1 4.269379e-02
## GO:0003158  BP   119  1 4.304856e-02
## GO:1990266  BP   119  1 4.304856e-02
## GO:0009056  BP  2257  3 4.338776e-02
## GO:1901136  BP   120  1 4.340322e-02
## GO:0002062  BP   120  1 4.340322e-02
## GO:1901216  BP   120  1 4.340322e-02
## GO:0044070  BP   120  1 4.340322e-02
## GO:0019725  BP   930  2 4.371506e-02
## GO:0046717  BP   121  1 4.375777e-02
## GO:0036294  BP   121  1 4.375777e-02
## GO:0042089  BP   121  1 4.375777e-02
## GO:0008286  BP   121  1 4.375777e-02
## GO:0002526  BP   122  1 4.411219e-02
## GO:0015837  BP   122  1 4.411219e-02
## GO:0032609  BP   122  1 4.411219e-02
## GO:0071621  BP   123  1 4.446650e-02
## GO:2000145  BP   939  2 4.448866e-02
## GO:0050794  BP 10774  7 4.458266e-02
## GO:0042107  BP   125  1 4.517477e-02
## GO:0002761  BP   125  1 4.517477e-02
## GO:0010565  BP   127  1 4.588257e-02
## GO:0050767  BP   956  2 4.596450e-02
## GO:0051092  BP   128  1 4.623630e-02
## GO:0042177  BP   129  1 4.658991e-02
## GO:0045995  BP   129  1 4.658991e-02
## GO:0001936  BP   129  1 4.658991e-02
## GO:0030218  BP   131  1 4.729678e-02
## GO:0065008  BP  4051  4 4.737086e-02
## GO:0001837  BP   133  1 4.800318e-02
## GO:1901568  BP   133  1 4.800318e-02
## GO:0034763  BP   133  1 4.800318e-02
## GO:0016043  BP  6083  5 4.833138e-02
## GO:0006633  BP   134  1 4.835621e-02
## GO:0071453  BP   135  1 4.870912e-02
## GO:0045598  BP   135  1 4.870912e-02
## GO:0042471  BP   136  1 4.906192e-02
## GO:0035270  BP   136  1 4.906192e-02
## GO:0050671  BP   136  1 4.906192e-02
## GO:0045321  BP   994  2 4.933139e-02
## GO:0002456  BP   137  1 4.941459e-02
## GO:0032946  BP   138  1 4.976716e-02
## GO:0016573  BP   139  1 5.011960e-02
## GO:0032269  BP  1003  2 5.014234e-02
## GO:0044092  BP  1006  2 5.041380e-02
## GO:0002824  BP   140  1 5.047193e-02
## GO:0050921  BP   140  1 5.047193e-02
## GO:0072089  BP   140  1 5.047193e-02
## GO:0046165  BP   141  1 5.082415e-02
## GO:0061041  BP   141  1 5.082415e-02
## GO:0044265  BP  1013  2 5.104940e-02
## GO:0034101  BP   142  1 5.117624e-02
## GO:0050729  BP   142  1 5.117624e-02
## GO:0040012  BP  1018  2 5.150528e-02
## GO:0046330  BP   143  1 5.152822e-02
## GO:0010634  BP   143  1 5.152822e-02
## GO:0018393  BP   144  1 5.188009e-02
## GO:0007613  BP   144  1 5.188009e-02
## GO:0002687  BP   144  1 5.188009e-02
## GO:0002708  BP   144  1 5.188009e-02
## GO:0070665  BP   145  1 5.223184e-02
## GO:1905952  BP   145  1 5.223184e-02
## GO:0051270  BP  1028  2 5.242172e-02
## GO:0097530  BP   146  1 5.258347e-02
## GO:0008643  BP   147  1 5.293499e-02
## GO:0006475  BP   147  1 5.293499e-02
## GO:0002821  BP   147  1 5.293499e-02
## GO:0030856  BP   147  1 5.293499e-02
## GO:0002831  BP   147  1 5.293499e-02
## GO:0002700  BP   148  1 5.328639e-02
## GO:0032880  BP  1038  2 5.334435e-02
## GO:0006865  BP   150  1 5.398884e-02
## GO:0015718  BP   150  1 5.398884e-02
## GO:0045580  BP   150  1 5.398884e-02
## GO:0014013  BP   150  1 5.398884e-02
## GO:0030154  BP  4218  4 5.399999e-02
## GO:0032502  BP  6258  5 5.408551e-02
## GO:0071840  BP  6266  5 5.435893e-02
## GO:0065009  BP  2477  3 5.497314e-02
## GO:0031056  BP   153  1 5.504166e-02
## GO:0032675  BP   153  1 5.504166e-02
## GO:0062013  BP   155  1 5.574295e-02
## GO:0007596  BP   156  1 5.609343e-02
## GO:0051302  BP   156  1 5.609343e-02
## GO:0006694  BP   156  1 5.609343e-02
## GO:0051248  BP  1070  2 5.633787e-02
## GO:0051960  BP  1071  2 5.643242e-02
## GO:0045834  BP   157  1 5.644379e-02
## GO:0010594  BP   157  1 5.644379e-02
## GO:0002684  BP  1072  2 5.652702e-02
## GO:0007599  BP   158  1 5.679403e-02
## GO:1903707  BP   158  1 5.679403e-02
## GO:0050817  BP   159  1 5.714416e-02
## GO:0031214  BP   160  1 5.749417e-02
## GO:2001236  BP   161  1 5.784407e-02
## GO:0032635  BP   162  1 5.819385e-02
## GO:0009887  BP  1090  2 5.824012e-02
## GO:0060284  BP  1093  2 5.852751e-02
## GO:0007088  BP   163  1 5.854352e-02
## GO:0009266  BP   163  1 5.854352e-02
## GO:0030902  BP   164  1 5.889307e-02
## GO:0032680  BP   164  1 5.889307e-02
## GO:0001775  BP  1098  2 5.900766e-02
## GO:0043122  BP   165  1 5.924250e-02
## GO:0019827  BP   165  1 5.924250e-02
## GO:0045931  BP   166  1 5.959182e-02
## GO:1903555  BP   166  1 5.959182e-02
## GO:0051128  BP  2558  3 5.960447e-02
## GO:0032640  BP   167  1 5.994103e-02
## GO:1902107  BP   168  1 6.029012e-02
## GO:0098727  BP   169  1 6.063909e-02
## GO:0042129  BP   170  1 6.098795e-02
## GO:0046890  BP   170  1 6.098795e-02
## GO:0071706  BP   170  1 6.098795e-02
## GO:0043409  BP   171  1 6.133669e-02
## GO:0043271  BP   171  1 6.133669e-02
## GO:0032874  BP   171  1 6.133669e-02
## GO:0070304  BP   172  1 6.168532e-02
## GO:0018193  BP  1137  2 6.280283e-02
## GO:0002262  BP   176  1 6.307869e-02
## GO:0007219  BP   177  1 6.342674e-02
## GO:0048869  BP  4443  4 6.377657e-02
## GO:1903034  BP   179  1 6.412250e-02
## GO:0001659  BP   179  1 6.412250e-02
## GO:0045619  BP   182  1 6.516528e-02
## GO:0050789  BP 11520  7 6.527009e-02
## GO:0002376  BP  2664  3 6.595851e-02
## GO:0001764  BP   185  1 6.620703e-02
## GO:0050796  BP   185  1 6.620703e-02
## GO:0043491  BP   186  1 6.655405e-02
## GO:1903305  BP   186  1 6.655405e-02
## GO:0009968  BP  1175  2 6.658410e-02
## GO:0045892  BP  1177  2 6.678535e-02
## GO:0006956  BP   187  1 6.690096e-02
## GO:0050870  BP   187  1 6.690096e-02
## GO:1903507  BP  1181  2 6.718850e-02
## GO:0046328  BP   188  1 6.724775e-02
## GO:0048878  BP  1182  2 6.728943e-02
## GO:1902679  BP  1182  2 6.728943e-02
## GO:0006911  BP   189  1 6.759443e-02
## GO:0002822  BP   189  1 6.759443e-02
## GO:0007249  BP   193  1 6.897999e-02
## GO:0032869  BP   193  1 6.897999e-02
## GO:0006469  BP   194  1 6.932609e-02
## GO:0042180  BP   195  1 6.967208e-02
## GO:0002706  BP   195  1 6.967208e-02
## GO:0051783  BP   195  1 6.967208e-02
## GO:0031401  BP  1210  2 7.013756e-02
## GO:1902275  BP   197  1 7.036372e-02
## GO:0048469  BP   198  1 7.070936e-02
## GO:0043542  BP   198  1 7.070936e-02
## GO:0099024  BP   198  1 7.070936e-02
## GO:0009743  BP   198  1 7.070936e-02
## GO:0050679  BP   199  1 7.105490e-02
## GO:0072376  BP   199  1 7.105490e-02
## GO:0032388  BP   200  1 7.140031e-02
## GO:0008217  BP   200  1 7.140031e-02
## GO:0002685  BP   201  1 7.174562e-02
## GO:0007254  BP   202  1 7.209081e-02
## GO:0009790  BP  1231  2 7.230139e-02
## GO:1903039  BP   203  1 7.243588e-02
## GO:0001666  BP   204  1 7.278085e-02
## GO:0042098  BP   205  1 7.312569e-02
## GO:0010324  BP   205  1 7.312569e-02
## GO:0002819  BP   205  1 7.312569e-02
## GO:0033043  BP  1242  2 7.344416e-02
## GO:0097529  BP   207  1 7.381505e-02
## GO:2000027  BP   209  1 7.450395e-02
## GO:0045732  BP   210  1 7.484822e-02
## GO:0051216  BP   211  1 7.519239e-02
## GO:0030595  BP   211  1 7.519239e-02
## GO:0050920  BP   213  1 7.588037e-02
## GO:0033673  BP   214  1 7.622420e-02
## GO:0051253  BP  1269  2 7.627591e-02
## GO:0002274  BP   215  1 7.656791e-02
## GO:0045637  BP   215  1 7.656791e-02
## GO:0032879  BP  2835  3 7.689827e-02
## GO:0048762  BP   216  1 7.691150e-02
## GO:0002573  BP   216  1 7.691150e-02
## GO:0042445  BP   218  1 7.759835e-02
## GO:0070374  BP   218  1 7.759835e-02
## GO:0043406  BP   220  1 7.828475e-02
## GO:0051130  BP  1290  2 7.850428e-02
## GO:0030073  BP   223  1 7.931349e-02
## GO:0007155  BP  1298  2 7.935904e-02
## GO:0021953  BP   225  1 7.999875e-02
## GO:0010632  BP   225  1 7.999875e-02
## GO:0050670  BP   225  1 7.999875e-02
## GO:0032868  BP   225  1 7.999875e-02
## GO:0010648  BP  1306  2 8.021701e-02
## GO:0022610  BP  1310  2 8.064720e-02
## GO:0023057  BP  1310  2 8.064720e-02
## GO:0051607  BP   227  1 8.068356e-02
## GO:0032944  BP   227  1 8.068356e-02
## GO:0090276  BP   228  1 8.102579e-02
## GO:0097191  BP   229  1 8.136791e-02
## GO:1901617  BP   229  1 8.136791e-02
## GO:0036293  BP   230  1 8.170992e-02
## GO:2001234  BP   231  1 8.205182e-02
## GO:0032872  BP   232  1 8.239360e-02
## GO:0030278  BP   233  1 8.273527e-02
## GO:0070302  BP   234  1 8.307682e-02
## GO:0080134  BP  1337  2 8.357153e-02
## GO:0045444  BP   238  1 8.444191e-02
## GO:0070663  BP   238  1 8.444191e-02
## GO:0010001  BP   239  1 8.478290e-02
## GO:0016485  BP   239  1 8.478290e-02
## GO:0001763  BP   240  1 8.512378e-02
## GO:0010466  BP   242  1 8.580519e-02
## GO:0022409  BP   242  1 8.580519e-02
## GO:0006260  BP   243  1 8.614573e-02
## GO:0071375  BP   244  1 8.648616e-02
## GO:1901215  BP   244  1 8.648616e-02
## GO:0017157  BP   244  1 8.648616e-02
## GO:0051054  BP   245  1 8.682647e-02
## GO:0065007  BP 12135  7 8.715049e-02
## GO:0051348  BP   246  1 8.716667e-02
## GO:0002064  BP   247  1 8.750676e-02
## GO:0031330  BP   247  1 8.750676e-02
## GO:0032147  BP   248  1 8.784673e-02
## GO:0090068  BP   249  1 8.818660e-02
## GO:2000113  BP  1379  2 8.819041e-02
## GO:0045934  BP  1395  2 8.997184e-02
## GO:0045055  BP   256  1 9.056248e-02
## GO:0140014  BP   257  1 9.090145e-02
## GO:0051403  BP   257  1 9.090145e-02
## GO:0001818  BP   259  1 9.157904e-02
## GO:0016050  BP   259  1 9.157904e-02
## GO:0045665  BP   260  1 9.191766e-02
## GO:0010558  BP  1414  2 9.210261e-02
## GO:0072330  BP   264  1 9.327104e-02
## GO:0043523  BP   264  1 9.327104e-02
## GO:0044093  BP  1429  2 9.379638e-02
## GO:0030217  BP   269  1 9.496025e-02
## GO:0002366  BP   269  1 9.496025e-02
## GO:0009615  BP   270  1 9.529776e-02
## GO:0060485  BP   272  1 9.597243e-02
## GO:0002263  BP   273  1 9.630960e-02
## GO:0009101  BP   278  1 9.799378e-02
## GO:0030072  BP   278  1 9.799378e-02
## GO:0071902  BP   279  1 9.833028e-02
## GO:0010631  BP   280  1 9.866666e-02
## GO:0002682  BP  1473  2 9.882238e-02
## GO:0071222  BP   282  1 9.933911e-02
## GO:0090132  BP   282  1 9.933911e-02
## GO:0070482  BP   282  1 9.933911e-02
## GO:0045165  BP   284  1 1.000111e-01
## GO:0090130  BP   284  1 1.000111e-01
## GO:0061448  BP   285  1 1.003469e-01
## GO:1901653  BP   287  1 1.010183e-01
## GO:1903037  BP   287  1 1.010183e-01
## GO:0030182  BP  1494  2 1.012507e-01
## GO:0071219  BP   290  1 1.020244e-01
## GO:0031098  BP   290  1 1.020244e-01
## GO:0016192  BP  1501  2 1.020644e-01
## GO:0007611  BP   292  1 1.026946e-01
## GO:0051402  BP   293  1 1.030296e-01
## GO:0043405  BP   295  1 1.036991e-01
## GO:0060326  BP   299  1 1.050369e-01
## GO:0051604  BP   300  1 1.053710e-01
## GO:0032270  BP  1532  2 1.056920e-01
## GO:0046942  BP   301  1 1.057051e-01
## GO:0090596  BP   301  1 1.057051e-01
## GO:0008202  BP   301  1 1.057051e-01
## GO:0015849  BP   302  1 1.060390e-01
## GO:0046883  BP   302  1 1.060390e-01
## GO:0050863  BP   304  1 1.067066e-01
## GO:0016042  BP   306  1 1.073737e-01
## GO:0070372  BP   306  1 1.073737e-01
## GO:0046651  BP   308  1 1.080404e-01
## GO:0032943  BP   310  1 1.087066e-01
## GO:0032103  BP   312  1 1.093724e-01
## GO:0071216  BP   313  1 1.097051e-01
## GO:0006066  BP   314  1 1.100377e-01
## GO:0043062  BP   315  1 1.103702e-01
## GO:0048872  BP   315  1 1.103702e-01
## GO:0021700  BP   317  1 1.110349e-01
## GO:0048562  BP   318  1 1.113670e-01
## GO:0007159  BP   319  1 1.116991e-01
## GO:0051235  BP   322  1 1.126946e-01
## GO:0043270  BP   322  1 1.126946e-01
## GO:0070371  BP   323  1 1.130262e-01
## GO:0042063  BP   323  1 1.130262e-01
## GO:0043434  BP   324  1 1.133578e-01
## GO:1901566  BP  1599  2 1.136651e-01
## GO:0006952  BP  1601  2 1.139058e-01
## GO:0050890  BP   326  1 1.140204e-01
## GO:0045862  BP   328  1 1.146827e-01
## GO:0006869  BP   330  1 1.153445e-01
## GO:0070661  BP   331  1 1.156752e-01
## GO:0032102  BP   336  1 1.173273e-01
## GO:0050768  BP   337  1 1.176574e-01
## GO:0019216  BP   338  1 1.179873e-01
## GO:0009987  BP 15803  8 1.180840e-01
## GO:0051247  BP  1639  2 1.185078e-01
## GO:0019221  BP   341  1 1.189766e-01
## GO:0050878  BP   342  1 1.193061e-01
## GO:0006955  BP  1652  2 1.200945e-01
## GO:0002440  BP   345  1 1.202941e-01
## GO:0001655  BP   346  1 1.206232e-01
## GO:0045861  BP   349  1 1.216098e-01
## GO:0045787  BP   349  1 1.216098e-01
## GO:0048699  BP  1672  2 1.225476e-01
## GO:0006464  BP  3453  3 1.231359e-01
## GO:0036211  BP  3453  3 1.231359e-01
## GO:0050727  BP   354  1 1.232520e-01
## GO:0006959  BP   355  1 1.235801e-01
## GO:0031331  BP   355  1 1.235801e-01
## GO:0033044  BP   356  1 1.239081e-01
## GO:0050678  BP   358  1 1.245638e-01
## GO:0062012  BP   359  1 1.248915e-01
## GO:0032496  BP   359  1 1.248915e-01
## GO:0042060  BP   360  1 1.252190e-01
## GO:0051961  BP   361  1 1.255465e-01
## GO:0046394  BP   362  1 1.258738e-01
## GO:0016053  BP   363  1 1.262011e-01
## GO:0046879  BP   365  1 1.268552e-01
## GO:0010876  BP   370  1 1.284887e-01
## GO:0031349  BP   370  1 1.284887e-01
## GO:0031667  BP   371  1 1.288150e-01
## GO:0009914  BP   373  1 1.294675e-01
## GO:0006887  BP   375  1 1.301194e-01
## GO:0006631  BP   376  1 1.304453e-01
## GO:0002237  BP   377  1 1.307710e-01
## GO:0015031  BP  1746  2 1.317460e-01
## GO:0035690  BP   380  1 1.317475e-01
## GO:0001503  BP   381  1 1.320728e-01
## GO:0006996  BP  3568  3 1.328139e-01
## GO:1901652  BP   384  1 1.330480e-01
## GO:0030900  BP   386  1 1.336975e-01
## GO:0033554  BP  1763  2 1.338852e-01
## GO:0010721  BP   387  1 1.340222e-01
## GO:0043900  BP   391  1 1.353196e-01
## GO:0022008  BP  1778  2 1.357807e-01
## GO:0051251  BP   394  1 1.362916e-01
## GO:0030098  BP   395  1 1.366154e-01
## GO:0022407  BP   395  1 1.366154e-01
## GO:0015833  BP  1797  2 1.381919e-01
## GO:0006979  BP   400  1 1.382326e-01
## GO:0043412  BP  3634  3 1.385083e-01
## GO:0030099  BP   401  1 1.385557e-01
## GO:0009991  BP   401  1 1.385557e-01
## GO:0051346  BP   402  1 1.388787e-01
## GO:0006950  BP  3640  3 1.390309e-01
## GO:0050790  BP  1807  2 1.394655e-01
## GO:0001667  BP   406  1 1.401697e-01
## GO:0042886  BP  1817  2 1.407422e-01
## GO:0001933  BP   408  1 1.408146e-01
## GO:0000280  BP   409  1 1.411368e-01
## GO:0045785  BP   411  1 1.417810e-01
## GO:0052547  BP   411  1 1.417810e-01
## GO:2001233  BP   414  1 1.427465e-01
## GO:0015711  BP   415  1 1.430681e-01
## GO:0009896  BP   422  1 1.453164e-01
## GO:0045184  BP  1856  2 1.457505e-01
## GO:0002449  BP   425  1 1.462784e-01
## GO:0016570  BP   427  1 1.469192e-01
## GO:0071900  BP   427  1 1.469192e-01
## GO:0045860  BP   438  1 1.504358e-01
## GO:0032386  BP   438  1 1.504358e-01
## GO:0051052  BP   440  1 1.510738e-01
## GO:0032501  BP  8233  5 1.510908e-01
## GO:0002460  BP   441  1 1.513926e-01
## GO:0016569  BP   444  1 1.523485e-01
## GO:0042326  BP   452  1 1.548928e-01
## GO:0048285  BP   456  1 1.561625e-01
## GO:0045666  BP   461  1 1.577471e-01
## GO:0048732  BP   467  1 1.596452e-01
## GO:0048583  BP  3883  3 1.608640e-01
## GO:0051656  BP   473  1 1.615394e-01
## GO:0002683  BP   473  1 1.615394e-01
## GO:0033674  BP   476  1 1.624851e-01
## GO:1901615  BP   481  1 1.640592e-01
## GO:0071407  BP   482  1 1.643737e-01
## GO:0008015  BP   484  1 1.650024e-01
## GO:0042110  BP   491  1 1.671995e-01
## GO:0007346  BP   493  1 1.678263e-01
## GO:0003013  BP   495  1 1.684527e-01
## GO:0009611  BP   495  1 1.684527e-01
## GO:0032870  BP   518  1 1.756259e-01
## GO:0043410  BP   519  1 1.759365e-01
## GO:0023061  BP   523  1 1.771780e-01
## GO:0002253  BP   526  1 1.781080e-01
## GO:1902532  BP   527  1 1.784178e-01
## GO:0001501  BP   530  1 1.793466e-01
## GO:0071705  BP  2133  2 1.825029e-01
## GO:0008610  BP   545  1 1.839765e-01
## GO:0045936  BP   546  1 1.842843e-01
## GO:0010563  BP   546  1 1.842843e-01
## GO:0006820  BP   549  1 1.852072e-01
## GO:0051347  BP   551  1 1.858219e-01
## GO:0007169  BP   553  1 1.864362e-01
## GO:0051249  BP   555  1 1.870501e-01
## GO:0010817  BP   557  1 1.876636e-01
## GO:0031400  BP   564  1 1.898076e-01
## GO:0071417  BP   568  1 1.910305e-01
## GO:0034762  BP   568  1 1.910305e-01
## GO:0032787  BP   570  1 1.916413e-01
## GO:0051301  BP   574  1 1.928617e-01
## GO:0002250  BP   583  1 1.956017e-01
## GO:0010564  BP   585  1 1.962094e-01
## GO:0010638  BP   595  1 1.992421e-01
## GO:0051640  BP   596  1 1.995448e-01
## GO:0044057  BP   596  1 1.995448e-01
## GO:0006935  BP   597  1 1.998474e-01
## GO:0042330  BP   600  1 2.007546e-01
## GO:0097190  BP   605  1 2.022646e-01
## GO:0023052  BP  6579  4 2.041574e-01
## GO:0071396  BP   612  1 2.043743e-01
## GO:0048584  BP  2294  2 2.046466e-01
## GO:0030855  BP   626  1 2.085788e-01
## GO:0007154  BP  6648  4 2.099978e-01
## GO:1901699  BP   631  1 2.100756e-01
## GO:0007399  BP  2333  2 2.100796e-01
## GO:0007420  BP   634  1 2.109725e-01
## GO:0006810  BP  4398  3 2.109902e-01
## GO:0048598  BP   637  1 2.118685e-01
## GO:0031347  BP   640  1 2.127636e-01
## GO:1903047  BP   644  1 2.139556e-01
## GO:0044283  BP   650  1 2.157407e-01
## GO:0050804  BP   661  1 2.190039e-01
## GO:0045859  BP   662  1 2.192999e-01
## GO:0099177  BP   662  1 2.192999e-01
## GO:0048468  BP  2406  2 2.203115e-01
## GO:0098542  BP   667  1 2.207787e-01
## GO:0097435  BP   681  1 2.249061e-01
## GO:0051234  BP  4538  3 2.253943e-01
## GO:0030155  BP   686  1 2.263754e-01
## GO:0060322  BP   688  1 2.269624e-01
## GO:0006954  BP   691  1 2.278423e-01
## GO:0051603  BP   696  1 2.293067e-01
## GO:0009725  BP   697  1 2.295992e-01
## GO:0007166  BP  2497  2 2.331675e-01
## GO:0071702  BP  2505  2 2.343026e-01
## GO:0009605  BP  2515  2 2.357223e-01
## GO:0007610  BP   728  1 2.386205e-01
## GO:0043549  BP   728  1 2.386205e-01
## GO:0043269  BP   732  1 2.397776e-01
## GO:0014070  BP   734  1 2.403556e-01
## GO:0006325  BP   735  1 2.406445e-01
## GO:0043408  BP   737  1 2.412219e-01
## GO:0044257  BP   740  1 2.420872e-01
## GO:0008104  BP  2578  2 2.446914e-01
## GO:0051129  BP   755  1 2.464010e-01
## GO:0061024  BP   780  1 2.535421e-01
## GO:0000165  BP   793  1 2.572317e-01
## GO:0070925  BP   796  1 2.580808e-01
## GO:0000278  BP   799  1 2.589291e-01
## GO:0023014  BP   810  1 2.620320e-01
## GO:0033993  BP   822  1 2.654039e-01
## GO:0051338  BP   832  1 2.682033e-01
## GO:0046649  BP   841  1 2.707146e-01
## GO:0009966  BP  2780  2 2.736785e-01
## GO:0098916  BP   856  1 2.748832e-01
## GO:0007268  BP   856  1 2.748832e-01
## GO:0099537  BP   865  1 2.773741e-01
## GO:0099536  BP   874  1 2.798575e-01
## GO:0010243  BP   883  1 2.823333e-01
## GO:0007167  BP   890  1 2.842536e-01
## GO:0042493  BP   894  1 2.853489e-01
## GO:0019752  BP   902  1 2.875350e-01
## GO:0071345  BP   907  1 2.888984e-01
## GO:0009617  BP   907  1 2.888984e-01
## GO:0006259  BP   915  1 2.910748e-01
## GO:0033036  BP  2901  2 2.911549e-01
## GO:0044255  BP   932  1 2.956802e-01
## GO:0003008  BP  2939  2 2.966533e-01
## GO:0043436  BP   941  1 2.981075e-01
## GO:0051726  BP   955  1 3.018686e-01
## GO:0060341  BP   958  1 3.026722e-01
## GO:0006082  BP   968  1 3.053450e-01
## GO:0070887  BP  3023  2 3.088169e-01
## GO:1901698  BP   982  1 3.090716e-01
## GO:0051336  BP   985  1 3.098678e-01
## GO:0001934  BP   989  1 3.109282e-01
## GO:0034097  BP  1004  1 3.148917e-01
## GO:1902533  BP  1005  1 3.151553e-01
## GO:0009628  BP  1030  1 3.217139e-01
## GO:0042327  BP  1043  1 3.251023e-01
## GO:0043085  BP  1051  1 3.271800e-01
## GO:0051276  BP  1103  1 3.405468e-01
## GO:0022402  BP  1108  1 3.418196e-01
## GO:0045937  BP  1112  1 3.428362e-01
## GO:0010562  BP  1112  1 3.428362e-01
## GO:0010646  BP  3338  2 3.543777e-01
## GO:0023051  BP  3360  2 3.575479e-01
## GO:0060429  BP  1172  1 3.579190e-01
## GO:0051707  BP  1172  1 3.579190e-01
## GO:0043207  BP  1174  1 3.584164e-01
## GO:1901701  BP  1206  1 3.663286e-01
## GO:0009607  BP  1208  1 3.668202e-01
## GO:0048666  BP  1222  1 3.702521e-01
## GO:0071495  BP  1223  1 3.704966e-01
## GO:0006629  BP  1258  1 3.790011e-01
## GO:0055085  BP  1266  1 3.809305e-01
## GO:0051179  BP  5950  3 3.820078e-01
## GO:0009719  BP  1409  1 4.145329e-01
## GO:0001932  BP  1410  1 4.147621e-01
## GO:0046907  BP  1502  1 4.355064e-01
## GO:0009967  BP  1504  1 4.359500e-01
## GO:0042325  BP  1533  1 4.423476e-01
## GO:0006811  BP  1565  1 4.493321e-01
## GO:1901700  BP  1589  1 4.545194e-01
## GO:0007049  BP  1639  1 4.651869e-01
## GO:0042221  BP  4136  2 4.667795e-01
## GO:0019220  BP  1692  1 4.762915e-01
## GO:0051174  BP  1693  1 4.764991e-01
## GO:1902531  BP  1710  1 4.800160e-01
## GO:0044281  BP  1753  1 4.888183e-01
## GO:0050896  BP  9531  4 4.936543e-01
## GO:0006468  BP  1815  1 5.012768e-01
## GO:0010647  BP  1854  1 5.089747e-01
## GO:0023056  BP  1860  1 5.101495e-01
## GO:0051649  BP  1906  1 5.190741e-01
## GO:0016310  BP  2166  1 5.668539e-01
## GO:0051716  BP  7810  3 5.895516e-01
## GO:0050877  BP  2299  1 5.896238e-01
## GO:0051704  BP  2389  1 6.044220e-01
## GO:0071310  BP  2433  1 6.114825e-01
## GO:0051641  BP  2592  1 6.360723e-01
## GO:0008150  BP 23210  9 6.368752e-01
## GO:0035556  BP  2608  1 6.384685e-01
## GO:0022607  BP  2807  1 6.671201e-01
## GO:0006796  BP  2933  1 6.842002e-01
## GO:0006793  BP  2955  1 6.871012e-01
## GO:0007165  BP  6028  2 6.924902e-01
## GO:0044085  BP  3041  1 6.982155e-01
## GO:0010033  BP  3070  1 7.018834e-01
## GO:0044205  BP     1  0 1.000000e+00
## GO:0070060  BP     1  0 1.000000e+00
## GO:0006653  BP     1  0 1.000000e+00
## GO:0046360  BP     1  0 1.000000e+00
## GO:0019606  BP     1  0 1.000000e+00
## GO:0046963  BP     1  0 1.000000e+00
## GO:0006666  BP     1  0 1.000000e+00
## GO:0019470  BP     1  0 1.000000e+00
## GO:0042791  BP     1  0 1.000000e+00
## GO:0036261  BP     1  0 1.000000e+00
## GO:0034463  BP     1  0 1.000000e+00
## GO:0046032  BP     1  0 1.000000e+00
## GO:0006196  BP     1  0 1.000000e+00
## GO:0044209  BP     1  0 1.000000e+00
## GO:0080121  BP     1  0 1.000000e+00
## GO:0086072  BP     1  0 1.000000e+00
## GO:0097323  BP     1  0 1.000000e+00
## GO:0035769  BP     1  0 1.000000e+00
## GO:0002368  BP     1  0 1.000000e+00
## GO:1990117  BP     1  0 1.000000e+00
## GO:0002336  BP     1  0 1.000000e+00
## GO:0060803  BP     1  0 1.000000e+00
## GO:0071893  BP     1  0 1.000000e+00
## GO:0061151  BP     1  0 1.000000e+00
## GO:0021919  BP     1  0 1.000000e+00
## GO:0061149  BP     1  0 1.000000e+00
## GO:0038118  BP     1  0 1.000000e+00
## GO:0038159  BP     1  0 1.000000e+00
## GO:0018166  BP     1  0 1.000000e+00
## GO:0008208  BP     1  0 1.000000e+00
## GO:0035724  BP     1  0 1.000000e+00
## GO:0045222  BP     1  0 1.000000e+00
## GO:0002298  BP     1  0 1.000000e+00
## GO:0043375  BP     1  0 1.000000e+00
## GO:0002300  BP     1  0 1.000000e+00
## GO:0035780  BP     1  0 1.000000e+00
## GO:0046705  BP     1  0 1.000000e+00
## GO:0046704  BP     1  0 1.000000e+00
## GO:0061508  BP     1  0 1.000000e+00
## GO:0006657  BP     1  0 1.000000e+00
## GO:0016024  BP     1  0 1.000000e+00
## GO:0009224  BP     1  0 1.000000e+00
## GO:0046035  BP     1  0 1.000000e+00
## GO:0061566  BP     1  0 1.000000e+00
## GO:0006238  BP     1  0 1.000000e+00
## GO:0006055  BP     1  0 1.000000e+00
## GO:0015782  BP     1  0 1.000000e+00
## GO:0038160  BP     1  0 1.000000e+00
## GO:0021870  BP     1  0 1.000000e+00
## GO:0055130  BP     1  0 1.000000e+00
## GO:0046144  BP     1  0 1.000000e+00
## GO:0046436  BP     1  0 1.000000e+00
## GO:0042941  BP     1  0 1.000000e+00
## GO:0046437  BP     1  0 1.000000e+00
## GO:0042840  BP     1  0 1.000000e+00
## GO:0042839  BP     1  0 1.000000e+00
## GO:0019303  BP     1  0 1.000000e+00
## GO:0070179  BP     1  0 1.000000e+00
## GO:0036088  BP     1  0 1.000000e+00
## GO:0042843  BP     1  0 1.000000e+00
## GO:1904155  BP     1  0 1.000000e+00
## GO:1904156  BP     1  0 1.000000e+00
## GO:0098503  BP     1  0 1.000000e+00
## GO:0098504  BP     1  0 1.000000e+00
## GO:0098502  BP     1  0 1.000000e+00
## GO:0051102  BP     1  0 1.000000e+00
## GO:0032775  BP     1  0 1.000000e+00
## GO:0006274  BP     1  0 1.000000e+00
## GO:1902296  BP     1  0 1.000000e+00
## GO:1902983  BP     1  0 1.000000e+00
## GO:1902319  BP     1  0 1.000000e+00
## GO:0001112  BP     1  0 1.000000e+00
## GO:0001173  BP     1  0 1.000000e+00
## GO:0039695  BP     1  0 1.000000e+00
## GO:0106101  BP     1  0 1.000000e+00
## GO:0032581  BP     1  0 1.000000e+00
## GO:0038133  BP     1  0 1.000000e+00
## GO:0038130  BP     1  0 1.000000e+00
## GO:0006747  BP     1  0 1.000000e+00
## GO:0046443  BP     1  0 1.000000e+00
## GO:0009398  BP     1  0 1.000000e+00
## GO:0046444  BP     1  0 1.000000e+00
## GO:0002542  BP     1  0 1.000000e+00
## GO:0002774  BP     1  0 1.000000e+00
## GO:0035589  BP     1  0 1.000000e+00
## GO:0051318  BP     1  0 1.000000e+00
## GO:0021858  BP     1  0 1.000000e+00
## GO:0046711  BP     1  0 1.000000e+00
## GO:0046712  BP     1  0 1.000000e+00
## GO:0061568  BP     1  0 1.000000e+00
## GO:0042352  BP     1  0 1.000000e+00
## GO:0036085  BP     1  0 1.000000e+00
## GO:0015783  BP     1  0 1.000000e+00
## GO:0032263  BP     1  0 1.000000e+00
## GO:0006507  BP     1  0 1.000000e+00
## GO:0032468  BP     1  0 1.000000e+00
## GO:0070846  BP     1  0 1.000000e+00
## GO:0071612  BP     1  0 1.000000e+00
## GO:0006193  BP     1  0 1.000000e+00
## GO:0019481  BP     1  0 1.000000e+00
## GO:0019449  BP     1  0 1.000000e+00
## GO:1903185  BP     1  0 1.000000e+00
## GO:1903184  BP     1  0 1.000000e+00
## GO:1903803  BP     1  0 1.000000e+00
## GO:0089709  BP     1  0 1.000000e+00
## GO:1903801  BP     1  0 1.000000e+00
## GO:0019474  BP     1  0 1.000000e+00
## GO:0033514  BP     1  0 1.000000e+00
## GO:0046491  BP     1  0 1.000000e+00
## GO:0097640  BP     1  0 1.000000e+00
## GO:1904556  BP     1  0 1.000000e+00
## GO:0051160  BP     1  0 1.000000e+00
## GO:0051164  BP     1  0 1.000000e+00
## GO:0002399  BP     1  0 1.000000e+00
## GO:0002398  BP     1  0 1.000000e+00
## GO:0035660  BP     1  0 1.000000e+00
## GO:0006051  BP     1  0 1.000000e+00
## GO:0046380  BP     1  0 1.000000e+00
## GO:0036071  BP     1  0 1.000000e+00
## GO:0016256  BP     1  0 1.000000e+00
## GO:0018009  BP     1  0 1.000000e+00
## GO:0018011  BP     1  0 1.000000e+00
## GO:0018012  BP     1  0 1.000000e+00
## GO:0017190  BP     1  0 1.000000e+00
## GO:0018013  BP     1  0 1.000000e+00
## GO:0018016  BP     1  0 1.000000e+00
## GO:0035568  BP     1  0 1.000000e+00
## GO:0035572  BP     1  0 1.000000e+00
## GO:0035570  BP     1  0 1.000000e+00
## GO:0035573  BP     1  0 1.000000e+00
## GO:0034355  BP     1  0 1.000000e+00
## GO:0043132  BP     1  0 1.000000e+00
## GO:1904784  BP     1  0 1.000000e+00
## GO:0003270  BP     1  0 1.000000e+00
## GO:1903461  BP     1  0 1.000000e+00
## GO:0003168  BP     1  0 1.000000e+00
## GO:0106005  BP     1  0 1.000000e+00
## GO:1990884  BP     1  0 1.000000e+00
## GO:0000378  BP     1  0 1.000000e+00
## GO:0034337  BP     1  0 1.000000e+00
## GO:1990280  BP     1  0 1.000000e+00
## GO:1990114  BP     1  0 1.000000e+00
## GO:0015805  BP     1  0 1.000000e+00
## GO:0019510  BP     1  0 1.000000e+00
## GO:0046499  BP     1  0 1.000000e+00
## GO:0033477  BP     1  0 1.000000e+00
## GO:0036316  BP     1  0 1.000000e+00
## GO:0006617  BP     1  0 1.000000e+00
## GO:1990751  BP     1  0 1.000000e+00
## GO:0014011  BP     1  0 1.000000e+00
## GO:0061843  BP     1  0 1.000000e+00
## GO:0060010  BP     1  0 1.000000e+00
## GO:0060064  BP     1  0 1.000000e+00
## GO:0120117  BP     1  0 1.000000e+00
## GO:0002419  BP     1  0 1.000000e+00
## GO:0033371  BP     1  0 1.000000e+00
## GO:0035688  BP     1  0 1.000000e+00
## GO:0035687  BP     1  0 1.000000e+00
## GO:0035705  BP     1  0 1.000000e+00
## GO:0036399  BP     1  0 1.000000e+00
## GO:0061571  BP     1  0 1.000000e+00
## GO:0035665  BP     1  0 1.000000e+00
## GO:0035664  BP     1  0 1.000000e+00
## GO:0045553  BP     1  0 1.000000e+00
## GO:0034474  BP     1  0 1.000000e+00
## GO:0034477  BP     1  0 1.000000e+00
## GO:0006225  BP     1  0 1.000000e+00
## GO:0046048  BP     1  0 1.000000e+00
## GO:0061569  BP     1  0 1.000000e+00
## GO:0006049  BP     1  0 1.000000e+00
## GO:0006258  BP     1  0 1.000000e+00
## GO:0015786  BP     1  0 1.000000e+00
## GO:0006065  BP     1  0 1.000000e+00
## GO:0015790  BP     1  0 1.000000e+00
## GO:0044206  BP     1  0 1.000000e+00
## GO:1990731  BP     1  0 1.000000e+00
## GO:1904210  BP     1  0 1.000000e+00
## GO:1902378  BP     1  0 1.000000e+00
## GO:0044333  BP     1  0 1.000000e+00
## GO:1904887  BP     1  0 1.000000e+00
## GO:1904701  BP     1  0 1.000000e+00
## GO:1901639  BP     1  0 1.000000e+00
## GO:0009738  BP     1  0 1.000000e+00
## GO:0046186  BP     1  0 1.000000e+00
## GO:0006117  BP     1  0 1.000000e+00
## GO:0043438  BP     1  0 1.000000e+00
## GO:0006581  BP     1  0 1.000000e+00
## GO:0003069  BP     1  0 1.000000e+00
## GO:0090425  BP     1  0 1.000000e+00
## GO:1990863  BP     1  0 1.000000e+00
## GO:0002077  BP     1  0 1.000000e+00
## GO:0061573  BP     1  0 1.000000e+00
## GO:0031289  BP     1  0 1.000000e+00
## GO:0007014  BP     1  0 1.000000e+00
## GO:0002543  BP     1  0 1.000000e+00
## GO:0043006  BP     1  0 1.000000e+00
## GO:0060520  BP     1  0 1.000000e+00
## GO:0036155  BP     1  0 1.000000e+00
## GO:0015853  BP     1  0 1.000000e+00
## GO:0048855  BP     1  0 1.000000e+00
## GO:0071106  BP     1  0 1.000000e+00
## GO:0046086  BP     1  0 1.000000e+00
## GO:0086030  BP     1  0 1.000000e+00
## GO:0007192  BP     1  0 1.000000e+00
## GO:0086096  BP     1  0 1.000000e+00
## GO:0120179  BP     1  0 1.000000e+00
## GO:0044651  BP     1  0 1.000000e+00
## GO:0043390  BP     1  0 1.000000e+00
## GO:0001315  BP     1  0 1.000000e+00
## GO:0009820  BP     1  0 1.000000e+00
## GO:0046305  BP     1  0 1.000000e+00
## GO:0019428  BP     1  0 1.000000e+00
## GO:0000256  BP     1  0 1.000000e+00
## GO:0002299  BP     1  0 1.000000e+00
## GO:0015742  BP     1  0 1.000000e+00
## GO:0061143  BP     1  0 1.000000e+00
## GO:0015898  BP     1  0 1.000000e+00
## GO:0043041  BP     1  0 1.000000e+00
## GO:0032973  BP     1  0 1.000000e+00
## GO:0006579  BP     1  0 1.000000e+00
## GO:0106074  BP     1  0 1.000000e+00
## GO:0021541  BP     1  0 1.000000e+00
## GO:0097086  BP     1  0 1.000000e+00
## GO:0010021  BP     1  0 1.000000e+00
## GO:2000896  BP     1  0 1.000000e+00
## GO:0055048  BP     1  0 1.000000e+00
## GO:0035935  BP     1  0 1.000000e+00
## GO:0035476  BP     1  0 1.000000e+00
## GO:0010260  BP     1  0 1.000000e+00
## GO:0072165  BP     1  0 1.000000e+00
## GO:0060873  BP     1  0 1.000000e+00
## GO:0072099  BP     1  0 1.000000e+00
## GO:0099087  BP     1  0 1.000000e+00
## GO:0098972  BP     1  0 1.000000e+00
## GO:0043420  BP     1  0 1.000000e+00
## GO:1990262  BP     1  0 1.000000e+00
## GO:0002779  BP     1  0 1.000000e+00
## GO:0002406  BP     1  0 1.000000e+00
## GO:0002404  BP     1  0 1.000000e+00
## GO:0002412  BP     1  0 1.000000e+00
## GO:0002776  BP     1  0 1.000000e+00
## GO:0042868  BP     1  0 1.000000e+00
## GO:0071041  BP     1  0 1.000000e+00
## GO:0060183  BP     1  0 1.000000e+00
## GO:0019544  BP     1  0 1.000000e+00
## GO:0019493  BP     1  0 1.000000e+00
## GO:0010121  BP     1  0 1.000000e+00
## GO:0019546  BP     1  0 1.000000e+00
## GO:0009095  BP     1  0 1.000000e+00
## GO:1901684  BP     1  0 1.000000e+00
## GO:0001984  BP     1  0 1.000000e+00
## GO:0006529  BP     1  0 1.000000e+00
## GO:0006530  BP     1  0 1.000000e+00
## GO:0033345  BP     1  0 1.000000e+00
## GO:0006867  BP     1  0 1.000000e+00
## GO:0061528  BP     1  0 1.000000e+00
## GO:0006422  BP     1  0 1.000000e+00
## GO:0030954  BP     1  0 1.000000e+00
## GO:0036520  BP     1  0 1.000000e+00
## GO:0045167  BP     1  0 1.000000e+00
## GO:0086044  BP     1  0 1.000000e+00
## GO:0003167  BP     1  0 1.000000e+00
## GO:1905222  BP     1  0 1.000000e+00
## GO:0060929  BP     1  0 1.000000e+00
## GO:0042668  BP     1  0 1.000000e+00
## GO:0061910  BP     1  0 1.000000e+00
## GO:0061909  BP     1  0 1.000000e+00
## GO:0036331  BP     1  0 1.000000e+00
## GO:0048321  BP     1  0 1.000000e+00
## GO:0048322  BP     1  0 1.000000e+00
## GO:0048327  BP     1  0 1.000000e+00
## GO:0099088  BP     1  0 1.000000e+00
## GO:0060404  BP     1  0 1.000000e+00
## GO:0051638  BP     1  0 1.000000e+00
## GO:0045175  BP     1  0 1.000000e+00
## GO:0097510  BP     1  0 1.000000e+00
## GO:0006288  BP     1  0 1.000000e+00
## GO:0002575  BP     1  0 1.000000e+00
## GO:0002561  BP     1  0 1.000000e+00
## GO:0030221  BP     1  0 1.000000e+00
## GO:1990960  BP     1  0 1.000000e+00
## GO:0002560  BP     1  0 1.000000e+00
## GO:0051780  BP     1  0 1.000000e+00
## GO:1901787  BP     1  0 1.000000e+00
## GO:1901086  BP     1  0 1.000000e+00
## GO:0019483  BP     1  0 1.000000e+00
## GO:0033396  BP     1  0 1.000000e+00
## GO:0019484  BP     1  0 1.000000e+00
## GO:0001762  BP     1  0 1.000000e+00
## GO:1901810  BP     1  0 1.000000e+00
## GO:1904837  BP     1  0 1.000000e+00
## GO:1901805  BP     1  0 1.000000e+00
## GO:1901804  BP     1  0 1.000000e+00
## GO:0015759  BP     1  0 1.000000e+00
## GO:0030653  BP     1  0 1.000000e+00
## GO:0002152  BP     1  0 1.000000e+00
## GO:0002812  BP     1  0 1.000000e+00
## GO:0002815  BP     1  0 1.000000e+00
## GO:0006768  BP     1  0 1.000000e+00
## GO:0015878  BP     1  0 1.000000e+00
## GO:0072377  BP     1  0 1.000000e+00
## GO:0097497  BP     1  0 1.000000e+00
## GO:0002044  BP     1  0 1.000000e+00
## GO:0046713  BP     1  0 1.000000e+00
## GO:0002936  BP     1  0 1.000000e+00
## GO:0061114  BP     1  0 1.000000e+00
## GO:0016132  BP     1  0 1.000000e+00
## GO:0016131  BP     1  0 1.000000e+00
## GO:0060436  BP     1  0 1.000000e+00
## GO:0060503  BP     1  0 1.000000e+00
## GO:0086054  BP     1  0 1.000000e+00
## GO:0046359  BP     1  0 1.000000e+00
## GO:0019605  BP     1  0 1.000000e+00
## GO:0006198  BP     1  0 1.000000e+00
## GO:0010816  BP     1  0 1.000000e+00
## GO:0036161  BP     1  0 1.000000e+00
## GO:0090676  BP     1  0 1.000000e+00
## GO:1903515  BP     1  0 1.000000e+00
## GO:0061310  BP     1  0 1.000000e+00
## GO:0044335  BP     1  0 1.000000e+00
## GO:0060823  BP     1  0 1.000000e+00
## GO:0044329  BP     1  0 1.000000e+00
## GO:0044328  BP     1  0 1.000000e+00
## GO:0044330  BP     1  0 1.000000e+00
## GO:1905474  BP     1  0 1.000000e+00
## GO:0097310  BP     1  0 1.000000e+00
## GO:0070409  BP     1  0 1.000000e+00
## GO:0070408  BP     1  0 1.000000e+00
## GO:0033231  BP     1  0 1.000000e+00
## GO:0098704  BP     1  0 1.000000e+00
## GO:0035378  BP     1  0 1.000000e+00
## GO:0003210  BP     1  0 1.000000e+00
## GO:0060945  BP     1  0 1.000000e+00
## GO:0060927  BP     1  0 1.000000e+00
## GO:0003259  BP     1  0 1.000000e+00
## GO:0042684  BP     1  0 1.000000e+00
## GO:0042685  BP     1  0 1.000000e+00
## GO:0003260  BP     1  0 1.000000e+00
## GO:0060975  BP     1  0 1.000000e+00
## GO:0003142  BP     1  0 1.000000e+00
## GO:0042413  BP     1  0 1.000000e+00
## GO:1902603  BP     1  0 1.000000e+00
## GO:0035499  BP     1  0 1.000000e+00
## GO:0016117  BP     1  0 1.000000e+00
## GO:0061103  BP     1  0 1.000000e+00
## GO:0052353  BP     1  0 1.000000e+00
## GO:0052356  BP     1  0 1.000000e+00
## GO:0052362  BP     1  0 1.000000e+00
## GO:0052354  BP     1  0 1.000000e+00
## GO:0052342  BP     1  0 1.000000e+00
## GO:0052363  BP     1  0 1.000000e+00
## GO:0061984  BP     1  0 1.000000e+00
## GO:0090667  BP     1  0 1.000000e+00
## GO:0035212  BP     1  0 1.000000e+00
## GO:1902294  BP     1  0 1.000000e+00
## GO:0033301  BP     1  0 1.000000e+00
## GO:0043163  BP     1  0 1.000000e+00
## GO:0060582  BP     1  0 1.000000e+00
## GO:0071976  BP     1  0 1.000000e+00
## GO:0061381  BP     1  0 1.000000e+00
## GO:0060981  BP     1  0 1.000000e+00
## GO:0060980  BP     1  0 1.000000e+00
## GO:0090134  BP     1  0 1.000000e+00
## GO:0003318  BP     1  0 1.000000e+00
## GO:0097231  BP     1  0 1.000000e+00
## GO:0090247  BP     1  0 1.000000e+00
## GO:0090529  BP     1  0 1.000000e+00
## GO:0042546  BP     1  0 1.000000e+00
## GO:0006039  BP     1  0 1.000000e+00
## GO:0006037  BP     1  0 1.000000e+00
## GO:0031506  BP     1  0 1.000000e+00
## GO:0044038  BP     1  0 1.000000e+00
## GO:0000032  BP     1  0 1.000000e+00
## GO:0010383  BP     1  0 1.000000e+00
## GO:0021813  BP     1  0 1.000000e+00
## GO:0060495  BP     1  0 1.000000e+00
## GO:0099156  BP     1  0 1.000000e+00
## GO:0120180  BP     1  0 1.000000e+00
## GO:0043449  BP     1  0 1.000000e+00
## GO:0097275  BP     1  0 1.000000e+00
## GO:0006876  BP     1  0 1.000000e+00
## GO:0070589  BP     1  0 1.000000e+00
## GO:0097276  BP     1  0 1.000000e+00
## GO:0140041  BP     1  0 1.000000e+00
## GO:0030026  BP     1  0 1.000000e+00
## GO:0051692  BP     1  0 1.000000e+00
## GO:0051691  BP     1  0 1.000000e+00
## GO:0090346  BP     1  0 1.000000e+00
## GO:0090345  BP     1  0 1.000000e+00
## GO:1904566  BP     1  0 1.000000e+00
## GO:1905243  BP     1  0 1.000000e+00
## GO:1904682  BP     1  0 1.000000e+00
## GO:0071215  BP     1  0 1.000000e+00
## GO:0071418  BP     1  0 1.000000e+00
## GO:1903718  BP     1  0 1.000000e+00
## GO:0072740  BP     1  0 1.000000e+00
## GO:0071454  BP     1  0 1.000000e+00
## GO:0097185  BP     1  0 1.000000e+00
## GO:0072755  BP     1  0 1.000000e+00
## GO:0061433  BP     1  0 1.000000e+00
## GO:0071244  BP     1  0 1.000000e+00
## GO:1902350  BP     1  0 1.000000e+00
## GO:0071247  BP     1  0 1.000000e+00
## GO:0035874  BP     1  0 1.000000e+00
## GO:0071386  BP     1  0 1.000000e+00
## GO:0071387  BP     1  0 1.000000e+00
## GO:0072749  BP     1  0 1.000000e+00
## GO:0071324  BP     1  0 1.000000e+00
## GO:1904630  BP     1  0 1.000000e+00
## GO:0072721  BP     1  0 1.000000e+00
## GO:1905396  BP     1  0 1.000000e+00
## GO:1902618  BP     1  0 1.000000e+00
## GO:0071231  BP     1  0 1.000000e+00
## GO:0071240  BP     1  0 1.000000e+00
## GO:0071497  BP     1  0 1.000000e+00
## GO:1990792  BP     1  0 1.000000e+00
## GO:1904632  BP     1  0 1.000000e+00
## GO:1905631  BP     1  0 1.000000e+00
## GO:1905430  BP     1  0 1.000000e+00
## GO:1904588  BP     1  0 1.000000e+00
## GO:0036471  BP     1  0 1.000000e+00
## GO:0071486  BP     1  0 1.000000e+00
## GO:0071464  BP     1  0 1.000000e+00
## GO:0035903  BP     1  0 1.000000e+00
## GO:0071348  BP     1  0 1.000000e+00
## GO:0097398  BP     1  0 1.000000e+00
## GO:0071282  BP     1  0 1.000000e+00
## GO:0071284  BP     1  0 1.000000e+00
## GO:0071484  BP     1  0 1.000000e+00
## GO:0071449  BP     1  0 1.000000e+00
## GO:0071373  BP     1  0 1.000000e+00
## GO:0072705  BP     1  0 1.000000e+00
## GO:0072703  BP     1  0 1.000000e+00
## GO:1904609  BP     1  0 1.000000e+00
## GO:0035714  BP     1  0 1.000000e+00
## GO:0071471  BP     1  0 1.000000e+00
## GO:0071400  BP     1  0 1.000000e+00
## GO:0071444  BP     1  0 1.000000e+00
## GO:1903166  BP     1  0 1.000000e+00
## GO:1904586  BP     1  0 1.000000e+00
## GO:1905835  BP     1  0 1.000000e+00
## GO:0097403  BP     1  0 1.000000e+00
## GO:0071489  BP     1  0 1.000000e+00
## GO:1904015  BP     1  0 1.000000e+00
## GO:0072709  BP     1  0 1.000000e+00
## GO:0071329  BP     1  0 1.000000e+00
## GO:1905229  BP     1  0 1.000000e+00
## GO:0071401  BP     1  0 1.000000e+00
## GO:0071228  BP     1  0 1.000000e+00
## GO:1904577  BP     1  0 1.000000e+00
## GO:0090731  BP     1  0 1.000000e+00
## GO:1904568  BP     1  0 1.000000e+00
## GO:1990451  BP     1  0 1.000000e+00
## GO:0097277  BP     1  0 1.000000e+00
## GO:0007349  BP     1  0 1.000000e+00
## GO:0071529  BP     1  0 1.000000e+00
## GO:0002510  BP     1  0 1.000000e+00
## GO:0021956  BP     1  0 1.000000e+00
## GO:0002509  BP     1  0 1.000000e+00
## GO:1902389  BP     1  0 1.000000e+00
## GO:0099040  BP     1  0 1.000000e+00
## GO:0021686  BP     1  0 1.000000e+00
## GO:0021685  BP     1  0 1.000000e+00
## GO:0021688  BP     1  0 1.000000e+00
## GO:0021588  BP     1  0 1.000000e+00
## GO:0061301  BP     1  0 1.000000e+00
## GO:0051086  BP     1  0 1.000000e+00
## GO:1904764  BP     1  0 1.000000e+00
## GO:0061741  BP     1  0 1.000000e+00
## GO:0019988  BP     1  0 1.000000e+00
## GO:0036516  BP     1  0 1.000000e+00
## GO:0036517  BP     1  0 1.000000e+00
## GO:0071610  BP     1  0 1.000000e+00
## GO:0036392  BP     1  0 1.000000e+00
## GO:0071606  BP     1  0 1.000000e+00
## GO:0032600  BP     1  0 1.000000e+00
## GO:0033606  BP     1  0 1.000000e+00
## GO:0042466  BP     1  0 1.000000e+00
## GO:0021793  BP     1  0 1.000000e+00
## GO:0034670  BP     1  0 1.000000e+00
## GO:0042196  BP     1  0 1.000000e+00
## GO:0033488  BP     1  0 1.000000e+00
## GO:0033490  BP     1  0 1.000000e+00
## GO:0010879  BP     1  0 1.000000e+00
## GO:0042426  BP     1  0 1.000000e+00
## GO:0030207  BP     1  0 1.000000e+00
## GO:0050653  BP     1  0 1.000000e+00
## GO:1990141  BP     1  0 1.000000e+00
## GO:0031052  BP     1  0 1.000000e+00
## GO:0035853  BP     1  0 1.000000e+00
## GO:0001300  BP     1  0 1.000000e+00
## GO:1905349  BP     1  0 1.000000e+00
## GO:0061523  BP     1  0 1.000000e+00
## GO:0003243  BP     1  0 1.000000e+00
## GO:1990771  BP     1  0 1.000000e+00
## GO:0009236  BP     1  0 1.000000e+00
## GO:0042366  BP     1  0 1.000000e+00
## GO:0015938  BP     1  0 1.000000e+00
## GO:0035349  BP     1  0 1.000000e+00
## GO:0015880  BP     1  0 1.000000e+00
## GO:0048673  BP     1  0 1.000000e+00
## GO:0061580  BP     1  0 1.000000e+00
## GO:0021528  BP     1  0 1.000000e+00
## GO:0038178  BP     1  0 1.000000e+00
## GO:0048058  BP     1  0 1.000000e+00
## GO:0072027  BP     1  0 1.000000e+00
## GO:0051089  BP     1  0 1.000000e+00
## GO:0090246  BP     1  0 1.000000e+00
## GO:0036404  BP     1  0 1.000000e+00
## GO:0033168  BP     1  0 1.000000e+00
## GO:0071951  BP     1  0 1.000000e+00
## GO:0046814  BP     1  0 1.000000e+00
## GO:0060365  BP     1  0 1.000000e+00
## GO:0003178  BP     1  0 1.000000e+00
## GO:0003182  BP     1  0 1.000000e+00
## GO:0021972  BP     1  0 1.000000e+00
## GO:0097273  BP     1  0 1.000000e+00
## GO:0046449  BP     1  0 1.000000e+00
## GO:0006535  BP     1  0 1.000000e+00
## GO:1903712  BP     1  0 1.000000e+00
## GO:0018063  BP     1  0 1.000000e+00
## GO:0009691  BP     1  0 1.000000e+00
## GO:0009690  BP     1  0 1.000000e+00
## GO:0051838  BP     1  0 1.000000e+00
## GO:0051801  BP     1  0 1.000000e+00
## GO:0071629  BP     1  0 1.000000e+00
## GO:0071026  BP     1  0 1.000000e+00
## GO:0010938  BP     1  0 1.000000e+00
## GO:0043004  BP     1  0 1.000000e+00
## GO:0048789  BP     1  0 1.000000e+00
## GO:0021808  BP     1  0 1.000000e+00
## GO:0061725  BP     1  0 1.000000e+00
## GO:0046057  BP     1  0 1.000000e+00
## GO:0006174  BP     1  0 1.000000e+00
## GO:0061565  BP     1  0 1.000000e+00
## GO:0006175  BP     1  0 1.000000e+00
## GO:0006240  BP     1  0 1.000000e+00
## GO:0046062  BP     1  0 1.000000e+00
## GO:0061570  BP     1  0 1.000000e+00
## GO:0061567  BP     1  0 1.000000e+00
## GO:0006253  BP     1  0 1.000000e+00
## GO:0046065  BP     1  0 1.000000e+00
## GO:0006185  BP     1  0 1.000000e+00
## GO:0046067  BP     1  0 1.000000e+00
## GO:0006186  BP     1  0 1.000000e+00
## GO:0046054  BP     1  0 1.000000e+00
## GO:0035863  BP     1  0 1.000000e+00
## GO:0035862  BP     1  0 1.000000e+00
## GO:0046079  BP     1  0 1.000000e+00
## GO:0046081  BP     1  0 1.000000e+00
## GO:0046080  BP     1  0 1.000000e+00
## GO:0043215  BP     1  0 1.000000e+00
## GO:1902426  BP     1  0 1.000000e+00
## GO:0009816  BP     1  0 1.000000e+00
## GO:0009817  BP     1  0 1.000000e+00
## GO:0097188  BP     1  0 1.000000e+00
## GO:0006157  BP     1  0 1.000000e+00
## GO:0046090  BP     1  0 1.000000e+00
## GO:0006161  BP     1  0 1.000000e+00
## GO:0042453  BP     1  0 1.000000e+00
## GO:0006149  BP     1  0 1.000000e+00
## GO:0046094  BP     1  0 1.000000e+00
## GO:0009192  BP     1  0 1.000000e+00
## GO:0030209  BP     1  0 1.000000e+00
## GO:0035906  BP     1  0 1.000000e+00
## GO:0072022  BP     1  0 1.000000e+00
## GO:0035921  BP     1  0 1.000000e+00
## GO:0072421  BP     1  0 1.000000e+00
## GO:0009589  BP     1  0 1.000000e+00
## GO:0060245  BP     1  0 1.000000e+00
## GO:0060246  BP     1  0 1.000000e+00
## GO:0060248  BP     1  0 1.000000e+00
## GO:0090429  BP     1  0 1.000000e+00
## GO:0016046  BP     1  0 1.000000e+00
## GO:0003029  BP     1  0 1.000000e+00
## GO:0002007  BP     1  0 1.000000e+00
## GO:0070392  BP     1  0 1.000000e+00
## GO:0032498  BP     1  0 1.000000e+00
## GO:0070994  BP     1  0 1.000000e+00
## GO:0072394  BP     1  0 1.000000e+00
## GO:0050960  BP     1  0 1.000000e+00
## GO:0002355  BP     1  0 1.000000e+00
## GO:0014822  BP     1  0 1.000000e+00
## GO:0001879  BP     1  0 1.000000e+00
## GO:0050894  BP     1  0 1.000000e+00
## GO:0071908  BP     1  0 1.000000e+00
## GO:0071909  BP     1  0 1.000000e+00
## GO:0048264  BP     1  0 1.000000e+00
## GO:0071585  BP     1  0 1.000000e+00
## GO:0010312  BP     1  0 1.000000e+00
## GO:0044111  BP     1  0 1.000000e+00
## GO:0044115  BP     1  0 1.000000e+00
## GO:0015964  BP     1  0 1.000000e+00
## GO:0015962  BP     1  0 1.000000e+00
## GO:0060540  BP     1  0 1.000000e+00
## GO:0090472  BP     1  0 1.000000e+00
## GO:0019341  BP     1  0 1.000000e+00
## GO:0018900  BP     1  0 1.000000e+00
## GO:0060678  BP     1  0 1.000000e+00
## GO:0007502  BP     1  0 1.000000e+00
## GO:0051066  BP     1  0 1.000000e+00
## GO:0051068  BP     1  0 1.000000e+00
## GO:0140206  BP     1  0 1.000000e+00
## GO:0071544  BP     1  0 1.000000e+00
## GO:0046352  BP     1  0 1.000000e+00
## GO:0052338  BP     1  0 1.000000e+00
## GO:0052367  BP     1  0 1.000000e+00
## GO:0052339  BP     1  0 1.000000e+00
## GO:0052368  BP     1  0 1.000000e+00
## GO:0014828  BP     1  0 1.000000e+00
## GO:0000917  BP     1  0 1.000000e+00
## GO:0043048  BP     1  0 1.000000e+00
## GO:0006585  BP     1  0 1.000000e+00
## GO:1900753  BP     1  0 1.000000e+00
## GO:1990962  BP     1  0 1.000000e+00
## GO:0061772  BP     1  0 1.000000e+00
## GO:0036497  BP     1  0 1.000000e+00
## GO:0007499  BP     1  0 1.000000e+00
## GO:0001715  BP     1  0 1.000000e+00
## GO:0048567  BP     1  0 1.000000e+00
## GO:0048894  BP     1  0 1.000000e+00
## GO:0048613  BP     1  0 1.000000e+00
## GO:0036306  BP     1  0 1.000000e+00
## GO:0003144  BP     1  0 1.000000e+00
## GO:1990402  BP     1  0 1.000000e+00
## GO:0060957  BP     1  0 1.000000e+00
## GO:0061444  BP     1  0 1.000000e+00
## GO:0061445  BP     1  0 1.000000e+00
## GO:0038002  BP     1  0 1.000000e+00
## GO:1905267  BP     1  0 1.000000e+00
## GO:0000461  BP     1  0 1.000000e+00
## GO:0000472  BP     1  0 1.000000e+00
## GO:0061163  BP     1  0 1.000000e+00
## GO:0071788  BP     1  0 1.000000e+00
## GO:0002264  BP     1  0 1.000000e+00
## GO:0090668  BP     1  0 1.000000e+00
## GO:0090674  BP     1  0 1.000000e+00
## GO:0097102  BP     1  0 1.000000e+00
## GO:0034959  BP     1  0 1.000000e+00
## GO:0061736  BP     1  0 1.000000e+00
## GO:0035645  BP     1  0 1.000000e+00
## GO:0043354  BP     1  0 1.000000e+00
## GO:0090601  BP     1  0 1.000000e+00
## GO:0018323  BP     1  0 1.000000e+00
## GO:0018192  BP     1  0 1.000000e+00
## GO:0000455  BP     1  0 1.000000e+00
## GO:0072682  BP     1  0 1.000000e+00
## GO:1990959  BP     1  0 1.000000e+00
## GO:0060802  BP     1  0 1.000000e+00
## GO:0055113  BP     1  0 1.000000e+00
## GO:0007174  BP     1  0 1.000000e+00
## GO:0038168  BP     1  0 1.000000e+00
## GO:0038167  BP     1  0 1.000000e+00
## GO:1990134  BP     1  0 1.000000e+00
## GO:0060691  BP     1  0 1.000000e+00
## GO:0060517  BP     1  0 1.000000e+00
## GO:0060940  BP     1  0 1.000000e+00
## GO:0070987  BP     1  0 1.000000e+00
## GO:1902217  BP     1  0 1.000000e+00
## GO:0034102  BP     1  0 1.000000e+00
## GO:0043131  BP     1  0 1.000000e+00
## GO:0048773  BP     1  0 1.000000e+00
## GO:0051686  BP     1  0 1.000000e+00
## GO:0048561  BP     1  0 1.000000e+00
## GO:1990963  BP     1  0 1.000000e+00
## GO:0071964  BP     1  0 1.000000e+00
## GO:0099089  BP     1  0 1.000000e+00
## GO:0071516  BP     1  0 1.000000e+00
## GO:0075713  BP     1  0 1.000000e+00
## GO:0061966  BP     1  0 1.000000e+00
## GO:0051296  BP     1  0 1.000000e+00
## GO:0034640  BP     1  0 1.000000e+00
## GO:0072046  BP     1  0 1.000000e+00
## GO:0042247  BP     1  0 1.000000e+00
## GO:0035592  BP     1  0 1.000000e+00
## GO:0071206  BP     1  0 1.000000e+00
## GO:0090152  BP     1  0 1.000000e+00
## GO:0032254  BP     1  0 1.000000e+00
## GO:0016334  BP     1  0 1.000000e+00
## GO:0035937  BP     1  0 1.000000e+00
## GO:0060206  BP     1  0 1.000000e+00
## GO:0006580  BP     1  0 1.000000e+00
## GO:0030683  BP     1  0 1.000000e+00
## GO:0051807  BP     1  0 1.000000e+00
## GO:0030682  BP     1  0 1.000000e+00
## GO:0020012  BP     1  0 1.000000e+00
## GO:0051805  BP     1  0 1.000000e+00
## GO:0098817  BP     1  0 1.000000e+00
## GO:0061670  BP     1  0 1.000000e+00
## GO:1903259  BP     1  0 1.000000e+00
## GO:0021816  BP     1  0 1.000000e+00
## GO:0045229  BP     1  0 1.000000e+00
## GO:0072680  BP     1  0 1.000000e+00
## GO:0060082  BP     1  0 1.000000e+00
## GO:0008057  BP     1  0 1.000000e+00
## GO:0042441  BP     1  0 1.000000e+00
## GO:0098746  BP     1  0 1.000000e+00
## GO:0061040  BP     1  0 1.000000e+00
## GO:0019101  BP     1  0 1.000000e+00
## GO:0097707  BP     1  0 1.000000e+00
## GO:1903988  BP     1  0 1.000000e+00
## GO:1902178  BP     1  0 1.000000e+00
## GO:0035603  BP     1  0 1.000000e+00
## GO:0035602  BP     1  0 1.000000e+00
## GO:0035604  BP     1  0 1.000000e+00
## GO:2000699  BP     1  0 1.000000e+00
## GO:1905590  BP     1  0 1.000000e+00
## GO:0072681  BP     1  0 1.000000e+00
## GO:1905285  BP     1  0 1.000000e+00
## GO:0036058  BP     1  0 1.000000e+00
## GO:0072388  BP     1  0 1.000000e+00
## GO:0072389  BP     1  0 1.000000e+00
## GO:0042728  BP     1  0 1.000000e+00
## GO:0051552  BP     1  0 1.000000e+00
## GO:0018917  BP     1  0 1.000000e+00
## GO:0120181  BP     1  0 1.000000e+00
## GO:0002316  BP     1  0 1.000000e+00
## GO:0021905  BP     1  0 1.000000e+00
## GO:0046293  BP     1  0 1.000000e+00
## GO:0043606  BP     1  0 1.000000e+00
## GO:0015942  BP     1  0 1.000000e+00
## GO:0015724  BP     1  0 1.000000e+00
## GO:0010160  BP     1  0 1.000000e+00
## GO:0048689  BP     1  0 1.000000e+00
## GO:0043056  BP     1  0 1.000000e+00
## GO:0050751  BP     1  0 1.000000e+00
## GO:0050756  BP     1  0 1.000000e+00
## GO:0032603  BP     1  0 1.000000e+00
## GO:0032445  BP     1  0 1.000000e+00
## GO:1990539  BP     1  0 1.000000e+00
## GO:0019402  BP     1  0 1.000000e+00
## GO:0015757  BP     1  0 1.000000e+00
## GO:0051939  BP     1  0 1.000000e+00
## GO:0002365  BP     1  0 1.000000e+00
## GO:0007402  BP     1  0 1.000000e+00
## GO:1905572  BP     1  0 1.000000e+00
## GO:1901148  BP     1  0 1.000000e+00
## GO:0051867  BP     1  0 1.000000e+00
## GO:0071515  BP     1  0 1.000000e+00
## GO:0036321  BP     1  0 1.000000e+00
## GO:2000701  BP     1  0 1.000000e+00
## GO:0001576  BP     1  0 1.000000e+00
## GO:0072139  BP     1  0 1.000000e+00
## GO:1903210  BP     1  0 1.000000e+00
## GO:0006042  BP     1  0 1.000000e+00
## GO:1901073  BP     1  0 1.000000e+00
## GO:0042946  BP     1  0 1.000000e+00
## GO:0006064  BP     1  0 1.000000e+00
## GO:0006539  BP     1  0 1.000000e+00
## GO:0006540  BP     1  0 1.000000e+00
## GO:1905962  BP     1  0 1.000000e+00
## GO:0006542  BP     1  0 1.000000e+00
## GO:0010585  BP     1  0 1.000000e+00
## GO:0036531  BP     1  0 1.000000e+00
## GO:0015794  BP     1  0 1.000000e+00
## GO:0031456  BP     1  0 1.000000e+00
## GO:0019285  BP     1  0 1.000000e+00
## GO:0031455  BP     1  0 1.000000e+00
## GO:0031460  BP     1  0 1.000000e+00
## GO:1904983  BP     1  0 1.000000e+00
## GO:0072579  BP     1  0 1.000000e+00
## GO:0061536  BP     1  0 1.000000e+00
## GO:0061537  BP     1  0 1.000000e+00
## GO:0060709  BP     1  0 1.000000e+00
## GO:0046295  BP     1  0 1.000000e+00
## GO:0046296  BP     1  0 1.000000e+00
## GO:0034203  BP     1  0 1.000000e+00
## GO:0093001  BP     1  0 1.000000e+00
## GO:0061619  BP     1  0 1.000000e+00
## GO:0006426  BP     1  0 1.000000e+00
## GO:1903189  BP     1  0 1.000000e+00
## GO:0060016  BP     1  0 1.000000e+00
## GO:1990739  BP     1  0 1.000000e+00
## GO:0035746  BP     1  0 1.000000e+00
## GO:0033380  BP     1  0 1.000000e+00
## GO:0014843  BP     1  0 1.000000e+00
## GO:0003421  BP     1  0 1.000000e+00
## GO:0046099  BP     1  0 1.000000e+00
## GO:0006147  BP     1  0 1.000000e+00
## GO:0106044  BP     1  0 1.000000e+00
## GO:0106046  BP     1  0 1.000000e+00
## GO:0106045  BP     1  0 1.000000e+00
## GO:0006178  BP     1  0 1.000000e+00
## GO:0015854  BP     1  0 1.000000e+00
## GO:0046115  BP     1  0 1.000000e+00
## GO:0008617  BP     1  0 1.000000e+00
## GO:0015971  BP     1  0 1.000000e+00
## GO:0015969  BP     1  0 1.000000e+00
## GO:0042197  BP     1  0 1.000000e+00
## GO:0035704  BP     1  0 1.000000e+00
## GO:0035397  BP     1  0 1.000000e+00
## GO:0060217  BP     1  0 1.000000e+00
## GO:0097241  BP     1  0 1.000000e+00
## GO:0048034  BP     1  0 1.000000e+00
## GO:0048033  BP     1  0 1.000000e+00
## GO:0030211  BP     1  0 1.000000e+00
## GO:0061011  BP     1  0 1.000000e+00
## GO:0002384  BP     1  0 1.000000e+00
## GO:1990922  BP     1  0 1.000000e+00
## GO:0002194  BP     1  0 1.000000e+00
## GO:0048175  BP     1  0 1.000000e+00
## GO:0032605  BP     1  0 1.000000e+00
## GO:1902605  BP     1  0 1.000000e+00
## GO:0046458  BP     1  0 1.000000e+00
## GO:0019406  BP     1  0 1.000000e+00
## GO:0019407  BP     1  0 1.000000e+00
## GO:0021576  BP     1  0 1.000000e+00
## GO:0001695  BP     1  0 1.000000e+00
## GO:0051615  BP     1  0 1.000000e+00
## GO:0001697  BP     1  0 1.000000e+00
## GO:0019556  BP     1  0 1.000000e+00
## GO:0036351  BP     1  0 1.000000e+00
## GO:0036352  BP     1  0 1.000000e+00
## GO:0043977  BP     1  0 1.000000e+00
## GO:0043990  BP     1  0 1.000000e+00
## GO:1990245  BP     1  0 1.000000e+00
## GO:0043980  BP     1  0 1.000000e+00
## GO:0043979  BP     1  0 1.000000e+00
## GO:0043972  BP     1  0 1.000000e+00
## GO:0043973  BP     1  0 1.000000e+00
## GO:0044648  BP     1  0 1.000000e+00
## GO:0097692  BP     1  0 1.000000e+00
## GO:0034972  BP     1  0 1.000000e+00
## GO:0035407  BP     1  0 1.000000e+00
## GO:2000751  BP     1  0 1.000000e+00
## GO:0035409  BP     1  0 1.000000e+00
## GO:1990679  BP     1  0 1.000000e+00
## GO:1990678  BP     1  0 1.000000e+00
## GO:0071110  BP     1  0 1.000000e+00
## GO:0001207  BP     1  0 1.000000e+00
## GO:0035406  BP     1  0 1.000000e+00
## GO:0048877  BP     1  0 1.000000e+00
## GO:1902000  BP     1  0 1.000000e+00
## GO:1901999  BP     1  0 1.000000e+00
## GO:0051758  BP     1  0 1.000000e+00
## GO:0031619  BP     1  0 1.000000e+00
## GO:0035852  BP     1  0 1.000000e+00
## GO:0034050  BP     1  0 1.000000e+00
## GO:0048874  BP     1  0 1.000000e+00
## GO:1990384  BP     1  0 1.000000e+00
## GO:0034589  BP     1  0 1.000000e+00
## GO:0002149  BP     1  0 1.000000e+00
## GO:0002148  BP     1  0 1.000000e+00
## GO:0021566  BP     1  0 1.000000e+00
## GO:0021618  BP     1  0 1.000000e+00
## GO:0009114  BP     1  0 1.000000e+00
## GO:0006150  BP     1  0 1.000000e+00
## GO:0035344  BP     1  0 1.000000e+00
## GO:0020021  BP     1  0 1.000000e+00
## GO:0097281  BP     1  0 1.000000e+00
## GO:0002383  BP     1  0 1.000000e+00
## GO:0002379  BP     1  0 1.000000e+00
## GO:0071707  BP     1  0 1.000000e+00
## GO:0060820  BP     1  0 1.000000e+00
## GO:0009682  BP     1  0 1.000000e+00
## GO:0052251  BP     1  0 1.000000e+00
## GO:0052263  BP     1  0 1.000000e+00
## GO:0052558  BP     1  0 1.000000e+00
## GO:0052063  BP     1  0 1.000000e+00
## GO:0052559  BP     1  0 1.000000e+00
## GO:0039520  BP     1  0 1.000000e+00
## GO:0006948  BP     1  0 1.000000e+00
## GO:0050929  BP     1  0 1.000000e+00
## GO:0031129  BP     1  0 1.000000e+00
## GO:1905317  BP     1  0 1.000000e+00
## GO:0055111  BP     1  0 1.000000e+00
## GO:0021806  BP     1  0 1.000000e+00
## GO:0021993  BP     1  0 1.000000e+00
## GO:0030505  BP     1  0 1.000000e+00
## GO:0006148  BP     1  0 1.000000e+00
## GO:0006021  BP     1  0 1.000000e+00
## GO:0019310  BP     1  0 1.000000e+00
## GO:0017143  BP     1  0 1.000000e+00
## GO:0038016  BP     1  0 1.000000e+00
## GO:0038020  BP     1  0 1.000000e+00
## GO:0048219  BP     1  0 1.000000e+00
## GO:0052213  BP     1  0 1.000000e+00
## GO:0043063  BP     1  0 1.000000e+00
## GO:0050719  BP     1  0 1.000000e+00
## GO:0035772  BP     1  0 1.000000e+00
## GO:0042235  BP     1  0 1.000000e+00
## GO:0097400  BP     1  0 1.000000e+00
## GO:0072616  BP     1  0 1.000000e+00
## GO:0038155  BP     1  0 1.000000e+00
## GO:0070106  BP     1  0 1.000000e+00
## GO:0038172  BP     1  0 1.000000e+00
## GO:0035708  BP     1  0 1.000000e+00
## GO:0042225  BP     1  0 1.000000e+00
## GO:0038112  BP     1  0 1.000000e+00
## GO:0032638  BP     1  0 1.000000e+00
## GO:0072607  BP     1  0 1.000000e+00
## GO:0048391  BP     1  0 1.000000e+00
## GO:0048390  BP     1  0 1.000000e+00
## GO:0048392  BP     1  0 1.000000e+00
## GO:0071831  BP     1  0 1.000000e+00
## GO:0120012  BP     1  0 1.000000e+00
## GO:0035260  BP     1  0 1.000000e+00
## GO:0052097  BP     1  0 1.000000e+00
## GO:0044258  BP     1  0 1.000000e+00
## GO:0036335  BP     1  0 1.000000e+00
## GO:0038185  BP     1  0 1.000000e+00
## GO:1990953  BP     1  0 1.000000e+00
## GO:1990127  BP     1  0 1.000000e+00
## GO:1905877  BP     1  0 1.000000e+00
## GO:1905878  BP     1  0 1.000000e+00
## GO:1904200  BP     1  0 1.000000e+00
## GO:0033212  BP     1  0 1.000000e+00
## GO:1903414  BP     1  0 1.000000e+00
## GO:0034231  BP     1  0 1.000000e+00
## GO:0018153  BP     1  0 1.000000e+00
## GO:0018276  BP     1  0 1.000000e+00
## GO:0007630  BP     1  0 1.000000e+00
## GO:0018146  BP     1  0 1.000000e+00
## GO:0042465  BP     1  0 1.000000e+00
## GO:1903457  BP     1  0 1.000000e+00
## GO:0046722  BP     1  0 1.000000e+00
## GO:0001572  BP     1  0 1.000000e+00
## GO:0060366  BP     1  0 1.000000e+00
## GO:0003363  BP     1  0 1.000000e+00
## GO:0042140  BP     1  0 1.000000e+00
## GO:0099607  BP     1  0 1.000000e+00
## GO:0022018  BP     1  0 1.000000e+00
## GO:0021771  BP     1  0 1.000000e+00
## GO:0048892  BP     1  0 1.000000e+00
## GO:0048925  BP     1  0 1.000000e+00
## GO:0031271  BP     1  0 1.000000e+00
## GO:0060875  BP     1  0 1.000000e+00
## GO:0015692  BP     1  0 1.000000e+00
## GO:0098713  BP     1  0 1.000000e+00
## GO:0002522  BP     1  0 1.000000e+00
## GO:0061737  BP     1  0 1.000000e+00
## GO:0071716  BP     1  0 1.000000e+00
## GO:0060887  BP     1  0 1.000000e+00
## GO:0060007  BP     1  0 1.000000e+00
## GO:1901373  BP     1  0 1.000000e+00
## GO:0060989  BP     1  0 1.000000e+00
## GO:0009107  BP     1  0 1.000000e+00
## GO:0009104  BP     1  0 1.000000e+00
## GO:0008653  BP     1  0 1.000000e+00
## GO:2001306  BP     1  0 1.000000e+00
## GO:2001304  BP     1  0 1.000000e+00
## GO:0021703  BP     1  0 1.000000e+00
## GO:0036116  BP     1  0 1.000000e+00
## GO:0060427  BP     1  0 1.000000e+00
## GO:0060464  BP     1  0 1.000000e+00
## GO:0061100  BP     1  0 1.000000e+00
## GO:0060432  BP     1  0 1.000000e+00
## GO:0061115  BP     1  0 1.000000e+00
## GO:0035471  BP     1  0 1.000000e+00
## GO:0003017  BP     1  0 1.000000e+00
## GO:1904977  BP     1  0 1.000000e+00
## GO:0042109  BP     1  0 1.000000e+00
## GO:0032641  BP     1  0 1.000000e+00
## GO:0035752  BP     1  0 1.000000e+00
## GO:0006430  BP     1  0 1.000000e+00
## GO:0090625  BP     1  0 1.000000e+00
## GO:0070054  BP     1  0 1.000000e+00
## GO:0002472  BP     1  0 1.000000e+00
## GO:0061519  BP     1  0 1.000000e+00
## GO:0010931  BP     1  0 1.000000e+00
## GO:0072024  BP     1  0 1.000000e+00
## GO:0051685  BP     1  0 1.000000e+00
## GO:0033382  BP     1  0 1.000000e+00
## GO:0034090  BP     1  0 1.000000e+00
## GO:0035875  BP     1  0 1.000000e+00
## GO:0071960  BP     1  0 1.000000e+00
## GO:0048790  BP     1  0 1.000000e+00
## GO:0033379  BP     1  0 1.000000e+00
## GO:0033373  BP     1  0 1.000000e+00
## GO:0033377  BP     1  0 1.000000e+00
## GO:0033370  BP     1  0 1.000000e+00
## GO:0085018  BP     1  0 1.000000e+00
## GO:0001192  BP     1  0 1.000000e+00
## GO:0001193  BP     1  0 1.000000e+00
## GO:0036098  BP     1  0 1.000000e+00
## GO:0051308  BP     1  0 1.000000e+00
## GO:0007112  BP     1  0 1.000000e+00
## GO:0007065  BP     1  0 1.000000e+00
## GO:0035039  BP     1  0 1.000000e+00
## GO:0019102  BP     1  0 1.000000e+00
## GO:0090410  BP     1  0 1.000000e+00
## GO:2001295  BP     1  0 1.000000e+00
## GO:2001294  BP     1  0 1.000000e+00
## GO:0060649  BP     1  0 1.000000e+00
## GO:0060611  BP     1  0 1.000000e+00
## GO:0002174  BP     1  0 1.000000e+00
## GO:0061374  BP     1  0 1.000000e+00
## GO:0018924  BP     1  0 1.000000e+00
## GO:0061978  BP     1  0 1.000000e+00
## GO:0055071  BP     1  0 1.000000e+00
## GO:0046355  BP     1  0 1.000000e+00
## GO:0010412  BP     1  0 1.000000e+00
## GO:0015797  BP     1  0 1.000000e+00
## GO:0006057  BP     1  0 1.000000e+00
## GO:0006056  BP     1  0 1.000000e+00
## GO:0006050  BP     1  0 1.000000e+00
## GO:0019309  BP     1  0 1.000000e+00
## GO:0061611  BP     1  0 1.000000e+00
## GO:0048047  BP     1  0 1.000000e+00
## GO:0000481  BP     1  0 1.000000e+00
## GO:0035782  BP     1  0 1.000000e+00
## GO:0036114  BP     1  0 1.000000e+00
## GO:0021723  BP     1  0 1.000000e+00
## GO:0010780  BP     1  0 1.000000e+00
## GO:0000707  BP     1  0 1.000000e+00
## GO:0098768  BP     1  0 1.000000e+00
## GO:0007146  BP     1  0 1.000000e+00
## GO:0033316  BP     1  0 1.000000e+00
## GO:0044779  BP     1  0 1.000000e+00
## GO:0051232  BP     1  0 1.000000e+00
## GO:0051257  BP     1  0 1.000000e+00
## GO:0097326  BP     1  0 1.000000e+00
## GO:1902362  BP     1  0 1.000000e+00
## GO:0086052  BP     1  0 1.000000e+00
## GO:0086050  BP     1  0 1.000000e+00
## GO:0022614  BP     1  0 1.000000e+00
## GO:0061485  BP     1  0 1.000000e+00
## GO:0009234  BP     1  0 1.000000e+00
## GO:0042696  BP     1  0 1.000000e+00
## GO:0042697  BP     1  0 1.000000e+00
## GO:0015694  BP     1  0 1.000000e+00
## GO:1901146  BP     1  0 1.000000e+00
## GO:1901706  BP     1  0 1.000000e+00
## GO:0060781  BP     1  0 1.000000e+00
## GO:0060783  BP     1  0 1.000000e+00
## GO:0061235  BP     1  0 1.000000e+00
## GO:0072285  BP     1  0 1.000000e+00
## GO:0072036  BP     1  0 1.000000e+00
## GO:0060496  BP     1  0 1.000000e+00
## GO:0060739  BP     1  0 1.000000e+00
## GO:0090131  BP     1  0 1.000000e+00
## GO:0090133  BP     1  0 1.000000e+00
## GO:0048338  BP     1  0 1.000000e+00
## GO:0007500  BP     1  0 1.000000e+00
## GO:0061215  BP     1  0 1.000000e+00
## GO:0061228  BP     1  0 1.000000e+00
## GO:0061206  BP     1  0 1.000000e+00
## GO:0052406  BP     1  0 1.000000e+00
## GO:0052410  BP     1  0 1.000000e+00
## GO:0052417  BP     1  0 1.000000e+00
## GO:0052407  BP     1  0 1.000000e+00
## GO:0052411  BP     1  0 1.000000e+00
## GO:0052418  BP     1  0 1.000000e+00
## GO:0042040  BP     1  0 1.000000e+00
## GO:0072213  BP     1  0 1.000000e+00
## GO:0072266  BP     1  0 1.000000e+00
## GO:0072265  BP     1  0 1.000000e+00
## GO:0072267  BP     1  0 1.000000e+00
## GO:0072286  BP     1  0 1.000000e+00
## GO:0072220  BP     1  0 1.000000e+00
## GO:0072274  BP     1  0 1.000000e+00
## GO:0072264  BP     1  0 1.000000e+00
## GO:0072255  BP     1  0 1.000000e+00
## GO:0072254  BP     1  0 1.000000e+00
## GO:0072259  BP     1  0 1.000000e+00
## GO:0072258  BP     1  0 1.000000e+00
## GO:0072206  BP     1  0 1.000000e+00
## GO:0072227  BP     1  0 1.000000e+00
## GO:0072209  BP     1  0 1.000000e+00
## GO:0072229  BP     1  0 1.000000e+00
## GO:0072232  BP     1  0 1.000000e+00
## GO:0072230  BP     1  0 1.000000e+00
## GO:0072237  BP     1  0 1.000000e+00
## GO:0072208  BP     1  0 1.000000e+00
## GO:1990949  BP     1  0 1.000000e+00
## GO:0009087  BP     1  0 1.000000e+00
## GO:0061715  BP     1  0 1.000000e+00
## GO:0090172  BP     1  0 1.000000e+00
## GO:0099606  BP     1  0 1.000000e+00
## GO:0099098  BP     1  0 1.000000e+00
## GO:1904693  BP     1  0 1.000000e+00
## GO:0021547  BP     1  0 1.000000e+00
## GO:0021732  BP     1  0 1.000000e+00
## GO:0022004  BP     1  0 1.000000e+00
## GO:0060156  BP     1  0 1.000000e+00
## GO:0031959  BP     1  0 1.000000e+00
## GO:0070843  BP     1  0 1.000000e+00
## GO:0070716  BP     1  0 1.000000e+00
## GO:0072671  BP     1  0 1.000000e+00
## GO:0033955  BP     1  0 1.000000e+00
## GO:2000827  BP     1  0 1.000000e+00
## GO:0070143  BP     1  0 1.000000e+00
## GO:0070145  BP     1  0 1.000000e+00
## GO:0006843  BP     1  0 1.000000e+00
## GO:0097551  BP     1  0 1.000000e+00
## GO:0097552  BP     1  0 1.000000e+00
## GO:0070150  BP     1  0 1.000000e+00
## GO:0090616  BP     1  0 1.000000e+00
## GO:0097222  BP     1  0 1.000000e+00
## GO:0035946  BP     1  0 1.000000e+00
## GO:0045016  BP     1  0 1.000000e+00
## GO:0035945  BP     1  0 1.000000e+00
## GO:0090144  BP     1  0 1.000000e+00
## GO:0072684  BP     1  0 1.000000e+00
## GO:0070899  BP     1  0 1.000000e+00
## GO:1990546  BP     1  0 1.000000e+00
## GO:0070183  BP     1  0 1.000000e+00
## GO:0070184  BP     1  0 1.000000e+00
## GO:0034642  BP     1  0 1.000000e+00
## GO:0035695  BP     1  0 1.000000e+00
## GO:1902977  BP     1  0 1.000000e+00
## GO:1902979  BP     1  0 1.000000e+00
## GO:0000080  BP     1  0 1.000000e+00
## GO:0000085  BP     1  0 1.000000e+00
## GO:1903673  BP     1  0 1.000000e+00
## GO:1990386  BP     1  0 1.000000e+00
## GO:0061780  BP     1  0 1.000000e+00
## GO:1990758  BP     1  0 1.000000e+00
## GO:1990755  BP     1  0 1.000000e+00
## GO:1903087  BP     1  0 1.000000e+00
## GO:0052336  BP     1  0 1.000000e+00
## GO:0052187  BP     1  0 1.000000e+00
## GO:0052183  BP     1  0 1.000000e+00
## GO:0052333  BP     1  0 1.000000e+00
## GO:0052188  BP     1  0 1.000000e+00
## GO:0052185  BP     1  0 1.000000e+00
## GO:0099564  BP     1  0 1.000000e+00
## GO:1990968  BP     1  0 1.000000e+00
## GO:1990969  BP     1  0 1.000000e+00
## GO:0052255  BP     1  0 1.000000e+00
## GO:0052302  BP     1  0 1.000000e+00
## GO:0052552  BP     1  0 1.000000e+00
## GO:0052163  BP     1  0 1.000000e+00
## GO:0085032  BP     1  0 1.000000e+00
## GO:0052031  BP     1  0 1.000000e+00
## GO:0052553  BP     1  0 1.000000e+00
## GO:0052027  BP     1  0 1.000000e+00
## GO:0044495  BP     1  0 1.000000e+00
## GO:0044145  BP     1  0 1.000000e+00
## GO:0044501  BP     1  0 1.000000e+00
## GO:0052250  BP     1  0 1.000000e+00
## GO:0015689  BP     1  0 1.000000e+00
## GO:0018315  BP     1  0 1.000000e+00
## GO:0002280  BP     1  0 1.000000e+00
## GO:0016333  BP     1  0 1.000000e+00
## GO:0021837  BP     1  0 1.000000e+00
## GO:0044041  BP     1  0 1.000000e+00
## GO:0044040  BP     1  0 1.000000e+00
## GO:0044037  BP     1  0 1.000000e+00
## GO:0150089  BP     1  0 1.000000e+00
## GO:0150090  BP     1  0 1.000000e+00
## GO:0042694  BP     1  0 1.000000e+00
## GO:0007518  BP     1  0 1.000000e+00
## GO:0014844  BP     1  0 1.000000e+00
## GO:0070246  BP     1  0 1.000000e+00
## GO:0110008  BP     1  0 1.000000e+00
## GO:0043630  BP     1  0 1.000000e+00
## GO:0044790  BP     1  0 1.000000e+00
## GO:0032013  BP     1  0 1.000000e+00
## GO:2000984  BP     1  0 1.000000e+00
## GO:2000578  BP     1  0 1.000000e+00
## GO:1905290  BP     1  0 1.000000e+00
## GO:0045225  BP     1  0 1.000000e+00
## GO:1900280  BP     1  0 1.000000e+00
## GO:2000565  BP     1  0 1.000000e+00
## GO:1902163  BP     1  0 1.000000e+00
## GO:0120154  BP     1  0 1.000000e+00
## GO:0070377  BP     1  0 1.000000e+00
## GO:1902045  BP     1  0 1.000000e+00
## GO:0045221  BP     1  0 1.000000e+00
## GO:0043105  BP     1  0 1.000000e+00
## GO:0043002  BP     1  0 1.000000e+00
## GO:1903720  BP     1  0 1.000000e+00
## GO:0034128  BP     1  0 1.000000e+00
## GO:0060262  BP     1  0 1.000000e+00
## GO:0051141  BP     1  0 1.000000e+00
## GO:1905215  BP     1  0 1.000000e+00
## GO:0017055  BP     1  0 1.000000e+00
## GO:1900260  BP     1  0 1.000000e+00
## GO:0062026  BP     1  0 1.000000e+00
## GO:2000639  BP     1  0 1.000000e+00
## GO:1905045  BP     1  0 1.000000e+00
## GO:0002668  BP     1  0 1.000000e+00
## GO:0002626  BP     1  0 1.000000e+00
## GO:2000524  BP     1  0 1.000000e+00
## GO:2000408  BP     1  0 1.000000e+00
## GO:0046014  BP     1  0 1.000000e+00
## GO:0002853  BP     1  0 1.000000e+00
## GO:0002841  BP     1  0 1.000000e+00
## GO:0002665  BP     1  0 1.000000e+00
## GO:2000518  BP     1  0 1.000000e+00
## GO:1903940  BP     1  0 1.000000e+00
## GO:1903122  BP     1  0 1.000000e+00
## GO:1904240  BP     1  0 1.000000e+00
## GO:0061358  BP     1  0 1.000000e+00
## GO:2000057  BP     1  0 1.000000e+00
## GO:1904723  BP     1  0 1.000000e+00
## GO:0014058  BP     1  0 1.000000e+00
## GO:1901586  BP     1  0 1.000000e+00
## GO:1902225  BP     1  0 1.000000e+00
## GO:1904617  BP     1  0 1.000000e+00
## GO:1904530  BP     1  0 1.000000e+00
## GO:1904622  BP     1  0 1.000000e+00
## GO:1905403  BP     1  0 1.000000e+00
## GO:0002878  BP     1  0 1.000000e+00
## GO:0060169  BP     1  0 1.000000e+00
## GO:0140194  BP     1  0 1.000000e+00
## GO:1904604  BP     1  0 1.000000e+00
## GO:1903631  BP     1  0 1.000000e+00
## GO:2000798  BP     1  0 1.000000e+00
## GO:2000180  BP     1  0 1.000000e+00
## GO:1903743  BP     1  0 1.000000e+00
## GO:1902613  BP     1  0 1.000000e+00
## GO:0002787  BP     1  0 1.000000e+00
## GO:1905035  BP     1  0 1.000000e+00
## GO:1904283  BP     1  0 1.000000e+00
## GO:0008348  BP     1  0 1.000000e+00
## GO:0002785  BP     1  0 1.000000e+00
## GO:2000657  BP     1  0 1.000000e+00
## GO:2000426  BP     1  0 1.000000e+00
## GO:1900082  BP     1  0 1.000000e+00
## GO:1905652  BP     1  0 1.000000e+00
## GO:0045769  BP     1  0 1.000000e+00
## GO:0048692  BP     1  0 1.000000e+00
## GO:2000986  BP     1  0 1.000000e+00
## GO:1904864  BP     1  0 1.000000e+00
## GO:1903770  BP     1  0 1.000000e+00
## GO:1904171  BP     1  0 1.000000e+00
## GO:0110059  BP     1  0 1.000000e+00
## GO:0031552  BP     1  0 1.000000e+00
## GO:0072096  BP     1  0 1.000000e+00
## GO:0072097  BP     1  0 1.000000e+00
## GO:0061048  BP     1  0 1.000000e+00
## GO:1903444  BP     1  0 1.000000e+00
## GO:0070348  BP     1  0 1.000000e+00
## GO:1905913  BP     1  0 1.000000e+00
## GO:1903611  BP     1  0 1.000000e+00
## GO:0051042  BP     1  0 1.000000e+00
## GO:1903280  BP     1  0 1.000000e+00
## GO:1901296  BP     1  0 1.000000e+00
## GO:2000080  BP     1  0 1.000000e+00
## GO:1905067  BP     1  0 1.000000e+00
## GO:0060829  BP     1  0 1.000000e+00
## GO:1905240  BP     1  0 1.000000e+00
## GO:2000044  BP     1  0 1.000000e+00
## GO:1901211  BP     1  0 1.000000e+00
## GO:2000691  BP     1  0 1.000000e+00
## GO:1905305  BP     1  0 1.000000e+00
## GO:2000723  BP     1  0 1.000000e+00
## GO:1904413  BP     1  0 1.000000e+00
## GO:0009997  BP     1  0 1.000000e+00
## GO:0051945  BP     1  0 1.000000e+00
## GO:0106089  BP     1  0 1.000000e+00
## GO:1904848  BP     1  0 1.000000e+00
## GO:0060806  BP     1  0 1.000000e+00
## GO:1905934  BP     1  0 1.000000e+00
## GO:0060243  BP     1  0 1.000000e+00
## GO:0021822  BP     1  0 1.000000e+00
## GO:1903769  BP     1  0 1.000000e+00
## GO:1904934  BP     1  0 1.000000e+00
## GO:2000607  BP     1  0 1.000000e+00
## GO:1900387  BP     1  0 1.000000e+00
## GO:0033242  BP     1  0 1.000000e+00
## GO:2000283  BP     1  0 1.000000e+00
## GO:2001030  BP     1  0 1.000000e+00
## GO:0032848  BP     1  0 1.000000e+00
## GO:2001113  BP     1  0 1.000000e+00
## GO:2000655  BP     1  0 1.000000e+00
## GO:1905892  BP     1  0 1.000000e+00
## GO:1905895  BP     1  0 1.000000e+00
## GO:1903723  BP     1  0 1.000000e+00
## GO:1903126  BP     1  0 1.000000e+00
## GO:1903645  BP     1  0 1.000000e+00
## GO:0071644  BP     1  0 1.000000e+00
## GO:0090198  BP     1  0 1.000000e+00
## GO:0060621  BP     1  0 1.000000e+00
## GO:0060695  BP     1  0 1.000000e+00
## GO:0002875  BP     1  0 1.000000e+00
## GO:0002881  BP     1  0 1.000000e+00
## GO:1904326  BP     1  0 1.000000e+00
## GO:1903249  BP     1  0 1.000000e+00
## GO:1905469  BP     1  0 1.000000e+00
## GO:0033342  BP     1  0 1.000000e+00
## GO:0048698  BP     1  0 1.000000e+00
## GO:1903815  BP     1  0 1.000000e+00
## GO:0045959  BP     1  0 1.000000e+00
## GO:1904597  BP     1  0 1.000000e+00
## GO:1903434  BP     1  0 1.000000e+00
## GO:1901233  BP     1  0 1.000000e+00
## GO:1904797  BP     1  0 1.000000e+00
## GO:0051460  BP     1  0 1.000000e+00
## GO:1900011  BP     1  0 1.000000e+00
## GO:0051463  BP     1  0 1.000000e+00
## GO:1904042  BP     1  0 1.000000e+00
## GO:0010607  BP     1  0 1.000000e+00
## GO:1900248  BP     1  0 1.000000e+00
## GO:1904689  BP     1  0 1.000000e+00
## GO:1903073  BP     1  0 1.000000e+00
## GO:2000509  BP     1  0 1.000000e+00
## GO:0002731  BP     1  0 1.000000e+00
## GO:2000706  BP     1  0 1.000000e+00
## GO:1905414  BP     1  0 1.000000e+00
## GO:0061185  BP     1  0 1.000000e+00
## GO:2000971  BP     1  0 1.000000e+00
## GO:1905788  BP     1  0 1.000000e+00
## GO:0044147  BP     1  0 1.000000e+00
## GO:0048086  BP     1  0 1.000000e+00
## GO:0051585  BP     1  0 1.000000e+00
## GO:1901291  BP     1  0 1.000000e+00
## GO:1905768  BP     1  0 1.000000e+00
## GO:1904336  BP     1  0 1.000000e+00
## GO:0042666  BP     1  0 1.000000e+00
## GO:0051545  BP     1  0 1.000000e+00
## GO:1904733  BP     1  0 1.000000e+00
## GO:2001136  BP     1  0 1.000000e+00
## GO:0032078  BP     1  0 1.000000e+00
## GO:1904979  BP     1  0 1.000000e+00
## GO:1904988  BP     1  0 1.000000e+00
## GO:2000545  BP     1  0 1.000000e+00
## GO:1904905  BP     1  0 1.000000e+00
## GO:1904471  BP     1  0 1.000000e+00
## GO:2000536  BP     1  0 1.000000e+00
## GO:0043310  BP     1  0 1.000000e+00
## GO:2000420  BP     1  0 1.000000e+00
## GO:2000795  BP     1  0 1.000000e+00
## GO:1905042  BP     1  0 1.000000e+00
## GO:0034119  BP     1  0 1.000000e+00
## GO:1902251  BP     1  0 1.000000e+00
## GO:0034107  BP     1  0 1.000000e+00
## GO:1904911  BP     1  0 1.000000e+00
## GO:1904445  BP     1  0 1.000000e+00
## GO:1903904  BP     1  0 1.000000e+00
## GO:1904850  BP     1  0 1.000000e+00
## GO:0001100  BP     1  0 1.000000e+00
## GO:1901202  BP     1  0 1.000000e+00
## GO:0048074  BP     1  0 1.000000e+00
## GO:1904736  BP     1  0 1.000000e+00
## GO:1903366  BP     1  0 1.000000e+00
## GO:0110076  BP     1  0 1.000000e+00
## GO:1904439  BP     1  0 1.000000e+00
## GO:2000703  BP     1  0 1.000000e+00
## GO:1905943  BP     1  0 1.000000e+00
## GO:1901194  BP     1  0 1.000000e+00
## GO:1903597  BP     1  0 1.000000e+00
## GO:2000734  BP     1  0 1.000000e+00
## GO:0003106  BP     1  0 1.000000e+00
## GO:2000212  BP     1  0 1.000000e+00
## GO:2000486  BP     1  0 1.000000e+00
## GO:2000466  BP     1  0 1.000000e+00
## GO:1904227  BP     1  0 1.000000e+00
## GO:0071656  BP     1  0 1.000000e+00
## GO:0032685  BP     1  0 1.000000e+00
## GO:0002632  BP     1  0 1.000000e+00
## GO:1904709  BP     1  0 1.000000e+00
## GO:0061914  BP     1  0 1.000000e+00
## GO:0031283  BP     1  0 1.000000e+00
## GO:0061170  BP     1  0 1.000000e+00
## GO:1901320  BP     1  0 1.000000e+00
## GO:0003136  BP     1  0 1.000000e+00
## GO:1901208  BP     1  0 1.000000e+00
## GO:0001985  BP     1  0 1.000000e+00
## GO:0031651  BP     1  0 1.000000e+00
## GO:0046986  BP     1  0 1.000000e+00
## GO:0061875  BP     1  0 1.000000e+00
## GO:0070367  BP     1  0 1.000000e+00
## GO:0048178  BP     1  0 1.000000e+00
## GO:0032686  BP     1  0 1.000000e+00
## GO:1902203  BP     1  0 1.000000e+00
## GO:1990787  BP     1  0 1.000000e+00
## GO:0010987  BP     1  0 1.000000e+00
## GO:0071441  BP     1  0 1.000000e+00
## GO:1901675  BP     1  0 1.000000e+00
## GO:2001161  BP     1  0 1.000000e+00
## GO:2000616  BP     1  0 1.000000e+00
## GO:2000296  BP     1  0 1.000000e+00
## GO:0045355  BP     1  0 1.000000e+00
## GO:0045083  BP     1  0 1.000000e+00
## GO:1902206  BP     1  0 1.000000e+00
## GO:0032712  BP     1  0 1.000000e+00
## GO:0045403  BP     1  0 1.000000e+00
## GO:1902215  BP     1  0 1.000000e+00
## GO:2000663  BP     1  0 1.000000e+00
## GO:1902939  BP     1  0 1.000000e+00
## GO:0032384  BP     1  0 1.000000e+00
## GO:0032378  BP     1  0 1.000000e+00
## GO:0032381  BP     1  0 1.000000e+00
## GO:1905366  BP     1  0 1.000000e+00
## GO:1902239  BP     1  0 1.000000e+00
## GO:1904213  BP     1  0 1.000000e+00
## GO:1904202  BP     1  0 1.000000e+00
## GO:0045827  BP     1  0 1.000000e+00
## GO:0048297  BP     1  0 1.000000e+00
## GO:2000357  BP     1  0 1.000000e+00
## GO:1903488  BP     1  0 1.000000e+00
## GO:1902823  BP     1  0 1.000000e+00
## GO:1902747  BP     1  0 1.000000e+00
## GO:1903634  BP     1  0 1.000000e+00
## GO:1904998  BP     1  0 1.000000e+00
## GO:0051352  BP     1  0 1.000000e+00
## GO:1900131  BP     1  0 1.000000e+00
## GO:0110114  BP     1  0 1.000000e+00
## GO:0060588  BP     1  0 1.000000e+00
## GO:0034443  BP     1  0 1.000000e+00
## GO:1904060  BP     1  0 1.000000e+00
## GO:1905596  BP     1  0 1.000000e+00
## GO:1905598  BP     1  0 1.000000e+00
## GO:0061767  BP     1  0 1.000000e+00
## GO:0002912  BP     1  0 1.000000e+00
## GO:1905672  BP     1  0 1.000000e+00
## GO:1904572  BP     1  0 1.000000e+00
## GO:1904766  BP     1  0 1.000000e+00
## GO:0002617  BP     1  0 1.000000e+00
## GO:1901257  BP     1  0 1.000000e+00
## GO:0034240  BP     1  0 1.000000e+00
## GO:2000719  BP     1  0 1.000000e+00
## GO:1905604  BP     1  0 1.000000e+00
## GO:0060377  BP     1  0 1.000000e+00
## GO:1904145  BP     1  0 1.000000e+00
## GO:1900826  BP     1  0 1.000000e+00
## GO:1902631  BP     1  0 1.000000e+00
## GO:1905032  BP     1  0 1.000000e+00
## GO:1905025  BP     1  0 1.000000e+00
## GO:1903526  BP     1  0 1.000000e+00
## GO:0043381  BP     1  0 1.000000e+00
## GO:0061296  BP     1  0 1.000000e+00
## GO:0072200  BP     1  0 1.000000e+00
## GO:2000005  BP     1  0 1.000000e+00
## GO:2000007  BP     1  0 1.000000e+00
## GO:0072302  BP     1  0 1.000000e+00
## GO:0072299  BP     1  0 1.000000e+00
## GO:2000590  BP     1  0 1.000000e+00
## GO:2000626  BP     1  0 1.000000e+00
## GO:1904140  BP     1  0 1.000000e+00
## GO:1903697  BP     1  0 1.000000e+00
## GO:0061886  BP     1  0 1.000000e+00
## GO:1905447  BP     1  0 1.000000e+00
## GO:1902957  BP     1  0 1.000000e+00
## GO:0070130  BP     1  0 1.000000e+00
## GO:1904924  BP     1  0 1.000000e+00
## GO:1904290  BP     1  0 1.000000e+00
## GO:1903464  BP     1  0 1.000000e+00
## GO:2000438  BP     1  0 1.000000e+00
## GO:1904113  BP     1  0 1.000000e+00
## GO:1905454  BP     1  0 1.000000e+00
## GO:2000818  BP     1  0 1.000000e+00
## GO:2000502  BP     1  0 1.000000e+00
## GO:0002728  BP     1  0 1.000000e+00
## GO:0043322  BP     1  0 1.000000e+00
## GO:0072183  BP     1  0 1.000000e+00
## GO:0090301  BP     1  0 1.000000e+00
## GO:0061855  BP     1  0 1.000000e+00
## GO:1902997  BP     1  0 1.000000e+00
## GO:1904800  BP     1  0 1.000000e+00
## GO:0032900  BP     1  0 1.000000e+00
## GO:2000429  BP     1  0 1.000000e+00
## GO:1900124  BP     1  0 1.000000e+00
## GO:1903996  BP     1  0 1.000000e+00
## GO:0051622  BP     1  0 1.000000e+00
## GO:1902576  BP     1  0 1.000000e+00
## GO:0070429  BP     1  0 1.000000e+00
## GO:0070446  BP     1  0 1.000000e+00
## GO:0090291  BP     1  0 1.000000e+00
## GO:0060280  BP     1  0 1.000000e+00
## GO:1902277  BP     1  0 1.000000e+00
## GO:2000230  BP     1  0 1.000000e+00
## GO:1905090  BP     1  0 1.000000e+00
## GO:0060407  BP     1  0 1.000000e+00
## GO:0120094  BP     1  0 1.000000e+00
## GO:1900085  BP     1  0 1.000000e+00
## GO:2001246  BP     1  0 1.000000e+00
## GO:2001145  BP     1  0 1.000000e+00
## GO:1900737  BP     1  0 1.000000e+00
## GO:1904006  BP     1  0 1.000000e+00
## GO:2000151  BP     1  0 1.000000e+00
## GO:2000162  BP     1  0 1.000000e+00
## GO:2000160  BP     1  0 1.000000e+00
## GO:2000168  BP     1  0 1.000000e+00
## GO:2000164  BP     1  0 1.000000e+00
## GO:2000166  BP     1  0 1.000000e+00
## GO:2000149  BP     1  0 1.000000e+00
## GO:1903889  BP     1  0 1.000000e+00
## GO:1905422  BP     1  0 1.000000e+00
## GO:0071802  BP     1  0 1.000000e+00
## GO:1904246  BP     1  0 1.000000e+00
## GO:0050928  BP     1  0 1.000000e+00
## GO:1902233  BP     1  0 1.000000e+00
## GO:1905875  BP     1  0 1.000000e+00
## GO:1901627  BP     1  0 1.000000e+00
## GO:2000632  BP     1  0 1.000000e+00
## GO:1905607  BP     1  0 1.000000e+00
## GO:1901630  BP     1  0 1.000000e+00
## GO:2000635  BP     1  0 1.000000e+00
## GO:1903704  BP     1  0 1.000000e+00
## GO:1902721  BP     1  0 1.000000e+00
## GO:0061944  BP     1  0 1.000000e+00
## GO:0010734  BP     1  0 1.000000e+00
## GO:1903060  BP     1  0 1.000000e+00
## GO:1904777  BP     1  0 1.000000e+00
## GO:1905872  BP     1  0 1.000000e+00
## GO:1903568  BP     1  0 1.000000e+00
## GO:1905667  BP     1  0 1.000000e+00
## GO:1905341  BP     1  0 1.000000e+00
## GO:0150033  BP     1  0 1.000000e+00
## GO:1904750  BP     1  0 1.000000e+00
## GO:1903217  BP     1  0 1.000000e+00
## GO:1905183  BP     1  0 1.000000e+00
## GO:1904985  BP     1  0 1.000000e+00
## GO:2000233  BP     1  0 1.000000e+00
## GO:1903910  BP     1  0 1.000000e+00
## GO:1902684  BP     1  0 1.000000e+00
## GO:1905601  BP     1  0 1.000000e+00
## GO:0003083  BP     1  0 1.000000e+00
## GO:1903403  BP     1  0 1.000000e+00
## GO:1900134  BP     1  0 1.000000e+00
## GO:2001229  BP     1  0 1.000000e+00
## GO:0060226  BP     1  0 1.000000e+00
## GO:0090260  BP     1  0 1.000000e+00
## GO:1900053  BP     1  0 1.000000e+00
## GO:1905433  BP     1  0 1.000000e+00
## GO:1902891  BP     1  0 1.000000e+00
## GO:0060299  BP     1  0 1.000000e+00
## GO:1904570  BP     1  0 1.000000e+00
## GO:1904574  BP     1  0 1.000000e+00
## GO:0048174  BP     1  0 1.000000e+00
## GO:1905513  BP     1  0 1.000000e+00
## GO:1904394  BP     1  0 1.000000e+00
## GO:1904205  BP     1  0 1.000000e+00
## GO:0043417  BP     1  0 1.000000e+00
## GO:1905900  BP     1  0 1.000000e+00
## GO:1903277  BP     1  0 1.000000e+00
## GO:2000119  BP     1  0 1.000000e+00
## GO:1903407  BP     1  0 1.000000e+00
## GO:0090275  BP     1  0 1.000000e+00
## GO:1902491  BP     1  0 1.000000e+00
## GO:2000910  BP     1  0 1.000000e+00
## GO:0061106  BP     1  0 1.000000e+00
## GO:1901340  BP     1  0 1.000000e+00
## GO:0062030  BP     1  0 1.000000e+00
## GO:0032223  BP     1  0 1.000000e+00
## GO:2000808  BP     1  0 1.000000e+00
## GO:1900243  BP     1  0 1.000000e+00
## GO:1905662  BP     1  0 1.000000e+00
## GO:0032208  BP     1  0 1.000000e+00
## GO:1901581  BP     1  0 1.000000e+00
## GO:0061369  BP     1  0 1.000000e+00
## GO:2000844  BP     1  0 1.000000e+00
## GO:0098736  BP     1  0 1.000000e+00
## GO:0003108  BP     1  0 1.000000e+00
## GO:0001986  BP     1  0 1.000000e+00
## GO:1903124  BP     1  0 1.000000e+00
## GO:1903125  BP     1  0 1.000000e+00
## GO:0050760  BP     1  0 1.000000e+00
## GO:2000399  BP     1  0 1.000000e+00
## GO:1904442  BP     1  0 1.000000e+00
## GO:0051796  BP     1  0 1.000000e+00
## GO:0034148  BP     1  0 1.000000e+00
## GO:0061986  BP     1  0 1.000000e+00
## GO:2001208  BP     1  0 1.000000e+00
## GO:0061987  BP     1  0 1.000000e+00
## GO:0010768  BP     1  0 1.000000e+00
## GO:1901227  BP     1  0 1.000000e+00
## GO:0051038  BP     1  0 1.000000e+00
## GO:1904188  BP     1  0 1.000000e+00
## GO:1901389  BP     1  0 1.000000e+00
## GO:0032913  BP     1  0 1.000000e+00
## GO:0032938  BP     1  0 1.000000e+00
## GO:0010868  BP     1  0 1.000000e+00
## GO:2000077  BP     1  0 1.000000e+00
## GO:0001811  BP     1  0 1.000000e+00
## GO:0051511  BP     1  0 1.000000e+00
## GO:2000062  BP     1  0 1.000000e+00
## GO:1903336  BP     1  0 1.000000e+00
## GO:0061044  BP     1  0 1.000000e+00
## GO:1901609  BP     1  0 1.000000e+00
## GO:0070351  BP     1  0 1.000000e+00
## GO:0071584  BP     1  0 1.000000e+00
## GO:0035849  BP     1  0 1.000000e+00
## GO:0021682  BP     1  0 1.000000e+00
## GO:0014036  BP     1  0 1.000000e+00
## GO:0003147  BP     1  0 1.000000e+00
## GO:1903045  BP     1  0 1.000000e+00
## GO:0021503  BP     1  0 1.000000e+00
## GO:0021990  BP     1  0 1.000000e+00
## GO:0021998  BP     1  0 1.000000e+00
## GO:0097115  BP     1  0 1.000000e+00
## GO:0060234  BP     1  0 1.000000e+00
## GO:0014017  BP     1  0 1.000000e+00
## GO:0007400  BP     1  0 1.000000e+00
## GO:0098529  BP     1  0 1.000000e+00
## GO:0106028  BP     1  0 1.000000e+00
## GO:0061837  BP     1  0 1.000000e+00
## GO:0099627  BP     1  0 1.000000e+00
## GO:0019357  BP     1  0 1.000000e+00
## GO:0046497  BP     1  0 1.000000e+00
## GO:0019358  BP     1  0 1.000000e+00
## GO:2001142  BP     1  0 1.000000e+00
## GO:0060659  BP     1  0 1.000000e+00
## GO:0042128  BP     1  0 1.000000e+00
## GO:0043602  BP     1  0 1.000000e+00
## GO:0015706  BP     1  0 1.000000e+00
## GO:0046210  BP     1  0 1.000000e+00
## GO:0038060  BP     1  0 1.000000e+00
## GO:0015707  BP     1  0 1.000000e+00
## GO:0090294  BP     1  0 1.000000e+00
## GO:0001080  BP     1  0 1.000000e+00
## GO:0090295  BP     1  0 1.000000e+00
## GO:0001081  BP     1  0 1.000000e+00
## GO:0038099  BP     1  0 1.000000e+00
## GO:1905438  BP     1  0 1.000000e+00
## GO:0098038  BP     1  0 1.000000e+00
## GO:0070651  BP     1  0 1.000000e+00
## GO:0046204  BP     1  0 1.000000e+00
## GO:0003359  BP     1  0 1.000000e+00
## GO:0060035  BP     1  0 1.000000e+00
## GO:0060034  BP     1  0 1.000000e+00
## GO:1902317  BP     1  0 1.000000e+00
## GO:0030264  BP     1  0 1.000000e+00
## GO:0071045  BP     1  0 1.000000e+00
## GO:0071765  BP     1  0 1.000000e+00
## GO:0071039  BP     1  0 1.000000e+00
## GO:0071040  BP     1  0 1.000000e+00
## GO:0071037  BP     1  0 1.000000e+00
## GO:0071036  BP     1  0 1.000000e+00
## GO:0070478  BP     1  0 1.000000e+00
## GO:0070481  BP     1  0 1.000000e+00
## GO:0090143  BP     1  0 1.000000e+00
## GO:1990700  BP     1  0 1.000000e+00
## GO:0007576  BP     1  0 1.000000e+00
## GO:0006294  BP     1  0 1.000000e+00
## GO:0021768  BP     1  0 1.000000e+00
## GO:0071678  BP     1  0 1.000000e+00
## GO:0021627  BP     1  0 1.000000e+00
## GO:0021629  BP     1  0 1.000000e+00
## GO:0140205  BP     1  0 1.000000e+00
## GO:0070267  BP     1  0 1.000000e+00
## GO:0036372  BP     1  0 1.000000e+00
## GO:0061360  BP     1  0 1.000000e+00
## GO:0003408  BP     1  0 1.000000e+00
## GO:0003409  BP     1  0 1.000000e+00
## GO:0021634  BP     1  0 1.000000e+00
## GO:0101027  BP     1  0 1.000000e+00
## GO:0007634  BP     1  0 1.000000e+00
## GO:0006592  BP     1  0 1.000000e+00
## GO:0006593  BP     1  0 1.000000e+00
## GO:0036179  BP     1  0 1.000000e+00
## GO:1905040  BP     1  0 1.000000e+00
## GO:0072060  BP     1  0 1.000000e+00
## GO:0033609  BP     1  0 1.000000e+00
## GO:0070407  BP     1  0 1.000000e+00
## GO:0071615  BP     1  0 1.000000e+00
## GO:0150024  BP     1  0 1.000000e+00
## GO:0022013  BP     1  0 1.000000e+00
## GO:0003322  BP     1  0 1.000000e+00
## GO:0003311  BP     1  0 1.000000e+00
## GO:0090104  BP     1  0 1.000000e+00
## GO:1990747  BP     1  0 1.000000e+00
## GO:0015887  BP     1  0 1.000000e+00
## GO:1990227  BP     1  0 1.000000e+00
## GO:0048352  BP     1  0 1.000000e+00
## GO:0007225  BP     1  0 1.000000e+00
## GO:0042316  BP     1  0 1.000000e+00
## GO:0019527  BP     1  0 1.000000e+00
## GO:0019519  BP     1  0 1.000000e+00
## GO:0001519  BP     1  0 1.000000e+00
## GO:0002503  BP     1  0 1.000000e+00
## GO:0050823  BP     1  0 1.000000e+00
## GO:0046968  BP     1  0 1.000000e+00
## GO:0050822  BP     1  0 1.000000e+00
## GO:0018194  BP     1  0 1.000000e+00
## GO:0036527  BP     1  0 1.000000e+00
## GO:0030961  BP     1  0 1.000000e+00
## GO:0019918  BP     1  0 1.000000e+00
## GO:0042265  BP     1  0 1.000000e+00
## GO:1990938  BP     1  0 1.000000e+00
## GO:0018217  BP     1  0 1.000000e+00
## GO:0036526  BP     1  0 1.000000e+00
## GO:0098822  BP     1  0 1.000000e+00
## GO:0018424  BP     1  0 1.000000e+00
## GO:0035971  BP     1  0 1.000000e+00
## GO:0036138  BP     1  0 1.000000e+00
## GO:0018021  BP     1  0 1.000000e+00
## GO:0140067  BP     1  0 1.000000e+00
## GO:0036528  BP     1  0 1.000000e+00
## GO:0036047  BP     1  0 1.000000e+00
## GO:0036049  BP     1  0 1.000000e+00
## GO:0018395  BP     1  0 1.000000e+00
## GO:0061921  BP     1  0 1.000000e+00
## GO:0018400  BP     1  0 1.000000e+00
## GO:0018160  BP     1  0 1.000000e+00
## GO:0018191  BP     1  0 1.000000e+00
## GO:1990579  BP     1  0 1.000000e+00
## GO:0002451  BP     1  0 1.000000e+00
## GO:0036250  BP     1  0 1.000000e+00
## GO:0090389  BP     1  0 1.000000e+00
## GO:0042443  BP     1  0 1.000000e+00
## GO:0036148  BP     1  0 1.000000e+00
## GO:1904562  BP     1  0 1.000000e+00
## GO:0036149  BP     1  0 1.000000e+00
## GO:0097045  BP     1  0 1.000000e+00
## GO:0035644  BP     1  0 1.000000e+00
## GO:0071882  BP     1  0 1.000000e+00
## GO:0030845  BP     1  0 1.000000e+00
## GO:0071619  BP     1  0 1.000000e+00
## GO:0071602  BP     1  0 1.000000e+00
## GO:0006671  BP     1  0 1.000000e+00
## GO:0043480  BP     1  0 1.000000e+00
## GO:0043324  BP     1  0 1.000000e+00
## GO:0043474  BP     1  0 1.000000e+00
## GO:0090627  BP     1  0 1.000000e+00
## GO:0090558  BP     1  0 1.000000e+00
## GO:0099402  BP     1  0 1.000000e+00
## GO:1905392  BP     1  0 1.000000e+00
## GO:0044858  BP     1  0 1.000000e+00
## GO:0002470  BP     1  0 1.000000e+00
## GO:0036345  BP     1  0 1.000000e+00
## GO:0070462  BP     1  0 1.000000e+00
## GO:0106047  BP     1  0 1.000000e+00
## GO:0098507  BP     1  0 1.000000e+00
## GO:0015774  BP     1  0 1.000000e+00
## GO:0070845  BP     1  0 1.000000e+00
## GO:0070844  BP     1  0 1.000000e+00
## GO:0043947  BP     1  0 1.000000e+00
## GO:0052510  BP     1  0 1.000000e+00
## GO:0052345  BP     1  0 1.000000e+00
## GO:0052555  BP     1  0 1.000000e+00
## GO:0052347  BP     1  0 1.000000e+00
## GO:0052509  BP     1  0 1.000000e+00
## GO:0052556  BP     1  0 1.000000e+00
## GO:0043128  BP     1  0 1.000000e+00
## GO:0061903  BP     1  0 1.000000e+00
## GO:0090216  BP     1  0 1.000000e+00
## GO:1903893  BP     1  0 1.000000e+00
## GO:1903082  BP     1  0 1.000000e+00
## GO:1905291  BP     1  0 1.000000e+00
## GO:2000560  BP     1  0 1.000000e+00
## GO:0032834  BP     1  0 1.000000e+00
## GO:1900281  BP     1  0 1.000000e+00
## GO:2000350  BP     1  0 1.000000e+00
## GO:2000454  BP     1  0 1.000000e+00
## GO:1905920  BP     1  0 1.000000e+00
## GO:1902546  BP     1  0 1.000000e+00
## GO:2000003  BP     1  0 1.000000e+00
## GO:1904877  BP     1  0 1.000000e+00
## GO:0060383  BP     1  0 1.000000e+00
## GO:0060566  BP     1  0 1.000000e+00
## GO:1905580  BP     1  0 1.000000e+00
## GO:1904022  BP     1  0 1.000000e+00
## GO:1903452  BP     1  0 1.000000e+00
## GO:0071660  BP     1  0 1.000000e+00
## GO:1905589  BP     1  0 1.000000e+00
## GO:1903197  BP     1  0 1.000000e+00
## GO:1903200  BP     1  0 1.000000e+00
## GO:1905010  BP     1  0 1.000000e+00
## GO:1903007  BP     1  0 1.000000e+00
## GO:2000761  BP     1  0 1.000000e+00
## GO:1902690  BP     1  0 1.000000e+00
## GO:1900370  BP     1  0 1.000000e+00
## GO:1904477  BP     1  0 1.000000e+00
## GO:2001108  BP     1  0 1.000000e+00
## GO:0035543  BP     1  0 1.000000e+00
## GO:2000640  BP     1  0 1.000000e+00
## GO:1903755  BP     1  0 1.000000e+00
## GO:1904268  BP     1  0 1.000000e+00
## GO:0010625  BP     1  0 1.000000e+00
## GO:2001190  BP     1  0 1.000000e+00
## GO:0042103  BP     1  0 1.000000e+00
## GO:2000330  BP     1  0 1.000000e+00
## GO:0045556  BP     1  0 1.000000e+00
## GO:0060804  BP     1  0 1.000000e+00
## GO:0009789  BP     1  0 1.000000e+00
## GO:1905923  BP     1  0 1.000000e+00
## GO:1904699  BP     1  0 1.000000e+00
## GO:1904618  BP     1  0 1.000000e+00
## GO:1904531  BP     1  0 1.000000e+00
## GO:1903920  BP     1  0 1.000000e+00
## GO:1905404  BP     1  0 1.000000e+00
## GO:1905676  BP     1  0 1.000000e+00
## GO:0140196  BP     1  0 1.000000e+00
## GO:1904992  BP     1  0 1.000000e+00
## GO:1900731  BP     1  0 1.000000e+00
## GO:1904605  BP     1  0 1.000000e+00
## GO:2001250  BP     1  0 1.000000e+00
## GO:2000836  BP     1  0 1.000000e+00
## GO:0061881  BP     1  0 1.000000e+00
## GO:0006963  BP     1  0 1.000000e+00
## GO:0001815  BP     1  0 1.000000e+00
## GO:0002591  BP     1  0 1.000000e+00
## GO:0002807  BP     1  0 1.000000e+00
## GO:1904831  BP     1  0 1.000000e+00
## GO:0150072  BP     1  0 1.000000e+00
## GO:1904450  BP     1  0 1.000000e+00
## GO:0061890  BP     1  0 1.000000e+00
## GO:2000464  BP     1  0 1.000000e+00
## GO:0045770  BP     1  0 1.000000e+00
## GO:1903949  BP     1  0 1.000000e+00
## GO:1905128  BP     1  0 1.000000e+00
## GO:0006965  BP     1  0 1.000000e+00
## GO:0044497  BP     1  0 1.000000e+00
## GO:0070349  BP     1  0 1.000000e+00
## GO:1904364  BP     1  0 1.000000e+00
## GO:1902082  BP     1  0 1.000000e+00
## GO:1903235  BP     1  0 1.000000e+00
## GO:0046587  BP     1  0 1.000000e+00
## GO:0051041  BP     1  0 1.000000e+00
## GO:1901297  BP     1  0 1.000000e+00
## GO:2000081  BP     1  0 1.000000e+00
## GO:1905068  BP     1  0 1.000000e+00
## GO:1903676  BP     1  0 1.000000e+00
## GO:1903781  BP     1  0 1.000000e+00
## GO:0062000  BP     1  0 1.000000e+00
## GO:0055020  BP     1  0 1.000000e+00
## GO:1904414  BP     1  0 1.000000e+00
## GO:1905062  BP     1  0 1.000000e+00
## GO:0043946  BP     1  0 1.000000e+00
## GO:0010650  BP     1  0 1.000000e+00
## GO:1905917  BP     1  0 1.000000e+00
## GO:1904935  BP     1  0 1.000000e+00
## GO:0003251  BP     1  0 1.000000e+00
## GO:1901964  BP     1  0 1.000000e+00
## GO:0045795  BP     1  0 1.000000e+00
## GO:2000284  BP     1  0 1.000000e+00
## GO:2001031  BP     1  0 1.000000e+00
## GO:1905959  BP     1  0 1.000000e+00
## GO:1900036  BP     1  0 1.000000e+00
## GO:0002897  BP     1  0 1.000000e+00
## GO:0002648  BP     1  0 1.000000e+00
## GO:1904716  BP     1  0 1.000000e+00
## GO:0071654  BP     1  0 1.000000e+00
## GO:1903886  BP     1  0 1.000000e+00
## GO:0070101  BP     1  0 1.000000e+00
## GO:1904367  BP     1  0 1.000000e+00
## GO:1904056  BP     1  0 1.000000e+00
## GO:1902771  BP     1  0 1.000000e+00
## GO:0031940  BP     1  0 1.000000e+00
## GO:1904501  BP     1  0 1.000000e+00
## GO:0002882  BP     1  0 1.000000e+00
## GO:0090321  BP     1  0 1.000000e+00
## GO:0090319  BP     1  0 1.000000e+00
## GO:0003353  BP     1  0 1.000000e+00
## GO:1905309  BP     1  0 1.000000e+00
## GO:0033343  BP     1  0 1.000000e+00
## GO:1903816  BP     1  0 1.000000e+00
## GO:1903661  BP     1  0 1.000000e+00
## GO:1903435  BP     1  0 1.000000e+00
## GO:2000066  BP     1  0 1.000000e+00
## GO:1902161  BP     1  0 1.000000e+00
## GO:2001272  BP     1  0 1.000000e+00
## GO:0060470  BP     1  0 1.000000e+00
## GO:1903629  BP     1  0 1.000000e+00
## GO:1901835  BP     1  0 1.000000e+00
## GO:2000549  BP     1  0 1.000000e+00
## GO:1905415  BP     1  0 1.000000e+00
## GO:1902955  BP     1  0 1.000000e+00
## GO:0140051  BP     1  0 1.000000e+00
## GO:2000802  BP     1  0 1.000000e+00
## GO:1903917  BP     1  0 1.000000e+00
## GO:1904980  BP     1  0 1.000000e+00
## GO:1905751  BP     1  0 1.000000e+00
## GO:1904472  BP     1  0 1.000000e+00
## GO:1905043  BP     1  0 1.000000e+00
## GO:0034120  BP     1  0 1.000000e+00
## GO:0061931  BP     1  0 1.000000e+00
## GO:2000784  BP     1  0 1.000000e+00
## GO:2000863  BP     1  0 1.000000e+00
## GO:1905537  BP     1  0 1.000000e+00
## GO:1904651  BP     1  0 1.000000e+00
## GO:1904440  BP     1  0 1.000000e+00
## GO:2000415  BP     1  0 1.000000e+00
## GO:0120183  BP     1  0 1.000000e+00
## GO:2000979  BP     1  0 1.000000e+00
## GO:0050754  BP     1  0 1.000000e+00
## GO:0032724  BP     1  0 1.000000e+00
## GO:0060550  BP     1  0 1.000000e+00
## GO:0060552  BP     1  0 1.000000e+00
## GO:0072303  BP     1  0 1.000000e+00
## GO:1904635  BP     1  0 1.000000e+00
## GO:0031948  BP     1  0 1.000000e+00
## GO:0031945  BP     1  0 1.000000e+00
## GO:1904025  BP     1  0 1.000000e+00
## GO:2000753  BP     1  0 1.000000e+00
## GO:2000213  BP     1  0 1.000000e+00
## GO:0035229  BP     1  0 1.000000e+00
## GO:0120008  BP     1  0 1.000000e+00
## GO:2000487  BP     1  0 1.000000e+00
## GO:1903284  BP     1  0 1.000000e+00
## GO:1900925  BP     1  0 1.000000e+00
## GO:2000526  BP     1  0 1.000000e+00
## GO:1904710  BP     1  0 1.000000e+00
## GO:1904197  BP     1  0 1.000000e+00
## GO:2000513  BP     1  0 1.000000e+00
## GO:1905099  BP     1  0 1.000000e+00
## GO:0071338  BP     1  0 1.000000e+00
## GO:0003065  BP     1  0 1.000000e+00
## GO:0001988  BP     1  0 1.000000e+00
## GO:1902038  BP     1  0 1.000000e+00
## GO:1905855  BP     1  0 1.000000e+00
## GO:1905860  BP     1  0 1.000000e+00
## GO:0061874  BP     1  0 1.000000e+00
## GO:1904899  BP     1  0 1.000000e+00
## GO:1902204  BP     1  0 1.000000e+00
## GO:0110090  BP     1  0 1.000000e+00
## GO:1901676  BP     1  0 1.000000e+00
## GO:2001255  BP     1  0 1.000000e+00
## GO:1905437  BP     1  0 1.000000e+00
## GO:0070512  BP     1  0 1.000000e+00
## GO:1903586  BP     1  0 1.000000e+00
## GO:0050668  BP     1  0 1.000000e+00
## GO:1903387  BP     1  0 1.000000e+00
## GO:1903285  BP     1  0 1.000000e+00
## GO:1904828  BP     1  0 1.000000e+00
## GO:1902073  BP     1  0 1.000000e+00
## GO:0002642  BP     1  0 1.000000e+00
## GO:0045609  BP     1  0 1.000000e+00
## GO:2000982  BP     1  0 1.000000e+00
## GO:0010925  BP     1  0 1.000000e+00
## GO:0050726  BP     1  0 1.000000e+00
## GO:2000661  BP     1  0 1.000000e+00
## GO:0032738  BP     1  0 1.000000e+00
## GO:0045380  BP     1  0 1.000000e+00
## GO:1903883  BP     1  0 1.000000e+00
## GO:2000494  BP     1  0 1.000000e+00
## GO:2000572  BP     1  0 1.000000e+00
## GO:0045407  BP     1  0 1.000000e+00
## GO:1904480  BP     1  0 1.000000e+00
## GO:0045797  BP     1  0 1.000000e+00
## GO:0060731  BP     1  0 1.000000e+00
## GO:1904731  BP     1  0 1.000000e+00
## GO:1901254  BP     1  0 1.000000e+00
## GO:1902220  BP     1  0 1.000000e+00
## GO:1905926  BP     1  0 1.000000e+00
## GO:1905929  BP     1  0 1.000000e+00
## GO:1901980  BP     1  0 1.000000e+00
## GO:0034761  BP     1  0 1.000000e+00
## GO:0034758  BP     1  0 1.000000e+00
## GO:1905017  BP     1  0 1.000000e+00
## GO:0045828  BP     1  0 1.000000e+00
## GO:2000358  BP     1  0 1.000000e+00
## GO:1902824  BP     1  0 1.000000e+00
## GO:1902078  BP     1  0 1.000000e+00
## GO:1902748  BP     1  0 1.000000e+00
## GO:1904999  BP     1  0 1.000000e+00
## GO:0035491  BP     1  0 1.000000e+00
## GO:1903002  BP     1  0 1.000000e+00
## GO:0110113  BP     1  0 1.000000e+00
## GO:0140077  BP     1  0 1.000000e+00
## GO:0090326  BP     1  0 1.000000e+00
## GO:0140214  BP     1  0 1.000000e+00
## GO:1905597  BP     1  0 1.000000e+00
## GO:1905599  BP     1  0 1.000000e+00
## GO:1901248  BP     1  0 1.000000e+00
## GO:1905673  BP     1  0 1.000000e+00
## GO:1903839  BP     1  0 1.000000e+00
## GO:1905612  BP     1  0 1.000000e+00
## GO:0031439  BP     1  0 1.000000e+00
## GO:0090366  BP     1  0 1.000000e+00
## GO:1902228  BP     1  0 1.000000e+00
## GO:0010933  BP     1  0 1.000000e+00
## GO:0034096  BP     1  0 1.000000e+00
## GO:2000711  BP     1  0 1.000000e+00
## GO:1904840  BP     1  0 1.000000e+00
## GO:2000103  BP     1  0 1.000000e+00
## GO:0038097  BP     1  0 1.000000e+00
## GO:0060376  BP     1  0 1.000000e+00
## GO:1904303  BP     1  0 1.000000e+00
## GO:1904466  BP     1  0 1.000000e+00
## GO:0045633  BP     1  0 1.000000e+00
## GO:1903343  BP     1  0 1.000000e+00
## GO:1905134  BP     1  0 1.000000e+00
## GO:1902910  BP     1  0 1.000000e+00
## GO:1900827  BP     1  0 1.000000e+00
## GO:1905033  BP     1  0 1.000000e+00
## GO:1905026  BP     1  0 1.000000e+00
## GO:1905904  BP     1  0 1.000000e+00
## GO:1905772  BP     1  0 1.000000e+00
## GO:0048337  BP     1  0 1.000000e+00
## GO:0090096  BP     1  0 1.000000e+00
## GO:2000478  BP     1  0 1.000000e+00
## GO:2001076  BP     1  0 1.000000e+00
## GO:1905188  BP     1  0 1.000000e+00
## GO:1902104  BP     1  0 1.000000e+00
## GO:1905020  BP     1  0 1.000000e+00
## GO:0014008  BP     1  0 1.000000e+00
## GO:0090297  BP     1  0 1.000000e+00
## GO:1903465  BP     1  0 1.000000e+00
## GO:1905406  BP     1  0 1.000000e+00
## GO:0045951  BP     1  0 1.000000e+00
## GO:1902846  BP     1  0 1.000000e+00
## GO:0110028  BP     1  0 1.000000e+00
## GO:0032773  BP     1  0 1.000000e+00
## GO:1905485  BP     1  0 1.000000e+00
## GO:0014739  BP     1  0 1.000000e+00
## GO:1904330  BP     1  0 1.000000e+00
## GO:1904762  BP     1  0 1.000000e+00
## GO:0035508  BP     1  0 1.000000e+00
## GO:2000287  BP     1  0 1.000000e+00
## GO:0050924  BP     1  0 1.000000e+00
## GO:1902998  BP     1  0 1.000000e+00
## GO:1900075  BP     1  0 1.000000e+00
## GO:0045660  BP     1  0 1.000000e+00
## GO:0070962  BP     1  0 1.000000e+00
## GO:0070963  BP     1  0 1.000000e+00
## GO:0045848  BP     1  0 1.000000e+00
## GO:1901231  BP     1  0 1.000000e+00
## GO:0032244  BP     1  0 1.000000e+00
## GO:0070430  BP     1  0 1.000000e+00
## GO:1901331  BP     1  0 1.000000e+00
## GO:1900143  BP     1  0 1.000000e+00
## GO:2000476  BP     1  0 1.000000e+00
## GO:1903028  BP     1  0 1.000000e+00
## GO:2000597  BP     1  0 1.000000e+00
## GO:1905593  BP     1  0 1.000000e+00
## GO:1904120  BP     1  0 1.000000e+00
## GO:1902278  BP     1  0 1.000000e+00
## GO:2000231  BP     1  0 1.000000e+00
## GO:1904244  BP     1  0 1.000000e+00
## GO:0002851  BP     1  0 1.000000e+00
## GO:2000470  BP     1  0 1.000000e+00
## GO:2000187  BP     1  0 1.000000e+00
## GO:1905695  BP     1  0 1.000000e+00
## GO:1900163  BP     1  0 1.000000e+00
## GO:1901409  BP     1  0 1.000000e+00
## GO:2001165  BP     1  0 1.000000e+00
## GO:0046534  BP     1  0 1.000000e+00
## GO:1900100  BP     1  0 1.000000e+00
## GO:1905221  BP     1  0 1.000000e+00
## GO:1904247  BP     1  0 1.000000e+00
## GO:1905698  BP     1  0 1.000000e+00
## GO:0099588  BP     1  0 1.000000e+00
## GO:1904453  BP     1  0 1.000000e+00
## GO:1905608  BP     1  0 1.000000e+00
## GO:1905520  BP     1  0 1.000000e+00
## GO:1901631  BP     1  0 1.000000e+00
## GO:2000975  BP     1  0 1.000000e+00
## GO:2000176  BP     1  0 1.000000e+00
## GO:2000184  BP     1  0 1.000000e+00
## GO:1902213  BP     1  0 1.000000e+00
## GO:0061078  BP     1  0 1.000000e+00
## GO:2000363  BP     1  0 1.000000e+00
## GO:0090284  BP     1  0 1.000000e+00
## GO:1903638  BP     1  0 1.000000e+00
## GO:1903572  BP     1  0 1.000000e+00
## GO:1904372  BP     1  0 1.000000e+00
## GO:1904510  BP     1  0 1.000000e+00
## GO:1905873  BP     1  0 1.000000e+00
## GO:0120187  BP     1  0 1.000000e+00
## GO:1903569  BP     1  0 1.000000e+00
## GO:0150032  BP     1  0 1.000000e+00
## GO:1902365  BP     1  0 1.000000e+00
## GO:2000436  BP     1  0 1.000000e+00
## GO:1904808  BP     1  0 1.000000e+00
## GO:1904592  BP     1  0 1.000000e+00
## GO:1905184  BP     1  0 1.000000e+00
## GO:0150074  BP     1  0 1.000000e+00
## GO:1905273  BP     1  0 1.000000e+00
## GO:0120072  BP     1  0 1.000000e+00
## GO:1903168  BP     1  0 1.000000e+00
## GO:1904199  BP     1  0 1.000000e+00
## GO:1901899  BP     1  0 1.000000e+00
## GO:2000534  BP     1  0 1.000000e+00
## GO:2001153  BP     1  0 1.000000e+00
## GO:1901421  BP     1  0 1.000000e+00
## GO:0046670  BP     1  0 1.000000e+00
## GO:1900054  BP     1  0 1.000000e+00
## GO:2001019  BP     1  0 1.000000e+00
## GO:1901956  BP     1  0 1.000000e+00
## GO:1905281  BP     1  0 1.000000e+00
## GO:2000199  BP     1  0 1.000000e+00
## GO:2000208  BP     1  0 1.000000e+00
## GO:2000202  BP     1  0 1.000000e+00
## GO:0061189  BP     1  0 1.000000e+00
## GO:0090340  BP     1  0 1.000000e+00
## GO:1904411  BP     1  0 1.000000e+00
## GO:1904571  BP     1  0 1.000000e+00
## GO:2001262  BP     1  0 1.000000e+00
## GO:2000764  BP     1  0 1.000000e+00
## GO:0061090  BP     1  0 1.000000e+00
## GO:1904792  BP     1  0 1.000000e+00
## GO:0060381  BP     1  0 1.000000e+00
## GO:1905609  BP     1  0 1.000000e+00
## GO:1904320  BP     1  0 1.000000e+00
## GO:1905901  BP     1  0 1.000000e+00
## GO:1901622  BP     1  0 1.000000e+00
## GO:1905382  BP     1  0 1.000000e+00
## GO:1903408  BP     1  0 1.000000e+00
## GO:1904677  BP     1  0 1.000000e+00
## GO:1901307  BP     1  0 1.000000e+00
## GO:1902070  BP     1  0 1.000000e+00
## GO:2000755  BP     1  0 1.000000e+00
## GO:1904050  BP     1  0 1.000000e+00
## GO:0120069  BP     1  0 1.000000e+00
## GO:0098530  BP     1  0 1.000000e+00
## GO:1904460  BP     1  0 1.000000e+00
## GO:1904496  BP     1  0 1.000000e+00
## GO:0031337  BP     1  0 1.000000e+00
## GO:1904034  BP     1  0 1.000000e+00
## GO:1901582  BP     1  0 1.000000e+00
## GO:1905549  BP     1  0 1.000000e+00
## GO:1904535  BP     1  0 1.000000e+00
## GO:2001051  BP     1  0 1.000000e+00
## GO:1904595  BP     1  0 1.000000e+00
## GO:2000806  BP     1  0 1.000000e+00
## GO:0003059  BP     1  0 1.000000e+00
## GO:0003061  BP     1  0 1.000000e+00
## GO:1905023  BP     1  0 1.000000e+00
## GO:2000614  BP     1  0 1.000000e+00
## GO:0002651  BP     1  0 1.000000e+00
## GO:0002845  BP     1  0 1.000000e+00
## GO:0034181  BP     1  0 1.000000e+00
## GO:0000411  BP     1  0 1.000000e+00
## GO:0061586  BP     1  0 1.000000e+00
## GO:0000435  BP     1  0 1.000000e+00
## GO:0061400  BP     1  0 1.000000e+00
## GO:2000763  BP     1  0 1.000000e+00
## GO:0090282  BP     1  0 1.000000e+00
## GO:0007072  BP     1  0 1.000000e+00
## GO:0051039  BP     1  0 1.000000e+00
## GO:1904300  BP     1  0 1.000000e+00
## GO:1903620  BP     1  0 1.000000e+00
## GO:1901390  BP     1  0 1.000000e+00
## GO:1901394  BP     1  0 1.000000e+00
## GO:0036494  BP     1  0 1.000000e+00
## GO:1904075  BP     1  0 1.000000e+00
## GO:0090044  BP     1  0 1.000000e+00
## GO:0034346  BP     1  0 1.000000e+00
## GO:0001809  BP     1  0 1.000000e+00
## GO:1903178  BP     1  0 1.000000e+00
## GO:2000158  BP     1  0 1.000000e+00
## GO:2000063  BP     1  0 1.000000e+00
## GO:0050677  BP     1  0 1.000000e+00
## GO:1900721  BP     1  0 1.000000e+00
## GO:1903337  BP     1  0 1.000000e+00
## GO:1905176  BP     1  0 1.000000e+00
## GO:1905932  BP     1  0 1.000000e+00
## GO:1903947  BP     1  0 1.000000e+00
## GO:0010902  BP     1  0 1.000000e+00
## GO:0106022  BP     1  0 1.000000e+00
## GO:1904973  BP     1  0 1.000000e+00
## GO:1903762  BP     1  0 1.000000e+00
## GO:1905152  BP     1  0 1.000000e+00
## GO:0040032  BP     1  0 1.000000e+00
## GO:0003247  BP     1  0 1.000000e+00
## GO:0048621  BP     1  0 1.000000e+00
## GO:0035128  BP     1  0 1.000000e+00
## GO:0035129  BP     1  0 1.000000e+00
## GO:0007497  BP     1  0 1.000000e+00
## GO:0099630  BP     1  0 1.000000e+00
## GO:1990261  BP     1  0 1.000000e+00
## GO:0035281  BP     1  0 1.000000e+00
## GO:0021501  BP     1  0 1.000000e+00
## GO:0099140  BP     1  0 1.000000e+00
## GO:0099187  BP     1  0 1.000000e+00
## GO:0003138  BP     1  0 1.000000e+00
## GO:1990744  BP     1  0 1.000000e+00
## GO:1990729  BP     1  0 1.000000e+00
## GO:0007285  BP     1  0 1.000000e+00
## GO:0060682  BP     1  0 1.000000e+00
## GO:0003345  BP     1  0 1.000000e+00
## GO:0006709  BP     1  0 1.000000e+00
## GO:0031049  BP     1  0 1.000000e+00
## GO:0039007  BP     1  0 1.000000e+00
## GO:0039008  BP     1  0 1.000000e+00
## GO:0015730  BP     1  0 1.000000e+00
## GO:0019679  BP     1  0 1.000000e+00
## GO:1902860  BP     1  0 1.000000e+00
## GO:1902858  BP     1  0 1.000000e+00
## GO:0051355  BP     1  0 1.000000e+00
## GO:0018964  BP     1  0 1.000000e+00
## GO:1905344  BP     1  0 1.000000e+00
## GO:0002539  BP     1  0 1.000000e+00
## GO:1990767  BP     1  0 1.000000e+00
## GO:0090323  BP     1  0 1.000000e+00
## GO:0060515  BP     1  0 1.000000e+00
## GO:0060514  BP     1  0 1.000000e+00
## GO:0033375  BP     1  0 1.000000e+00
## GO:0033368  BP     1  0 1.000000e+00
## GO:0080129  BP     1  0 1.000000e+00
## GO:0044726  BP     1  0 1.000000e+00
## GO:1990390  BP     1  0 1.000000e+00
## GO:0042543  BP     1  0 1.000000e+00
## GO:0018032  BP     1  0 1.000000e+00
## GO:0009305  BP     1  0 1.000000e+00
## GO:0035611  BP     1  0 1.000000e+00
## GO:0140246  BP     1  0 1.000000e+00
## GO:0099546  BP     1  0 1.000000e+00
## GO:0061698  BP     1  0 1.000000e+00
## GO:0036525  BP     1  0 1.000000e+00
## GO:0036529  BP     1  0 1.000000e+00
## GO:0036046  BP     1  0 1.000000e+00
## GO:1990697  BP     1  0 1.000000e+00
## GO:0036048  BP     1  0 1.000000e+00
## GO:0042125  BP     1  0 1.000000e+00
## GO:0033580  BP     1  0 1.000000e+00
## GO:0010731  BP     1  0 1.000000e+00
## GO:0033575  BP     1  0 1.000000e+00
## GO:0044721  BP     1  0 1.000000e+00
## GO:0098737  BP     1  0 1.000000e+00
## GO:0042313  BP     1  0 1.000000e+00
## GO:0090251  BP     1  0 1.000000e+00
## GO:1904867  BP     1  0 1.000000e+00
## GO:0036309  BP     1  0 1.000000e+00
## GO:0033374  BP     1  0 1.000000e+00
## GO:0036371  BP     1  0 1.000000e+00
## GO:0044379  BP     1  0 1.000000e+00
## GO:1904327  BP     1  0 1.000000e+00
## GO:1904379  BP     1  0 1.000000e+00
## GO:1903420  BP     1  0 1.000000e+00
## GO:0033367  BP     1  0 1.000000e+00
## GO:1905359  BP     1  0 1.000000e+00
## GO:1903096  BP     1  0 1.000000e+00
## GO:1902480  BP     1  0 1.000000e+00
## GO:0035750  BP     1  0 1.000000e+00
## GO:1903405  BP     1  0 1.000000e+00
## GO:1903621  BP     1  0 1.000000e+00
## GO:1902889  BP     1  0 1.000000e+00
## GO:0071988  BP     1  0 1.000000e+00
## GO:0015680  BP     1  0 1.000000e+00
## GO:0018190  BP     1  0 1.000000e+00
## GO:0045234  BP     1  0 1.000000e+00
## GO:0044524  BP     1  0 1.000000e+00
## GO:0044395  BP     1  0 1.000000e+00
## GO:0036290  BP     1  0 1.000000e+00
## GO:0032599  BP     1  0 1.000000e+00
## GO:0071693  BP     1  0 1.000000e+00
## GO:0018322  BP     1  0 1.000000e+00
## GO:0032447  BP     1  0 1.000000e+00
## GO:0001120  BP     1  0 1.000000e+00
## GO:0018293  BP     1  0 1.000000e+00
## GO:0090126  BP     1  0 1.000000e+00
## GO:0017003  BP     1  0 1.000000e+00
## GO:0018352  BP     1  0 1.000000e+00
## GO:0018272  BP     1  0 1.000000e+00
## GO:0017006  BP     1  0 1.000000e+00
## GO:0072019  BP     1  0 1.000000e+00
## GO:0072032  BP     1  0 1.000000e+00
## GO:0014847  BP     1  0 1.000000e+00
## GO:0072020  BP     1  0 1.000000e+00
## GO:0031270  BP     1  0 1.000000e+00
## GO:0019889  BP     1  0 1.000000e+00
## GO:0061155  BP     1  0 1.000000e+00
## GO:0009183  BP     1  0 1.000000e+00
## GO:0009184  BP     1  0 1.000000e+00
## GO:0009170  BP     1  0 1.000000e+00
## GO:0090480  BP     1  0 1.000000e+00
## GO:0034037  BP     1  0 1.000000e+00
## GO:0009207  BP     1  0 1.000000e+00
## GO:0032920  BP     1  0 1.000000e+00
## GO:0033388  BP     1  0 1.000000e+00
## GO:0033389  BP     1  0 1.000000e+00
## GO:0009447  BP     1  0 1.000000e+00
## GO:0015847  BP     1  0 1.000000e+00
## GO:0120065  BP     1  0 1.000000e+00
## GO:0019365  BP     1  0 1.000000e+00
## GO:0009443  BP     1  0 1.000000e+00
## GO:0032361  BP     1  0 1.000000e+00
## GO:0008615  BP     1  0 1.000000e+00
## GO:0008614  BP     1  0 1.000000e+00
## GO:0046127  BP     1  0 1.000000e+00
## GO:0009178  BP     1  0 1.000000e+00
## GO:0009131  BP     1  0 1.000000e+00
## GO:0043097  BP     1  0 1.000000e+00
## GO:0032262  BP     1  0 1.000000e+00
## GO:0009194  BP     1  0 1.000000e+00
## GO:0009193  BP     1  0 1.000000e+00
## GO:0010138  BP     1  0 1.000000e+00
## GO:0008655  BP     1  0 1.000000e+00
## GO:0009444  BP     1  0 1.000000e+00
## GO:0034213  BP     1  0 1.000000e+00
## GO:0009372  BP     1  0 1.000000e+00
## GO:0052106  BP     1  0 1.000000e+00
## GO:0070550  BP     1  0 1.000000e+00
## GO:0000451  BP     1  0 1.000000e+00
## GO:0000967  BP     1  0 1.000000e+00
## GO:1990882  BP     1  0 1.000000e+00
## GO:1904812  BP     1  0 1.000000e+00
## GO:0009956  BP     1  0 1.000000e+00
## GO:0036031  BP     1  0 1.000000e+00
## GO:0010017  BP     1  0 1.000000e+00
## GO:0009585  BP     1  0 1.000000e+00
## GO:0043126  BP     1  0 1.000000e+00
## GO:0061901  BP     1  0 1.000000e+00
## GO:0090215  BP     1  0 1.000000e+00
## GO:2000983  BP     1  0 1.000000e+00
## GO:2000577  BP     1  0 1.000000e+00
## GO:0070926  BP     1  0 1.000000e+00
## GO:1903080  BP     1  0 1.000000e+00
## GO:2000559  BP     1  0 1.000000e+00
## GO:0045223  BP     1  0 1.000000e+00
## GO:0032832  BP     1  0 1.000000e+00
## GO:1905918  BP     1  0 1.000000e+00
## GO:1900022  BP     1  0 1.000000e+00
## GO:1904875  BP     1  0 1.000000e+00
## GO:0110026  BP     1  0 1.000000e+00
## GO:1905578  BP     1  0 1.000000e+00
## GO:1902044  BP     1  0 1.000000e+00
## GO:0045219  BP     1  0 1.000000e+00
## GO:1900128  BP     1  0 1.000000e+00
## GO:1903450  BP     1  0 1.000000e+00
## GO:0043095  BP     1  0 1.000000e+00
## GO:0042999  BP     1  0 1.000000e+00
## GO:0071658  BP     1  0 1.000000e+00
## GO:1905541  BP     1  0 1.000000e+00
## GO:1903195  BP     1  0 1.000000e+00
## GO:1903198  BP     1  0 1.000000e+00
## GO:1905008  BP     1  0 1.000000e+00
## GO:0071701  BP     1  0 1.000000e+00
## GO:2000759  BP     1  0 1.000000e+00
## GO:0060254  BP     1  0 1.000000e+00
## GO:0098906  BP     1  0 1.000000e+00
## GO:1905255  BP     1  0 1.000000e+00
## GO:1900259  BP     1  0 1.000000e+00
## GO:0062025  BP     1  0 1.000000e+00
## GO:1903182  BP     1  0 1.000000e+00
## GO:1904266  BP     1  0 1.000000e+00
## GO:1905044  BP     1  0 1.000000e+00
## GO:0002852  BP     1  0 1.000000e+00
## GO:2000517  BP     1  0 1.000000e+00
## GO:0045554  BP     1  0 1.000000e+00
## GO:1904239  BP     1  0 1.000000e+00
## GO:2000056  BP     1  0 1.000000e+00
## GO:1904711  BP     1  0 1.000000e+00
## GO:0009787  BP     1  0 1.000000e+00
## GO:1905921  BP     1  0 1.000000e+00
## GO:1903048  BP     1  0 1.000000e+00
## GO:1904697  BP     1  0 1.000000e+00
## GO:0090138  BP     1  0 1.000000e+00
## GO:0043538  BP     1  0 1.000000e+00
## GO:1904621  BP     1  0 1.000000e+00
## GO:0010578  BP     1  0 1.000000e+00
## GO:0071877  BP     1  0 1.000000e+00
## GO:0140193  BP     1  0 1.000000e+00
## GO:1904990  BP     1  0 1.000000e+00
## GO:1900729  BP     1  0 1.000000e+00
## GO:1905226  BP     1  0 1.000000e+00
## GO:1904603  BP     1  0 1.000000e+00
## GO:0051941  BP     1  0 1.000000e+00
## GO:2001248  BP     1  0 1.000000e+00
## GO:2000797  BP     1  0 1.000000e+00
## GO:2000834  BP     1  0 1.000000e+00
## GO:0061880  BP     1  0 1.000000e+00
## GO:1902612  BP     1  0 1.000000e+00
## GO:0002808  BP     1  0 1.000000e+00
## GO:0001813  BP     1  0 1.000000e+00
## GO:1905034  BP     1  0 1.000000e+00
## GO:1904282  BP     1  0 1.000000e+00
## GO:0002805  BP     1  0 1.000000e+00
## GO:1904829  BP     1  0 1.000000e+00
## GO:2000656  BP     1  0 1.000000e+00
## GO:0060785  BP     1  0 1.000000e+00
## GO:0150070  BP     1  0 1.000000e+00
## GO:1900081  BP     1  0 1.000000e+00
## GO:1904448  BP     1  0 1.000000e+00
## GO:0016243  BP     1  0 1.000000e+00
## GO:1905126  BP     1  0 1.000000e+00
## GO:1904863  BP     1  0 1.000000e+00
## GO:0002816  BP     1  0 1.000000e+00
## GO:2000266  BP     1  0 1.000000e+00
## GO:0110057  BP     1  0 1.000000e+00
## GO:0031551  BP     1  0 1.000000e+00
## GO:0060683  BP     1  0 1.000000e+00
## GO:0060668  BP     1  0 1.000000e+00
## GO:1904362  BP     1  0 1.000000e+00
## GO:0110097  BP     1  0 1.000000e+00
## GO:1903610  BP     1  0 1.000000e+00
## GO:0046586  BP     1  0 1.000000e+00
## GO:0060827  BP     1  0 1.000000e+00
## GO:1905239  BP     1  0 1.000000e+00
## GO:1903674  BP     1  0 1.000000e+00
## GO:0032113  BP     1  0 1.000000e+00
## GO:0043610  BP     1  0 1.000000e+00
## GO:1901210  BP     1  0 1.000000e+00
## GO:0061999  BP     1  0 1.000000e+00
## GO:2000690  BP     1  0 1.000000e+00
## GO:0055018  BP     1  0 1.000000e+00
## GO:1905304  BP     1  0 1.000000e+00
## GO:0042686  BP     1  0 1.000000e+00
## GO:0106088  BP     1  0 1.000000e+00
## GO:0060305  BP     1  0 1.000000e+00
## GO:1905933  BP     1  0 1.000000e+00
## GO:0090249  BP     1  0 1.000000e+00
## GO:2000606  BP     1  0 1.000000e+00
## GO:0060784  BP     1  0 1.000000e+00
## GO:0033241  BP     1  0 1.000000e+00
## GO:0072365  BP     1  0 1.000000e+00
## GO:0072366  BP     1  0 1.000000e+00
## GO:2000683  BP     1  0 1.000000e+00
## GO:1905957  BP     1  0 1.000000e+00
## GO:1905843  BP     1  0 1.000000e+00
## GO:2001112  BP     1  0 1.000000e+00
## GO:1905802  BP     1  0 1.000000e+00
## GO:2000654  BP     1  0 1.000000e+00
## GO:1905891  BP     1  0 1.000000e+00
## GO:1905894  BP     1  0 1.000000e+00
## GO:1905890  BP     1  0 1.000000e+00
## GO:0002895  BP     1  0 1.000000e+00
## GO:0002646  BP     1  0 1.000000e+00
## GO:0071652  BP     1  0 1.000000e+00
## GO:1903884  BP     1  0 1.000000e+00
## GO:0071643  BP     1  0 1.000000e+00
## GO:1904365  BP     1  0 1.000000e+00
## GO:1904054  BP     1  0 1.000000e+00
## GO:0060694  BP     1  0 1.000000e+00
## GO:1902769  BP     1  0 1.000000e+00
## GO:1904499  BP     1  0 1.000000e+00
## GO:0090318  BP     1  0 1.000000e+00
## GO:0044537  BP     1  0 1.000000e+00
## GO:1903248  BP     1  0 1.000000e+00
## GO:1905468  BP     1  0 1.000000e+00
## GO:0106064  BP     1  0 1.000000e+00
## GO:0048683  BP     1  0 1.000000e+00
## GO:1904596  BP     1  0 1.000000e+00
## GO:1901232  BP     1  0 1.000000e+00
## GO:1902311  BP     1  0 1.000000e+00
## GO:1900010  BP     1  0 1.000000e+00
## GO:1904041  BP     1  0 1.000000e+00
## GO:1901494  BP     1  0 1.000000e+00
## GO:2000431  BP     1  0 1.000000e+00
## GO:0140018  BP     1  0 1.000000e+00
## GO:1903627  BP     1  0 1.000000e+00
## GO:1901834  BP     1  0 1.000000e+00
## GO:1903072  BP     1  0 1.000000e+00
## GO:1902477  BP     1  0 1.000000e+00
## GO:0050690  BP     1  0 1.000000e+00
## GO:1905413  BP     1  0 1.000000e+00
## GO:2000970  BP     1  0 1.000000e+00
## GO:1905787  BP     1  0 1.000000e+00
## GO:1905767  BP     1  0 1.000000e+00
## GO:1904335  BP     1  0 1.000000e+00
## GO:0060735  BP     1  0 1.000000e+00
## GO:0042665  BP     1  0 1.000000e+00
## GO:0051543  BP     1  0 1.000000e+00
## GO:0140049  BP     1  0 1.000000e+00
## GO:2000800  BP     1  0 1.000000e+00
## GO:1903916  BP     1  0 1.000000e+00
## GO:1905364  BP     1  0 1.000000e+00
## GO:1904987  BP     1  0 1.000000e+00
## GO:1904904  BP     1  0 1.000000e+00
## GO:2000419  BP     1  0 1.000000e+00
## GO:1902250  BP     1  0 1.000000e+00
## GO:0034106  BP     1  0 1.000000e+00
## GO:0061930  BP     1  0 1.000000e+00
## GO:1904910  BP     1  0 1.000000e+00
## GO:2000782  BP     1  0 1.000000e+00
## GO:2000861  BP     1  0 1.000000e+00
## GO:1904793  BP     1  0 1.000000e+00
## GO:1905535  BP     1  0 1.000000e+00
## GO:1904735  BP     1  0 1.000000e+00
## GO:0010722  BP     1  0 1.000000e+00
## GO:0110075  BP     1  0 1.000000e+00
## GO:2000702  BP     1  0 1.000000e+00
## GO:2000413  BP     1  0 1.000000e+00
## GO:0120182  BP     1  0 1.000000e+00
## GO:1905942  BP     1  0 1.000000e+00
## GO:1901193  BP     1  0 1.000000e+00
## GO:0050752  BP     1  0 1.000000e+00
## GO:0032644  BP     1  0 1.000000e+00
## GO:0060549  BP     1  0 1.000000e+00
## GO:0060551  BP     1  0 1.000000e+00
## GO:2000733  BP     1  0 1.000000e+00
## GO:1904633  BP     1  0 1.000000e+00
## GO:2000752  BP     1  0 1.000000e+00
## GO:0051946  BP     1  0 1.000000e+00
## GO:0035227  BP     1  0 1.000000e+00
## GO:0120006  BP     1  0 1.000000e+00
## GO:1903282  BP     1  0 1.000000e+00
## GO:1904226  BP     1  0 1.000000e+00
## GO:0072362  BP     1  0 1.000000e+00
## GO:0002631  BP     1  0 1.000000e+00
## GO:1904195  BP     1  0 1.000000e+00
## GO:2000511  BP     1  0 1.000000e+00
## GO:0060901  BP     1  0 1.000000e+00
## GO:0061168  BP     1  0 1.000000e+00
## GO:1901207  BP     1  0 1.000000e+00
## GO:1905853  BP     1  0 1.000000e+00
## GO:1905858  BP     1  0 1.000000e+00
## GO:1904897  BP     1  0 1.000000e+00
## GO:0048176  BP     1  0 1.000000e+00
## GO:0032646  BP     1  0 1.000000e+00
## GO:2001173  BP     1  0 1.000000e+00
## GO:1905435  BP     1  0 1.000000e+00
## GO:0070510  BP     1  0 1.000000e+00
## GO:1903584  BP     1  0 1.000000e+00
## GO:0050666  BP     1  0 1.000000e+00
## GO:1904826  BP     1  0 1.000000e+00
## GO:0002640  BP     1  0 1.000000e+00
## GO:0042669  BP     1  0 1.000000e+00
## GO:0010924  BP     1  0 1.000000e+00
## GO:0050721  BP     1  0 1.000000e+00
## GO:0032658  BP     1  0 1.000000e+00
## GO:0045378  BP     1  0 1.000000e+00
## GO:1903881  BP     1  0 1.000000e+00
## GO:2000492  BP     1  0 1.000000e+00
## GO:1902205  BP     1  0 1.000000e+00
## GO:2000571  BP     1  0 1.000000e+00
## GO:0045405  BP     1  0 1.000000e+00
## GO:1905365  BP     1  0 1.000000e+00
## GO:1902238  BP     1  0 1.000000e+00
## GO:1905924  BP     1  0 1.000000e+00
## GO:1905927  BP     1  0 1.000000e+00
## GO:1904212  BP     1  0 1.000000e+00
## GO:1904201  BP     1  0 1.000000e+00
## GO:1905015  BP     1  0 1.000000e+00
## GO:2000356  BP     1  0 1.000000e+00
## GO:1902076  BP     1  0 1.000000e+00
## GO:0031275  BP     1  0 1.000000e+00
## GO:1903633  BP     1  0 1.000000e+00
## GO:0035490  BP     1  0 1.000000e+00
## GO:1900130  BP     1  0 1.000000e+00
## GO:1903000  BP     1  0 1.000000e+00
## GO:0140075  BP     1  0 1.000000e+00
## GO:1901246  BP     1  0 1.000000e+00
## GO:1903837  BP     1  0 1.000000e+00
## GO:1905610  BP     1  0 1.000000e+00
## GO:0031437  BP     1  0 1.000000e+00
## GO:1902629  BP     1  0 1.000000e+00
## GO:0002616  BP     1  0 1.000000e+00
## GO:0010932  BP     1  0 1.000000e+00
## GO:0034094  BP     1  0 1.000000e+00
## GO:2000709  BP     1  0 1.000000e+00
## GO:2000718  BP     1  0 1.000000e+00
## GO:1905603  BP     1  0 1.000000e+00
## GO:1904838  BP     1  0 1.000000e+00
## GO:2000101  BP     1  0 1.000000e+00
## GO:1904301  BP     1  0 1.000000e+00
## GO:0031494  BP     1  0 1.000000e+00
## GO:1903341  BP     1  0 1.000000e+00
## GO:1905000  BP     1  0 1.000000e+00
## GO:0061295  BP     1  0 1.000000e+00
## GO:0060782  BP     1  0 1.000000e+00
## GO:2000004  BP     1  0 1.000000e+00
## GO:0090095  BP     1  0 1.000000e+00
## GO:2000006  BP     1  0 1.000000e+00
## GO:2000477  BP     1  0 1.000000e+00
## GO:2001074  BP     1  0 1.000000e+00
## GO:1905186  BP     1  0 1.000000e+00
## GO:1905018  BP     1  0 1.000000e+00
## GO:0014006  BP     1  0 1.000000e+00
## GO:0090226  BP     1  0 1.000000e+00
## GO:1905405  BP     1  0 1.000000e+00
## GO:0032888  BP     1  0 1.000000e+00
## GO:0032771  BP     1  0 1.000000e+00
## GO:1905483  BP     1  0 1.000000e+00
## GO:0010797  BP     1  0 1.000000e+00
## GO:2000290  BP     1  0 1.000000e+00
## GO:0070247  BP     1  0 1.000000e+00
## GO:0051394  BP     1  0 1.000000e+00
## GO:0090299  BP     1  0 1.000000e+00
## GO:0061853  BP     1  0 1.000000e+00
## GO:1900073  BP     1  0 1.000000e+00
## GO:1904799  BP     1  0 1.000000e+00
## GO:1902847  BP     1  0 1.000000e+00
## GO:0099162  BP     1  0 1.000000e+00
## GO:2000428  BP     1  0 1.000000e+00
## GO:0080164  BP     1  0 1.000000e+00
## GO:1903314  BP     1  0 1.000000e+00
## GO:1900123  BP     1  0 1.000000e+00
## GO:1901229  BP     1  0 1.000000e+00
## GO:1902838  BP     1  0 1.000000e+00
## GO:0032242  BP     1  0 1.000000e+00
## GO:0097298  BP     1  0 1.000000e+00
## GO:1903027  BP     1  0 1.000000e+00
## GO:2000595  BP     1  0 1.000000e+00
## GO:1905591  BP     1  0 1.000000e+00
## GO:1904118  BP     1  0 1.000000e+00
## GO:1904242  BP     1  0 1.000000e+00
## GO:1905089  BP     1  0 1.000000e+00
## GO:0120093  BP     1  0 1.000000e+00
## GO:0002849  BP     1  0 1.000000e+00
## GO:1905162  BP     1  0 1.000000e+00
## GO:2000185  BP     1  0 1.000000e+00
## GO:1905693  BP     1  0 1.000000e+00
## GO:2001144  BP     1  0 1.000000e+00
## GO:1904005  BP     1  0 1.000000e+00
## GO:1900161  BP     1  0 1.000000e+00
## GO:2001163  BP     1  0 1.000000e+00
## GO:2000150  BP     1  0 1.000000e+00
## GO:2000161  BP     1  0 1.000000e+00
## GO:2000159  BP     1  0 1.000000e+00
## GO:2000167  BP     1  0 1.000000e+00
## GO:2000163  BP     1  0 1.000000e+00
## GO:2000165  BP     1  0 1.000000e+00
## GO:2000148  BP     1  0 1.000000e+00
## GO:1903888  BP     1  0 1.000000e+00
## GO:1905421  BP     1  0 1.000000e+00
## GO:1900098  BP     1  0 1.000000e+00
## GO:1903906  BP     1  0 1.000000e+00
## GO:0097036  BP     1  0 1.000000e+00
## GO:1905219  BP     1  0 1.000000e+00
## GO:0010967  BP     1  0 1.000000e+00
## GO:1904451  BP     1  0 1.000000e+00
## GO:2000631  BP     1  0 1.000000e+00
## GO:1905518  BP     1  0 1.000000e+00
## GO:0099161  BP     1  0 1.000000e+00
## GO:2000634  BP     1  0 1.000000e+00
## GO:2000174  BP     1  0 1.000000e+00
## GO:1902211  BP     1  0 1.000000e+00
## GO:0070881  BP     1  0 1.000000e+00
## GO:0035565  BP     1  0 1.000000e+00
## GO:2000361  BP     1  0 1.000000e+00
## GO:0010732  BP     1  0 1.000000e+00
## GO:1903636  BP     1  0 1.000000e+00
## GO:1903570  BP     1  0 1.000000e+00
## GO:1904370  BP     1  0 1.000000e+00
## GO:1904508  BP     1  0 1.000000e+00
## GO:1902363  BP     1  0 1.000000e+00
## GO:1904806  BP     1  0 1.000000e+00
## GO:1903216  BP     1  0 1.000000e+00
## GO:0080163  BP     1  0 1.000000e+00
## GO:1900483  BP     1  0 1.000000e+00
## GO:0150073  BP     1  0 1.000000e+00
## GO:1900276  BP     1  0 1.000000e+00
## GO:1905271  BP     1  0 1.000000e+00
## GO:0010849  BP     1  0 1.000000e+00
## GO:0120071  BP     1  0 1.000000e+00
## GO:1903167  BP     1  0 1.000000e+00
## GO:1903302  BP     1  0 1.000000e+00
## GO:1904984  BP     1  0 1.000000e+00
## GO:0099158  BP     1  0 1.000000e+00
## GO:2000532  BP     1  0 1.000000e+00
## GO:1903402  BP     1  0 1.000000e+00
## GO:2001151  BP     1  0 1.000000e+00
## GO:1900062  BP     1  0 1.000000e+00
## GO:1902153  BP     1  0 1.000000e+00
## GO:1902151  BP     1  0 1.000000e+00
## GO:1901419  BP     1  0 1.000000e+00
## GO:1902145  BP     1  0 1.000000e+00
## GO:0060222  BP     1  0 1.000000e+00
## GO:2001017  BP     1  0 1.000000e+00
## GO:1901954  BP     1  0 1.000000e+00
## GO:1905432  BP     1  0 1.000000e+00
## GO:2000206  BP     1  0 1.000000e+00
## GO:2000200  BP     1  0 1.000000e+00
## GO:2000280  BP     1  0 1.000000e+00
## GO:1902890  BP     1  0 1.000000e+00
## GO:2000067  BP     1  0 1.000000e+00
## GO:0061190  BP     1  0 1.000000e+00
## GO:1904409  BP     1  0 1.000000e+00
## GO:1904573  BP     1  0 1.000000e+00
## GO:1904790  BP     1  0 1.000000e+00
## GO:1905512  BP     1  0 1.000000e+00
## GO:0038009  BP     1  0 1.000000e+00
## GO:1902504  BP     1  0 1.000000e+00
## GO:0060380  BP     1  0 1.000000e+00
## GO:0014861  BP     1  0 1.000000e+00
## GO:1904318  BP     1  0 1.000000e+00
## GO:1905899  BP     1  0 1.000000e+00
## GO:1905380  BP     1  0 1.000000e+00
## GO:1904675  BP     1  0 1.000000e+00
## GO:1901304  BP     1  0 1.000000e+00
## GO:2000754  BP     1  0 1.000000e+00
## GO:0032887  BP     1  0 1.000000e+00
## GO:0120068  BP     1  0 1.000000e+00
## GO:0061105  BP     1  0 1.000000e+00
## GO:0060542  BP     1  0 1.000000e+00
## GO:1904458  BP     1  0 1.000000e+00
## GO:1904494  BP     1  0 1.000000e+00
## GO:1900383  BP     1  0 1.000000e+00
## GO:0060092  BP     1  0 1.000000e+00
## GO:0098694  BP     1  0 1.000000e+00
## GO:0003068  BP     1  0 1.000000e+00
## GO:0003026  BP     1  0 1.000000e+00
## GO:0003027  BP     1  0 1.000000e+00
## GO:0001979  BP     1  0 1.000000e+00
## GO:0003070  BP     1  0 1.000000e+00
## GO:1904032  BP     1  0 1.000000e+00
## GO:0032207  BP     1  0 1.000000e+00
## GO:1901580  BP     1  0 1.000000e+00
## GO:1905547  BP     1  0 1.000000e+00
## GO:2001049  BP     1  0 1.000000e+00
## GO:2000730  BP     1  0 1.000000e+00
## GO:0090067  BP     1  0 1.000000e+00
## GO:1903123  BP     1  0 1.000000e+00
## GO:1905021  BP     1  0 1.000000e+00
## GO:0050758  BP     1  0 1.000000e+00
## GO:2000398  BP     1  0 1.000000e+00
## GO:1904441  BP     1  0 1.000000e+00
## GO:0060165  BP     1  0 1.000000e+00
## GO:0002843  BP     1  0 1.000000e+00
## GO:0034179  BP     1  0 1.000000e+00
## GO:0034147  BP     1  0 1.000000e+00
## GO:0000409  BP     1  0 1.000000e+00
## GO:2001207  BP     1  0 1.000000e+00
## GO:0000431  BP     1  0 1.000000e+00
## GO:0060807  BP     1  0 1.000000e+00
## GO:0061216  BP     1  0 1.000000e+00
## GO:0021918  BP     1  0 1.000000e+00
## GO:1902064  BP     1  0 1.000000e+00
## GO:0021920  BP     1  0 1.000000e+00
## GO:0044324  BP     1  0 1.000000e+00
## GO:1904298  BP     1  0 1.000000e+00
## GO:1903618  BP     1  0 1.000000e+00
## GO:1904187  BP     1  0 1.000000e+00
## GO:1901392  BP     1  0 1.000000e+00
## GO:1901398  BP     1  0 1.000000e+00
## GO:0043143  BP     1  0 1.000000e+00
## GO:0043556  BP     1  0 1.000000e+00
## GO:1904803  BP     1  0 1.000000e+00
## GO:0036496  BP     1  0 1.000000e+00
## GO:1904073  BP     1  0 1.000000e+00
## GO:0034344  BP     1  0 1.000000e+00
## GO:1903176  BP     1  0 1.000000e+00
## GO:0051510  BP     1  0 1.000000e+00
## GO:0034255  BP     1  0 1.000000e+00
## GO:2000061  BP     1  0 1.000000e+00
## GO:0050675  BP     1  0 1.000000e+00
## GO:1900719  BP     1  0 1.000000e+00
## GO:0032889  BP     1  0 1.000000e+00
## GO:1990736  BP     1  0 1.000000e+00
## GO:0003117  BP     1  0 1.000000e+00
## GO:0003116  BP     1  0 1.000000e+00
## GO:1904971  BP     1  0 1.000000e+00
## GO:0071581  BP     1  0 1.000000e+00
## GO:0032976  BP     1  0 1.000000e+00
## GO:0000735  BP     1  0 1.000000e+00
## GO:0097018  BP     1  0 1.000000e+00
## GO:0061441  BP     1  0 1.000000e+00
## GO:0072127  BP     1  0 1.000000e+00
## GO:0072129  BP     1  0 1.000000e+00
## GO:0072128  BP     1  0 1.000000e+00
## GO:0072130  BP     1  0 1.000000e+00
## GO:0072055  BP     1  0 1.000000e+00
## GO:0035623  BP     1  0 1.000000e+00
## GO:0044722  BP     1  0 1.000000e+00
## GO:0097291  BP     1  0 1.000000e+00
## GO:0061150  BP     1  0 1.000000e+00
## GO:0072184  BP     1  0 1.000000e+00
## GO:0071932  BP     1  0 1.000000e+00
## GO:1990636  BP     1  0 1.000000e+00
## GO:1902691  BP     1  0 1.000000e+00
## GO:1904565  BP     1  0 1.000000e+00
## GO:1903496  BP     1  0 1.000000e+00
## GO:1905242  BP     1  0 1.000000e+00
## GO:1904681  BP     1  0 1.000000e+00
## GO:0036275  BP     1  0 1.000000e+00
## GO:1904386  BP     1  0 1.000000e+00
## GO:0061481  BP     1  0 1.000000e+00
## GO:0009737  BP     1  0 1.000000e+00
## GO:1903717  BP     1  0 1.000000e+00
## GO:1904550  BP     1  0 1.000000e+00
## GO:1905217  BP     1  0 1.000000e+00
## GO:0097184  BP     1  0 1.000000e+00
## GO:1901561  BP     1  0 1.000000e+00
## GO:0070781  BP     1  0 1.000000e+00
## GO:1901594  BP     1  0 1.000000e+00
## GO:0034465  BP     1  0 1.000000e+00
## GO:0106096  BP     1  0 1.000000e+00
## GO:0010157  BP     1  0 1.000000e+00
## GO:0046687  BP     1  0 1.000000e+00
## GO:0120126  BP     1  0 1.000000e+00
## GO:0051414  BP     1  0 1.000000e+00
## GO:0046898  BP     1  0 1.000000e+00
## GO:1901328  BP     1  0 1.000000e+00
## GO:0052567  BP     1  0 1.000000e+00
## GO:0052550  BP     1  0 1.000000e+00
## GO:1903494  BP     1  0 1.000000e+00
## GO:1904629  BP     1  0 1.000000e+00
## GO:0090648  BP     1  0 1.000000e+00
## GO:1901557  BP     1  0 1.000000e+00
## GO:1905395  BP     1  0 1.000000e+00
## GO:0050826  BP     1  0 1.000000e+00
## GO:1990790  BP     1  0 1.000000e+00
## GO:1904631  BP     1  0 1.000000e+00
## GO:1905630  BP     1  0 1.000000e+00
## GO:0014876  BP     1  0 1.000000e+00
## GO:1990418  BP     1  0 1.000000e+00
## GO:0097396  BP     1  0 1.000000e+00
## GO:0070543  BP     1  0 1.000000e+00
## GO:0072704  BP     1  0 1.000000e+00
## GO:0031427  BP     1  0 1.000000e+00
## GO:0072702  BP     1  0 1.000000e+00
## GO:1904608  BP     1  0 1.000000e+00
## GO:0035713  BP     1  0 1.000000e+00
## GO:0010335  BP     1  0 1.000000e+00
## GO:1990834  BP     1  0 1.000000e+00
## GO:0010193  BP     1  0 1.000000e+00
## GO:1905711  BP     1  0 1.000000e+00
## GO:1903165  BP     1  0 1.000000e+00
## GO:1904585  BP     1  0 1.000000e+00
## GO:1905834  BP     1  0 1.000000e+00
## GO:1901545  BP     1  0 1.000000e+00
## GO:0009639  BP     1  0 1.000000e+00
## GO:1904014  BP     1  0 1.000000e+00
## GO:0010272  BP     1  0 1.000000e+00
## GO:0000304  BP     1  0 1.000000e+00
## GO:1904383  BP     1  0 1.000000e+00
## GO:1905225  BP     1  0 1.000000e+00
## GO:0097068  BP     1  0 1.000000e+00
## GO:1990267  BP     1  0 1.000000e+00
## GO:0034014  BP     1  0 1.000000e+00
## GO:1904576  BP     1  0 1.000000e+00
## GO:0034342  BP     1  0 1.000000e+00
## GO:0034516  BP     1  0 1.000000e+00
## GO:1990785  BP     1  0 1.000000e+00
## GO:1904567  BP     1  0 1.000000e+00
## GO:0097601  BP     1  0 1.000000e+00
## GO:0046551  BP     1  0 1.000000e+00
## GO:0097473  BP     1  0 1.000000e+00
## GO:0060223  BP     1  0 1.000000e+00
## GO:0090242  BP     1  0 1.000000e+00
## GO:0098958  BP     1  0 1.000000e+00
## GO:0099083  BP     1  0 1.000000e+00
## GO:0098925  BP     1  0 1.000000e+00
## GO:0000301  BP     1  0 1.000000e+00
## GO:0061451  BP     1  0 1.000000e+00
## GO:0061452  BP     1  0 1.000000e+00
## GO:0046154  BP     1  0 1.000000e+00
## GO:0021660  BP     1  0 1.000000e+00
## GO:0021666  BP     1  0 1.000000e+00
## GO:0021664  BP     1  0 1.000000e+00
## GO:0021572  BP     1  0 1.000000e+00
## GO:0021594  BP     1  0 1.000000e+00
## GO:0009231  BP     1  0 1.000000e+00
## GO:0006771  BP     1  0 1.000000e+00
## GO:0060461  BP     1  0 1.000000e+00
## GO:0003226  BP     1  0 1.000000e+00
## GO:0021509  BP     1  0 1.000000e+00
## GO:0048364  BP     1  0 1.000000e+00
## GO:0010053  BP     1  0 1.000000e+00
## GO:0080147  BP     1  0 1.000000e+00
## GO:0048765  BP     1  0 1.000000e+00
## GO:0048767  BP     1  0 1.000000e+00
## GO:0010015  BP     1  0 1.000000e+00
## GO:0022622  BP     1  0 1.000000e+00
## GO:0060367  BP     1  0 1.000000e+00
## GO:1901053  BP     1  0 1.000000e+00
## GO:1990654  BP     1  0 1.000000e+00
## GO:0016261  BP     1  0 1.000000e+00
## GO:0097056  BP     1  0 1.000000e+00
## GO:0071527  BP     1  0 1.000000e+00
## GO:0060879  BP     1  0 1.000000e+00
## GO:0070684  BP     1  0 1.000000e+00
## GO:0061108  BP     1  0 1.000000e+00
## GO:0061682  BP     1  0 1.000000e+00
## GO:0035986  BP     1  0 1.000000e+00
## GO:1904937  BP     1  0 1.000000e+00
## GO:0008052  BP     1  0 1.000000e+00
## GO:0038098  BP     1  0 1.000000e+00
## GO:0042137  BP     1  0 1.000000e+00
## GO:0038101  BP     1  0 1.000000e+00
## GO:0002552  BP     1  0 1.000000e+00
## GO:0060096  BP     1  0 1.000000e+00
## GO:0071573  BP     1  0 1.000000e+00
## GO:0015913  BP     1  0 1.000000e+00
## GO:0015912  BP     1  0 1.000000e+00
## GO:0019290  BP     1  0 1.000000e+00
## GO:0009237  BP     1  0 1.000000e+00
## GO:1990256  BP     1  0 1.000000e+00
## GO:0035638  BP     1  0 1.000000e+00
## GO:0072428  BP     1  0 1.000000e+00
## GO:1903759  BP     1  0 1.000000e+00
## GO:0003172  BP     1  0 1.000000e+00
## GO:0003185  BP     1  0 1.000000e+00
## GO:0003235  BP     1  0 1.000000e+00
## GO:0003236  BP     1  0 1.000000e+00
## GO:0071170  BP     1  0 1.000000e+00
## GO:0071171  BP     1  0 1.000000e+00
## GO:0014813  BP     1  0 1.000000e+00
## GO:0036060  BP     1  0 1.000000e+00
## GO:1990832  BP     1  0 1.000000e+00
## GO:0032458  BP     1  0 1.000000e+00
## GO:0034462  BP     1  0 1.000000e+00
## GO:0014806  BP     1  0 1.000000e+00
## GO:0014895  BP     1  0 1.000000e+00
## GO:0003271  BP     1  0 1.000000e+00
## GO:0120049  BP     1  0 1.000000e+00
## GO:0016076  BP     1  0 1.000000e+00
## GO:0006408  BP     1  0 1.000000e+00
## GO:0043251  BP     1  0 1.000000e+00
## GO:0070715  BP     1  0 1.000000e+00
## GO:1990091  BP     1  0 1.000000e+00
## GO:0071720  BP     1  0 1.000000e+00
## GO:0021917  BP     1  0 1.000000e+00
## GO:0006061  BP     1  0 1.000000e+00
## GO:0006062  BP     1  0 1.000000e+00
## GO:0072168  BP     1  0 1.000000e+00
## GO:0072167  BP     1  0 1.000000e+00
## GO:0072169  BP     1  0 1.000000e+00
## GO:0072100  BP     1  0 1.000000e+00
## GO:0072101  BP     1  0 1.000000e+00
## GO:0046692  BP     1  0 1.000000e+00
## GO:0007321  BP     1  0 1.000000e+00
## GO:0035037  BP     1  0 1.000000e+00
## GO:0007291  BP     1  0 1.000000e+00
## GO:0048137  BP     1  0 1.000000e+00
## GO:0106048  BP     1  0 1.000000e+00
## GO:0032919  BP     1  0 1.000000e+00
## GO:0006669  BP     1  0 1.000000e+00
## GO:0021512  BP     1  0 1.000000e+00
## GO:0021519  BP     1  0 1.000000e+00
## GO:1905355  BP     1  0 1.000000e+00
## GO:0060345  BP     1  0 1.000000e+00
## GO:0000388  BP     1  0 1.000000e+00
## GO:0048792  BP     1  0 1.000000e+00
## GO:0120045  BP     1  0 1.000000e+00
## GO:0006463  BP     1  0 1.000000e+00
## GO:0046272  BP     1  0 1.000000e+00
## GO:0009810  BP     1  0 1.000000e+00
## GO:0014825  BP     1  0 1.000000e+00
## GO:0120064  BP     1  0 1.000000e+00
## GO:0000732  BP     1  0 1.000000e+00
## GO:1990170  BP     1  0 1.000000e+00
## GO:1990359  BP     1  0 1.000000e+00
## GO:1990046  BP     1  0 1.000000e+00
## GO:0044345  BP     1  0 1.000000e+00
## GO:0060661  BP     1  0 1.000000e+00
## GO:0022012  BP     1  0 1.000000e+00
## GO:0010814  BP     1  0 1.000000e+00
## GO:1990772  BP     1  0 1.000000e+00
## GO:1990793  BP     1  0 1.000000e+00
## GO:1903701  BP     1  0 1.000000e+00
## GO:0061753  BP     1  0 1.000000e+00
## GO:0021763  BP     1  0 1.000000e+00
## GO:1902358  BP     1  0 1.000000e+00
## GO:0019418  BP     1  0 1.000000e+00
## GO:0070221  BP     1  0 1.000000e+00
## GO:0019417  BP     1  0 1.000000e+00
## GO:0071109  BP     1  0 1.000000e+00
## GO:0060578  BP     1  0 1.000000e+00
## GO:0039521  BP     1  0 1.000000e+00
## GO:0036268  BP     1  0 1.000000e+00
## GO:0098725  BP     1  0 1.000000e+00
## GO:0060386  BP     1  0 1.000000e+00
## GO:0008039  BP     1  0 1.000000e+00
## GO:0071911  BP     1  0 1.000000e+00
## GO:1990656  BP     1  0 1.000000e+00
## GO:0001680  BP     1  0 1.000000e+00
## GO:0034414  BP     1  0 1.000000e+00
## GO:0002939  BP     1  0 1.000000e+00
## GO:1990983  BP     1  0 1.000000e+00
## GO:0002943  BP     1  0 1.000000e+00
## GO:0000968  BP     1  0 1.000000e+00
## GO:0000971  BP     1  0 1.000000e+00
## GO:0035600  BP     1  0 1.000000e+00
## GO:0071528  BP     1  0 1.000000e+00
## GO:0009304  BP     1  0 1.000000e+00
## GO:0042797  BP     1  0 1.000000e+00
## GO:0002926  BP     1  0 1.000000e+00
## GO:0002127  BP     1  0 1.000000e+00
## GO:0042412  BP     1  0 1.000000e+00
## GO:0070075  BP     1  0 1.000000e+00
## GO:0032203  BP     1  0 1.000000e+00
## GO:0097698  BP     1  0 1.000000e+00
## GO:0097393  BP     1  0 1.000000e+00
## GO:0097394  BP     1  0 1.000000e+00
## GO:0061976  BP     1  0 1.000000e+00
## GO:0002932  BP     1  0 1.000000e+00
## GO:0038032  BP     1  0 1.000000e+00
## GO:0006386  BP     1  0 1.000000e+00
## GO:0046901  BP     1  0 1.000000e+00
## GO:0016109  BP     1  0 1.000000e+00
## GO:0040040  BP     1  0 1.000000e+00
## GO:0009229  BP     1  0 1.000000e+00
## GO:0009088  BP     1  0 1.000000e+00
## GO:0015826  BP     1  0 1.000000e+00
## GO:0006214  BP     1  0 1.000000e+00
## GO:0050757  BP     1  0 1.000000e+00
## GO:0035364  BP     1  0 1.000000e+00
## GO:1990789  BP     1  0 1.000000e+00
## GO:0038194  BP     1  0 1.000000e+00
## GO:0002255  BP     1  0 1.000000e+00
## GO:0002462  BP     1  0 1.000000e+00
## GO:0002413  BP     1  0 1.000000e+00
## GO:0034130  BP     1  0 1.000000e+00
## GO:0034150  BP     1  0 1.000000e+00
## GO:0034158  BP     1  0 1.000000e+00
## GO:1905327  BP     1  0 1.000000e+00
## GO:0098629  BP     1  0 1.000000e+00
## GO:0006392  BP     1  0 1.000000e+00
## GO:0001172  BP     1  0 1.000000e+00
## GO:0001113  BP     1  0 1.000000e+00
## GO:0001174  BP     1  0 1.000000e+00
## GO:1905313  BP     1  0 1.000000e+00
## GO:0090010  BP     1  0 1.000000e+00
## GO:0036366  BP     1  0 1.000000e+00
## GO:0002333  BP     1  0 1.000000e+00
## GO:0002332  BP     1  0 1.000000e+00
## GO:0009386  BP     1  0 1.000000e+00
## GO:0042000  BP     1  0 1.000000e+00
## GO:0044053  BP     1  0 1.000000e+00
## GO:0051808  BP     1  0 1.000000e+00
## GO:0007185  BP     1  0 1.000000e+00
## GO:0006313  BP     1  0 1.000000e+00
## GO:0005993  BP     1  0 1.000000e+00
## GO:0070413  BP     1  0 1.000000e+00
## GO:0035674  BP     1  0 1.000000e+00
## GO:1904274  BP     1  0 1.000000e+00
## GO:0018979  BP     1  0 1.000000e+00
## GO:0010054  BP     1  0 1.000000e+00
## GO:0048764  BP     1  0 1.000000e+00
## GO:0036153  BP     1  0 1.000000e+00
## GO:0036510  BP     1  0 1.000000e+00
## GO:0021642  BP     1  0 1.000000e+00
## GO:0021639  BP     1  0 1.000000e+00
## GO:0032023  BP     1  0 1.000000e+00
## GO:0003327  BP     1  0 1.000000e+00
## GO:0072560  BP     1  0 1.000000e+00
## GO:0034343  BP     1  0 1.000000e+00
## GO:0006571  BP     1  0 1.000000e+00
## GO:0032194  BP     1  0 1.000000e+00
## GO:1901006  BP     1  0 1.000000e+00
## GO:1901004  BP     1  0 1.000000e+00
## GO:0019628  BP     1  0 1.000000e+00
## GO:1903118  BP     1  0 1.000000e+00
## GO:0072192  BP     1  0 1.000000e+00
## GO:0014849  BP     1  0 1.000000e+00
## GO:0072105  BP     1  0 1.000000e+00
## GO:0006218  BP     1  0 1.000000e+00
## GO:0046108  BP     1  0 1.000000e+00
## GO:0006780  BP     1  0 1.000000e+00
## GO:0050674  BP     1  0 1.000000e+00
## GO:1903709  BP     1  0 1.000000e+00
## GO:0044558  BP     1  0 1.000000e+00
## GO:0043181  BP     1  0 1.000000e+00
## GO:0015676  BP     1  0 1.000000e+00
## GO:0097699  BP     1  0 1.000000e+00
## GO:0036323  BP     1  0 1.000000e+00
## GO:0010232  BP     1  0 1.000000e+00
## GO:0001987  BP     1  0 1.000000e+00
## GO:0002014  BP     1  0 1.000000e+00
## GO:1990029  BP     1  0 1.000000e+00
## GO:0060843  BP     1  0 1.000000e+00
## GO:0007371  BP     1  0 1.000000e+00
## GO:0060580  BP     1  0 1.000000e+00
## GO:0036113  BP     1  0 1.000000e+00
## GO:0061782  BP     1  0 1.000000e+00
## GO:0099050  BP     1  0 1.000000e+00
## GO:0097712  BP     1  0 1.000000e+00
## GO:0090522  BP     1  0 1.000000e+00
## GO:0090119  BP     1  0 1.000000e+00
## GO:0110077  BP     1  0 1.000000e+00
## GO:0060116  BP     1  0 1.000000e+00
## GO:0046745  BP     1  0 1.000000e+00
## GO:0046786  BP     1  0 1.000000e+00
## GO:0007495  BP     1  0 1.000000e+00
## GO:0007522  BP     1  0 1.000000e+00
## GO:0042820  BP     1  0 1.000000e+00
## GO:0010189  BP     1  0 1.000000e+00
## GO:0030704  BP     1  0 1.000000e+00
## GO:0046111  BP     1  0 1.000000e+00
## GO:0016123  BP     1  0 1.000000e+00
## GO:1901827  BP     1  0 1.000000e+00
## GO:1901825  BP     1  0 1.000000e+00
## GO:0022006  BP     1  0 1.000000e+00
## GO:0042351  BP     2  0 1.000000e+00
## GO:0009257  BP     2  0 1.000000e+00
## GO:0009258  BP     2  0 1.000000e+00
## GO:0046361  BP     2  0 1.000000e+00
## GO:0050428  BP     2  0 1.000000e+00
## GO:0018960  BP     2  0 1.000000e+00
## GO:0015866  BP     2  0 1.000000e+00
## GO:0006756  BP     2  0 1.000000e+00
## GO:0002358  BP     2  0 1.000000e+00
## GO:0002352  BP     2  0 1.000000e+00
## GO:0080120  BP     2  0 1.000000e+00
## GO:0071586  BP     2  0 1.000000e+00
## GO:0002362  BP     2  0 1.000000e+00
## GO:0002302  BP     2  0 1.000000e+00
## GO:0035698  BP     2  0 1.000000e+00
## GO:0002305  BP     2  0 1.000000e+00
## GO:0035781  BP     2  0 1.000000e+00
## GO:0046341  BP     2  0 1.000000e+00
## GO:0046381  BP     2  0 1.000000e+00
## GO:0019478  BP     2  0 1.000000e+00
## GO:0046177  BP     2  0 1.000000e+00
## GO:0019521  BP     2  0 1.000000e+00
## GO:0070178  BP     2  0 1.000000e+00
## GO:0090618  BP     2  0 1.000000e+00
## GO:0044727  BP     2  0 1.000000e+00
## GO:0044028  BP     2  0 1.000000e+00
## GO:0042262  BP     2  0 1.000000e+00
## GO:0071163  BP     2  0 1.000000e+00
## GO:0045004  BP     2  0 1.000000e+00
## GO:0036292  BP     2  0 1.000000e+00
## GO:1904161  BP     2  0 1.000000e+00
## GO:0038129  BP     2  0 1.000000e+00
## GO:0045210  BP     2  0 1.000000e+00
## GO:1990172  BP     2  0 1.000000e+00
## GO:0070315  BP     2  0 1.000000e+00
## GO:0051319  BP     2  0 1.000000e+00
## GO:0046710  BP     2  0 1.000000e+00
## GO:0046038  BP     2  0 1.000000e+00
## GO:0032472  BP     2  0 1.000000e+00
## GO:0055107  BP     2  0 1.000000e+00
## GO:0055108  BP     2  0 1.000000e+00
## GO:0048211  BP     2  0 1.000000e+00
## GO:0048213  BP     2  0 1.000000e+00
## GO:0060932  BP     2  0 1.000000e+00
## GO:0046709  BP     2  0 1.000000e+00
## GO:0046707  BP     2  0 1.000000e+00
## GO:0002192  BP     2  0 1.000000e+00
## GO:0046041  BP     2  0 1.000000e+00
## GO:0042853  BP     2  0 1.000000e+00
## GO:0046373  BP     2  0 1.000000e+00
## GO:0015882  BP     2  0 1.000000e+00
## GO:0140009  BP     2  0 1.000000e+00
## GO:0070778  BP     2  0 1.000000e+00
## GO:0019452  BP     2  0 1.000000e+00
## GO:0015811  BP     2  0 1.000000e+00
## GO:0097052  BP     2  0 1.000000e+00
## GO:0019477  BP     2  0 1.000000e+00
## GO:0097639  BP     2  0 1.000000e+00
## GO:0046440  BP     2  0 1.000000e+00
## GO:0045204  BP     2  0 1.000000e+00
## GO:0002397  BP     2  0 1.000000e+00
## GO:0018008  BP     2  0 1.000000e+00
## GO:0017198  BP     2  0 1.000000e+00
## GO:0006480  BP     2  0 1.000000e+00
## GO:0006500  BP     2  0 1.000000e+00
## GO:0006740  BP     2  0 1.000000e+00
## GO:0060853  BP     2  0 1.000000e+00
## GO:1902359  BP     2  0 1.000000e+00
## GO:0016267  BP     2  0 1.000000e+00
## GO:0030719  BP     2  0 1.000000e+00
## GO:0003165  BP     2  0 1.000000e+00
## GO:0001188  BP     2  0 1.000000e+00
## GO:0042245  BP     2  0 1.000000e+00
## GO:0010265  BP     2  0 1.000000e+00
## GO:0035712  BP     2  0 1.000000e+00
## GO:0032639  BP     2  0 1.000000e+00
## GO:1903241  BP     2  0 1.000000e+00
## GO:1990569  BP     2  0 1.000000e+00
## GO:0072334  BP     2  0 1.000000e+00
## GO:0006011  BP     2  0 1.000000e+00
## GO:0046398  BP     2  0 1.000000e+00
## GO:0038190  BP     2  0 1.000000e+00
## GO:0038018  BP     2  0 1.000000e+00
## GO:0044332  BP     2  0 1.000000e+00
## GO:0021874  BP     2  0 1.000000e+00
## GO:0061289  BP     2  0 1.000000e+00
## GO:0021560  BP     2  0 1.000000e+00
## GO:0021599  BP     2  0 1.000000e+00
## GO:0021598  BP     2  0 1.000000e+00
## GO:0033277  BP     2  0 1.000000e+00
## GO:0019413  BP     2  0 1.000000e+00
## GO:0019427  BP     2  0 1.000000e+00
## GO:0046356  BP     2  0 1.000000e+00
## GO:0070650  BP     2  0 1.000000e+00
## GO:0071846  BP     2  0 1.000000e+00
## GO:0051695  BP     2  0 1.000000e+00
## GO:0031247  BP     2  0 1.000000e+00
## GO:1905397  BP     2  0 1.000000e+00
## GO:0060466  BP     2  0 1.000000e+00
## GO:0032431  BP     2  0 1.000000e+00
## GO:0002541  BP     2  0 1.000000e+00
## GO:1990051  BP     2  0 1.000000e+00
## GO:0016062  BP     2  0 1.000000e+00
## GO:0009955  BP     2  0 1.000000e+00
## GO:0006168  BP     2  0 1.000000e+00
## GO:0006154  BP     2  0 1.000000e+00
## GO:0071881  BP     2  0 1.000000e+00
## GO:0061104  BP     2  0 1.000000e+00
## GO:0035801  BP     2  0 1.000000e+00
## GO:0035802  BP     2  0 1.000000e+00
## GO:0007527  BP     2  0 1.000000e+00
## GO:0046223  BP     2  0 1.000000e+00
## GO:0046176  BP     2  0 1.000000e+00
## GO:0019520  BP     2  0 1.000000e+00
## GO:0000255  BP     2  0 1.000000e+00
## GO:1905069  BP     2  0 1.000000e+00
## GO:0071929  BP     2  0 1.000000e+00
## GO:0036305  BP     2  0 1.000000e+00
## GO:0097272  BP     2  0 1.000000e+00
## GO:0120077  BP     2  0 1.000000e+00
## GO:0086098  BP     2  0 1.000000e+00
## GO:0002033  BP     2  0 1.000000e+00
## GO:0021506  BP     2  0 1.000000e+00
## GO:0072098  BP     2  0 1.000000e+00
## GO:0098964  BP     2  0 1.000000e+00
## GO:0061760  BP     2  0 1.000000e+00
## GO:0002488  BP     2  0 1.000000e+00
## GO:0002489  BP     2  0 1.000000e+00
## GO:0002479  BP     2  0 1.000000e+00
## GO:0048006  BP     2  0 1.000000e+00
## GO:1900204  BP     2  0 1.000000e+00
## GO:1900205  BP     2  0 1.000000e+00
## GO:0019566  BP     2  0 1.000000e+00
## GO:0042450  BP     2  0 1.000000e+00
## GO:0019547  BP     2  0 1.000000e+00
## GO:0018872  BP     2  0 1.000000e+00
## GO:0060844  BP     2  0 1.000000e+00
## GO:0072021  BP     2  0 1.000000e+00
## GO:0035700  BP     2  0 1.000000e+00
## GO:0090164  BP     2  0 1.000000e+00
## GO:0003290  BP     2  0 1.000000e+00
## GO:0003294  BP     2  0 1.000000e+00
## GO:0060928  BP     2  0 1.000000e+00
## GO:0060922  BP     2  0 1.000000e+00
## GO:0051455  BP     2  0 1.000000e+00
## GO:0051316  BP     2  0 1.000000e+00
## GO:0042667  BP     2  0 1.000000e+00
## GO:0001982  BP     2  0 1.000000e+00
## GO:0042595  BP     2  0 1.000000e+00
## GO:0030573  BP     2  0 1.000000e+00
## GO:0038183  BP     2  0 1.000000e+00
## GO:0042710  BP     2  0 1.000000e+00
## GO:0070980  BP     2  0 1.000000e+00
## GO:0072564  BP     2  0 1.000000e+00
## GO:0060846  BP     2  0 1.000000e+00
## GO:0097101  BP     2  0 1.000000e+00
## GO:0072554  BP     2  0 1.000000e+00
## GO:0031989  BP     2  0 1.000000e+00
## GO:0000494  BP     2  0 1.000000e+00
## GO:0033967  BP     2  0 1.000000e+00
## GO:0034963  BP     2  0 1.000000e+00
## GO:0000495  BP     2  0 1.000000e+00
## GO:0033979  BP     2  0 1.000000e+00
## GO:0034964  BP     2  0 1.000000e+00
## GO:0000493  BP     2  0 1.000000e+00
## GO:0060667  BP     2  0 1.000000e+00
## GO:0009082  BP     2  0 1.000000e+00
## GO:0060854  BP     2  0 1.000000e+00
## GO:0060532  BP     2  0 1.000000e+00
## GO:0060434  BP     2  0 1.000000e+00
## GO:0070342  BP     2  0 1.000000e+00
## GO:0055073  BP     2  0 1.000000e+00
## GO:1990408  BP     2  0 1.000000e+00
## GO:0099093  BP     2  0 1.000000e+00
## GO:1990927  BP     2  0 1.000000e+00
## GO:0016340  BP     2  0 1.000000e+00
## GO:1990092  BP     2  0 1.000000e+00
## GO:0035585  BP     2  0 1.000000e+00
## GO:0060220  BP     2  0 1.000000e+00
## GO:0044338  BP     2  0 1.000000e+00
## GO:0061290  BP     2  0 1.000000e+00
## GO:0044337  BP     2  0 1.000000e+00
## GO:0061324  BP     2  0 1.000000e+00
## GO:0044334  BP     2  0 1.000000e+00
## GO:0044343  BP     2  0 1.000000e+00
## GO:0036451  BP     2  0 1.000000e+00
## GO:0002191  BP     2  0 1.000000e+00
## GO:0110017  BP     2  0 1.000000e+00
## GO:0097309  BP     2  0 1.000000e+00
## GO:0009758  BP     2  0 1.000000e+00
## GO:0140074  BP     2  0 1.000000e+00
## GO:0060936  BP     2  0 1.000000e+00
## GO:0060935  BP     2  0 1.000000e+00
## GO:0003218  BP     2  0 1.000000e+00
## GO:0003245  BP     2  0 1.000000e+00
## GO:0003292  BP     2  0 1.000000e+00
## GO:0035498  BP     2  0 1.000000e+00
## GO:0016121  BP     2  0 1.000000e+00
## GO:0016119  BP     2  0 1.000000e+00
## GO:0052364  BP     2  0 1.000000e+00
## GO:0052360  BP     2  0 1.000000e+00
## GO:0052361  BP     2  0 1.000000e+00
## GO:0052227  BP     2  0 1.000000e+00
## GO:0120078  BP     2  0 1.000000e+00
## GO:1902298  BP     2  0 1.000000e+00
## GO:0090678  BP     2  0 1.000000e+00
## GO:0060974  BP     2  0 1.000000e+00
## GO:0140039  BP     2  0 1.000000e+00
## GO:0045168  BP     2  0 1.000000e+00
## GO:0060995  BP     2  0 1.000000e+00
## GO:0060764  BP     2  0 1.000000e+00
## GO:0072204  BP     2  0 1.000000e+00
## GO:0003366  BP     2  0 1.000000e+00
## GO:0043605  BP     2  0 1.000000e+00
## GO:0071477  BP     2  0 1.000000e+00
## GO:0072338  BP     2  0 1.000000e+00
## GO:1904613  BP     2  0 1.000000e+00
## GO:1903577  BP     2  0 1.000000e+00
## GO:0071469  BP     2  0 1.000000e+00
## GO:1903413  BP     2  0 1.000000e+00
## GO:1904976  BP     2  0 1.000000e+00
## GO:0071460  BP     2  0 1.000000e+00
## GO:0071279  BP     2  0 1.000000e+00
## GO:0072738  BP     2  0 1.000000e+00
## GO:1990786  BP     2  0 1.000000e+00
## GO:1990859  BP     2  0 1.000000e+00
## GO:0036018  BP     2  0 1.000000e+00
## GO:0071412  BP     2  0 1.000000e+00
## GO:0071377  BP     2  0 1.000000e+00
## GO:0071403  BP     2  0 1.000000e+00
## GO:0071413  BP     2  0 1.000000e+00
## GO:0071352  BP     2  0 1.000000e+00
## GO:0098759  BP     2  0 1.000000e+00
## GO:0071283  BP     2  0 1.000000e+00
## GO:0071395  BP     2  0 1.000000e+00
## GO:0072750  BP     2  0 1.000000e+00
## GO:0036245  BP     2  0 1.000000e+00
## GO:0097238  BP     2  0 1.000000e+00
## GO:0071389  BP     2  0 1.000000e+00
## GO:0071226  BP     2  0 1.000000e+00
## GO:1904009  BP     2  0 1.000000e+00
## GO:0071315  BP     2  0 1.000000e+00
## GO:0071506  BP     2  0 1.000000e+00
## GO:0071874  BP     2  0 1.000000e+00
## GO:1905546  BP     2  0 1.000000e+00
## GO:0016036  BP     2  0 1.000000e+00
## GO:0071393  BP     2  0 1.000000e+00
## GO:0072752  BP     2  0 1.000000e+00
## GO:0071461  BP     2  0 1.000000e+00
## GO:1904482  BP     2  0 1.000000e+00
## GO:1904117  BP     2  0 1.000000e+00
## GO:0071307  BP     2  0 1.000000e+00
## GO:0042631  BP     2  0 1.000000e+00
## GO:0034224  BP     2  0 1.000000e+00
## GO:0097533  BP     2  0 1.000000e+00
## GO:0021551  BP     2  0 1.000000e+00
## GO:0002508  BP     2  0 1.000000e+00
## GO:0090222  BP     2  0 1.000000e+00
## GO:1905373  BP     2  0 1.000000e+00
## GO:1905371  BP     2  0 1.000000e+00
## GO:0021691  BP     2  0 1.000000e+00
## GO:0021693  BP     2  0 1.000000e+00
## GO:0021935  BP     2  0 1.000000e+00
## GO:0021687  BP     2  0 1.000000e+00
## GO:0021589  BP     2  0 1.000000e+00
## GO:0061300  BP     2  0 1.000000e+00
## GO:0021893  BP     2  0 1.000000e+00
## GO:0060067  BP     2  0 1.000000e+00
## GO:0071954  BP     2  0 1.000000e+00
## GO:0038116  BP     2  0 1.000000e+00
## GO:0021842  BP     2  0 1.000000e+00
## GO:0021836  BP     2  0 1.000000e+00
## GO:0036518  BP     2  0 1.000000e+00
## GO:0038188  BP     2  0 1.000000e+00
## GO:0072356  BP     2  0 1.000000e+00
## GO:0002545  BP     2  0 1.000000e+00
## GO:0034378  BP     2  0 1.000000e+00
## GO:0036090  BP     2  0 1.000000e+00
## GO:0060197  BP     2  0 1.000000e+00
## GO:0061386  BP     2  0 1.000000e+00
## GO:0048674  BP     2  0 1.000000e+00
## GO:1990192  BP     2  0 1.000000e+00
## GO:1990765  BP     2  0 1.000000e+00
## GO:0048749  BP     2  0 1.000000e+00
## GO:1990708  BP     2  0 1.000000e+00
## GO:0032601  BP     2  0 1.000000e+00
## GO:0098705  BP     2  0 1.000000e+00
## GO:0003335  BP     2  0 1.000000e+00
## GO:0003169  BP     2  0 1.000000e+00
## GO:0061378  BP     2  0 1.000000e+00
## GO:0021966  BP     2  0 1.000000e+00
## GO:0046226  BP     2  0 1.000000e+00
## GO:0006601  BP     2  0 1.000000e+00
## GO:0006600  BP     2  0 1.000000e+00
## GO:0015881  BP     2  0 1.000000e+00
## GO:0038041  BP     2  0 1.000000e+00
## GO:0042335  BP     2  0 1.000000e+00
## GO:0019343  BP     2  0 1.000000e+00
## GO:0042883  BP     2  0 1.000000e+00
## GO:0006423  BP     2  0 1.000000e+00
## GO:0060327  BP     2  0 1.000000e+00
## GO:0019858  BP     2  0 1.000000e+00
## GO:0046967  BP     2  0 1.000000e+00
## GO:0043316  BP     2  0 1.000000e+00
## GO:0046056  BP     2  0 1.000000e+00
## GO:0006233  BP     2  0 1.000000e+00
## GO:0046072  BP     2  0 1.000000e+00
## GO:0071550  BP     2  0 1.000000e+00
## GO:0009814  BP     2  0 1.000000e+00
## GO:0060232  BP     2  0 1.000000e+00
## GO:0044565  BP     2  0 1.000000e+00
## GO:0098939  BP     2  0 1.000000e+00
## GO:0046092  BP     2  0 1.000000e+00
## GO:0009159  BP     2  0 1.000000e+00
## GO:0002032  BP     2  0 1.000000e+00
## GO:0050911  BP     2  0 1.000000e+00
## GO:0001581  BP     2  0 1.000000e+00
## GO:0001582  BP     2  0 1.000000e+00
## GO:0042496  BP     2  0 1.000000e+00
## GO:0009590  BP     2  0 1.000000e+00
## GO:0070483  BP     2  0 1.000000e+00
## GO:0050973  BP     2  0 1.000000e+00
## GO:0003127  BP     2  0 1.000000e+00
## GO:0032499  BP     2  0 1.000000e+00
## GO:0042495  BP     2  0 1.000000e+00
## GO:0035545  BP     2  0 1.000000e+00
## GO:0050787  BP     2  0 1.000000e+00
## GO:0018894  BP     2  0 1.000000e+00
## GO:0060598  BP     2  0 1.000000e+00
## GO:0046452  BP     2  0 1.000000e+00
## GO:0021840  BP     2  0 1.000000e+00
## GO:0072156  BP     2  0 1.000000e+00
## GO:0070839  BP     2  0 1.000000e+00
## GO:0019408  BP     2  0 1.000000e+00
## GO:1904835  BP     2  0 1.000000e+00
## GO:0097681  BP     2  0 1.000000e+00
## GO:0019085  BP     2  0 1.000000e+00
## GO:0007439  BP     2  0 1.000000e+00
## GO:0035803  BP     2  0 1.000000e+00
## GO:0051542  BP     2  0 1.000000e+00
## GO:0048611  BP     2  0 1.000000e+00
## GO:1990401  BP     2  0 1.000000e+00
## GO:0021831  BP     2  0 1.000000e+00
## GO:0061443  BP     2  0 1.000000e+00
## GO:0020028  BP     2  0 1.000000e+00
## GO:0007493  BP     2  0 1.000000e+00
## GO:0007113  BP     2  0 1.000000e+00
## GO:0016320  BP     2  0 1.000000e+00
## GO:0061857  BP     2  0 1.000000e+00
## GO:0097111  BP     2  0 1.000000e+00
## GO:0048388  BP     2  0 1.000000e+00
## GO:0097750  BP     2  0 1.000000e+00
## GO:0097498  BP     2  0 1.000000e+00
## GO:0086100  BP     2  0 1.000000e+00
## GO:1990775  BP     2  0 1.000000e+00
## GO:0034230  BP     2  0 1.000000e+00
## GO:0075506  BP     2  0 1.000000e+00
## GO:0018307  BP     2  0 1.000000e+00
## GO:1905223  BP     2  0 1.000000e+00
## GO:0003349  BP     2  0 1.000000e+00
## GO:0060939  BP     2  0 1.000000e+00
## GO:0060938  BP     2  0 1.000000e+00
## GO:0060983  BP     2  0 1.000000e+00
## GO:0036334  BP     2  0 1.000000e+00
## GO:0042418  BP     2  0 1.000000e+00
## GO:0060690  BP     2  0 1.000000e+00
## GO:0060738  BP     2  0 1.000000e+00
## GO:0006696  BP     2  0 1.000000e+00
## GO:0008204  BP     2  0 1.000000e+00
## GO:0042275  BP     2  0 1.000000e+00
## GO:0034117  BP     2  0 1.000000e+00
## GO:0038162  BP     2  0 1.000000e+00
## GO:0014846  BP     2  0 1.000000e+00
## GO:0048560  BP     2  0 1.000000e+00
## GO:0006343  BP     2  0 1.000000e+00
## GO:0060857  BP     2  0 1.000000e+00
## GO:0034087  BP     2  0 1.000000e+00
## GO:0019043  BP     2  0 1.000000e+00
## GO:0016332  BP     2  0 1.000000e+00
## GO:0006711  BP     2  0 1.000000e+00
## GO:0001927  BP     2  0 1.000000e+00
## GO:0035261  BP     2  0 1.000000e+00
## GO:0021754  BP     2  0 1.000000e+00
## GO:0016488  BP     2  0 1.000000e+00
## GO:0016487  BP     2  0 1.000000e+00
## GO:0010142  BP     2  0 1.000000e+00
## GO:0097156  BP     2  0 1.000000e+00
## GO:1904606  BP     2  0 1.000000e+00
## GO:0010430  BP     2  0 1.000000e+00
## GO:1903173  BP     2  0 1.000000e+00
## GO:0036115  BP     2  0 1.000000e+00
## GO:0007147  BP     2  0 1.000000e+00
## GO:0035038  BP     2  0 1.000000e+00
## GO:0030237  BP     2  0 1.000000e+00
## GO:0070627  BP     2  0 1.000000e+00
## GO:0098707  BP     2  0 1.000000e+00
## GO:0060595  BP     2  0 1.000000e+00
## GO:0035607  BP     2  0 1.000000e+00
## GO:0072387  BP     2  0 1.000000e+00
## GO:0042727  BP     2  0 1.000000e+00
## GO:0021508  BP     2  0 1.000000e+00
## GO:0009397  BP     2  0 1.000000e+00
## GO:0002266  BP     2  0 1.000000e+00
## GO:0002268  BP     2  0 1.000000e+00
## GO:0035922  BP     2  0 1.000000e+00
## GO:0021897  BP     2  0 1.000000e+00
## GO:0021896  BP     2  0 1.000000e+00
## GO:0021592  BP     2  0 1.000000e+00
## GO:0060364  BP     2  0 1.000000e+00
## GO:0030389  BP     2  0 1.000000e+00
## GO:0046370  BP     2  0 1.000000e+00
## GO:0006683  BP     2  0 1.000000e+00
## GO:0090663  BP     2  0 1.000000e+00
## GO:0009450  BP     2  0 1.000000e+00
## GO:0061534  BP     2  0 1.000000e+00
## GO:0002304  BP     2  0 1.000000e+00
## GO:0061552  BP     2  0 1.000000e+00
## GO:0010706  BP     2  0 1.000000e+00
## GO:0051866  BP     2  0 1.000000e+00
## GO:0000349  BP     2  0 1.000000e+00
## GO:0000350  BP     2  0 1.000000e+00
## GO:0106091  BP     2  0 1.000000e+00
## GO:0001575  BP     2  0 1.000000e+00
## GO:0021759  BP     2  0 1.000000e+00
## GO:0072011  BP     2  0 1.000000e+00
## GO:0006713  BP     2  0 1.000000e+00
## GO:0006043  BP     2  0 1.000000e+00
## GO:0019255  BP     2  0 1.000000e+00
## GO:0044381  BP     2  0 1.000000e+00
## GO:0006679  BP     2  0 1.000000e+00
## GO:0019391  BP     2  0 1.000000e+00
## GO:0019551  BP     2  0 1.000000e+00
## GO:0019550  BP     2  0 1.000000e+00
## GO:0006425  BP     2  0 1.000000e+00
## GO:0006424  BP     2  0 1.000000e+00
## GO:0034775  BP     2  0 1.000000e+00
## GO:0046166  BP     2  0 1.000000e+00
## GO:0046327  BP     2  0 1.000000e+00
## GO:0019563  BP     2  0 1.000000e+00
## GO:0006127  BP     2  0 1.000000e+00
## GO:0019264  BP     2  0 1.000000e+00
## GO:0019265  BP     2  0 1.000000e+00
## GO:0009441  BP     2  0 1.000000e+00
## GO:0046836  BP     2  0 1.000000e+00
## GO:0061723  BP     2  0 1.000000e+00
## GO:0006097  BP     2  0 1.000000e+00
## GO:0038158  BP     2  0 1.000000e+00
## GO:0060014  BP     2  0 1.000000e+00
## GO:0003430  BP     2  0 1.000000e+00
## GO:0097117  BP     2  0 1.000000e+00
## GO:1905748  BP     2  0 1.000000e+00
## GO:0006784  BP     2  0 1.000000e+00
## GO:0046160  BP     2  0 1.000000e+00
## GO:0006788  BP     2  0 1.000000e+00
## GO:0061872  BP     2  0 1.000000e+00
## GO:0061868  BP     2  0 1.000000e+00
## GO:0061017  BP     2  0 1.000000e+00
## GO:0036333  BP     2  0 1.000000e+00
## GO:0070869  BP     2  0 1.000000e+00
## GO:0070829  BP     2  0 1.000000e+00
## GO:0021577  BP     2  0 1.000000e+00
## GO:0001694  BP     2  0 1.000000e+00
## GO:0000105  BP     2  0 1.000000e+00
## GO:0015817  BP     2  0 1.000000e+00
## GO:0006427  BP     2  0 1.000000e+00
## GO:0071894  BP     2  0 1.000000e+00
## GO:0097676  BP     2  0 1.000000e+00
## GO:0034971  BP     2  0 1.000000e+00
## GO:0034970  BP     2  0 1.000000e+00
## GO:0036413  BP     2  0 1.000000e+00
## GO:2000775  BP     2  0 1.000000e+00
## GO:0072355  BP     2  0 1.000000e+00
## GO:0035408  BP     2  0 1.000000e+00
## GO:0035574  BP     2  0 1.000000e+00
## GO:1990258  BP     2  0 1.000000e+00
## GO:0043418  BP     2  0 1.000000e+00
## GO:0042309  BP     2  0 1.000000e+00
## GO:0044029  BP     2  0 1.000000e+00
## GO:0042539  BP     2  0 1.000000e+00
## GO:0043103  BP     2  0 1.000000e+00
## GO:0002436  BP     2  0 1.000000e+00
## GO:0002380  BP     2  0 1.000000e+00
## GO:0002415  BP     2  0 1.000000e+00
## GO:0051389  BP     2  0 1.000000e+00
## GO:0060821  BP     2  0 1.000000e+00
## GO:0060817  BP     2  0 1.000000e+00
## GO:0061379  BP     2  0 1.000000e+00
## GO:0001544  BP     2  0 1.000000e+00
## GO:0098582  BP     2  0 1.000000e+00
## GO:0052746  BP     2  0 1.000000e+00
## GO:1901143  BP     2  0 1.000000e+00
## GO:0052047  BP     2  0 1.000000e+00
## GO:0035722  BP     2  0 1.000000e+00
## GO:0032618  BP     2  0 1.000000e+00
## GO:0038110  BP     2  0 1.000000e+00
## GO:0032625  BP     2  0 1.000000e+00
## GO:0072619  BP     2  0 1.000000e+00
## GO:0045105  BP     2  0 1.000000e+00
## GO:0048389  BP     2  0 1.000000e+00
## GO:0090675  BP     2  0 1.000000e+00
## GO:0060574  BP     2  0 1.000000e+00
## GO:0061582  BP     2  0 1.000000e+00
## GO:0120054  BP     2  0 1.000000e+00
## GO:0060752  BP     2  0 1.000000e+00
## GO:0002041  BP     2  0 1.000000e+00
## GO:0015688  BP     2  0 1.000000e+00
## GO:0048250  BP     2  0 1.000000e+00
## GO:0018283  BP     2  0 1.000000e+00
## GO:0006550  BP     2  0 1.000000e+00
## GO:0006549  BP     2  0 1.000000e+00
## GO:0006428  BP     2  0 1.000000e+00
## GO:0018262  BP     2  0 1.000000e+00
## GO:1902767  BP     2  0 1.000000e+00
## GO:0042339  BP     2  0 1.000000e+00
## GO:0072004  BP     2  0 1.000000e+00
## GO:0072071  BP     2  0 1.000000e+00
## GO:0072135  BP     2  0 1.000000e+00
## GO:0072195  BP     2  0 1.000000e+00
## GO:0034276  BP     2  0 1.000000e+00
## GO:0034275  BP     2  0 1.000000e+00
## GO:0019516  BP     2  0 1.000000e+00
## GO:0005989  BP     2  0 1.000000e+00
## GO:0005988  BP     2  0 1.000000e+00
## GO:0046478  BP     2  0 1.000000e+00
## GO:0051878  BP     2  0 1.000000e+00
## GO:0046331  BP     2  0 1.000000e+00
## GO:0048372  BP     2  0 1.000000e+00
## GO:0048377  BP     2  0 1.000000e+00
## GO:0060490  BP     2  0 1.000000e+00
## GO:0060599  BP     2  0 1.000000e+00
## GO:0035026  BP     2  0 1.000000e+00
## GO:0098583  BP     2  0 1.000000e+00
## GO:0097166  BP     2  0 1.000000e+00
## GO:0009098  BP     2  0 1.000000e+00
## GO:0006429  BP     2  0 1.000000e+00
## GO:0061757  BP     2  0 1.000000e+00
## GO:0050902  BP     2  0 1.000000e+00
## GO:1901750  BP     2  0 1.000000e+00
## GO:1901748  BP     2  0 1.000000e+00
## GO:0036367  BP     2  0 1.000000e+00
## GO:1990379  BP     2  0 1.000000e+00
## GO:0010877  BP     2  0 1.000000e+00
## GO:0009106  BP     2  0 1.000000e+00
## GO:0015920  BP     2  0 1.000000e+00
## GO:0034439  BP     2  0 1.000000e+00
## GO:0042160  BP     2  0 1.000000e+00
## GO:0042161  BP     2  0 1.000000e+00
## GO:2001303  BP     2  0 1.000000e+00
## GO:2001302  BP     2  0 1.000000e+00
## GO:2001301  BP     2  0 1.000000e+00
## GO:2001300  BP     2  0 1.000000e+00
## GO:0061141  BP     2  0 1.000000e+00
## GO:0061145  BP     2  0 1.000000e+00
## GO:1990183  BP     2  0 1.000000e+00
## GO:0002518  BP     2  0 1.000000e+00
## GO:0097022  BP     2  0 1.000000e+00
## GO:0097534  BP     2  0 1.000000e+00
## GO:0097535  BP     2  0 1.000000e+00
## GO:0009085  BP     2  0 1.000000e+00
## GO:0019878  BP     2  0 1.000000e+00
## GO:0006554  BP     2  0 1.000000e+00
## GO:0015819  BP     2  0 1.000000e+00
## GO:2001311  BP     2  0 1.000000e+00
## GO:0051977  BP     2  0 1.000000e+00
## GO:0000389  BP     2  0 1.000000e+00
## GO:0031990  BP     2  0 1.000000e+00
## GO:0010609  BP     2  0 1.000000e+00
## GO:1903830  BP     2  0 1.000000e+00
## GO:0051659  BP     2  0 1.000000e+00
## GO:0099403  BP     2  0 1.000000e+00
## GO:0072658  BP     2  0 1.000000e+00
## GO:0072660  BP     2  0 1.000000e+00
## GO:0043007  BP     2  0 1.000000e+00
## GO:1990145  BP     2  0 1.000000e+00
## GO:0019100  BP     2  0 1.000000e+00
## GO:2001293  BP     2  0 1.000000e+00
## GO:0060615  BP     2  0 1.000000e+00
## GO:0061373  BP     2  0 1.000000e+00
## GO:0021767  BP     2  0 1.000000e+00
## GO:0033364  BP     2  0 1.000000e+00
## GO:0071626  BP     2  0 1.000000e+00
## GO:0008358  BP     2  0 1.000000e+00
## GO:0021526  BP     2  0 1.000000e+00
## GO:0036034  BP     2  0 1.000000e+00
## GO:0060031  BP     2  0 1.000000e+00
## GO:0001579  BP     2  0 1.000000e+00
## GO:0010705  BP     2  0 1.000000e+00
## GO:0044778  BP     2  0 1.000000e+00
## GO:0043060  BP     2  0 1.000000e+00
## GO:0010789  BP     2  0 1.000000e+00
## GO:0006583  BP     2  0 1.000000e+00
## GO:0097324  BP     2  0 1.000000e+00
## GO:0030187  BP     2  0 1.000000e+00
## GO:0030186  BP     2  0 1.000000e+00
## GO:0097753  BP     2  0 1.000000e+00
## GO:1904211  BP     2  0 1.000000e+00
## GO:0001766  BP     2  0 1.000000e+00
## GO:0042361  BP     2  0 1.000000e+00
## GO:0022601  BP     2  0 1.000000e+00
## GO:1901147  BP     2  0 1.000000e+00
## GO:0060915  BP     2  0 1.000000e+00
## GO:0007509  BP     2  0 1.000000e+00
## GO:0060809  BP     2  0 1.000000e+00
## GO:0072181  BP     2  0 1.000000e+00
## GO:0052419  BP     2  0 1.000000e+00
## GO:0052416  BP     2  0 1.000000e+00
## GO:0052229  BP     2  0 1.000000e+00
## GO:0052214  BP     2  0 1.000000e+00
## GO:0018282  BP     2  0 1.000000e+00
## GO:0072218  BP     2  0 1.000000e+00
## GO:0072185  BP     2  0 1.000000e+00
## GO:0090094  BP     2  0 1.000000e+00
## GO:0072186  BP     2  0 1.000000e+00
## GO:0072278  BP     2  0 1.000000e+00
## GO:0072313  BP     2  0 1.000000e+00
## GO:0072312  BP     2  0 1.000000e+00
## GO:0072249  BP     2  0 1.000000e+00
## GO:0072248  BP     2  0 1.000000e+00
## GO:0072136  BP     2  0 1.000000e+00
## GO:0035502  BP     2  0 1.000000e+00
## GO:0072233  BP     2  0 1.000000e+00
## GO:0051323  BP     2  0 1.000000e+00
## GO:0006431  BP     2  0 1.000000e+00
## GO:0051958  BP     2  0 1.000000e+00
## GO:0097089  BP     2  0 1.000000e+00
## GO:0019242  BP     2  0 1.000000e+00
## GO:1990428  BP     2  0 1.000000e+00
## GO:0090634  BP     2  0 1.000000e+00
## GO:0060152  BP     2  0 1.000000e+00
## GO:0072382  BP     2  0 1.000000e+00
## GO:0031930  BP     2  0 1.000000e+00
## GO:0090615  BP     2  0 1.000000e+00
## GO:0090149  BP     2  0 1.000000e+00
## GO:1990613  BP     2  0 1.000000e+00
## GO:0070096  BP     2  0 1.000000e+00
## GO:0006850  BP     2  0 1.000000e+00
## GO:0070901  BP     2  0 1.000000e+00
## GO:0070124  BP     2  0 1.000000e+00
## GO:1990456  BP     2  0 1.000000e+00
## GO:1990505  BP     2  0 1.000000e+00
## GO:0000087  BP     2  0 1.000000e+00
## GO:0007079  BP     2  0 1.000000e+00
## GO:0051329  BP     2  0 1.000000e+00
## GO:0000089  BP     2  0 1.000000e+00
## GO:1990426  BP     2  0 1.000000e+00
## GO:0099404  BP     2  0 1.000000e+00
## GO:0051228  BP     2  0 1.000000e+00
## GO:0098886  BP     2  0 1.000000e+00
## GO:0044867  BP     2  0 1.000000e+00
## GO:0044866  BP     2  0 1.000000e+00
## GO:0044870  BP     2  0 1.000000e+00
## GO:0039526  BP     2  0 1.000000e+00
## GO:0039519  BP     2  0 1.000000e+00
## GO:0016098  BP     2  0 1.000000e+00
## GO:0044035  BP     2  0 1.000000e+00
## GO:1902581  BP     2  0 1.000000e+00
## GO:1902583  BP     2  0 1.000000e+00
## GO:0044033  BP     2  0 1.000000e+00
## GO:1902594  BP     2  0 1.000000e+00
## GO:1990967  BP     2  0 1.000000e+00
## GO:0061763  BP     2  0 1.000000e+00
## GO:0007521  BP     2  0 1.000000e+00
## GO:0043387  BP     2  0 1.000000e+00
## GO:0048627  BP     2  0 1.000000e+00
## GO:1990764  BP     2  0 1.000000e+00
## GO:0031038  BP     2  0 1.000000e+00
## GO:0018931  BP     2  0 1.000000e+00
## GO:0090420  BP     2  0 1.000000e+00
## GO:0002769  BP     2  0 1.000000e+00
## GO:0002519  BP     2  0 1.000000e+00
## GO:0043629  BP     2  0 1.000000e+00
## GO:0052403  BP     2  0 1.000000e+00
## GO:0044869  BP     2  0 1.000000e+00
## GO:0044871  BP     2  0 1.000000e+00
## GO:0046725  BP     2  0 1.000000e+00
## GO:1903892  BP     2  0 1.000000e+00
## GO:2000349  BP     2  0 1.000000e+00
## GO:0043377  BP     2  0 1.000000e+00
## GO:1905775  BP     2  0 1.000000e+00
## GO:1905642  BP     2  0 1.000000e+00
## GO:1905450  BP     2  0 1.000000e+00
## GO:1904021  BP     2  0 1.000000e+00
## GO:1900477  BP     2  0 1.000000e+00
## GO:1903895  BP     2  0 1.000000e+00
## GO:1900235  BP     2  0 1.000000e+00
## GO:0002037  BP     2  0 1.000000e+00
## GO:0034125  BP     2  0 1.000000e+00
## GO:1902689  BP     2  0 1.000000e+00
## GO:0051134  BP     2  0 1.000000e+00
## GO:1904782  BP     2  0 1.000000e+00
## GO:1902367  BP     2  0 1.000000e+00
## GO:0046832  BP     2  0 1.000000e+00
## GO:1900369  BP     2  0 1.000000e+00
## GO:1904476  BP     2  0 1.000000e+00
## GO:2001107  BP     2  0 1.000000e+00
## GO:1900148  BP     2  0 1.000000e+00
## GO:2001189  BP     2  0 1.000000e+00
## GO:0045751  BP     2  0 1.000000e+00
## GO:2000054  BP     2  0 1.000000e+00
## GO:1903919  BP     2  0 1.000000e+00
## GO:1902569  BP     2  0 1.000000e+00
## GO:0001971  BP     2  0 1.000000e+00
## GO:1905675  BP     2  0 1.000000e+00
## GO:1902870  BP     2  0 1.000000e+00
## GO:0002590  BP     2  0 1.000000e+00
## GO:0002587  BP     2  0 1.000000e+00
## GO:1900215  BP     2  0 1.000000e+00
## GO:1900218  BP     2  0 1.000000e+00
## GO:1902257  BP     2  0 1.000000e+00
## GO:1900139  BP     2  0 1.000000e+00
## GO:1902960  BP     2  0 1.000000e+00
## GO:1905246  BP     2  0 1.000000e+00
## GO:0061889  BP     2  0 1.000000e+00
## GO:1904093  BP     2  0 1.000000e+00
## GO:2000813  BP     2  0 1.000000e+00
## GO:0060313  BP     2  0 1.000000e+00
## GO:1900155  BP     2  0 1.000000e+00
## GO:0031549  BP     2  0 1.000000e+00
## GO:0090191  BP     2  0 1.000000e+00
## GO:1904878  BP     2  0 1.000000e+00
## GO:1901220  BP     2  0 1.000000e+00
## GO:0062044  BP     2  0 1.000000e+00
## GO:0106135  BP     2  0 1.000000e+00
## GO:1905179  BP     2  0 1.000000e+00
## GO:0051892  BP     2  0 1.000000e+00
## GO:1901303  BP     2  0 1.000000e+00
## GO:0052199  BP     2  0 1.000000e+00
## GO:2001287  BP     2  0 1.000000e+00
## GO:0060354  BP     2  0 1.000000e+00
## GO:1905916  BP     2  0 1.000000e+00
## GO:0003252  BP     2  0 1.000000e+00
## GO:0033633  BP     2  0 1.000000e+00
## GO:0045763  BP     2  0 1.000000e+00
## GO:1903973  BP     2  0 1.000000e+00
## GO:0021941  BP     2  0 1.000000e+00
## GO:1904715  BP     2  0 1.000000e+00
## GO:2000342  BP     2  0 1.000000e+00
## GO:2001226  BP     2  0 1.000000e+00
## GO:1901383  BP     2  0 1.000000e+00
## GO:0061188  BP     2  0 1.000000e+00
## GO:1902340  BP     2  0 1.000000e+00
## GO:0042323  BP     2  0 1.000000e+00
## GO:1904027  BP     2  0 1.000000e+00
## GO:0045957  BP     2  0 1.000000e+00
## GO:0001869  BP     2  0 1.000000e+00
## GO:1905204  BP     2  0 1.000000e+00
## GO:1905408  BP     2  0 1.000000e+00
## GO:0060302  BP     2  0 1.000000e+00
## GO:1903650  BP     2  0 1.000000e+00
## GO:0150066  BP     2  0 1.000000e+00
## GO:2000293  BP     2  0 1.000000e+00
## GO:0032076  BP     2  0 1.000000e+00
## GO:2000642  BP     2  0 1.000000e+00
## GO:0042664  BP     2  0 1.000000e+00
## GO:1903382  BP     2  0 1.000000e+00
## GO:0060702  BP     2  0 1.000000e+00
## GO:1901551  BP     2  0 1.000000e+00
## GO:1902567  BP     2  0 1.000000e+00
## GO:2000417  BP     2  0 1.000000e+00
## GO:1905006  BP     2  0 1.000000e+00
## GO:1905277  BP     2  0 1.000000e+00
## GO:0090212  BP     2  0 1.000000e+00
## GO:1903141  BP     2  0 1.000000e+00
## GO:1903016  BP     2  0 1.000000e+00
## GO:1905778  BP     2  0 1.000000e+00
## GO:0010716  BP     2  0 1.000000e+00
## GO:0042480  BP     2  0 1.000000e+00
## GO:2000314  BP     2  0 1.000000e+00
## GO:1901318  BP     2  0 1.000000e+00
## GO:0120061  BP     2  0 1.000000e+00
## GO:1903640  BP     2  0 1.000000e+00
## GO:1904305  BP     2  0 1.000000e+00
## GO:0002635  BP     2  0 1.000000e+00
## GO:1900170  BP     2  0 1.000000e+00
## GO:1904024  BP     2  0 1.000000e+00
## GO:1900924  BP     2  0 1.000000e+00
## GO:0045818  BP     2  0 1.000000e+00
## GO:0071623  BP     2  0 1.000000e+00
## GO:0060400  BP     2  0 1.000000e+00
## GO:2000490  BP     2  0 1.000000e+00
## GO:0110091  BP     2  0 1.000000e+00
## GO:1901315  BP     2  0 1.000000e+00
## GO:0000415  BP     2  0 1.000000e+00
## GO:1900110  BP     2  0 1.000000e+00
## GO:1901726  BP     2  0 1.000000e+00
## GO:0033183  BP     2  0 1.000000e+00
## GO:1903384  BP     2  0 1.000000e+00
## GO:1902072  BP     2  0 1.000000e+00
## GO:2000521  BP     2  0 1.000000e+00
## GO:1903796  BP     2  0 1.000000e+00
## GO:0010920  BP     2  0 1.000000e+00
## GO:0033624  BP     2  0 1.000000e+00
## GO:0045720  BP     2  0 1.000000e+00
## GO:2001045  BP     2  0 1.000000e+00
## GO:0045077  BP     2  0 1.000000e+00
## GO:0050712  BP     2  0 1.000000e+00
## GO:0045081  BP     2  0 1.000000e+00
## GO:0032701  BP     2  0 1.000000e+00
## GO:0032707  BP     2  0 1.000000e+00
## GO:0070104  BP     2  0 1.000000e+00
## GO:0045796  BP     2  0 1.000000e+00
## GO:1904730  BP     2  0 1.000000e+00
## GO:0010949  BP     2  0 1.000000e+00
## GO:1901253  BP     2  0 1.000000e+00
## GO:1903609  BP     2  0 1.000000e+00
## GO:1902173  BP     2  0 1.000000e+00
## GO:0051548  BP     2  0 1.000000e+00
## GO:2000393  BP     2  0 1.000000e+00
## GO:0032804  BP     2  0 1.000000e+00
## GO:1901250  BP     2  0 1.000000e+00
## GO:1901624  BP     2  0 1.000000e+00
## GO:0090367  BP     2  0 1.000000e+00
## GO:1902227  BP     2  0 1.000000e+00
## GO:1904908  BP     2  0 1.000000e+00
## GO:1902436  BP     2  0 1.000000e+00
## GO:0032764  BP     2  0 1.000000e+00
## GO:0070667  BP     2  0 1.000000e+00
## GO:1904465  BP     2  0 1.000000e+00
## GO:0072305  BP     2  0 1.000000e+00
## GO:2000791  BP     2  0 1.000000e+00
## GO:2000740  BP     2  0 1.000000e+00
## GO:1902963  BP     2  0 1.000000e+00
## GO:2000629  BP     2  0 1.000000e+00
## GO:1904527  BP     2  0 1.000000e+00
## GO:2000575  BP     2  0 1.000000e+00
## GO:0090298  BP     2  0 1.000000e+00
## GO:0000961  BP     2  0 1.000000e+00
## GO:0045976  BP     2  0 1.000000e+00
## GO:0070256  BP     2  0 1.000000e+00
## GO:0014736  BP     2  0 1.000000e+00
## GO:0014740  BP     2  0 1.000000e+00
## GO:0050925  BP     2  0 1.000000e+00
## GO:0061076  BP     2  0 1.000000e+00
## GO:1904397  BP     2  0 1.000000e+00
## GO:1904456  BP     2  0 1.000000e+00
## GO:0090024  BP     2  0 1.000000e+00
## GO:0043314  BP     2  0 1.000000e+00
## GO:0045659  BP     2  0 1.000000e+00
## GO:1905259  BP     2  0 1.000000e+00
## GO:1900176  BP     2  0 1.000000e+00
## GO:1900146  BP     2  0 1.000000e+00
## GO:0032240  BP     2  0 1.000000e+00
## GO:0042489  BP     2  0 1.000000e+00
## GO:1900142  BP     2  0 1.000000e+00
## GO:2000355  BP     2  0 1.000000e+00
## GO:2000276  BP     2  0 1.000000e+00
## GO:2000227  BP     2  0 1.000000e+00
## GO:0033140  BP     2  0 1.000000e+00
## GO:2000469  BP     2  0 1.000000e+00
## GO:0060101  BP     2  0 1.000000e+00
## GO:1900240  BP     2  0 1.000000e+00
## GO:0010512  BP     2  0 1.000000e+00
## GO:1900138  BP     2  0 1.000000e+00
## GO:0034445  BP     2  0 1.000000e+00
## GO:2000584  BP     2  0 1.000000e+00
## GO:1902283  BP     2  0 1.000000e+00
## GO:0031393  BP     2  0 1.000000e+00
## GO:0032307  BP     2  0 1.000000e+00
## GO:1903094  BP     2  0 1.000000e+00
## GO:1905524  BP     2  0 1.000000e+00
## GO:0090285  BP     2  0 1.000000e+00
## GO:1901094  BP     2  0 1.000000e+00
## GO:1904815  BP     2  0 1.000000e+00
## GO:1903565  BP     2  0 1.000000e+00
## GO:1901091  BP     2  0 1.000000e+00
## GO:1903614  BP     2  0 1.000000e+00
## GO:1901898  BP     2  0 1.000000e+00
## GO:1903970  BP     2  0 1.000000e+00
## GO:1902867  BP     2  0 1.000000e+00
## GO:0046671  BP     2  0 1.000000e+00
## GO:0060701  BP     2  0 1.000000e+00
## GO:1902443  BP     2  0 1.000000e+00
## GO:1905747  BP     2  0 1.000000e+00
## GO:0090341  BP     2  0 1.000000e+00
## GO:1900191  BP     2  0 1.000000e+00
## GO:1900229  BP     2  0 1.000000e+00
## GO:0048632  BP     2  0 1.000000e+00
## GO:1904348  BP     2  0 1.000000e+00
## GO:2000098  BP     2  0 1.000000e+00
## GO:0032416  BP     2  0 1.000000e+00
## GO:0090233  BP     2  0 1.000000e+00
## GO:1904049  BP     2  0 1.000000e+00
## GO:0048688  BP     2  0 1.000000e+00
## GO:1905839  BP     2  0 1.000000e+00
## GO:1904743  BP     2  0 1.000000e+00
## GO:1904534  BP     2  0 1.000000e+00
## GO:0120191  BP     2  0 1.000000e+00
## GO:2000805  BP     2  0 1.000000e+00
## GO:2000225  BP     2  0 1.000000e+00
## GO:0051886  BP     2  0 1.000000e+00
## GO:0002644  BP     2  0 1.000000e+00
## GO:0070171  BP     2  0 1.000000e+00
## GO:0032912  BP     2  0 1.000000e+00
## GO:2001202  BP     2  0 1.000000e+00
## GO:1902010  BP     2  0 1.000000e+00
## GO:0032057  BP     2  0 1.000000e+00
## GO:0070895  BP     2  0 1.000000e+00
## GO:1904691  BP     2  0 1.000000e+00
## GO:0001808  BP     2  0 1.000000e+00
## GO:2000157  BP     2  0 1.000000e+00
## GO:0070473  BP     2  0 1.000000e+00
## GO:1904046  BP     2  0 1.000000e+00
## GO:1905931  BP     2  0 1.000000e+00
## GO:2001213  BP     2  0 1.000000e+00
## GO:1903946  BP     2  0 1.000000e+00
## GO:0010903  BP     2  0 1.000000e+00
## GO:0070563  BP     2  0 1.000000e+00
## GO:0071583  BP     2  0 1.000000e+00
## GO:0071582  BP     2  0 1.000000e+00
## GO:0072134  BP     2  0 1.000000e+00
## GO:0032902  BP     2  0 1.000000e+00
## GO:0014034  BP     2  0 1.000000e+00
## GO:0021997  BP     2  0 1.000000e+00
## GO:1902988  BP     2  0 1.000000e+00
## GO:0021985  BP     2  0 1.000000e+00
## GO:0036483  BP     2  0 1.000000e+00
## GO:0036482  BP     2  0 1.000000e+00
## GO:0021812  BP     2  0 1.000000e+00
## GO:0010813  BP     2  0 1.000000e+00
## GO:0021995  BP     2  0 1.000000e+00
## GO:0045212  BP     2  0 1.000000e+00
## GO:0098968  BP     2  0 1.000000e+00
## GO:0070946  BP     2  0 1.000000e+00
## GO:0015675  BP     2  0 1.000000e+00
## GO:0060658  BP     2  0 1.000000e+00
## GO:0033484  BP     2  0 1.000000e+00
## GO:0002537  BP     2  0 1.000000e+00
## GO:0030185  BP     2  0 1.000000e+00
## GO:0090293  BP     2  0 1.000000e+00
## GO:0001079  BP     2  0 1.000000e+00
## GO:0051620  BP     2  0 1.000000e+00
## GO:0043585  BP     2  0 1.000000e+00
## GO:0060032  BP     2  0 1.000000e+00
## GO:0071031  BP     2  0 1.000000e+00
## GO:0071030  BP     2  0 1.000000e+00
## GO:0031022  BP     2  0 1.000000e+00
## GO:0031081  BP     2  0 1.000000e+00
## GO:0051664  BP     2  0 1.000000e+00
## GO:0071049  BP     2  0 1.000000e+00
## GO:0071048  BP     2  0 1.000000e+00
## GO:0000294  BP     2  0 1.000000e+00
## GO:0015949  BP     2  0 1.000000e+00
## GO:0017126  BP     2  0 1.000000e+00
## GO:0046940  BP     2  0 1.000000e+00
## GO:0042766  BP     2  0 1.000000e+00
## GO:1901255  BP     2  0 1.000000e+00
## GO:0000717  BP     2  0 1.000000e+00
## GO:0009227  BP     2  0 1.000000e+00
## GO:0021623  BP     2  0 1.000000e+00
## GO:0021622  BP     2  0 1.000000e+00
## GO:1900673  BP     2  0 1.000000e+00
## GO:0007314  BP     2  0 1.000000e+00
## GO:0007309  BP     2  0 1.000000e+00
## GO:0007308  BP     2  0 1.000000e+00
## GO:0001555  BP     2  0 1.000000e+00
## GO:0021633  BP     2  0 1.000000e+00
## GO:0001743  BP     2  0 1.000000e+00
## GO:0046619  BP     2  0 1.000000e+00
## GO:0003404  BP     2  0 1.000000e+00
## GO:0021769  BP     2  0 1.000000e+00
## GO:1901377  BP     2  0 1.000000e+00
## GO:0060488  BP     2  0 1.000000e+00
## GO:0007231  BP     2  0 1.000000e+00
## GO:0043932  BP     2  0 1.000000e+00
## GO:0001552  BP     2  0 1.000000e+00
## GO:0035846  BP     2  0 1.000000e+00
## GO:0046724  BP     2  0 1.000000e+00
## GO:0035552  BP     2  0 1.000000e+00
## GO:0003326  BP     2  0 1.000000e+00
## GO:0003312  BP     2  0 1.000000e+00
## GO:0003329  BP     2  0 1.000000e+00
## GO:0036395  BP     2  0 1.000000e+00
## GO:0072343  BP     2  0 1.000000e+00
## GO:0015939  BP     2  0 1.000000e+00
## GO:0048342  BP     2  0 1.000000e+00
## GO:0048343  BP     2  0 1.000000e+00
## GO:0009405  BP     2  0 1.000000e+00
## GO:0061227  BP     2  0 1.000000e+00
## GO:0039017  BP     2  0 1.000000e+00
## GO:0019322  BP     2  0 1.000000e+00
## GO:0002502  BP     2  0 1.000000e+00
## GO:0031179  BP     2  0 1.000000e+00
## GO:0042264  BP     2  0 1.000000e+00
## GO:0035606  BP     2  0 1.000000e+00
## GO:0018003  BP     2  0 1.000000e+00
## GO:0140066  BP     2  0 1.000000e+00
## GO:0008612  BP     2  0 1.000000e+00
## GO:0017186  BP     2  0 1.000000e+00
## GO:0030920  BP     2  0 1.000000e+00
## GO:1990443  BP     2  0 1.000000e+00
## GO:0006478  BP     2  0 1.000000e+00
## GO:0002458  BP     2  0 1.000000e+00
## GO:0015910  BP     2  0 1.000000e+00
## GO:0060151  BP     2  0 1.000000e+00
## GO:0090387  BP     2  0 1.000000e+00
## GO:0090386  BP     2  0 1.000000e+00
## GO:0060465  BP     2  0 1.000000e+00
## GO:0046271  BP     2  0 1.000000e+00
## GO:0046338  BP     2  0 1.000000e+00
## GO:0006660  BP     2  0 1.000000e+00
## GO:0086097  BP     2  0 1.000000e+00
## GO:0031583  BP     2  0 1.000000e+00
## GO:0006649  BP     2  0 1.000000e+00
## GO:0033306  BP     2  0 1.000000e+00
## GO:0061350  BP     2  0 1.000000e+00
## GO:0061349  BP     2  0 1.000000e+00
## GO:0060775  BP     2  0 1.000000e+00
## GO:0061347  BP     2  0 1.000000e+00
## GO:0061354  BP     2  0 1.000000e+00
## GO:0061348  BP     2  0 1.000000e+00
## GO:0060489  BP     2  0 1.000000e+00
## GO:0002353  BP     2  0 1.000000e+00
## GO:0015679  BP     2  0 1.000000e+00
## GO:0044855  BP     2  0 1.000000e+00
## GO:0044856  BP     2  0 1.000000e+00
## GO:0002270  BP     2  0 1.000000e+00
## GO:0009949  BP     2  0 1.000000e+00
## GO:0010085  BP     2  0 1.000000e+00
## GO:0007315  BP     2  0 1.000000e+00
## GO:0098501  BP     2  0 1.000000e+00
## GO:0033037  BP     2  0 1.000000e+00
## GO:1990074  BP     2  0 1.000000e+00
## GO:0035915  BP     2  0 1.000000e+00
## GO:0032014  BP     2  0 1.000000e+00
## GO:2000538  BP     2  0 1.000000e+00
## GO:0002663  BP     2  0 1.000000e+00
## GO:2000451  BP     2  0 1.000000e+00
## GO:1902164  BP     2  0 1.000000e+00
## GO:1905464  BP     2  0 1.000000e+00
## GO:0032877  BP     2  0 1.000000e+00
## GO:1905776  BP     2  0 1.000000e+00
## GO:0032298  BP     2  0 1.000000e+00
## GO:0071848  BP     2  0 1.000000e+00
## GO:0070378  BP     2  0 1.000000e+00
## GO:1903896  BP     2  0 1.000000e+00
## GO:0002038  BP     2  0 1.000000e+00
## GO:1905636  BP     2  0 1.000000e+00
## GO:0002842  BP     2  0 1.000000e+00
## GO:2000570  BP     2  0 1.000000e+00
## GO:1904515  BP     2  0 1.000000e+00
## GO:0032759  BP     2  0 1.000000e+00
## GO:1905426  BP     2  0 1.000000e+00
## GO:0060409  BP     2  0 1.000000e+00
## GO:2000368  BP     2  0 1.000000e+00
## GO:0001970  BP     2  0 1.000000e+00
## GO:0070237  BP     2  0 1.000000e+00
## GO:0002879  BP     2  0 1.000000e+00
## GO:0071879  BP     2  0 1.000000e+00
## GO:0070165  BP     2  0 1.000000e+00
## GO:1902871  BP     2  0 1.000000e+00
## GO:1903632  BP     2  0 1.000000e+00
## GO:1905908  BP     2  0 1.000000e+00
## GO:2000744  BP     2  0 1.000000e+00
## GO:1903744  BP     2  0 1.000000e+00
## GO:0002588  BP     2  0 1.000000e+00
## GO:0002582  BP     2  0 1.000000e+00
## GO:2000388  BP     2  0 1.000000e+00
## GO:1902425  BP     2  0 1.000000e+00
## GO:2000814  BP     2  0 1.000000e+00
## GO:1905053  BP     2  0 1.000000e+00
## GO:1904172  BP     2  0 1.000000e+00
## GO:2000334  BP     2  0 1.000000e+00
## GO:1900159  BP     2  0 1.000000e+00
## GO:1905492  BP     2  0 1.000000e+00
## GO:1903281  BP     2  0 1.000000e+00
## GO:0010615  BP     2  0 1.000000e+00
## GO:1903244  BP     2  0 1.000000e+00
## GO:2000724  BP     2  0 1.000000e+00
## GO:1900210  BP     2  0 1.000000e+00
## GO:0010652  BP     2  0 1.000000e+00
## GO:1900039  BP     2  0 1.000000e+00
## GO:0090035  BP     2  0 1.000000e+00
## GO:1903646  BP     2  0 1.000000e+00
## GO:2000340  BP     2  0 1.000000e+00
## GO:0002876  BP     2  0 1.000000e+00
## GO:0120158  BP     2  0 1.000000e+00
## GO:1904028  BP     2  0 1.000000e+00
## GO:0048697  BP     2  0 1.000000e+00
## GO:0048694  BP     2  0 1.000000e+00
## GO:1904343  BP     2  0 1.000000e+00
## GO:0032723  BP     2  0 1.000000e+00
## GO:2000854  BP     2  0 1.000000e+00
## GO:1903852  BP     2  0 1.000000e+00
## GO:0051343  BP     2  0 1.000000e+00
## GO:2000707  BP     2  0 1.000000e+00
## GO:2001150  BP     2  0 1.000000e+00
## GO:2000880  BP     2  0 1.000000e+00
## GO:0032470  BP     2  0 1.000000e+00
## GO:1905956  BP     2  0 1.000000e+00
## GO:1901076  BP     2  0 1.000000e+00
## GO:1902568  BP     2  0 1.000000e+00
## GO:2000424  BP     2  0 1.000000e+00
## GO:0043311  BP     2  0 1.000000e+00
## GO:0045645  BP     2  0 1.000000e+00
## GO:1901189  BP     2  0 1.000000e+00
## GO:0032812  BP     2  0 1.000000e+00
## GO:1904446  BP     2  0 1.000000e+00
## GO:1903905  BP     2  0 1.000000e+00
## GO:2000771  BP     2  0 1.000000e+00
## GO:2000866  BP     2  0 1.000000e+00
## GO:1904434  BP     2  0 1.000000e+00
## GO:0071812  BP     2  0 1.000000e+00
## GO:1905938  BP     2  0 1.000000e+00
## GO:0061646  BP     2  0 1.000000e+00
## GO:1903788  BP     2  0 1.000000e+00
## GO:0045819  BP     2  0 1.000000e+00
## GO:1902728  BP     2  0 1.000000e+00
## GO:0090082  BP     2  0 1.000000e+00
## GO:2000473  BP     2  0 1.000000e+00
## GO:0061870  BP     2  0 1.000000e+00
## GO:0031453  BP     2  0 1.000000e+00
## GO:0090108  BP     2  0 1.000000e+00
## GO:0010983  BP     2  0 1.000000e+00
## GO:0060450  BP     2  0 1.000000e+00
## GO:0035332  BP     2  0 1.000000e+00
## GO:1902466  BP     2  0 1.000000e+00
## GO:0000416  BP     2  0 1.000000e+00
## GO:2001162  BP     2  0 1.000000e+00
## GO:1900111  BP     2  0 1.000000e+00
## GO:2000620  BP     2  0 1.000000e+00
## GO:0090265  BP     2  0 1.000000e+00
## GO:2000558  BP     2  0 1.000000e+00
## GO:2000522  BP     2  0 1.000000e+00
## GO:1904325  BP     2  0 1.000000e+00
## GO:1905704  BP     2  0 1.000000e+00
## GO:0033626  BP     2  0 1.000000e+00
## GO:0045368  BP     2  0 1.000000e+00
## GO:1902216  BP     2  0 1.000000e+00
## GO:0070105  BP     2  0 1.000000e+00
## GO:2001111  BP     2  0 1.000000e+00
## GO:1905581  BP     2  0 1.000000e+00
## GO:0045716  BP     2  0 1.000000e+00
## GO:0032805  BP     2  0 1.000000e+00
## GO:1905458  BP     2  0 1.000000e+00
## GO:0097214  BP     2  0 1.000000e+00
## GO:1905167  BP     2  0 1.000000e+00
## GO:0071642  BP     2  0 1.000000e+00
## GO:2000448  BP     2  0 1.000000e+00
## GO:1905303  BP     2  0 1.000000e+00
## GO:2000256  BP     2  0 1.000000e+00
## GO:1902437  BP     2  0 1.000000e+00
## GO:0032765  BP     2  0 1.000000e+00
## GO:2001178  BP     2  0 1.000000e+00
## GO:2000568  BP     2  0 1.000000e+00
## GO:1902462  BP     2  0 1.000000e+00
## GO:1904685  BP     2  0 1.000000e+00
## GO:2000594  BP     2  0 1.000000e+00
## GO:2000627  BP     2  0 1.000000e+00
## GO:1905618  BP     2  0 1.000000e+00
## GO:1904151  BP     2  0 1.000000e+00
## GO:1903033  BP     2  0 1.000000e+00
## GO:0032425  BP     2  0 1.000000e+00
## GO:1901860  BP     2  0 1.000000e+00
## GO:0000962  BP     2  0 1.000000e+00
## GO:0045977  BP     2  0 1.000000e+00
## GO:1903490  BP     2  0 1.000000e+00
## GO:1903438  BP     2  0 1.000000e+00
## GO:1905505  BP     2  0 1.000000e+00
## GO:0030887  BP     2  0 1.000000e+00
## GO:0060545  BP     2  0 1.000000e+00
## GO:2000768  BP     2  0 1.000000e+00
## GO:0061075  BP     2  0 1.000000e+00
## GO:1902913  BP     2  0 1.000000e+00
## GO:0032901  BP     2  0 1.000000e+00
## GO:0070965  BP     2  0 1.000000e+00
## GO:1900224  BP     2  0 1.000000e+00
## GO:1903997  BP     2  0 1.000000e+00
## GO:0070434  BP     2  0 1.000000e+00
## GO:0070426  BP     2  0 1.000000e+00
## GO:2000878  BP     2  0 1.000000e+00
## GO:1900195  BP     2  0 1.000000e+00
## GO:2000277  BP     2  0 1.000000e+00
## GO:2000376  BP     2  0 1.000000e+00
## GO:2000830  BP     2  0 1.000000e+00
## GO:2000170  BP     2  0 1.000000e+00
## GO:1902310  BP     2  0 1.000000e+00
## GO:0002660  BP     2  0 1.000000e+00
## GO:1900241  BP     2  0 1.000000e+00
## GO:0060697  BP     2  0 1.000000e+00
## GO:0010747  BP     2  0 1.000000e+00
## GO:1901731  BP     2  0 1.000000e+00
## GO:0090362  BP     2  0 1.000000e+00
## GO:0030862  BP     2  0 1.000000e+00
## GO:1902269  BP     2  0 1.000000e+00
## GO:2000872  BP     2  0 1.000000e+00
## GO:2000777  BP     2  0 1.000000e+00
## GO:1902524  BP     2  0 1.000000e+00
## GO:1903006  BP     2  0 1.000000e+00
## GO:1902499  BP     2  0 1.000000e+00
## GO:2000541  BP     2  0 1.000000e+00
## GO:1902530  BP     2  0 1.000000e+00
## GO:1905552  BP     2  0 1.000000e+00
## GO:1905171  BP     2  0 1.000000e+00
## GO:1903923  BP     2  0 1.000000e+00
## GO:1903615  BP     2  0 1.000000e+00
## GO:1905602  BP     2  0 1.000000e+00
## GO:0010845  BP     2  0 1.000000e+00
## GO:1901082  BP     2  0 1.000000e+00
## GO:0060265  BP     2  0 1.000000e+00
## GO:1902868  BP     2  0 1.000000e+00
## GO:0045872  BP     2  0 1.000000e+00
## GO:0014718  BP     2  0 1.000000e+00
## GO:1903518  BP     2  0 1.000000e+00
## GO:0045870  BP     2  0 1.000000e+00
## GO:1904206  BP     2  0 1.000000e+00
## GO:1902724  BP     2  0 1.000000e+00
## GO:0120058  BP     2  0 1.000000e+00
## GO:1904674  BP     2  0 1.000000e+00
## GO:0062029  BP     2  0 1.000000e+00
## GO:1904237  BP     2  0 1.000000e+00
## GO:1904231  BP     2  0 1.000000e+00
## GO:0045887  BP     2  0 1.000000e+00
## GO:0010808  BP     2  0 1.000000e+00
## GO:1905663  BP     2  0 1.000000e+00
## GO:1904884  BP     2  0 1.000000e+00
## GO:1904744  BP     2  0 1.000000e+00
## GO:2000845  BP     2  0 1.000000e+00
## GO:0051885  BP     2  0 1.000000e+00
## GO:0002654  BP     2  0 1.000000e+00
## GO:2001037  BP     2  0 1.000000e+00
## GO:0061402  BP     2  0 1.000000e+00
## GO:0071931  BP     2  0 1.000000e+00
## GO:1904437  BP     2  0 1.000000e+00
## GO:0032915  BP     2  0 1.000000e+00
## GO:0032916  BP     2  0 1.000000e+00
## GO:2001203  BP     2  0 1.000000e+00
## GO:0045994  BP     2  0 1.000000e+00
## GO:0071264  BP     2  0 1.000000e+00
## GO:2000309  BP     2  0 1.000000e+00
## GO:2000078  BP     2  0 1.000000e+00
## GO:1904692  BP     2  0 1.000000e+00
## GO:2000397  BP     2  0 1.000000e+00
## GO:1904695  BP     2  0 1.000000e+00
## GO:0070564  BP     2  0 1.000000e+00
## GO:1902943  BP     2  0 1.000000e+00
## GO:0070352  BP     2  0 1.000000e+00
## GO:1903691  BP     2  0 1.000000e+00
## GO:0035120  BP     2  0 1.000000e+00
## GO:0035127  BP     2  0 1.000000e+00
## GO:0072166  BP     2  0 1.000000e+00
## GO:0021784  BP     2  0 1.000000e+00
## GO:0030328  BP     2  0 1.000000e+00
## GO:0030329  BP     2  0 1.000000e+00
## GO:0048160  BP     2  0 1.000000e+00
## GO:0060516  BP     2  0 1.000000e+00
## GO:0007538  BP     2  0 1.000000e+00
## GO:0007542  BP     2  0 1.000000e+00
## GO:0021740  BP     2  0 1.000000e+00
## GO:0003342  BP     2  0 1.000000e+00
## GO:0038161  BP     2  0 1.000000e+00
## GO:0006433  BP     2  0 1.000000e+00
## GO:0039003  BP     2  0 1.000000e+00
## GO:0039020  BP     2  0 1.000000e+00
## GO:0072114  BP     2  0 1.000000e+00
## GO:0019542  BP     2  0 1.000000e+00
## GO:0019543  BP     2  0 1.000000e+00
## GO:0018117  BP     2  0 1.000000e+00
## GO:0016598  BP     2  0 1.000000e+00
## GO:0033577  BP     2  0 1.000000e+00
## GO:1990179  BP     2  0 1.000000e+00
## GO:0072741  BP     2  0 1.000000e+00
## GO:0097355  BP     2  0 1.000000e+00
## GO:1904106  BP     2  0 1.000000e+00
## GO:1904498  BP     2  0 1.000000e+00
## GO:0036228  BP     2  0 1.000000e+00
## GO:1905793  BP     2  0 1.000000e+00
## GO:1905719  BP     2  0 1.000000e+00
## GO:1905161  BP     2  0 1.000000e+00
## GO:1903778  BP     2  0 1.000000e+00
## GO:0018175  BP     2  0 1.000000e+00
## GO:1900756  BP     2  0 1.000000e+00
## GO:0070560  BP     2  0 1.000000e+00
## GO:0061740  BP     2  0 1.000000e+00
## GO:0044861  BP     2  0 1.000000e+00
## GO:0006782  BP     2  0 1.000000e+00
## GO:0072272  BP     2  0 1.000000e+00
## GO:0042560  BP     2  0 1.000000e+00
## GO:0003193  BP     2  0 1.000000e+00
## GO:0060577  BP     2  0 1.000000e+00
## GO:0046124  BP     2  0 1.000000e+00
## GO:0009216  BP     2  0 1.000000e+00
## GO:0009153  BP     2  0 1.000000e+00
## GO:0006863  BP     2  0 1.000000e+00
## GO:0015860  BP     2  0 1.000000e+00
## GO:0015950  BP     2  0 1.000000e+00
## GO:0034036  BP     2  0 1.000000e+00
## GO:0015951  BP     2  0 1.000000e+00
## GO:0021852  BP     2  0 1.000000e+00
## GO:0042823  BP     2  0 1.000000e+00
## GO:0009213  BP     2  0 1.000000e+00
## GO:0009149  BP     2  0 1.000000e+00
## GO:1990519  BP     2  0 1.000000e+00
## GO:0006864  BP     2  0 1.000000e+00
## GO:0070476  BP     2  0 1.000000e+00
## GO:0006407  BP     2  0 1.000000e+00
## GO:0021933  BP     2  0 1.000000e+00
## GO:0060816  BP     2  0 1.000000e+00
## GO:0036298  BP     2  0 1.000000e+00
## GO:0034402  BP     2  0 1.000000e+00
## GO:0071955  BP     2  0 1.000000e+00
## GO:2000537  BP     2  0 1.000000e+00
## GO:0002661  BP     2  0 1.000000e+00
## GO:1900279  BP     2  0 1.000000e+00
## GO:2000452  BP     2  0 1.000000e+00
## GO:1902544  BP     2  0 1.000000e+00
## GO:1903775  BP     2  0 1.000000e+00
## GO:1902595  BP     2  0 1.000000e+00
## GO:0060382  BP     2  0 1.000000e+00
## GO:1900234  BP     2  0 1.000000e+00
## GO:0034127  BP     2  0 1.000000e+00
## GO:1902366  BP     2  0 1.000000e+00
## GO:0098907  BP     2  0 1.000000e+00
## GO:2000638  BP     2  0 1.000000e+00
## GO:0002625  BP     2  0 1.000000e+00
## GO:2000569  BP     2  0 1.000000e+00
## GO:0032679  BP     2  0 1.000000e+00
## GO:2000053  BP     2  0 1.000000e+00
## GO:1905424  BP     2  0 1.000000e+00
## GO:1901585  BP     2  0 1.000000e+00
## GO:1904529  BP     2  0 1.000000e+00
## GO:1903918  BP     2  0 1.000000e+00
## GO:1905402  BP     2  0 1.000000e+00
## GO:2000011  BP     2  0 1.000000e+00
## GO:0110061  BP     2  0 1.000000e+00
## GO:2000742  BP     2  0 1.000000e+00
## GO:2000387  BP     2  0 1.000000e+00
## GO:1900214  BP     2  0 1.000000e+00
## GO:1900217  BP     2  0 1.000000e+00
## GO:2000458  BP     2  0 1.000000e+00
## GO:1902423  BP     2  0 1.000000e+00
## GO:1904092  BP     2  0 1.000000e+00
## GO:1905051  BP     2  0 1.000000e+00
## GO:2000332  BP     2  0 1.000000e+00
## GO:1900154  BP     2  0 1.000000e+00
## GO:0031548  BP     2  0 1.000000e+00
## GO:0070347  BP     2  0 1.000000e+00
## GO:0098905  BP     2  0 1.000000e+00
## GO:1905912  BP     2  0 1.000000e+00
## GO:0051040  BP     2  0 1.000000e+00
## GO:1901295  BP     2  0 1.000000e+00
## GO:2000079  BP     2  0 1.000000e+00
## GO:1905066  BP     2  0 1.000000e+00
## GO:2000043  BP     2  0 1.000000e+00
## GO:1901219  BP     2  0 1.000000e+00
## GO:1905178  BP     2  0 1.000000e+00
## GO:1904412  BP     2  0 1.000000e+00
## GO:1900208  BP     2  0 1.000000e+00
## GO:0061344  BP     2  0 1.000000e+00
## GO:0010645  BP     2  0 1.000000e+00
## GO:1904933  BP     2  0 1.000000e+00
## GO:0060723  BP     2  0 1.000000e+00
## GO:2000282  BP     2  0 1.000000e+00
## GO:2001029  BP     2  0 1.000000e+00
## GO:0072364  BP     2  0 1.000000e+00
## GO:0090034  BP     2  0 1.000000e+00
## GO:0010848  BP     2  0 1.000000e+00
## GO:0031938  BP     2  0 1.000000e+00
## GO:0002880  BP     2  0 1.000000e+00
## GO:0090320  BP     2  0 1.000000e+00
## GO:0033341  BP     2  0 1.000000e+00
## GO:0048693  BP     2  0 1.000000e+00
## GO:1903814  BP     2  0 1.000000e+00
## GO:1904341  BP     2  0 1.000000e+00
## GO:0030451  BP     2  0 1.000000e+00
## GO:0030450  BP     2  0 1.000000e+00
## GO:0001868  BP     2  0 1.000000e+00
## GO:0032643  BP     2  0 1.000000e+00
## GO:1903433  BP     2  0 1.000000e+00
## GO:1905407  BP     2  0 1.000000e+00
## GO:1903850  BP     2  0 1.000000e+00
## GO:1902159  BP     2  0 1.000000e+00
## GO:2000292  BP     2  0 1.000000e+00
## GO:2000547  BP     2  0 1.000000e+00
## GO:2001148  BP     2  0 1.000000e+00
## GO:0090089  BP     2  0 1.000000e+00
## GO:0060733  BP     2  0 1.000000e+00
## GO:1902954  BP     2  0 1.000000e+00
## GO:2000124  BP     2  0 1.000000e+00
## GO:0060734  BP     2  0 1.000000e+00
## GO:1903381  BP     2  0 1.000000e+00
## GO:1904978  BP     2  0 1.000000e+00
## GO:1904470  BP     2  0 1.000000e+00
## GO:2000422  BP     2  0 1.000000e+00
## GO:0045643  BP     2  0 1.000000e+00
## GO:0034118  BP     2  0 1.000000e+00
## GO:2000769  BP     2  0 1.000000e+00
## GO:0014853  BP     2  0 1.000000e+00
## GO:1903015  BP     2  0 1.000000e+00
## GO:0001928  BP     2  0 1.000000e+00
## GO:1905777  BP     2  0 1.000000e+00
## GO:0033082  BP     2  0 1.000000e+00
## GO:0042478  BP     2  0 1.000000e+00
## GO:0048073  BP     2  0 1.000000e+00
## GO:1904649  BP     2  0 1.000000e+00
## GO:1904432  BP     2  0 1.000000e+00
## GO:1904438  BP     2  0 1.000000e+00
## GO:0120060  BP     2  0 1.000000e+00
## GO:1903639  BP     2  0 1.000000e+00
## GO:1905123  BP     2  0 1.000000e+00
## GO:2000485  BP     2  0 1.000000e+00
## GO:0072363  BP     2  0 1.000000e+00
## GO:1903547  BP     2  0 1.000000e+00
## GO:0071336  BP     2  0 1.000000e+00
## GO:2000471  BP     2  0 1.000000e+00
## GO:0070453  BP     2  0 1.000000e+00
## GO:0061873  BP     2  0 1.000000e+00
## GO:0061869  BP     2  0 1.000000e+00
## GO:0031445  BP     2  0 1.000000e+00
## GO:1901314  BP     2  0 1.000000e+00
## GO:1902464  BP     2  0 1.000000e+00
## GO:2001253  BP     2  0 1.000000e+00
## GO:1904173  BP     2  0 1.000000e+00
## GO:0060629  BP     2  0 1.000000e+00
## GO:1903385  BP     2  0 1.000000e+00
## GO:2000295  BP     2  0 1.000000e+00
## GO:1903383  BP     2  0 1.000000e+00
## GO:0090264  BP     2  0 1.000000e+00
## GO:2000557  BP     2  0 1.000000e+00
## GO:1904323  BP     2  0 1.000000e+00
## GO:0045366  BP     2  0 1.000000e+00
## GO:0060730  BP     2  0 1.000000e+00
## GO:1905799  BP     2  0 1.000000e+00
## GO:1900390  BP     2  0 1.000000e+00
## GO:1902822  BP     2  0 1.000000e+00
## GO:0048378  BP     2  0 1.000000e+00
## GO:2001109  BP     2  0 1.000000e+00
## GO:1904997  BP     2  0 1.000000e+00
## GO:0072368  BP     2  0 1.000000e+00
## GO:0072369  BP     2  0 1.000000e+00
## GO:0110112  BP     2  0 1.000000e+00
## GO:0060587  BP     2  0 1.000000e+00
## GO:0034442  BP     2  0 1.000000e+00
## GO:0050828  BP     2  0 1.000000e+00
## GO:0140212  BP     2  0 1.000000e+00
## GO:1905595  BP     2  0 1.000000e+00
## GO:1901249  BP     2  0 1.000000e+00
## GO:1990186  BP     2  0 1.000000e+00
## GO:2000815  BP     2  0 1.000000e+00
## GO:1905301  BP     2  0 1.000000e+00
## GO:1904907  BP     2  0 1.000000e+00
## GO:2001176  BP     2  0 1.000000e+00
## GO:1903056  BP     2  0 1.000000e+00
## GO:1902908  BP     2  0 1.000000e+00
## GO:2000567  BP     2  0 1.000000e+00
## GO:0072304  BP     2  0 1.000000e+00
## GO:2000790  BP     2  0 1.000000e+00
## GO:1902460  BP     2  0 1.000000e+00
## GO:1902962  BP     2  0 1.000000e+00
## GO:2000592  BP     2  0 1.000000e+00
## GO:0072301  BP     2  0 1.000000e+00
## GO:0035566  BP     2  0 1.000000e+00
## GO:1905616  BP     2  0 1.000000e+00
## GO:1904149  BP     2  0 1.000000e+00
## GO:1903031  BP     2  0 1.000000e+00
## GO:1905706  BP     2  0 1.000000e+00
## GO:1904289  BP     2  0 1.000000e+00
## GO:1903436  BP     2  0 1.000000e+00
## GO:0040030  BP     2  0 1.000000e+00
## GO:1905503  BP     2  0 1.000000e+00
## GO:0032972  BP     2  0 1.000000e+00
## GO:1905453  BP     2  0 1.000000e+00
## GO:1904328  BP     2  0 1.000000e+00
## GO:0043519  BP     2  0 1.000000e+00
## GO:1902996  BP     2  0 1.000000e+00
## GO:0070950  BP     2  0 1.000000e+00
## GO:0070953  BP     2  0 1.000000e+00
## GO:0070951  BP     2  0 1.000000e+00
## GO:1905258  BP     2  0 1.000000e+00
## GO:0051621  BP     2  0 1.000000e+00
## GO:1903353  BP     2  0 1.000000e+00
## GO:1901329  BP     2  0 1.000000e+00
## GO:0090088  BP     2  0 1.000000e+00
## GO:2000226  BP     2  0 1.000000e+00
## GO:1902276  BP     2  0 1.000000e+00
## GO:2000229  BP     2  0 1.000000e+00
## GO:0002658  BP     2  0 1.000000e+00
## GO:1900063  BP     2  0 1.000000e+00
## GO:0010899  BP     2  0 1.000000e+00
## GO:1901407  BP     2  0 1.000000e+00
## GO:0034444  BP     2  0 1.000000e+00
## GO:1904245  BP     2  0 1.000000e+00
## GO:1905696  BP     2  0 1.000000e+00
## GO:1902232  BP     2  0 1.000000e+00
## GO:0090065  BP     2  0 1.000000e+00
## GO:1903004  BP     2  0 1.000000e+00
## GO:2000539  BP     2  0 1.000000e+00
## GO:1901093  BP     2  0 1.000000e+00
## GO:1902528  BP     2  0 1.000000e+00
## GO:1905871  BP     2  0 1.000000e+00
## GO:1903567  BP     2  0 1.000000e+00
## GO:1905550  BP     2  0 1.000000e+00
## GO:0150031  BP     2  0 1.000000e+00
## GO:1905169  BP     2  0 1.000000e+00
## GO:1903921  BP     2  0 1.000000e+00
## GO:1901090  BP     2  0 1.000000e+00
## GO:0010520  BP     2  0 1.000000e+00
## GO:1901080  BP     2  0 1.000000e+00
## GO:2001228  BP     2  0 1.000000e+00
## GO:1900052  BP     2  0 1.000000e+00
## GO:2000156  BP     2  0 1.000000e+00
## GO:0022400  BP     2  0 1.000000e+00
## GO:1902442  BP     2  0 1.000000e+00
## GO:1904569  BP     2  0 1.000000e+00
## GO:1905627  BP     2  0 1.000000e+00
## GO:1903516  BP     2  0 1.000000e+00
## GO:1900190  BP     2  0 1.000000e+00
## GO:1900228  BP     2  0 1.000000e+00
## GO:0100001  BP     2  0 1.000000e+00
## GO:0014862  BP     2  0 1.000000e+00
## GO:0014852  BP     2  0 1.000000e+00
## GO:0014809  BP     2  0 1.000000e+00
## GO:0031449  BP     2  0 1.000000e+00
## GO:0120057  BP     2  0 1.000000e+00
## GO:1903406  BP     2  0 1.000000e+00
## GO:1902490  BP     2  0 1.000000e+00
## GO:1902068  BP     2  0 1.000000e+00
## GO:0060721  BP     2  0 1.000000e+00
## GO:1904235  BP     2  0 1.000000e+00
## GO:1904229  BP     2  0 1.000000e+00
## GO:0099148  BP     2  0 1.000000e+00
## GO:0003050  BP     2  0 1.000000e+00
## GO:0001980  BP     2  0 1.000000e+00
## GO:1904882  BP     2  0 1.000000e+00
## GO:1905838  BP     2  0 1.000000e+00
## GO:1901463  BP     2  0 1.000000e+00
## GO:0086092  BP     2  0 1.000000e+00
## GO:0014728  BP     2  0 1.000000e+00
## GO:2000612  BP     2  0 1.000000e+00
## GO:0002649  BP     2  0 1.000000e+00
## GO:2001035  BP     2  0 1.000000e+00
## GO:0010767  BP     2  0 1.000000e+00
## GO:0061396  BP     2  0 1.000000e+00
## GO:0060994  BP     2  0 1.000000e+00
## GO:0000117  BP     2  0 1.000000e+00
## GO:0060849  BP     2  0 1.000000e+00
## GO:0051037  BP     2  0 1.000000e+00
## GO:0060796  BP     2  0 1.000000e+00
## GO:1904435  BP     2  0 1.000000e+00
## GO:0140244  BP     2  0 1.000000e+00
## GO:0099577  BP     2  0 1.000000e+00
## GO:0006447  BP     2  0 1.000000e+00
## GO:0071262  BP     2  0 1.000000e+00
## GO:0070894  BP     2  0 1.000000e+00
## GO:2000307  BP     2  0 1.000000e+00
## GO:0010795  BP     2  0 1.000000e+00
## GO:2000395  BP     2  0 1.000000e+00
## GO:1905174  BP     2  0 1.000000e+00
## GO:1901738  BP     2  0 1.000000e+00
## GO:1902941  BP     2  0 1.000000e+00
## GO:1903760  BP     2  0 1.000000e+00
## GO:0071580  BP     2  0 1.000000e+00
## GO:0090076  BP     2  0 1.000000e+00
## GO:0072141  BP     2  0 1.000000e+00
## GO:0072054  BP     2  0 1.000000e+00
## GO:0036359  BP     2  0 1.000000e+00
## GO:0097017  BP     2  0 1.000000e+00
## GO:0097254  BP     2  0 1.000000e+00
## GO:0071140  BP     2  0 1.000000e+00
## GO:0071139  BP     2  0 1.000000e+00
## GO:0045728  BP     2  0 1.000000e+00
## GO:1904612  BP     2  0 1.000000e+00
## GO:1903576  BP     2  0 1.000000e+00
## GO:0010044  BP     2  0 1.000000e+00
## GO:0072739  BP     2  0 1.000000e+00
## GO:0034059  BP     2  0 1.000000e+00
## GO:1903412  BP     2  0 1.000000e+00
## GO:1904975  BP     2  0 1.000000e+00
## GO:0010037  BP     2  0 1.000000e+00
## GO:0052565  BP     2  0 1.000000e+00
## GO:0052551  BP     2  0 1.000000e+00
## GO:0072737  BP     2  0 1.000000e+00
## GO:0034285  BP     2  0 1.000000e+00
## GO:0072720  BP     2  0 1.000000e+00
## GO:1990784  BP     2  0 1.000000e+00
## GO:0036017  BP     2  0 1.000000e+00
## GO:1902617  BP     2  0 1.000000e+00
## GO:0033595  BP     2  0 1.000000e+00
## GO:1905429  BP     2  0 1.000000e+00
## GO:1903416  BP     2  0 1.000000e+00
## GO:0009644  BP     2  0 1.000000e+00
## GO:0033594  BP     2  0 1.000000e+00
## GO:0071105  BP     2  0 1.000000e+00
## GO:0098758  BP     2  0 1.000000e+00
## GO:0071104  BP     2  0 1.000000e+00
## GO:1990641  BP     2  0 1.000000e+00
## GO:0010041  BP     2  0 1.000000e+00
## GO:0009753  BP     2  0 1.000000e+00
## GO:1901344  BP     2  0 1.000000e+00
## GO:0006982  BP     2  0 1.000000e+00
## GO:0034699  BP     2  0 1.000000e+00
## GO:0051597  BP     2  0 1.000000e+00
## GO:1904008  BP     2  0 1.000000e+00
## GO:0071505  BP     2  0 1.000000e+00
## GO:0010045  BP     2  0 1.000000e+00
## GO:0034201  BP     2  0 1.000000e+00
## GO:0080184  BP     2  0 1.000000e+00
## GO:1990911  BP     2  0 1.000000e+00
## GO:0009744  BP     2  0 1.000000e+00
## GO:0009608  BP     2  0 1.000000e+00
## GO:0009609  BP     2  0 1.000000e+00
## GO:1904772  BP     2  0 1.000000e+00
## GO:1904481  BP     2  0 1.000000e+00
## GO:1904116  BP     2  0 1.000000e+00
## GO:0033189  BP     2  0 1.000000e+00
## GO:0033197  BP     2  0 1.000000e+00
## GO:0120127  BP     2  0 1.000000e+00
## GO:0097474  BP     2  0 1.000000e+00
## GO:0099642  BP     2  0 1.000000e+00
## GO:0099082  BP     2  0 1.000000e+00
## GO:0098924  BP     2  0 1.000000e+00
## GO:0098923  BP     2  0 1.000000e+00
## GO:0035526  BP     2  0 1.000000e+00
## GO:0021568  BP     2  0 1.000000e+00
## GO:0021658  BP     2  0 1.000000e+00
## GO:0043179  BP     2  0 1.000000e+00
## GO:0032218  BP     2  0 1.000000e+00
## GO:0009203  BP     2  0 1.000000e+00
## GO:1990116  BP     2  0 1.000000e+00
## GO:0060458  BP     2  0 1.000000e+00
## GO:1901052  BP     2  0 1.000000e+00
## GO:0001949  BP     2  0 1.000000e+00
## GO:0016260  BP     2  0 1.000000e+00
## GO:1900220  BP     2  0 1.000000e+00
## GO:0060876  BP     2  0 1.000000e+00
## GO:0061107  BP     2  0 1.000000e+00
## GO:0050893  BP     2  0 1.000000e+00
## GO:0032185  BP     2  0 1.000000e+00
## GO:0031106  BP     2  0 1.000000e+00
## GO:0003343  BP     2  0 1.000000e+00
## GO:0006587  BP     2  0 1.000000e+00
## GO:0006434  BP     2  0 1.000000e+00
## GO:0016107  BP     2  0 1.000000e+00
## GO:0015891  BP     2  0 1.000000e+00
## GO:0007172  BP     2  0 1.000000e+00
## GO:0072434  BP     2  0 1.000000e+00
## GO:0044010  BP     2  0 1.000000e+00
## GO:0044407  BP     2  0 1.000000e+00
## GO:0014732  BP     2  0 1.000000e+00
## GO:0120055  BP     2  0 1.000000e+00
## GO:0051563  BP     2  0 1.000000e+00
## GO:0014805  BP     2  0 1.000000e+00
## GO:0061015  BP     2  0 1.000000e+00
## GO:0071050  BP     2  0 1.000000e+00
## GO:0034247  BP     2  0 1.000000e+00
## GO:0071718  BP     2  0 1.000000e+00
## GO:0018993  BP     2  0 1.000000e+00
## GO:0060133  BP     2  0 1.000000e+00
## GO:0006060  BP     2  0 1.000000e+00
## GO:0046203  BP     2  0 1.000000e+00
## GO:0046511  BP     2  0 1.000000e+00
## GO:0006668  BP     2  0 1.000000e+00
## GO:0099039  BP     2  0 1.000000e+00
## GO:0007057  BP     2  0 1.000000e+00
## GO:0051230  BP     2  0 1.000000e+00
## GO:0030474  BP     2  0 1.000000e+00
## GO:0051300  BP     2  0 1.000000e+00
## GO:0000390  BP     2  0 1.000000e+00
## GO:0060529  BP     2  0 1.000000e+00
## GO:0048867  BP     2  0 1.000000e+00
## GO:0002223  BP     2  0 1.000000e+00
## GO:0061102  BP     2  0 1.000000e+00
## GO:0120063  BP     2  0 1.000000e+00
## GO:0097532  BP     2  0 1.000000e+00
## GO:0060163  BP     2  0 1.000000e+00
## GO:0021762  BP     2  0 1.000000e+00
## GO:0021539  BP     2  0 1.000000e+00
## GO:0005986  BP     2  0 1.000000e+00
## GO:0005985  BP     2  0 1.000000e+00
## GO:0021718  BP     2  0 1.000000e+00
## GO:0021722  BP     2  0 1.000000e+00
## GO:0019050  BP     2  0 1.000000e+00
## GO:0060370  BP     2  0 1.000000e+00
## GO:0036269  BP     2  0 1.000000e+00
## GO:0097401  BP     2  0 1.000000e+00
## GO:0070194  BP     2  0 1.000000e+00
## GO:0060715  BP     2  0 1.000000e+00
## GO:0002940  BP     2  0 1.000000e+00
## GO:0016031  BP     2  0 1.000000e+00
## GO:0070329  BP     2  0 1.000000e+00
## GO:0002100  BP     2  0 1.000000e+00
## GO:0002101  BP     2  0 1.000000e+00
## GO:1903699  BP     2  0 1.000000e+00
## GO:0061193  BP     2  0 1.000000e+00
## GO:1904868  BP     2  0 1.000000e+00
## GO:0031627  BP     2  0 1.000000e+00
## GO:0046247  BP     2  0 1.000000e+00
## GO:0042214  BP     2  0 1.000000e+00
## GO:0002124  BP     2  0 1.000000e+00
## GO:0046900  BP     2  0 1.000000e+00
## GO:0042357  BP     2  0 1.000000e+00
## GO:0030974  BP     2  0 1.000000e+00
## GO:0071934  BP     2  0 1.000000e+00
## GO:0072023  BP     2  0 1.000000e+00
## GO:0071594  BP     2  0 1.000000e+00
## GO:0097536  BP     2  0 1.000000e+00
## GO:0042404  BP     2  0 1.000000e+00
## GO:0072573  BP     2  0 1.000000e+00
## GO:0034178  BP     2  0 1.000000e+00
## GO:0034146  BP     2  0 1.000000e+00
## GO:0035981  BP     2  0 1.000000e+00
## GO:0099551  BP     2  0 1.000000e+00
## GO:0099555  BP     2  0 1.000000e+00
## GO:0099554  BP     2  0 1.000000e+00
## GO:0099557  BP     2  0 1.000000e+00
## GO:0070904  BP     2  0 1.000000e+00
## GO:0035377  BP     2  0 1.000000e+00
## GO:0036364  BP     2  0 1.000000e+00
## GO:0014886  BP     2  0 1.000000e+00
## GO:0006452  BP     2  0 1.000000e+00
## GO:0070893  BP     2  0 1.000000e+00
## GO:0005991  BP     2  0 1.000000e+00
## GO:0021730  BP     2  0 1.000000e+00
## GO:0036509  BP     2  0 1.000000e+00
## GO:0035443  BP     2  0 1.000000e+00
## GO:0001830  BP     2  0 1.000000e+00
## GO:0019442  BP     2  0 1.000000e+00
## GO:0006436  BP     2  0 1.000000e+00
## GO:0072535  BP     2  0 1.000000e+00
## GO:0006437  BP     2  0 1.000000e+00
## GO:0007624  BP     2  0 1.000000e+00
## GO:0061027  BP     2  0 1.000000e+00
## GO:0036304  BP     2  0 1.000000e+00
## GO:0006212  BP     2  0 1.000000e+00
## GO:0034418  BP     2  0 1.000000e+00
## GO:0097274  BP     2  0 1.000000e+00
## GO:0015862  BP     2  0 1.000000e+00
## GO:0038195  BP     2  0 1.000000e+00
## GO:0032796  BP     2  0 1.000000e+00
## GO:0046502  BP     2  0 1.000000e+00
## GO:0035847  BP     2  0 1.000000e+00
## GO:0097576  BP     2  0 1.000000e+00
## GO:0042144  BP     2  0 1.000000e+00
## GO:0021644  BP     2  0 1.000000e+00
## GO:0009099  BP     2  0 1.000000e+00
## GO:0006574  BP     2  0 1.000000e+00
## GO:0006438  BP     2  0 1.000000e+00
## GO:0036324  BP     2  0 1.000000e+00
## GO:1990936  BP     2  0 1.000000e+00
## GO:0030103  BP     2  0 1.000000e+00
## GO:0150064  BP     2  0 1.000000e+00
## GO:0036111  BP     2  0 1.000000e+00
## GO:0048203  BP     2  0 1.000000e+00
## GO:0099044  BP     2  0 1.000000e+00
## GO:0021750  BP     2  0 1.000000e+00
## GO:0060118  BP     2  0 1.000000e+00
## GO:0060114  BP     2  0 1.000000e+00
## GO:0021649  BP     2  0 1.000000e+00
## GO:0019074  BP     2  0 1.000000e+00
## GO:0019072  BP     2  0 1.000000e+00
## GO:0075732  BP     2  0 1.000000e+00
## GO:0019075  BP     2  0 1.000000e+00
## GO:0042819  BP     2  0 1.000000e+00
## GO:0042369  BP     2  0 1.000000e+00
## GO:0042371  BP     2  0 1.000000e+00
## GO:0042377  BP     2  0 1.000000e+00
## GO:0042365  BP     2  0 1.000000e+00
## GO:0016122  BP     2  0 1.000000e+00
## GO:0099180  BP     2  0 1.000000e+00
## GO:0045186  BP     2  0 1.000000e+00
## GO:0010070  BP     2  0 1.000000e+00
## GO:0007352  BP     2  0 1.000000e+00
## GO:0070625  BP     2  0 1.000000e+00
## GO:0044208  BP     3  0 1.000000e+00
## GO:0034627  BP     3  0 1.000000e+00
## GO:0034354  BP     3  0 1.000000e+00
## GO:0006211  BP     3  0 1.000000e+00
## GO:0019857  BP     3  0 1.000000e+00
## GO:0006172  BP     3  0 1.000000e+00
## GO:0036500  BP     3  0 1.000000e+00
## GO:0086053  BP     3  0 1.000000e+00
## GO:0002344  BP     3  0 1.000000e+00
## GO:0002514  BP     3  0 1.000000e+00
## GO:0002337  BP     3  0 1.000000e+00
## GO:0003130  BP     3  0 1.000000e+00
## GO:0090116  BP     3  0 1.000000e+00
## GO:0035609  BP     3  0 1.000000e+00
## GO:0006481  BP     3  0 1.000000e+00
## GO:0035783  BP     3  0 1.000000e+00
## GO:0046416  BP     3  0 1.000000e+00
## GO:0006014  BP     3  0 1.000000e+00
## GO:0042942  BP     3  0 1.000000e+00
## GO:0042732  BP     3  0 1.000000e+00
## GO:0072069  BP     3  0 1.000000e+00
## GO:0030592  BP     3  0 1.000000e+00
## GO:0070383  BP     3  0 1.000000e+00
## GO:0010424  BP     3  0 1.000000e+00
## GO:0000733  BP     3  0 1.000000e+00
## GO:0110025  BP     3  0 1.000000e+00
## GO:0038128  BP     3  0 1.000000e+00
## GO:0036337  BP     3  0 1.000000e+00
## GO:0008315  BP     3  0 1.000000e+00
## GO:0042350  BP     3  0 1.000000e+00
## GO:0009298  BP     3  0 1.000000e+00
## GO:0043000  BP     3  0 1.000000e+00
## GO:0048210  BP     3  0 1.000000e+00
## GO:0042851  BP     3  0 1.000000e+00
## GO:0019448  BP     3  0 1.000000e+00
## GO:1903401  BP     3  0 1.000000e+00
## GO:1902022  BP     3  0 1.000000e+00
## GO:0015825  BP     3  0 1.000000e+00
## GO:0006046  BP     3  0 1.000000e+00
## GO:0018002  BP     3  0 1.000000e+00
## GO:0019677  BP     3  0 1.000000e+00
## GO:0051088  BP     3  0 1.000000e+00
## GO:0061146  BP     3  0 1.000000e+00
## GO:0006404  BP     3  0 1.000000e+00
## GO:0031291  BP     3  0 1.000000e+00
## GO:0035494  BP     3  0 1.000000e+00
## GO:0070489  BP     3  0 1.000000e+00
## GO:0035669  BP     3  0 1.000000e+00
## GO:0035668  BP     3  0 1.000000e+00
## GO:0034473  BP     3  0 1.000000e+00
## GO:0034476  BP     3  0 1.000000e+00
## GO:0006222  BP     3  0 1.000000e+00
## GO:0046049  BP     3  0 1.000000e+00
## GO:0038086  BP     3  0 1.000000e+00
## GO:0044571  BP     3  0 1.000000e+00
## GO:0097296  BP     3  0 1.000000e+00
## GO:0034199  BP     3  0 1.000000e+00
## GO:0090716  BP     3  0 1.000000e+00
## GO:0046084  BP     3  0 1.000000e+00
## GO:0046083  BP     3  0 1.000000e+00
## GO:0031635  BP     3  0 1.000000e+00
## GO:0046222  BP     3  0 1.000000e+00
## GO:0007571  BP     3  0 1.000000e+00
## GO:0001306  BP     3  0 1.000000e+00
## GO:0006524  BP     3  0 1.000000e+00
## GO:0006419  BP     3  0 1.000000e+00
## GO:0019405  BP     3  0 1.000000e+00
## GO:0061144  BP     3  0 1.000000e+00
## GO:0051933  BP     3  0 1.000000e+00
## GO:0019676  BP     3  0 1.000000e+00
## GO:0036394  BP     3  0 1.000000e+00
## GO:0003051  BP     3  0 1.000000e+00
## GO:0061713  BP     3  0 1.000000e+00
## GO:0098971  BP     3  0 1.000000e+00
## GO:0002780  BP     3  0 1.000000e+00
## GO:0002485  BP     3  0 1.000000e+00
## GO:0002481  BP     3  0 1.000000e+00
## GO:0002777  BP     3  0 1.000000e+00
## GO:0035887  BP     3  0 1.000000e+00
## GO:1902263  BP     3  0 1.000000e+00
## GO:0003275  BP     3  0 1.000000e+00
## GO:0000053  BP     3  0 1.000000e+00
## GO:0006420  BP     3  0 1.000000e+00
## GO:0009073  BP     3  0 1.000000e+00
## GO:0061975  BP     3  0 1.000000e+00
## GO:0006421  BP     3  0 1.000000e+00
## GO:0006532  BP     3  0 1.000000e+00
## GO:0006533  BP     3  0 1.000000e+00
## GO:0055014  BP     3  0 1.000000e+00
## GO:0055011  BP     3  0 1.000000e+00
## GO:0003162  BP     3  0 1.000000e+00
## GO:0009852  BP     3  0 1.000000e+00
## GO:0009850  BP     3  0 1.000000e+00
## GO:0051832  BP     3  0 1.000000e+00
## GO:0044413  BP     3  0 1.000000e+00
## GO:0048320  BP     3  0 1.000000e+00
## GO:1904158  BP     3  0 1.000000e+00
## GO:0001983  BP     3  0 1.000000e+00
## GO:0150020  BP     3  0 1.000000e+00
## GO:0150018  BP     3  0 1.000000e+00
## GO:0150019  BP     3  0 1.000000e+00
## GO:0034769  BP     3  0 1.000000e+00
## GO:0002276  BP     3  0 1.000000e+00
## GO:0061366  BP     3  0 1.000000e+00
## GO:0061368  BP     3  0 1.000000e+00
## GO:0043366  BP     3  0 1.000000e+00
## GO:0018879  BP     3  0 1.000000e+00
## GO:0007597  BP     3  0 1.000000e+00
## GO:1990523  BP     3  0 1.000000e+00
## GO:0035284  BP     3  0 1.000000e+00
## GO:0003360  BP     3  0 1.000000e+00
## GO:0015803  BP     3  0 1.000000e+00
## GO:0014707  BP     3  0 1.000000e+00
## GO:0060435  BP     3  0 1.000000e+00
## GO:0036378  BP     3  0 1.000000e+00
## GO:0007161  BP     3  0 1.000000e+00
## GO:0061317  BP     3  0 1.000000e+00
## GO:1904954  BP     3  0 1.000000e+00
## GO:0044339  BP     3  0 1.000000e+00
## GO:0060912  BP     3  0 1.000000e+00
## GO:0110021  BP     3  0 1.000000e+00
## GO:0071691  BP     3  0 1.000000e+00
## GO:0003213  BP     3  0 1.000000e+00
## GO:0045329  BP     3  0 1.000000e+00
## GO:0019254  BP     3  0 1.000000e+00
## GO:0016116  BP     3  0 1.000000e+00
## GO:0010643  BP     3  0 1.000000e+00
## GO:0060184  BP     3  0 1.000000e+00
## GO:0051728  BP     3  0 1.000000e+00
## GO:0090679  BP     3  0 1.000000e+00
## GO:0060722  BP     3  0 1.000000e+00
## GO:0003249  BP     3  0 1.000000e+00
## GO:0002752  BP     3  0 1.000000e+00
## GO:0070458  BP     3  0 1.000000e+00
## GO:0070370  BP     3  0 1.000000e+00
## GO:0060154  BP     3  0 1.000000e+00
## GO:1904017  BP     3  0 1.000000e+00
## GO:0071492  BP     3  0 1.000000e+00
## GO:0072717  BP     3  0 1.000000e+00
## GO:1903843  BP     3  0 1.000000e+00
## GO:0071314  BP     3  0 1.000000e+00
## GO:0071332  BP     3  0 1.000000e+00
## GO:1904881  BP     3  0 1.000000e+00
## GO:0035963  BP     3  0 1.000000e+00
## GO:0071317  BP     3  0 1.000000e+00
## GO:0071288  BP     3  0 1.000000e+00
## GO:0071799  BP     3  0 1.000000e+00
## GO:0072734  BP     3  0 1.000000e+00
## GO:1904579  BP     3  0 1.000000e+00
## GO:0071727  BP     3  0 1.000000e+00
## GO:0071462  BP     3  0 1.000000e+00
## GO:0032289  BP     3  0 1.000000e+00
## GO:0035283  BP     3  0 1.000000e+00
## GO:0021699  BP     3  0 1.000000e+00
## GO:0021679  BP     3  0 1.000000e+00
## GO:0021824  BP     3  0 1.000000e+00
## GO:0021823  BP     3  0 1.000000e+00
## GO:0072566  BP     3  0 1.000000e+00
## GO:1902488  BP     3  0 1.000000e+00
## GO:1990705  BP     3  0 1.000000e+00
## GO:0044725  BP     3  0 1.000000e+00
## GO:0030702  BP     3  0 1.000000e+00
## GO:0031048  BP     3  0 1.000000e+00
## GO:0034371  BP     3  0 1.000000e+00
## GO:0060086  BP     3  0 1.000000e+00
## GO:1905224  BP     3  0 1.000000e+00
## GO:0000448  BP     3  0 1.000000e+00
## GO:0035844  BP     3  0 1.000000e+00
## GO:0045163  BP     3  0 1.000000e+00
## GO:0043686  BP     3  0 1.000000e+00
## GO:0009631  BP     3  0 1.000000e+00
## GO:0021898  BP     3  0 1.000000e+00
## GO:0150062  BP     3  0 1.000000e+00
## GO:0045054  BP     3  0 1.000000e+00
## GO:0060003  BP     3  0 1.000000e+00
## GO:0070268  BP     3  0 1.000000e+00
## GO:0060128  BP     3  0 1.000000e+00
## GO:0019371  BP     3  0 1.000000e+00
## GO:0019344  BP     3  0 1.000000e+00
## GO:0009093  BP     3  0 1.000000e+00
## GO:0002184  BP     3  0 1.000000e+00
## GO:0046061  BP     3  0 1.000000e+00
## GO:0046066  BP     3  0 1.000000e+00
## GO:0006235  BP     3  0 1.000000e+00
## GO:0046075  BP     3  0 1.000000e+00
## GO:0006227  BP     3  0 1.000000e+00
## GO:0046077  BP     3  0 1.000000e+00
## GO:0006226  BP     3  0 1.000000e+00
## GO:0030421  BP     3  0 1.000000e+00
## GO:0002357  BP     3  0 1.000000e+00
## GO:0035993  BP     3  0 1.000000e+00
## GO:0031104  BP     3  0 1.000000e+00
## GO:0097026  BP     3  0 1.000000e+00
## GO:0036145  BP     3  0 1.000000e+00
## GO:1990502  BP     3  0 1.000000e+00
## GO:0030208  BP     3  0 1.000000e+00
## GO:0070340  BP     3  0 1.000000e+00
## GO:0009730  BP     3  0 1.000000e+00
## GO:0050968  BP     3  0 1.000000e+00
## GO:0009726  BP     3  0 1.000000e+00
## GO:0051594  BP     3  0 1.000000e+00
## GO:0009732  BP     3  0 1.000000e+00
## GO:0050976  BP     3  0 1.000000e+00
## GO:0034287  BP     3  0 1.000000e+00
## GO:0003032  BP     3  0 1.000000e+00
## GO:0051410  BP     3  0 1.000000e+00
## GO:0046544  BP     3  0 1.000000e+00
## GO:0015960  BP     3  0 1.000000e+00
## GO:0015966  BP     3  0 1.000000e+00
## GO:0015965  BP     3  0 1.000000e+00
## GO:0002086  BP     3  0 1.000000e+00
## GO:0060448  BP     3  0 1.000000e+00
## GO:0035442  BP     3  0 1.000000e+00
## GO:0033058  BP     3  0 1.000000e+00
## GO:0015766  BP     3  0 1.000000e+00
## GO:0006489  BP     3  0 1.000000e+00
## GO:0046465  BP     3  0 1.000000e+00
## GO:0061502  BP     3  0 1.000000e+00
## GO:0035054  BP     3  0 1.000000e+00
## GO:0035880  BP     3  0 1.000000e+00
## GO:0036023  BP     3  0 1.000000e+00
## GO:0003133  BP     3  0 1.000000e+00
## GO:0003134  BP     3  0 1.000000e+00
## GO:1904380  BP     3  0 1.000000e+00
## GO:0060847  BP     3  0 1.000000e+00
## GO:0071603  BP     3  0 1.000000e+00
## GO:0090673  BP     3  0 1.000000e+00
## GO:0048822  BP     3  0 1.000000e+00
## GO:0003347  BP     3  0 1.000000e+00
## GO:0010481  BP     3  0 1.000000e+00
## GO:0021538  BP     3  0 1.000000e+00
## GO:0060671  BP     3  0 1.000000e+00
## GO:0060672  BP     3  0 1.000000e+00
## GO:1990399  BP     3  0 1.000000e+00
## GO:0097176  BP     3  0 1.000000e+00
## GO:0097694  BP     3  0 1.000000e+00
## GO:0003365  BP     3  0 1.000000e+00
## GO:0045200  BP     3  0 1.000000e+00
## GO:0097051  BP     3  0 1.000000e+00
## GO:0007529  BP     3  0 1.000000e+00
## GO:0045196  BP     3  0 1.000000e+00
## GO:0010248  BP     3  0 1.000000e+00
## GO:0035938  BP     3  0 1.000000e+00
## GO:0097010  BP     3  0 1.000000e+00
## GO:0051834  BP     3  0 1.000000e+00
## GO:0044415  BP     3  0 1.000000e+00
## GO:0019049  BP     3  0 1.000000e+00
## GO:0098976  BP     3  0 1.000000e+00
## GO:0045226  BP     3  0 1.000000e+00
## GO:0046379  BP     3  0 1.000000e+00
## GO:0006858  BP     3  0 1.000000e+00
## GO:0002074  BP     3  0 1.000000e+00
## GO:0045062  BP     3  0 1.000000e+00
## GO:0042706  BP     3  0 1.000000e+00
## GO:1903375  BP     3  0 1.000000e+00
## GO:0045337  BP     3  0 1.000000e+00
## GO:0097155  BP     3  0 1.000000e+00
## GO:0008050  BP     3  0 1.000000e+00
## GO:0048807  BP     3  0 1.000000e+00
## GO:0007066  BP     3  0 1.000000e+00
## GO:0033216  BP     3  0 1.000000e+00
## GO:0098706  BP     3  0 1.000000e+00
## GO:1903874  BP     3  0 1.000000e+00
## GO:0015684  BP     3  0 1.000000e+00
## GO:0060825  BP     3  0 1.000000e+00
## GO:0042726  BP     3  0 1.000000e+00
## GO:0033505  BP     3  0 1.000000e+00
## GO:0060423  BP     3  0 1.000000e+00
## GO:0046294  BP     3  0 1.000000e+00
## GO:0070649  BP     3  0 1.000000e+00
## GO:0110009  BP     3  0 1.000000e+00
## GO:0006001  BP     3  0 1.000000e+00
## GO:0061624  BP     3  0 1.000000e+00
## GO:0006106  BP     3  0 1.000000e+00
## GO:0048165  BP     3  0 1.000000e+00
## GO:0019064  BP     3  0 1.000000e+00
## GO:0019376  BP     3  0 1.000000e+00
## GO:0061010  BP     3  0 1.000000e+00
## GO:0009449  BP     3  0 1.000000e+00
## GO:0033566  BP     3  0 1.000000e+00
## GO:1990768  BP     3  0 1.000000e+00
## GO:0001698  BP     3  0 1.000000e+00
## GO:0035822  BP     3  0 1.000000e+00
## GO:0060112  BP     3  0 1.000000e+00
## GO:0097116  BP     3  0 1.000000e+00
## GO:0018992  BP     3  0 1.000000e+00
## GO:0002314  BP     3  0 1.000000e+00
## GO:0051729  BP     3  0 1.000000e+00
## GO:0002071  BP     3  0 1.000000e+00
## GO:0007403  BP     3  0 1.000000e+00
## GO:0006680  BP     3  0 1.000000e+00
## GO:0019389  BP     3  0 1.000000e+00
## GO:0090461  BP     3  0 1.000000e+00
## GO:0051935  BP     3  0 1.000000e+00
## GO:0006543  BP     3  0 1.000000e+00
## GO:0070681  BP     3  0 1.000000e+00
## GO:0046168  BP     3  0 1.000000e+00
## GO:0006546  BP     3  0 1.000000e+00
## GO:0019464  BP     3  0 1.000000e+00
## GO:0061623  BP     3  0 1.000000e+00
## GO:0061625  BP     3  0 1.000000e+00
## GO:1901656  BP     3  0 1.000000e+00
## GO:0009436  BP     3  0 1.000000e+00
## GO:0035262  BP     3  0 1.000000e+00
## GO:0021828  BP     3  0 1.000000e+00
## GO:0002432  BP     3  0 1.000000e+00
## GO:1904700  BP     3  0 1.000000e+00
## GO:0071613  BP     3  0 1.000000e+00
## GO:0046098  BP     3  0 1.000000e+00
## GO:0021986  BP     3  0 1.000000e+00
## GO:0071335  BP     3  0 1.000000e+00
## GO:0035685  BP     3  0 1.000000e+00
## GO:0097037  BP     3  0 1.000000e+00
## GO:0030200  BP     3  0 1.000000e+00
## GO:0030210  BP     3  0 1.000000e+00
## GO:0006059  BP     3  0 1.000000e+00
## GO:0021934  BP     3  0 1.000000e+00
## GO:0043133  BP     3  0 1.000000e+00
## GO:0110088  BP     3  0 1.000000e+00
## GO:1990164  BP     3  0 1.000000e+00
## GO:0043969  BP     3  0 1.000000e+00
## GO:0043974  BP     3  0 1.000000e+00
## GO:0097198  BP     3  0 1.000000e+00
## GO:0043988  BP     3  0 1.000000e+00
## GO:0043985  BP     3  0 1.000000e+00
## GO:0008628  BP     3  0 1.000000e+00
## GO:0036118  BP     3  0 1.000000e+00
## GO:0046947  BP     3  0 1.000000e+00
## GO:0046946  BP     3  0 1.000000e+00
## GO:0048850  BP     3  0 1.000000e+00
## GO:0021856  BP     3  0 1.000000e+00
## GO:0046101  BP     3  0 1.000000e+00
## GO:0002386  BP     3  0 1.000000e+00
## GO:0002414  BP     3  0 1.000000e+00
## GO:0002030  BP     3  0 1.000000e+00
## GO:0001827  BP     3  0 1.000000e+00
## GO:0001828  BP     3  0 1.000000e+00
## GO:0072061  BP     3  0 1.000000e+00
## GO:0046103  BP     3  0 1.000000e+00
## GO:0030070  BP     3  0 1.000000e+00
## GO:0038028  BP     3  0 1.000000e+00
## GO:0016539  BP     3  0 1.000000e+00
## GO:0002121  BP     3  0 1.000000e+00
## GO:0042231  BP     3  0 1.000000e+00
## GO:0042223  BP     3  0 1.000000e+00
## GO:0051325  BP     3  0 1.000000e+00
## GO:0001951  BP     3  0 1.000000e+00
## GO:0106001  BP     3  0 1.000000e+00
## GO:0070676  BP     3  0 1.000000e+00
## GO:1990442  BP     3  0 1.000000e+00
## GO:1905863  BP     3  0 1.000000e+00
## GO:0098711  BP     3  0 1.000000e+00
## GO:0019287  BP     3  0 1.000000e+00
## GO:0046864  BP     3  0 1.000000e+00
## GO:0046951  BP     3  0 1.000000e+00
## GO:0072003  BP     3  0 1.000000e+00
## GO:0072194  BP     3  0 1.000000e+00
## GO:0002254  BP     3  0 1.000000e+00
## GO:0061738  BP     3  0 1.000000e+00
## GO:0034499  BP     3  0 1.000000e+00
## GO:0044805  BP     3  0 1.000000e+00
## GO:0019086  BP     3  0 1.000000e+00
## GO:0019045  BP     3  0 1.000000e+00
## GO:0048370  BP     3  0 1.000000e+00
## GO:0048369  BP     3  0 1.000000e+00
## GO:0048371  BP     3  0 1.000000e+00
## GO:0097477  BP     3  0 1.000000e+00
## GO:0060460  BP     3  0 1.000000e+00
## GO:0003220  BP     3  0 1.000000e+00
## GO:0015820  BP     3  0 1.000000e+00
## GO:0036101  BP     3  0 1.000000e+00
## GO:0036102  BP     3  0 1.000000e+00
## GO:0036100  BP     3  0 1.000000e+00
## GO:0002540  BP     3  0 1.000000e+00
## GO:0036022  BP     3  0 1.000000e+00
## GO:0140042  BP     3  0 1.000000e+00
## GO:0002933  BP     3  0 1.000000e+00
## GO:0055095  BP     3  0 1.000000e+00
## GO:0055096  BP     3  0 1.000000e+00
## GO:0060424  BP     3  0 1.000000e+00
## GO:0060492  BP     3  0 1.000000e+00
## GO:0042700  BP     3  0 1.000000e+00
## GO:0060838  BP     3  0 1.000000e+00
## GO:0097021  BP     3  0 1.000000e+00
## GO:0006553  BP     3  0 1.000000e+00
## GO:0016237  BP     3  0 1.000000e+00
## GO:0035691  BP     3  0 1.000000e+00
## GO:0051684  BP     3  0 1.000000e+00
## GO:0099562  BP     3  0 1.000000e+00
## GO:0036506  BP     3  0 1.000000e+00
## GO:1904378  BP     3  0 1.000000e+00
## GO:0071423  BP     3  0 1.000000e+00
## GO:0015743  BP     3  0 1.000000e+00
## GO:0008049  BP     3  0 1.000000e+00
## GO:1905198  BP     3  0 1.000000e+00
## GO:0071421  BP     3  0 1.000000e+00
## GO:0002125  BP     3  0 1.000000e+00
## GO:0042628  BP     3  0 1.000000e+00
## GO:1990773  BP     3  0 1.000000e+00
## GO:0036112  BP     3  0 1.000000e+00
## GO:0021550  BP     3  0 1.000000e+00
## GO:1903537  BP     3  0 1.000000e+00
## GO:0016344  BP     3  0 1.000000e+00
## GO:0006311  BP     3  0 1.000000e+00
## GO:0051311  BP     3  0 1.000000e+00
## GO:0000710  BP     3  0 1.000000e+00
## GO:0097325  BP     3  0 1.000000e+00
## GO:0086047  BP     3  0 1.000000e+00
## GO:0098912  BP     3  0 1.000000e+00
## GO:0086048  BP     3  0 1.000000e+00
## GO:0039663  BP     3  0 1.000000e+00
## GO:0031580  BP     3  0 1.000000e+00
## GO:0035709  BP     3  0 1.000000e+00
## GO:0009233  BP     3  0 1.000000e+00
## GO:0072138  BP     3  0 1.000000e+00
## GO:0072309  BP     3  0 1.000000e+00
## GO:1905319  BP     3  0 1.000000e+00
## GO:0097168  BP     3  0 1.000000e+00
## GO:1990120  BP     3  0 1.000000e+00
## GO:0072240  BP     3  0 1.000000e+00
## GO:0072284  BP     3  0 1.000000e+00
## GO:0072277  BP     3  0 1.000000e+00
## GO:0072244  BP     3  0 1.000000e+00
## GO:0072275  BP     3  0 1.000000e+00
## GO:0072276  BP     3  0 1.000000e+00
## GO:0090176  BP     3  0 1.000000e+00
## GO:0051012  BP     3  0 1.000000e+00
## GO:1990575  BP     3  0 1.000000e+00
## GO:1902775  BP     3  0 1.000000e+00
## GO:0000958  BP     3  0 1.000000e+00
## GO:1990180  BP     3  0 1.000000e+00
## GO:0097745  BP     3  0 1.000000e+00
## GO:0070126  BP     3  0 1.000000e+00
## GO:0099074  BP     3  0 1.000000e+00
## GO:0099075  BP     3  0 1.000000e+00
## GO:0044878  BP     3  0 1.000000e+00
## GO:0007084  BP     3  0 1.000000e+00
## GO:1902990  BP     3  0 1.000000e+00
## GO:0052422  BP     3  0 1.000000e+00
## GO:0044830  BP     3  0 1.000000e+00
## GO:0044868  BP     3  0 1.000000e+00
## GO:0052203  BP     3  0 1.000000e+00
## GO:0035702  BP     3  0 1.000000e+00
## GO:0048162  BP     3  0 1.000000e+00
## GO:0044800  BP     3  0 1.000000e+00
## GO:0036258  BP     3  0 1.000000e+00
## GO:0014900  BP     3  0 1.000000e+00
## GO:0050883  BP     3  0 1.000000e+00
## GO:0043385  BP     3  0 1.000000e+00
## GO:0002277  BP     3  0 1.000000e+00
## GO:0015798  BP     3  0 1.000000e+00
## GO:0052490  BP     3  0 1.000000e+00
## GO:0033668  BP     3  0 1.000000e+00
## GO:0052041  BP     3  0 1.000000e+00
## GO:1901536  BP     3  0 1.000000e+00
## GO:1905463  BP     3  0 1.000000e+00
## GO:0048239  BP     3  0 1.000000e+00
## GO:0060567  BP     3  0 1.000000e+00
## GO:1903070  BP     3  0 1.000000e+00
## GO:1904425  BP     3  0 1.000000e+00
## GO:0033861  BP     3  0 1.000000e+00
## GO:1903898  BP     3  0 1.000000e+00
## GO:2000299  BP     3  0 1.000000e+00
## GO:0035544  BP     3  0 1.000000e+00
## GO:0045626  BP     3  0 1.000000e+00
## GO:2000329  BP     3  0 1.000000e+00
## GO:2000552  BP     3  0 1.000000e+00
## GO:0140199  BP     3  0 1.000000e+00
## GO:1904178  BP     3  0 1.000000e+00
## GO:0002581  BP     3  0 1.000000e+00
## GO:1902511  BP     3  0 1.000000e+00
## GO:2000360  BP     3  0 1.000000e+00
## GO:0010956  BP     3  0 1.000000e+00
## GO:1902081  BP     3  0 1.000000e+00
## GO:0045914  BP     3  0 1.000000e+00
## GO:2000137  BP     3  0 1.000000e+00
## GO:1901856  BP     3  0 1.000000e+00
## GO:0045079  BP     3  0 1.000000e+00
## GO:1904193  BP     3  0 1.000000e+00
## GO:0061182  BP     3  0 1.000000e+00
## GO:1902731  BP     3  0 1.000000e+00
## GO:0042322  BP     3  0 1.000000e+00
## GO:2000847  BP     3  0 1.000000e+00
## GO:0051344  BP     3  0 1.000000e+00
## GO:2001271  BP     3  0 1.000000e+00
## GO:0002605  BP     3  0 1.000000e+00
## GO:2000016  BP     3  0 1.000000e+00
## GO:0045963  BP     3  0 1.000000e+00
## GO:1904339  BP     3  0 1.000000e+00
## GO:2000384  BP     3  0 1.000000e+00
## GO:2001027  BP     3  0 1.000000e+00
## GO:0071899  BP     3  0 1.000000e+00
## GO:1903542  BP     3  0 1.000000e+00
## GO:1901003  BP     3  0 1.000000e+00
## GO:2000850  BP     3  0 1.000000e+00
## GO:1900450  BP     3  0 1.000000e+00
## GO:0045967  BP     3  0 1.000000e+00
## GO:0048817  BP     3  0 1.000000e+00
## GO:0051097  BP     3  0 1.000000e+00
## GO:1902037  BP     3  0 1.000000e+00
## GO:1903944  BP     3  0 1.000000e+00
## GO:0031064  BP     3  0 1.000000e+00
## GO:0033128  BP     3  0 1.000000e+00
## GO:0002884  BP     3  0 1.000000e+00
## GO:0045358  BP     3  0 1.000000e+00
## GO:0032690  BP     3  0 1.000000e+00
## GO:2001180  BP     3  0 1.000000e+00
## GO:2001183  BP     3  0 1.000000e+00
## GO:2000666  BP     3  0 1.000000e+00
## GO:0048294  BP     3  0 1.000000e+00
## GO:0010593  BP     3  0 1.000000e+00
## GO:1903237  BP     3  0 1.000000e+00
## GO:0090327  BP     3  0 1.000000e+00
## GO:1900453  BP     3  0 1.000000e+00
## GO:0045715  BP     3  0 1.000000e+00
## GO:1905457  BP     3  0 1.000000e+00
## GO:1905166  BP     3  0 1.000000e+00
## GO:0071641  BP     3  0 1.000000e+00
## GO:0034183  BP     3  0 1.000000e+00
## GO:0034092  BP     3  0 1.000000e+00
## GO:2000019  BP     3  0 1.000000e+00
## GO:1905133  BP     3  0 1.000000e+00
## GO:0048022  BP     3  0 1.000000e+00
## GO:1905154  BP     3  0 1.000000e+00
## GO:0003340  BP     3  0 1.000000e+00
## GO:1902103  BP     3  0 1.000000e+00
## GO:0090310  BP     3  0 1.000000e+00
## GO:1901859  BP     3  0 1.000000e+00
## GO:1901740  BP     3  0 1.000000e+00
## GO:1904761  BP     3  0 1.000000e+00
## GO:0002859  BP     3  0 1.000000e+00
## GO:0002856  BP     3  0 1.000000e+00
## GO:1902623  BP     3  0 1.000000e+00
## GO:0010751  BP     3  0 1.000000e+00
## GO:1902856  BP     3  0 1.000000e+00
## GO:1900152  BP     3  0 1.000000e+00
## GO:0060212  BP     3  0 1.000000e+00
## GO:0070433  BP     3  0 1.000000e+00
## GO:0070425  BP     3  0 1.000000e+00
## GO:1902309  BP     3  0 1.000000e+00
## GO:1900275  BP     3  0 1.000000e+00
## GO:2000041  BP     3  0 1.000000e+00
## GO:1902268  BP     3  0 1.000000e+00
## GO:1901874  BP     3  0 1.000000e+00
## GO:1902303  BP     3  0 1.000000e+00
## GO:1903765  BP     3  0 1.000000e+00
## GO:2000974  BP     3  0 1.000000e+00
## GO:0010836  BP     3  0 1.000000e+00
## GO:1904351  BP     3  0 1.000000e+00
## GO:0090038  BP     3  0 1.000000e+00
## GO:1904780  BP     3  0 1.000000e+00
## GO:0061084  BP     3  0 1.000000e+00
## GO:2000645  BP     3  0 1.000000e+00
## GO:0090071  BP     3  0 1.000000e+00
## GO:1902725  BP     3  0 1.000000e+00
## GO:1900377  BP     3  0 1.000000e+00
## GO:1904057  BP     3  0 1.000000e+00
## GO:0014859  BP     3  0 1.000000e+00
## GO:1902723  BP     3  0 1.000000e+00
## GO:0071672  BP     3  0 1.000000e+00
## GO:2000832  BP     3  0 1.000000e+00
## GO:2000297  BP     3  0 1.000000e+00
## GO:1903422  BP     3  0 1.000000e+00
## GO:1904430  BP     3  0 1.000000e+00
## GO:1902948  BP     3  0 1.000000e+00
## GO:0070495  BP     3  0 1.000000e+00
## GO:0034140  BP     3  0 1.000000e+00
## GO:0034164  BP     3  0 1.000000e+00
## GO:0016480  BP     3  0 1.000000e+00
## GO:2000820  BP     3  0 1.000000e+00
## GO:0071930  BP     3  0 1.000000e+00
## GO:0010526  BP     3  0 1.000000e+00
## GO:1904694  BP     3  0 1.000000e+00
## GO:0010916  BP     3  0 1.000000e+00
## GO:0072076  BP     3  0 1.000000e+00
## GO:0021502  BP     3  0 1.000000e+00
## GO:0021849  BP     3  0 1.000000e+00
## GO:0033693  BP     3  0 1.000000e+00
## GO:0038189  BP     3  0 1.000000e+00
## GO:0070488  BP     3  0 1.000000e+00
## GO:0060618  BP     3  0 1.000000e+00
## GO:0061341  BP     3  0 1.000000e+00
## GO:0003358  BP     3  0 1.000000e+00
## GO:0002025  BP     3  0 1.000000e+00
## GO:0090292  BP     3  0 1.000000e+00
## GO:0043578  BP     3  0 1.000000e+00
## GO:0071630  BP     3  0 1.000000e+00
## GO:0035063  BP     3  0 1.000000e+00
## GO:0015851  BP     3  0 1.000000e+00
## GO:0021817  BP     3  0 1.000000e+00
## GO:1901679  BP     3  0 1.000000e+00
## GO:0000715  BP     3  0 1.000000e+00
## GO:0006295  BP     3  0 1.000000e+00
## GO:0006296  BP     3  0 1.000000e+00
## GO:0006589  BP     3  0 1.000000e+00
## GO:0046333  BP     3  0 1.000000e+00
## GO:0061034  BP     3  0 1.000000e+00
## GO:0021553  BP     3  0 1.000000e+00
## GO:0060166  BP     3  0 1.000000e+00
## GO:0015772  BP     3  0 1.000000e+00
## GO:1901376  BP     3  0 1.000000e+00
## GO:0045299  BP     3  0 1.000000e+00
## GO:0001550  BP     3  0 1.000000e+00
## GO:0001543  BP     3  0 1.000000e+00
## GO:0015729  BP     3  0 1.000000e+00
## GO:0035511  BP     3  0 1.000000e+00
## GO:0035553  BP     3  0 1.000000e+00
## GO:1900535  BP     3  0 1.000000e+00
## GO:1900533  BP     3  0 1.000000e+00
## GO:0019323  BP     3  0 1.000000e+00
## GO:0009051  BP     3  0 1.000000e+00
## GO:0002501  BP     3  0 1.000000e+00
## GO:0018125  BP     3  0 1.000000e+00
## GO:0017187  BP     3  0 1.000000e+00
## GO:0018199  BP     3  0 1.000000e+00
## GO:0018312  BP     3  0 1.000000e+00
## GO:0002343  BP     3  0 1.000000e+00
## GO:0010124  BP     3  0 1.000000e+00
## GO:0006432  BP     3  0 1.000000e+00
## GO:0036151  BP     3  0 1.000000e+00
## GO:0031161  BP     3  0 1.000000e+00
## GO:0007208  BP     3  0 1.000000e+00
## GO:0046552  BP     3  0 1.000000e+00
## GO:0042376  BP     3  0 1.000000e+00
## GO:0042374  BP     3  0 1.000000e+00
## GO:0016129  BP     3  0 1.000000e+00
## GO:0016128  BP     3  0 1.000000e+00
## GO:0034727  BP     3  0 1.000000e+00
## GO:0097195  BP     3  0 1.000000e+00
## GO:0061346  BP     3  0 1.000000e+00
## GO:0034441  BP     3  0 1.000000e+00
## GO:0006663  BP     3  0 1.000000e+00
## GO:0070889  BP     3  0 1.000000e+00
## GO:0090360  BP     3  0 1.000000e+00
## GO:0032917  BP     3  0 1.000000e+00
## GO:0016094  BP     3  0 1.000000e+00
## GO:0016095  BP     3  0 1.000000e+00
## GO:0021586  BP     3  0 1.000000e+00
## GO:1905555  BP     3  0 1.000000e+00
## GO:0052151  BP     3  0 1.000000e+00
## GO:1905870  BP     3  0 1.000000e+00
## GO:1904719  BP     3  0 1.000000e+00
## GO:0032831  BP     3  0 1.000000e+00
## GO:1904219  BP     3  0 1.000000e+00
## GO:2000373  BP     3  0 1.000000e+00
## GO:0110032  BP     3  0 1.000000e+00
## GO:1900245  BP     3  0 1.000000e+00
## GO:1901666  BP     3  0 1.000000e+00
## GO:0014040  BP     3  0 1.000000e+00
## GO:1903984  BP     3  0 1.000000e+00
## GO:0061357  BP     3  0 1.000000e+00
## GO:0014057  BP     3  0 1.000000e+00
## GO:1904234  BP     3  0 1.000000e+00
## GO:0060168  BP     3  0 1.000000e+00
## GO:1905337  BP     3  0 1.000000e+00
## GO:0032349  BP     3  0 1.000000e+00
## GO:0032346  BP     3  0 1.000000e+00
## GO:2000860  BP     3  0 1.000000e+00
## GO:0042986  BP     3  0 1.000000e+00
## GO:2000825  BP     3  0 1.000000e+00
## GO:1901953  BP     3  0 1.000000e+00
## GO:0002585  BP     3  0 1.000000e+00
## GO:0060139  BP     3  0 1.000000e+00
## GO:0032100  BP     3  0 1.000000e+00
## GO:0034263  BP     3  0 1.000000e+00
## GO:1903679  BP     3  0 1.000000e+00
## GO:0110024  BP     3  0 1.000000e+00
## GO:1905312  BP     3  0 1.000000e+00
## GO:0051944  BP     3  0 1.000000e+00
## GO:2001288  BP     3  0 1.000000e+00
## GO:0038091  BP     3  0 1.000000e+00
## GO:0045764  BP     3  0 1.000000e+00
## GO:1903974  BP     3  0 1.000000e+00
## GO:0045799  BP     3  0 1.000000e+00
## GO:0046005  BP     3  0 1.000000e+00
## GO:1905445  BP     3  0 1.000000e+00
## GO:0051466  BP     3  0 1.000000e+00
## GO:1904960  BP     3  0 1.000000e+00
## GO:0051714  BP     3  0 1.000000e+00
## GO:1904690  BP     3  0 1.000000e+00
## GO:0045585  BP     3  0 1.000000e+00
## GO:2000670  BP     3  0 1.000000e+00
## GO:2001200  BP     3  0 1.000000e+00
## GO:0061184  BP     3  0 1.000000e+00
## GO:2000017  BP     3  0 1.000000e+00
## GO:1903181  BP     3  0 1.000000e+00
## GO:0051586  BP     3  0 1.000000e+00
## GO:1904340  BP     3  0 1.000000e+00
## GO:1904734  BP     3  0 1.000000e+00
## GO:0060769  BP     3  0 1.000000e+00
## GO:1904891  BP     3  0 1.000000e+00
## GO:0003331  BP     3  0 1.000000e+00
## GO:0031448  BP     3  0 1.000000e+00
## GO:0060474  BP     3  0 1.000000e+00
## GO:1903598  BP     3  0 1.000000e+00
## GO:0060454  BP     3  0 1.000000e+00
## GO:1904346  BP     3  0 1.000000e+00
## GO:0034352  BP     3  0 1.000000e+00
## GO:1902661  BP     3  0 1.000000e+00
## GO:0045425  BP     3  0 1.000000e+00
## GO:0071663  BP     3  0 1.000000e+00
## GO:0060399  BP     3  0 1.000000e+00
## GO:0046985  BP     3  0 1.000000e+00
## GO:0010909  BP     3  0 1.000000e+00
## GO:0070368  BP     3  0 1.000000e+00
## GO:0007228  BP     3  0 1.000000e+00
## GO:1900106  BP     3  0 1.000000e+00
## GO:0106016  BP     3  0 1.000000e+00
## GO:0045726  BP     3  0 1.000000e+00
## GO:0045082  BP     3  0 1.000000e+00
## GO:1905078  BP     3  0 1.000000e+00
## GO:0045401  BP     3  0 1.000000e+00
## GO:0032752  BP     3  0 1.000000e+00
## GO:0045404  BP     3  0 1.000000e+00
## GO:1904582  BP     3  0 1.000000e+00
## GO:1902167  BP     3  0 1.000000e+00
## GO:1902174  BP     3  0 1.000000e+00
## GO:1902608  BP     3  0 1.000000e+00
## GO:0033686  BP     3  0 1.000000e+00
## GO:1901492  BP     3  0 1.000000e+00
## GO:2000111  BP     3  0 1.000000e+00
## GO:0043382  BP     3  0 1.000000e+00
## GO:2001055  BP     3  0 1.000000e+00
## GO:2000729  BP     3  0 1.000000e+00
## GO:1905322  BP     3  0 1.000000e+00
## GO:2000591  BP     3  0 1.000000e+00
## GO:0035793  BP     3  0 1.000000e+00
## GO:0090063  BP     3  0 1.000000e+00
## GO:1904958  BP     3  0 1.000000e+00
## GO:2000857  BP     3  0 1.000000e+00
## GO:0061885  BP     3  0 1.000000e+00
## GO:1902958  BP     3  0 1.000000e+00
## GO:1903109  BP     3  0 1.000000e+00
## GO:0046604  BP     3  0 1.000000e+00
## GO:1900625  BP     3  0 1.000000e+00
## GO:2000439  BP     3  0 1.000000e+00
## GO:0014737  BP     3  0 1.000000e+00
## GO:0043323  BP     3  0 1.000000e+00
## GO:1905294  BP     3  0 1.000000e+00
## GO:1904457  BP     3  0 1.000000e+00
## GO:0070960  BP     3  0 1.000000e+00
## GO:0070961  BP     3  0 1.000000e+00
## GO:2000386  BP     3  0 1.000000e+00
## GO:1903378  BP     3  0 1.000000e+00
## GO:2001247  BP     3  0 1.000000e+00
## GO:1902995  BP     3  0 1.000000e+00
## GO:0061092  BP     3  0 1.000000e+00
## GO:2000588  BP     3  0 1.000000e+00
## GO:1902304  BP     3  0 1.000000e+00
## GO:1903766  BP     3  0 1.000000e+00
## GO:1902722  BP     3  0 1.000000e+00
## GO:0060585  BP     3  0 1.000000e+00
## GO:1902523  BP     3  0 1.000000e+00
## GO:1904100  BP     3  0 1.000000e+00
## GO:1904352  BP     3  0 1.000000e+00
## GO:1900740  BP     3  0 1.000000e+00
## GO:1904184  BP     3  0 1.000000e+00
## GO:1902685  BP     3  0 1.000000e+00
## GO:1901079  BP     3  0 1.000000e+00
## GO:1904833  BP     3  0 1.000000e+00
## GO:1900135  BP     3  0 1.000000e+00
## GO:0032097  BP     3  0 1.000000e+00
## GO:1903971  BP     3  0 1.000000e+00
## GO:1902336  BP     3  0 1.000000e+00
## GO:1904154  BP     3  0 1.000000e+00
## GO:1904222  BP     3  0 1.000000e+00
## GO:0014064  BP     3  0 1.000000e+00
## GO:1902811  BP     3  0 1.000000e+00
## GO:1904349  BP     3  0 1.000000e+00
## GO:2000120  BP     3  0 1.000000e+00
## GO:1901671  BP     3  0 1.000000e+00
## GO:1904431  BP     3  0 1.000000e+00
## GO:2000611  BP     3  0 1.000000e+00
## GO:1905075  BP     3  0 1.000000e+00
## GO:0051795  BP     3  0 1.000000e+00
## GO:0034157  BP     3  0 1.000000e+00
## GO:1901485  BP     3  0 1.000000e+00
## GO:0000432  BP     3  0 1.000000e+00
## GO:2000721  BP     3  0 1.000000e+00
## GO:0006990  BP     3  0 1.000000e+00
## GO:0036493  BP     3  0 1.000000e+00
## GO:0032058  BP     3  0 1.000000e+00
## GO:0045905  BP     3  0 1.000000e+00
## GO:1903774  BP     3  0 1.000000e+00
## GO:0010980  BP     3  0 1.000000e+00
## GO:0060060  BP     3  0 1.000000e+00
## GO:0045297  BP     3  0 1.000000e+00
## GO:0034421  BP     3  0 1.000000e+00
## GO:0021827  BP     3  0 1.000000e+00
## GO:0000973  BP     3  0 1.000000e+00
## GO:0002331  BP     3  0 1.000000e+00
## GO:0001546  BP     3  0 1.000000e+00
## GO:0030327  BP     3  0 1.000000e+00
## GO:0099526  BP     3  0 1.000000e+00
## GO:0098928  BP     3  0 1.000000e+00
## GO:0001545  BP     3  0 1.000000e+00
## GO:1903929  BP     3  0 1.000000e+00
## GO:0002572  BP     3  0 1.000000e+00
## GO:0010133  BP     3  0 1.000000e+00
## GO:0039019  BP     3  0 1.000000e+00
## GO:0060523  BP     3  0 1.000000e+00
## GO:0060741  BP     3  0 1.000000e+00
## GO:0070682  BP     3  0 1.000000e+00
## GO:1990167  BP     3  0 1.000000e+00
## GO:0044313  BP     3  0 1.000000e+00
## GO:0051697  BP     3  0 1.000000e+00
## GO:0045041  BP     3  0 1.000000e+00
## GO:0016561  BP     3  0 1.000000e+00
## GO:0032979  BP     3  0 1.000000e+00
## GO:1990108  BP     3  0 1.000000e+00
## GO:0032258  BP     3  0 1.000000e+00
## GO:1903292  BP     3  0 1.000000e+00
## GO:1903119  BP     3  0 1.000000e+00
## GO:1902396  BP     3  0 1.000000e+00
## GO:1905725  BP     3  0 1.000000e+00
## GO:1904825  BP     3  0 1.000000e+00
## GO:0090204  BP     3  0 1.000000e+00
## GO:1990173  BP     3  0 1.000000e+00
## GO:0044860  BP     3  0 1.000000e+00
## GO:1990166  BP     3  0 1.000000e+00
## GO:0061833  BP     3  0 1.000000e+00
## GO:0018094  BP     3  0 1.000000e+00
## GO:0030908  BP     3  0 1.000000e+00
## GO:0071211  BP     3  0 1.000000e+00
## GO:1903445  BP     3  0 1.000000e+00
## GO:0003350  BP     3  0 1.000000e+00
## GO:0009182  BP     3  0 1.000000e+00
## GO:0046122  BP     3  0 1.000000e+00
## GO:0043096  BP     3  0 1.000000e+00
## GO:0072530  BP     3  0 1.000000e+00
## GO:0042822  BP     3  0 1.000000e+00
## GO:0009197  BP     3  0 1.000000e+00
## GO:0009196  BP     3  0 1.000000e+00
## GO:0009212  BP     3  0 1.000000e+00
## GO:0006208  BP     3  0 1.000000e+00
## GO:0015855  BP     3  0 1.000000e+00
## GO:0009139  BP     3  0 1.000000e+00
## GO:0009138  BP     3  0 1.000000e+00
## GO:0015864  BP     3  0 1.000000e+00
## GO:0009174  BP     3  0 1.000000e+00
## GO:0009173  BP     3  0 1.000000e+00
## GO:0009080  BP     3  0 1.000000e+00
## GO:1901475  BP     3  0 1.000000e+00
## GO:1901662  BP     3  0 1.000000e+00
## GO:0035928  BP     3  0 1.000000e+00
## GO:2000286  BP     3  0 1.000000e+00
## GO:1905868  BP     3  0 1.000000e+00
## GO:1903891  BP     3  0 1.000000e+00
## GO:2000449  BP     3  0 1.000000e+00
## GO:1904217  BP     3  0 1.000000e+00
## GO:1902162  BP     3  0 1.000000e+00
## GO:0072695  BP     3  0 1.000000e+00
## GO:2000371  BP     3  0 1.000000e+00
## GO:0070376  BP     3  0 1.000000e+00
## GO:1904020  BP     3  0 1.000000e+00
## GO:0110030  BP     3  0 1.000000e+00
## GO:0010963  BP     3  0 1.000000e+00
## GO:1902688  BP     3  0 1.000000e+00
## GO:1901664  BP     3  0 1.000000e+00
## GO:0032483  BP     3  0 1.000000e+00
## GO:0032485  BP     3  0 1.000000e+00
## GO:0032487  BP     3  0 1.000000e+00
## GO:0014038  BP     3  0 1.000000e+00
## GO:2001188  BP     3  0 1.000000e+00
## GO:1903939  BP     3  0 1.000000e+00
## GO:0060408  BP     3  0 1.000000e+00
## GO:1904232  BP     3  0 1.000000e+00
## GO:2000367  BP     3  0 1.000000e+00
## GO:1904616  BP     3  0 1.000000e+00
## GO:0002877  BP     3  0 1.000000e+00
## GO:1905674  BP     3  0 1.000000e+00
## GO:1905335  BP     3  0 1.000000e+00
## GO:1903630  BP     3  0 1.000000e+00
## GO:2000823  BP     3  0 1.000000e+00
## GO:0060177  BP     3  0 1.000000e+00
## GO:1901951  BP     3  0 1.000000e+00
## GO:1903742  BP     3  0 1.000000e+00
## GO:0002589  BP     3  0 1.000000e+00
## GO:1902256  BP     3  0 1.000000e+00
## GO:0000821  BP     3  0 1.000000e+00
## GO:0061888  BP     3  0 1.000000e+00
## GO:1904170  BP     3  0 1.000000e+00
## GO:0002017  BP     3  0 1.000000e+00
## GO:0060378  BP     3  0 1.000000e+00
## GO:1903233  BP     3  0 1.000000e+00
## GO:1903279  BP     3  0 1.000000e+00
## GO:1903677  BP     3  0 1.000000e+00
## GO:0098679  BP     3  0 1.000000e+00
## GO:0110022  BP     3  0 1.000000e+00
## GO:1905310  BP     3  0 1.000000e+00
## GO:2000722  BP     3  0 1.000000e+00
## GO:1901301  BP     3  0 1.000000e+00
## GO:1901844  BP     3  0 1.000000e+00
## GO:1905915  BP     3  0 1.000000e+00
## GO:0001560  BP     3  0 1.000000e+00
## GO:0003250  BP     3  0 1.000000e+00
## GO:1901963  BP     3  0 1.000000e+00
## GO:0030997  BP     3  0 1.000000e+00
## GO:2000338  BP     3  0 1.000000e+00
## GO:1904192  BP     3  0 1.000000e+00
## GO:0061187  BP     3  0 1.000000e+00
## GO:0002874  BP     3  0 1.000000e+00
## GO:1905443  BP     3  0 1.000000e+00
## GO:0048696  BP     3  0 1.000000e+00
## GO:0060300  BP     3  0 1.000000e+00
## GO:0032954  BP     3  0 1.000000e+00
## GO:0051710  BP     3  0 1.000000e+00
## GO:0045583  BP     3  0 1.000000e+00
## GO:1900150  BP     3  0 1.000000e+00
## GO:2000705  BP     3  0 1.000000e+00
## GO:1903179  BP     3  0 1.000000e+00
## GO:1900095  BP     3  0 1.000000e+00
## GO:0010999  BP     3  0 1.000000e+00
## GO:2000383  BP     3  0 1.000000e+00
## GO:0042663  BP     3  0 1.000000e+00
## GO:0060699  BP     3  0 1.000000e+00
## GO:1901074  BP     3  0 1.000000e+00
## GO:0043309  BP     3  0 1.000000e+00
## GO:1901187  BP     3  0 1.000000e+00
## GO:0010482  BP     3  0 1.000000e+00
## GO:1905041  BP     3  0 1.000000e+00
## GO:1904444  BP     3  0 1.000000e+00
## GO:2000864  BP     3  0 1.000000e+00
## GO:0071898  BP     3  0 1.000000e+00
## GO:0060178  BP     3  0 1.000000e+00
## GO:0031446  BP     3  0 1.000000e+00
## GO:2000313  BP     3  0 1.000000e+00
## GO:1904344  BP     3  0 1.000000e+00
## GO:1900169  BP     3  0 1.000000e+00
## GO:1904023  BP     3  0 1.000000e+00
## GO:1902659  BP     3  0 1.000000e+00
## GO:1903786  BP     3  0 1.000000e+00
## GO:1900923  BP     3  0 1.000000e+00
## GO:0072361  BP     3  0 1.000000e+00
## GO:1904708  BP     3  0 1.000000e+00
## GO:0071661  BP     3  0 1.000000e+00
## GO:0003420  BP     3  0 1.000000e+00
## GO:0090081  BP     3  0 1.000000e+00
## GO:0003062  BP     3  0 1.000000e+00
## GO:0010908  BP     3  0 1.000000e+00
## GO:1903943  BP     3  0 1.000000e+00
## GO:0090107  BP     3  0 1.000000e+00
## GO:0010982  BP     3  0 1.000000e+00
## GO:0043134  BP     3  0 1.000000e+00
## GO:0110089  BP     3  0 1.000000e+00
## GO:1901674  BP     3  0 1.000000e+00
## GO:2001160  BP     3  0 1.000000e+00
## GO:1900104  BP     3  0 1.000000e+00
## GO:1902071  BP     3  0 1.000000e+00
## GO:1905702  BP     3  0 1.000000e+00
## GO:0045399  BP     3  0 1.000000e+00
## GO:1902214  BP     3  0 1.000000e+00
## GO:1902938  BP     3  0 1.000000e+00
## GO:1901252  BP     3  0 1.000000e+00
## GO:2000312  BP     3  0 1.000000e+00
## GO:0090234  BP     3  0 1.000000e+00
## GO:1902606  BP     3  0 1.000000e+00
## GO:0097213  BP     3  0 1.000000e+00
## GO:0090365  BP     3  0 1.000000e+00
## GO:0010610  BP     3  0 1.000000e+00
## GO:1902226  BP     3  0 1.000000e+00
## GO:2000446  BP     3  0 1.000000e+00
## GO:0060375  BP     3  0 1.000000e+00
## GO:1904464  BP     3  0 1.000000e+00
## GO:1903538  BP     3  0 1.000000e+00
## GO:1905024  BP     3  0 1.000000e+00
## GO:1905320  BP     3  0 1.000000e+00
## GO:1900238  BP     3  0 1.000000e+00
## GO:2000625  BP     3  0 1.000000e+00
## GO:0032423  BP     3  0 1.000000e+00
## GO:0090296  BP     3  0 1.000000e+00
## GO:1902445  BP     3  0 1.000000e+00
## GO:1903108  BP     3  0 1.000000e+00
## GO:1903463  BP     3  0 1.000000e+00
## GO:1900623  BP     3  0 1.000000e+00
## GO:0010796  BP     3  0 1.000000e+00
## GO:0014738  BP     3  0 1.000000e+00
## GO:1905292  BP     3  0 1.000000e+00
## GO:0099152  BP     3  0 1.000000e+00
## GO:0032899  BP     3  0 1.000000e+00
## GO:0045658  BP     3  0 1.000000e+00
## GO:1903995  BP     3  0 1.000000e+00
## GO:0070428  BP     3  0 1.000000e+00
## GO:2000819  BP     3  0 1.000000e+00
## GO:1900141  BP     3  0 1.000000e+00
## GO:2000474  BP     3  0 1.000000e+00
## GO:2000374  BP     3  0 1.000000e+00
## GO:2000828  BP     3  0 1.000000e+00
## GO:0043456  BP     3  0 1.000000e+00
## GO:2000468  BP     3  0 1.000000e+00
## GO:0044375  BP     3  0 1.000000e+00
## GO:1902994  BP     3  0 1.000000e+00
## GO:0061091  BP     3  0 1.000000e+00
## GO:2000040  BP     3  0 1.000000e+00
## GO:1905684  BP     3  0 1.000000e+00
## GO:0090361  BP     3  0 1.000000e+00
## GO:0030860  BP     3  0 1.000000e+00
## GO:1901873  BP     3  0 1.000000e+00
## GO:1901629  BP     3  0 1.000000e+00
## GO:2000182  BP     3  0 1.000000e+00
## GO:2000870  BP     3  0 1.000000e+00
## GO:0060584  BP     3  0 1.000000e+00
## GO:1903093  BP     3  0 1.000000e+00
## GO:0061945  BP     3  0 1.000000e+00
## GO:1904098  BP     3  0 1.000000e+00
## GO:0099575  BP     3  0 1.000000e+00
## GO:0090283  BP     3  0 1.000000e+00
## GO:1900739  BP     3  0 1.000000e+00
## GO:1905600  BP     3  0 1.000000e+00
## GO:0002019  BP     3  0 1.000000e+00
## GO:0099178  BP     3  0 1.000000e+00
## GO:1905279  BP     3  0 1.000000e+00
## GO:0007468  BP     3  0 1.000000e+00
## GO:0014717  BP     3  0 1.000000e+00
## GO:0090182  BP     3  0 1.000000e+00
## GO:0014722  BP     3  0 1.000000e+00
## GO:1904204  BP     3  0 1.000000e+00
## GO:1904048  BP     3  0 1.000000e+00
## GO:0031335  BP     3  0 1.000000e+00
## GO:0060025  BP     3  0 1.000000e+00
## GO:1905661  BP     3  0 1.000000e+00
## GO:1904533  BP     3  0 1.000000e+00
## GO:1904594  BP     3  0 1.000000e+00
## GO:2000804  BP     3  0 1.000000e+00
## GO:2000843  BP     3  0 1.000000e+00
## GO:1901401  BP     3  0 1.000000e+00
## GO:0070494  BP     3  0 1.000000e+00
## GO:1905073  BP     3  0 1.000000e+00
## GO:0002652  BP     3  0 1.000000e+00
## GO:0034155  BP     3  0 1.000000e+00
## GO:1901483  BP     3  0 1.000000e+00
## GO:0000430  BP     3  0 1.000000e+00
## GO:0034395  BP     3  0 1.000000e+00
## GO:0021882  BP     3  0 1.000000e+00
## GO:0021912  BP     3  0 1.000000e+00
## GO:0010525  BP     3  0 1.000000e+00
## GO:0001807  BP     3  0 1.000000e+00
## GO:2000152  BP     3  0 1.000000e+00
## GO:1903335  BP     3  0 1.000000e+00
## GO:1905930  BP     3  0 1.000000e+00
## GO:0010915  BP     3  0 1.000000e+00
## GO:0010901  BP     3  0 1.000000e+00
## GO:0010979  BP     3  0 1.000000e+00
## GO:0071579  BP     3  0 1.000000e+00
## GO:0019046  BP     3  0 1.000000e+00
## GO:0072053  BP     3  0 1.000000e+00
## GO:0072034  BP     3  0 1.000000e+00
## GO:0043111  BP     3  0 1.000000e+00
## GO:1904016  BP     3  0 1.000000e+00
## GO:0010446  BP     3  0 1.000000e+00
## GO:1903842  BP     3  0 1.000000e+00
## GO:0061771  BP     3  0 1.000000e+00
## GO:1902349  BP     3  0 1.000000e+00
## GO:0061847  BP     3  0 1.000000e+00
## GO:0032025  BP     3  0 1.000000e+00
## GO:0014878  BP     3  0 1.000000e+00
## GO:0060992  BP     3  0 1.000000e+00
## GO:0009629  BP     3  0 1.000000e+00
## GO:1904880  BP     3  0 1.000000e+00
## GO:0051599  BP     3  0 1.000000e+00
## GO:0035962  BP     3  0 1.000000e+00
## GO:0051595  BP     3  0 1.000000e+00
## GO:0009624  BP     3  0 1.000000e+00
## GO:0071873  BP     3  0 1.000000e+00
## GO:0071798  BP     3  0 1.000000e+00
## GO:0046684  BP     3  0 1.000000e+00
## GO:1901355  BP     3  0 1.000000e+00
## GO:0072708  BP     3  0 1.000000e+00
## GO:0072733  BP     3  0 1.000000e+00
## GO:1904578  BP     3  0 1.000000e+00
## GO:0071725  BP     3  0 1.000000e+00
## GO:0034633  BP     3  0 1.000000e+00
## GO:0021570  BP     3  0 1.000000e+00
## GO:0021593  BP     3  0 1.000000e+00
## GO:0006610  BP     3  0 1.000000e+00
## GO:0003221  BP     3  0 1.000000e+00
## GO:0048769  BP     3  0 1.000000e+00
## GO:0032788  BP     3  0 1.000000e+00
## GO:0061033  BP     3  0 1.000000e+00
## GO:0046960  BP     3  0 1.000000e+00
## GO:0097374  BP     3  0 1.000000e+00
## GO:0003285  BP     3  0 1.000000e+00
## GO:0002554  BP     3  0 1.000000e+00
## GO:0006714  BP     3  0 1.000000e+00
## GO:0023016  BP     3  0 1.000000e+00
## GO:0060931  BP     3  0 1.000000e+00
## GO:0031134  BP     3  0 1.000000e+00
## GO:0043503  BP     3  0 1.000000e+00
## GO:0031444  BP     3  0 1.000000e+00
## GO:0021776  BP     3  0 1.000000e+00
## GO:0021775  BP     3  0 1.000000e+00
## GO:0031120  BP     3  0 1.000000e+00
## GO:0051030  BP     3  0 1.000000e+00
## GO:0016077  BP     3  0 1.000000e+00
## GO:0010159  BP     3  0 1.000000e+00
## GO:0097724  BP     3  0 1.000000e+00
## GO:1905419  BP     3  0 1.000000e+00
## GO:0007284  BP     3  0 1.000000e+00
## GO:0032918  BP     3  0 1.000000e+00
## GO:0006597  BP     3  0 1.000000e+00
## GO:0046208  BP     3  0 1.000000e+00
## GO:0006667  BP     3  0 1.000000e+00
## GO:0021529  BP     3  0 1.000000e+00
## GO:0021530  BP     3  0 1.000000e+00
## GO:0021965  BP     3  0 1.000000e+00
## GO:0007056  BP     3  0 1.000000e+00
## GO:0060720  BP     3  0 1.000000e+00
## GO:0048866  BP     3  0 1.000000e+00
## GO:0071422  BP     3  0 1.000000e+00
## GO:0015770  BP     3  0 1.000000e+00
## GO:0099163  BP     3  0 1.000000e+00
## GO:0060084  BP     3  0 1.000000e+00
## GO:0048499  BP     3  0 1.000000e+00
## GO:0042779  BP     3  0 1.000000e+00
## GO:0002946  BP     3  0 1.000000e+00
## GO:0006409  BP     3  0 1.000000e+00
## GO:0002949  BP     3  0 1.000000e+00
## GO:0071431  BP     3  0 1.000000e+00
## GO:0101030  BP     3  0 1.000000e+00
## GO:0000379  BP     3  0 1.000000e+00
## GO:0031509  BP     3  0 1.000000e+00
## GO:1902896  BP     3  0 1.000000e+00
## GO:0030846  BP     3  0 1.000000e+00
## GO:0006393  BP     3  0 1.000000e+00
## GO:0046865  BP     3  0 1.000000e+00
## GO:0060748  BP     3  0 1.000000e+00
## GO:0035936  BP     3  0 1.000000e+00
## GO:0016108  BP     3  0 1.000000e+00
## GO:0006772  BP     3  0 1.000000e+00
## GO:0015888  BP     3  0 1.000000e+00
## GO:0042723  BP     3  0 1.000000e+00
## GO:0001966  BP     3  0 1.000000e+00
## GO:0015709  BP     3  0 1.000000e+00
## GO:0007356  BP     3  0 1.000000e+00
## GO:0006435  BP     3  0 1.000000e+00
## GO:0046104  BP     3  0 1.000000e+00
## GO:0006210  BP     3  0 1.000000e+00
## GO:0019859  BP     3  0 1.000000e+00
## GO:1905071  BP     3  0 1.000000e+00
## GO:0002930  BP     3  0 1.000000e+00
## GO:0061153  BP     3  0 1.000000e+00
## GO:0061152  BP     3  0 1.000000e+00
## GO:0099540  BP     3  0 1.000000e+00
## GO:0099548  BP     3  0 1.000000e+00
## GO:0099543  BP     3  0 1.000000e+00
## GO:0006391  BP     3  0 1.000000e+00
## GO:0070634  BP     3  0 1.000000e+00
## GO:0007181  BP     3  0 1.000000e+00
## GO:0007089  BP     3  0 1.000000e+00
## GO:0021558  BP     3  0 1.000000e+00
## GO:0001831  BP     3  0 1.000000e+00
## GO:0015827  BP     3  0 1.000000e+00
## GO:0071596  BP     3  0 1.000000e+00
## GO:0032789  BP     3  0 1.000000e+00
## GO:0019860  BP     3  0 1.000000e+00
## GO:0071918  BP     3  0 1.000000e+00
## GO:0072190  BP     3  0 1.000000e+00
## GO:0072092  BP     3  0 1.000000e+00
## GO:0006624  BP     3  0 1.000000e+00
## GO:0021564  BP     3  0 1.000000e+00
## GO:1905420  BP     3  0 1.000000e+00
## GO:0055005  BP     3  0 1.000000e+00
## GO:0021847  BP     3  0 1.000000e+00
## GO:0021524  BP     3  0 1.000000e+00
## GO:0071939  BP     3  0 1.000000e+00
## GO:0071938  BP     3  0 1.000000e+00
## GO:0042816  BP     3  0 1.000000e+00
## GO:0042360  BP     3  0 1.000000e+00
## GO:0010025  BP     3  0 1.000000e+00
## GO:0010166  BP     3  0 1.000000e+00
## GO:0005997  BP     3  0 1.000000e+00
## GO:0045218  BP     3  0 1.000000e+00
## GO:0006189  BP     4  0 1.000000e+00
## GO:1990966  BP     4  0 1.000000e+00
## GO:0031296  BP     4  0 1.000000e+00
## GO:0035697  BP     4  0 1.000000e+00
## GO:0048205  BP     4  0 1.000000e+00
## GO:0071034  BP     4  0 1.000000e+00
## GO:0071043  BP     4  0 1.000000e+00
## GO:0030576  BP     4  0 1.000000e+00
## GO:0060486  BP     4  0 1.000000e+00
## GO:0043137  BP     4  0 1.000000e+00
## GO:0006269  BP     4  0 1.000000e+00
## GO:0035621  BP     4  0 1.000000e+00
## GO:0038095  BP     4  0 1.000000e+00
## GO:0046368  BP     4  0 1.000000e+00
## GO:0006177  BP     4  0 1.000000e+00
## GO:0090168  BP     4  0 1.000000e+00
## GO:0048200  BP     4  0 1.000000e+00
## GO:0070384  BP     4  0 1.000000e+00
## GO:0032264  BP     4  0 1.000000e+00
## GO:0007258  BP     4  0 1.000000e+00
## GO:0038109  BP     4  0 1.000000e+00
## GO:0019853  BP     4  0 1.000000e+00
## GO:0055129  BP     4  0 1.000000e+00
## GO:0006564  BP     4  0 1.000000e+00
## GO:0006565  BP     4  0 1.000000e+00
## GO:0002396  BP     4  0 1.000000e+00
## GO:0001880  BP     4  0 1.000000e+00
## GO:0018076  BP     4  0 1.000000e+00
## GO:0006499  BP     4  0 1.000000e+00
## GO:0006741  BP     4  0 1.000000e+00
## GO:0098989  BP     4  0 1.000000e+00
## GO:0086017  BP     4  0 1.000000e+00
## GO:0071076  BP     4  0 1.000000e+00
## GO:0006556  BP     4  0 1.000000e+00
## GO:0033353  BP     4  0 1.000000e+00
## GO:0060061  BP     4  0 1.000000e+00
## GO:0002424  BP     4  0 1.000000e+00
## GO:0002309  BP     4  0 1.000000e+00
## GO:0061470  BP     4  0 1.000000e+00
## GO:0035711  BP     4  0 1.000000e+00
## GO:0002296  BP     4  0 1.000000e+00
## GO:0048014  BP     4  0 1.000000e+00
## GO:0019276  BP     4  0 1.000000e+00
## GO:0061355  BP     4  0 1.000000e+00
## GO:0090244  BP     4  0 1.000000e+00
## GO:0007223  BP     4  0 1.000000e+00
## GO:0009838  BP     4  0 1.000000e+00
## GO:1900620  BP     4  0 1.000000e+00
## GO:0006083  BP     4  0 1.000000e+00
## GO:0008292  BP     4  0 1.000000e+00
## GO:0090135  BP     4  0 1.000000e+00
## GO:0030043  BP     4  0 1.000000e+00
## GO:0030047  BP     4  0 1.000000e+00
## GO:0070358  BP     4  0 1.000000e+00
## GO:0090427  BP     4  0 1.000000e+00
## GO:0001905  BP     4  0 1.000000e+00
## GO:0002525  BP     4  0 1.000000e+00
## GO:0006844  BP     4  0 1.000000e+00
## GO:0034196  BP     4  0 1.000000e+00
## GO:1901911  BP     4  0 1.000000e+00
## GO:1901910  BP     4  0 1.000000e+00
## GO:0007196  BP     4  0 1.000000e+00
## GO:1990410  BP     4  0 1.000000e+00
## GO:0006522  BP     4  0 1.000000e+00
## GO:0015842  BP     4  0 1.000000e+00
## GO:0006578  BP     4  0 1.000000e+00
## GO:0015917  BP     4  0 1.000000e+00
## GO:0006710  BP     4  0 1.000000e+00
## GO:0002003  BP     4  0 1.000000e+00
## GO:0001998  BP     4  0 1.000000e+00
## GO:0098957  BP     4  0 1.000000e+00
## GO:0019732  BP     4  0 1.000000e+00
## GO:0002477  BP     4  0 1.000000e+00
## GO:0048003  BP     4  0 1.000000e+00
## GO:0048007  BP     4  0 1.000000e+00
## GO:0003383  BP     4  0 1.000000e+00
## GO:0038027  BP     4  0 1.000000e+00
## GO:0002538  BP     4  0 1.000000e+00
## GO:0035910  BP     4  0 1.000000e+00
## GO:0006528  BP     4  0 1.000000e+00
## GO:1902626  BP     4  0 1.000000e+00
## GO:0002265  BP     4  0 1.000000e+00
## GO:0060018  BP     4  0 1.000000e+00
## GO:0016240  BP     4  0 1.000000e+00
## GO:0007412  BP     4  0 1.000000e+00
## GO:0006285  BP     4  0 1.000000e+00
## GO:0045575  BP     4  0 1.000000e+00
## GO:0019482  BP     4  0 1.000000e+00
## GO:0060447  BP     4  0 1.000000e+00
## GO:0003166  BP     4  0 1.000000e+00
## GO:0046069  BP     4  0 1.000000e+00
## GO:0070574  BP     4  0 1.000000e+00
## GO:0015691  BP     4  0 1.000000e+00
## GO:0061589  BP     4  0 1.000000e+00
## GO:0044336  BP     4  0 1.000000e+00
## GO:0000436  BP     4  0 1.000000e+00
## GO:0000429  BP     4  0 1.000000e+00
## GO:0060913  BP     4  0 1.000000e+00
## GO:0003219  BP     4  0 1.000000e+00
## GO:0035965  BP     4  0 1.000000e+00
## GO:0070836  BP     4  0 1.000000e+00
## GO:1902292  BP     4  0 1.000000e+00
## GO:0003273  BP     4  0 1.000000e+00
## GO:0035788  BP     4  0 1.000000e+00
## GO:0035441  BP     4  0 1.000000e+00
## GO:2000793  BP     4  0 1.000000e+00
## GO:0061209  BP     4  0 1.000000e+00
## GO:0016998  BP     4  0 1.000000e+00
## GO:1905232  BP     4  0 1.000000e+00
## GO:0072719  BP     4  0 1.000000e+00
## GO:0071376  BP     4  0 1.000000e+00
## GO:0071726  BP     4  0 1.000000e+00
## GO:0097211  BP     4  0 1.000000e+00
## GO:0071504  BP     4  0 1.000000e+00
## GO:0071349  BP     4  0 1.000000e+00
## GO:0036146  BP     4  0 1.000000e+00
## GO:0090650  BP     4  0 1.000000e+00
## GO:0071374  BP     4  0 1.000000e+00
## GO:1904628  BP     4  0 1.000000e+00
## GO:0051365  BP     4  0 1.000000e+00
## GO:1903936  BP     4  0 1.000000e+00
## GO:0036216  BP     4  0 1.000000e+00
## GO:0071502  BP     4  0 1.000000e+00
## GO:0035984  BP     4  0 1.000000e+00
## GO:0032286  BP     4  0 1.000000e+00
## GO:0021698  BP     4  0 1.000000e+00
## GO:0098749  BP     4  0 1.000000e+00
## GO:0021590  BP     4  0 1.000000e+00
## GO:0090660  BP     4  0 1.000000e+00
## GO:0033326  BP     4  0 1.000000e+00
## GO:0038146  BP     4  0 1.000000e+00
## GO:0003415  BP     4  0 1.000000e+00
## GO:0097360  BP     4  0 1.000000e+00
## GO:0070827  BP     4  0 1.000000e+00
## GO:0097549  BP     4  0 1.000000e+00
## GO:0034401  BP     4  0 1.000000e+00
## GO:0002439  BP     4  0 1.000000e+00
## GO:0032053  BP     4  0 1.000000e+00
## GO:0060830  BP     4  0 1.000000e+00
## GO:0097167  BP     4  0 1.000000e+00
## GO:0019240  BP     4  0 1.000000e+00
## GO:0021747  BP     4  0 1.000000e+00
## GO:0007386  BP     4  0 1.000000e+00
## GO:0072137  BP     4  0 1.000000e+00
## GO:0022007  BP     4  0 1.000000e+00
## GO:1903575  BP     4  0 1.000000e+00
## GO:0043622  BP     4  0 1.000000e+00
## GO:0043396  BP     4  0 1.000000e+00
## GO:0006216  BP     4  0 1.000000e+00
## GO:0009972  BP     4  0 1.000000e+00
## GO:0046087  BP     4  0 1.000000e+00
## GO:0045065  BP     4  0 1.000000e+00
## GO:0006203  BP     4  0 1.000000e+00
## GO:0006231  BP     4  0 1.000000e+00
## GO:0046073  BP     4  0 1.000000e+00
## GO:0002215  BP     4  0 1.000000e+00
## GO:0061110  BP     4  0 1.000000e+00
## GO:0061789  BP     4  0 1.000000e+00
## GO:0046121  BP     4  0 1.000000e+00
## GO:0009189  BP     4  0 1.000000e+00
## GO:0061054  BP     4  0 1.000000e+00
## GO:0002159  BP     4  0 1.000000e+00
## GO:0042494  BP     4  0 1.000000e+00
## GO:0032497  BP     4  0 1.000000e+00
## GO:0035995  BP     4  0 1.000000e+00
## GO:0006651  BP     4  0 1.000000e+00
## GO:0046340  BP     4  0 1.000000e+00
## GO:1901909  BP     4  0 1.000000e+00
## GO:1901908  BP     4  0 1.000000e+00
## GO:1901907  BP     4  0 1.000000e+00
## GO:1901906  BP     4  0 1.000000e+00
## GO:0042938  BP     4  0 1.000000e+00
## GO:0071543  BP     4  0 1.000000e+00
## GO:0046351  BP     4  0 1.000000e+00
## GO:0044004  BP     4  0 1.000000e+00
## GO:0016103  BP     4  0 1.000000e+00
## GO:0033563  BP     4  0 1.000000e+00
## GO:1990918  BP     4  0 1.000000e+00
## GO:0097680  BP     4  0 1.000000e+00
## GO:0090579  BP     4  0 1.000000e+00
## GO:0003373  BP     4  0 1.000000e+00
## GO:0003374  BP     4  0 1.000000e+00
## GO:0001712  BP     4  0 1.000000e+00
## GO:0015990  BP     4  0 1.000000e+00
## GO:0030538  BP     4  0 1.000000e+00
## GO:0048619  BP     4  0 1.000000e+00
## GO:0071926  BP     4  0 1.000000e+00
## GO:0003274  BP     4  0 1.000000e+00
## GO:0060214  BP     4  0 1.000000e+00
## GO:0075509  BP     4  0 1.000000e+00
## GO:0061031  BP     4  0 1.000000e+00
## GO:0000480  BP     4  0 1.000000e+00
## GO:0071787  BP     4  0 1.000000e+00
## GO:1990809  BP     4  0 1.000000e+00
## GO:0015988  BP     4  0 1.000000e+00
## GO:0009957  BP     4  0 1.000000e+00
## GO:0042414  BP     4  0 1.000000e+00
## GO:0061030  BP     4  0 1.000000e+00
## GO:0060743  BP     4  0 1.000000e+00
## GO:2001013  BP     4  0 1.000000e+00
## GO:0008065  BP     4  0 1.000000e+00
## GO:0048104  BP     4  0 1.000000e+00
## GO:0048105  BP     4  0 1.000000e+00
## GO:0071963  BP     4  0 1.000000e+00
## GO:0030951  BP     4  0 1.000000e+00
## GO:0045338  BP     4  0 1.000000e+00
## GO:0031443  BP     4  0 1.000000e+00
## GO:0033540  BP     4  0 1.000000e+00
## GO:0051309  BP     4  0 1.000000e+00
## GO:0021797  BP     4  0 1.000000e+00
## GO:0001732  BP     4  0 1.000000e+00
## GO:0015755  BP     4  0 1.000000e+00
## GO:0061198  BP     4  0 1.000000e+00
## GO:0097112  BP     4  0 1.000000e+00
## GO:0090202  BP     4  0 1.000000e+00
## GO:0072144  BP     4  0 1.000000e+00
## GO:0072008  BP     4  0 1.000000e+00
## GO:0090521  BP     4  0 1.000000e+00
## GO:0021615  BP     4  0 1.000000e+00
## GO:0043402  BP     4  0 1.000000e+00
## GO:0019659  BP     4  0 1.000000e+00
## GO:0019661  BP     4  0 1.000000e+00
## GO:0006537  BP     4  0 1.000000e+00
## GO:0034635  BP     4  0 1.000000e+00
## GO:0046167  BP     4  0 1.000000e+00
## GO:1903804  BP     4  0 1.000000e+00
## GO:0019660  BP     4  0 1.000000e+00
## GO:0061622  BP     4  0 1.000000e+00
## GO:0034436  BP     4  0 1.000000e+00
## GO:0042253  BP     4  0 1.000000e+00
## GO:0044110  BP     4  0 1.000000e+00
## GO:0044117  BP     4  0 1.000000e+00
## GO:0044116  BP     4  0 1.000000e+00
## GO:0003431  BP     4  0 1.000000e+00
## GO:0010286  BP     4  0 1.000000e+00
## GO:0035684  BP     4  0 1.000000e+00
## GO:0042167  BP     4  0 1.000000e+00
## GO:0070868  BP     4  0 1.000000e+00
## GO:0001692  BP     4  0 1.000000e+00
## GO:0070537  BP     4  0 1.000000e+00
## GO:0035616  BP     4  0 1.000000e+00
## GO:0034729  BP     4  0 1.000000e+00
## GO:0106077  BP     4  0 1.000000e+00
## GO:0070814  BP     4  0 1.000000e+00
## GO:0021888  BP     4  0 1.000000e+00
## GO:0021886  BP     4  0 1.000000e+00
## GO:0046100  BP     4  0 1.000000e+00
## GO:1901523  BP     4  0 1.000000e+00
## GO:0002434  BP     4  0 1.000000e+00
## GO:0002767  BP     4  0 1.000000e+00
## GO:0002378  BP     4  0 1.000000e+00
## GO:0002426  BP     4  0 1.000000e+00
## GO:0060819  BP     4  0 1.000000e+00
## GO:0043152  BP     4  0 1.000000e+00
## GO:0046102  BP     4  0 1.000000e+00
## GO:0038156  BP     4  0 1.000000e+00
## GO:0042097  BP     4  0 1.000000e+00
## GO:0035622  BP     4  0 1.000000e+00
## GO:0003011  BP     4  0 1.000000e+00
## GO:0072051  BP     4  0 1.000000e+00
## GO:0046952  BP     4  0 1.000000e+00
## GO:0072131  BP     4  0 1.000000e+00
## GO:0001907  BP     4  0 1.000000e+00
## GO:0019244  BP     4  0 1.000000e+00
## GO:0006272  BP     4  0 1.000000e+00
## GO:0060459  BP     4  0 1.000000e+00
## GO:1990086  BP     4  0 1.000000e+00
## GO:0006552  BP     4  0 1.000000e+00
## GO:0048861  BP     4  0 1.000000e+00
## GO:0060988  BP     4  0 1.000000e+00
## GO:0035338  BP     4  0 1.000000e+00
## GO:0097212  BP     4  0 1.000000e+00
## GO:0006344  BP     4  0 1.000000e+00
## GO:0007060  BP     4  0 1.000000e+00
## GO:0060648  BP     4  0 1.000000e+00
## GO:0060594  BP     4  0 1.000000e+00
## GO:0060596  BP     4  0 1.000000e+00
## GO:1904382  BP     4  0 1.000000e+00
## GO:0097029  BP     4  0 1.000000e+00
## GO:0051793  BP     4  0 1.000000e+00
## GO:0000706  BP     4  0 1.000000e+00
## GO:0000711  BP     4  0 1.000000e+00
## GO:0051598  BP     4  0 1.000000e+00
## GO:0086046  BP     4  0 1.000000e+00
## GO:0051665  BP     4  0 1.000000e+00
## GO:0097749  BP     4  0 1.000000e+00
## GO:1900200  BP     4  0 1.000000e+00
## GO:1901145  BP     4  0 1.000000e+00
## GO:0072198  BP     4  0 1.000000e+00
## GO:0072180  BP     4  0 1.000000e+00
## GO:0072262  BP     4  0 1.000000e+00
## GO:0072223  BP     4  0 1.000000e+00
## GO:0072236  BP     4  0 1.000000e+00
## GO:0072162  BP     4  0 1.000000e+00
## GO:0035789  BP     4  0 1.000000e+00
## GO:0072133  BP     4  0 1.000000e+00
## GO:0072289  BP     4  0 1.000000e+00
## GO:0072093  BP     4  0 1.000000e+00
## GO:0044785  BP     4  0 1.000000e+00
## GO:0051596  BP     4  0 1.000000e+00
## GO:0019243  BP     4  0 1.000000e+00
## GO:0061727  BP     4  0 1.000000e+00
## GO:0030035  BP     4  0 1.000000e+00
## GO:0021555  BP     4  0 1.000000e+00
## GO:0098816  BP     4  0 1.000000e+00
## GO:0000964  BP     4  0 1.000000e+00
## GO:1900864  BP     4  0 1.000000e+00
## GO:0006121  BP     4  0 1.000000e+00
## GO:0034553  BP     4  0 1.000000e+00
## GO:0097250  BP     4  0 1.000000e+00
## GO:0070900  BP     4  0 1.000000e+00
## GO:0070125  BP     4  0 1.000000e+00
## GO:1902975  BP     4  0 1.000000e+00
## GO:0098763  BP     4  0 1.000000e+00
## GO:0071962  BP     4  0 1.000000e+00
## GO:0021815  BP     4  0 1.000000e+00
## GO:0032324  BP     4  0 1.000000e+00
## GO:0052651  BP     4  0 1.000000e+00
## GO:0042117  BP     4  0 1.000000e+00
## GO:0035522  BP     4  0 1.000000e+00
## GO:0035521  BP     4  0 1.000000e+00
## GO:1903966  BP     4  0 1.000000e+00
## GO:1903964  BP     4  0 1.000000e+00
## GO:0036257  BP     4  0 1.000000e+00
## GO:0002408  BP     4  0 1.000000e+00
## GO:0014835  BP     4  0 1.000000e+00
## GO:0048625  BP     4  0 1.000000e+00
## GO:0014839  BP     4  0 1.000000e+00
## GO:0036446  BP     4  0 1.000000e+00
## GO:0061055  BP     4  0 1.000000e+00
## GO:0045578  BP     4  0 1.000000e+00
## GO:1903625  BP     4  0 1.000000e+00
## GO:0039534  BP     4  0 1.000000e+00
## GO:0071878  BP     4  0 1.000000e+00
## GO:0032348  BP     4  0 1.000000e+00
## GO:0032345  BP     4  0 1.000000e+00
## GO:1905907  BP     4  0 1.000000e+00
## GO:0002584  BP     4  0 1.000000e+00
## GO:0038108  BP     4  0 1.000000e+00
## GO:1901097  BP     4  0 1.000000e+00
## GO:1903347  BP     4  0 1.000000e+00
## GO:0070858  BP     4  0 1.000000e+00
## GO:1904252  BP     4  0 1.000000e+00
## GO:1903588  BP     4  0 1.000000e+00
## GO:1900158  BP     4  0 1.000000e+00
## GO:0006933  BP     4  0 1.000000e+00
## GO:0060244  BP     4  0 1.000000e+00
## GO:1900060  BP     4  0 1.000000e+00
## GO:0071650  BP     4  0 1.000000e+00
## GO:1900186  BP     4  0 1.000000e+00
## GO:1903660  BP     4  0 1.000000e+00
## GO:2000065  BP     4  0 1.000000e+00
## GO:0045918  BP     4  0 1.000000e+00
## GO:0050689  BP     4  0 1.000000e+00
## GO:1903860  BP     4  0 1.000000e+00
## GO:2000669  BP     4  0 1.000000e+00
## GO:2001199  BP     4  0 1.000000e+00
## GO:1902951  BP     4  0 1.000000e+00
## GO:2001033  BP     4  0 1.000000e+00
## GO:1903225  BP     4  0 1.000000e+00
## GO:0003332  BP     4  0 1.000000e+00
## GO:0007621  BP     4  0 1.000000e+00
## GO:0051490  BP     4  0 1.000000e+00
## GO:0046882  BP     4  0 1.000000e+00
## GO:2000978  BP     4  0 1.000000e+00
## GO:0014053  BP     4  0 1.000000e+00
## GO:1905937  BP     4  0 1.000000e+00
## GO:0072125  BP     4  0 1.000000e+00
## GO:0090194  BP     4  0 1.000000e+00
## GO:0060125  BP     4  0 1.000000e+00
## GO:0061086  BP     4  0 1.000000e+00
## GO:2000619  BP     4  0 1.000000e+00
## GO:0002924  BP     4  0 1.000000e+00
## GO:1900126  BP     4  0 1.000000e+00
## GO:0010730  BP     4  0 1.000000e+00
## GO:0002838  BP     4  0 1.000000e+00
## GO:0106015  BP     4  0 1.000000e+00
## GO:0045608  BP     4  0 1.000000e+00
## GO:2000981  BP     4  0 1.000000e+00
## GO:2000660  BP     4  0 1.000000e+00
## GO:0045415  BP     4  0 1.000000e+00
## GO:1904479  BP     4  0 1.000000e+00
## GO:1903751  BP     4  0 1.000000e+00
## GO:1902219  BP     4  0 1.000000e+00
## GO:1904995  BP     4  0 1.000000e+00
## GO:0050748  BP     4  0 1.000000e+00
## GO:1901491  BP     4  0 1.000000e+00
## GO:2000255  BP     4  0 1.000000e+00
## GO:0033026  BP     4  0 1.000000e+00
## GO:0045632  BP     4  0 1.000000e+00
## GO:1901994  BP     4  0 1.000000e+00
## GO:1900212  BP     4  0 1.000000e+00
## GO:0072040  BP     4  0 1.000000e+00
## GO:1905903  BP     4  0 1.000000e+00
## GO:1905771  BP     4  0 1.000000e+00
## GO:0042662  BP     4  0 1.000000e+00
## GO:0061218  BP     4  0 1.000000e+00
## GO:1904684  BP     4  0 1.000000e+00
## GO:1902109  BP     4  0 1.000000e+00
## GO:0030886  BP     4  0 1.000000e+00
## GO:0032824  BP     4  0 1.000000e+00
## GO:0032827  BP     4  0 1.000000e+00
## GO:1902564  BP     4  0 1.000000e+00
## GO:0033030  BP     4  0 1.000000e+00
## GO:1900108  BP     4  0 1.000000e+00
## GO:2000623  BP     4  0 1.000000e+00
## GO:2001205  BP     4  0 1.000000e+00
## GO:0035359  BP     4  0 1.000000e+00
## GO:0043553  BP     4  0 1.000000e+00
## GO:0071072  BP     4  0 1.000000e+00
## GO:0010748  BP     4  0 1.000000e+00
## GO:2000587  BP     4  0 1.000000e+00
## GO:0060686  BP     4  0 1.000000e+00
## GO:1905765  BP     4  0 1.000000e+00
## GO:0090086  BP     4  0 1.000000e+00
## GO:1903333  BP     4  0 1.000000e+00
## GO:0060051  BP     4  0 1.000000e+00
## GO:0090074  BP     4  0 1.000000e+00
## GO:2000435  BP     4  0 1.000000e+00
## GO:0001920  BP     4  0 1.000000e+00
## GO:0002835  BP     4  0 1.000000e+00
## GO:0051612  BP     4  0 1.000000e+00
## GO:0021914  BP     4  0 1.000000e+00
## GO:1904673  BP     4  0 1.000000e+00
## GO:0032929  BP     4  0 1.000000e+00
## GO:0061428  BP     4  0 1.000000e+00
## GO:0060633  BP     4  0 1.000000e+00
## GO:1901837  BP     4  0 1.000000e+00
## GO:0045900  BP     4  0 1.000000e+00
## GO:1905460  BP     4  0 1.000000e+00
## GO:1903690  BP     4  0 1.000000e+00
## GO:0039689  BP     4  0 1.000000e+00
## GO:0014022  BP     4  0 1.000000e+00
## GO:0014016  BP     4  0 1.000000e+00
## GO:0097402  BP     4  0 1.000000e+00
## GO:0097118  BP     4  0 1.000000e+00
## GO:0097350  BP     4  0 1.000000e+00
## GO:0070947  BP     4  0 1.000000e+00
## GO:0042126  BP     4  0 1.000000e+00
## GO:0018916  BP     4  0 1.000000e+00
## GO:0019666  BP     4  0 1.000000e+00
## GO:0001994  BP     4  0 1.000000e+00
## GO:1902315  BP     4  0 1.000000e+00
## GO:0071042  BP     4  0 1.000000e+00
## GO:0070966  BP     4  0 1.000000e+00
## GO:0021557  BP     4  0 1.000000e+00
## GO:0008355  BP     4  0 1.000000e+00
## GO:0035672  BP     4  0 1.000000e+00
## GO:0038165  BP     4  0 1.000000e+00
## GO:0032474  BP     4  0 1.000000e+00
## GO:0060066  BP     4  0 1.000000e+00
## GO:0090403  BP     4  0 1.000000e+00
## GO:0000239  BP     4  0 1.000000e+00
## GO:0061113  BP     4  0 1.000000e+00
## GO:0072268  BP     4  0 1.000000e+00
## GO:0018197  BP     4  0 1.000000e+00
## GO:0018171  BP     4  0 1.000000e+00
## GO:0018364  BP     4  0 1.000000e+00
## GO:0018201  BP     4  0 1.000000e+00
## GO:0018211  BP     4  0 1.000000e+00
## GO:0031508  BP     4  0 1.000000e+00
## GO:0014012  BP     4  0 1.000000e+00
## GO:0032290  BP     4  0 1.000000e+00
## GO:0048936  BP     4  0 1.000000e+00
## GO:0002465  BP     4  0 1.000000e+00
## GO:0016557  BP     4  0 1.000000e+00
## GO:0042396  BP     4  0 1.000000e+00
## GO:0006599  BP     4  0 1.000000e+00
## GO:0006659  BP     4  0 1.000000e+00
## GO:0046314  BP     4  0 1.000000e+00
## GO:0006603  BP     4  0 1.000000e+00
## GO:0046149  BP     4  0 1.000000e+00
## GO:0046469  BP     4  0 1.000000e+00
## GO:0060155  BP     4  0 1.000000e+00
## GO:0072386  BP     4  0 1.000000e+00
## GO:0072383  BP     4  0 1.000000e+00
## GO:0071047  BP     4  0 1.000000e+00
## GO:0006598  BP     4  0 1.000000e+00
## GO:0006787  BP     4  0 1.000000e+00
## GO:0052501  BP     4  0 1.000000e+00
## GO:0052330  BP     4  0 1.000000e+00
## GO:0052042  BP     4  0 1.000000e+00
## GO:0046726  BP     4  0 1.000000e+00
## GO:2000582  BP     4  0 1.000000e+00
## GO:2000563  BP     4  0 1.000000e+00
## GO:0043378  BP     4  0 1.000000e+00
## GO:2000566  BP     4  0 1.000000e+00
## GO:1901537  BP     4  0 1.000000e+00
## GO:0051106  BP     4  0 1.000000e+00
## GO:1905643  BP     4  0 1.000000e+00
## GO:1902953  BP     4  0 1.000000e+00
## GO:0070318  BP     4  0 1.000000e+00
## GO:1904426  BP     4  0 1.000000e+00
## GO:0042998  BP     4  0 1.000000e+00
## GO:0051142  BP     4  0 1.000000e+00
## GO:1903899  BP     4  0 1.000000e+00
## GO:0002669  BP     4  0 1.000000e+00
## GO:2000525  BP     4  0 1.000000e+00
## GO:2000409  BP     4  0 1.000000e+00
## GO:0010536  BP     4  0 1.000000e+00
## GO:1901529  BP     4  0 1.000000e+00
## GO:0002803  BP     4  0 1.000000e+00
## GO:0002225  BP     4  0 1.000000e+00
## GO:1903849  BP     4  0 1.000000e+00
## GO:0044533  BP     4  0 1.000000e+00
## GO:0048691  BP     4  0 1.000000e+00
## GO:1903348  BP     4  0 1.000000e+00
## GO:0070859  BP     4  0 1.000000e+00
## GO:1904253  BP     4  0 1.000000e+00
## GO:2000504  BP     4  0 1.000000e+00
## GO:1904879  BP     4  0 1.000000e+00
## GO:0106134  BP     4  0 1.000000e+00
## GO:1904849  BP     4  0 1.000000e+00
## GO:0042660  BP     4  0 1.000000e+00
## GO:0032849  BP     4  0 1.000000e+00
## GO:1903724  BP     4  0 1.000000e+00
## GO:1904209  BP     4  0 1.000000e+00
## GO:1904109  BP     4  0 1.000000e+00
## GO:0010841  BP     4  0 1.000000e+00
## GO:1905205  BP     4  0 1.000000e+00
## GO:1902261  BP     4  0 1.000000e+00
## GO:1904811  BP     4  0 1.000000e+00
## GO:0070175  BP     4  0 1.000000e+00
## GO:0032079  BP     4  0 1.000000e+00
## GO:1903373  BP     4  0 1.000000e+00
## GO:2000546  BP     4  0 1.000000e+00
## GO:2000418  BP     4  0 1.000000e+00
## GO:1905278  BP     4  0 1.000000e+00
## GO:1903553  BP     4  0 1.000000e+00
## GO:1901203  BP     4  0 1.000000e+00
## GO:0070346  BP     4  0 1.000000e+00
## GO:0051919  BP     4  0 1.000000e+00
## GO:0046881  BP     4  0 1.000000e+00
## GO:0003104  BP     4  0 1.000000e+00
## GO:0070094  BP     4  0 1.000000e+00
## GO:1903296  BP     4  0 1.000000e+00
## GO:0040010  BP     4  0 1.000000e+00
## GO:0001996  BP     4  0 1.000000e+00
## GO:1903595  BP     4  0 1.000000e+00
## GO:2001168  BP     4  0 1.000000e+00
## GO:1900114  BP     4  0 1.000000e+00
## GO:0010729  BP     4  0 1.000000e+00
## GO:1901300  BP     4  0 1.000000e+00
## GO:1903797  BP     4  0 1.000000e+00
## GO:0031587  BP     4  0 1.000000e+00
## GO:0045356  BP     4  0 1.000000e+00
## GO:0050717  BP     4  0 1.000000e+00
## GO:2000667  BP     4  0 1.000000e+00
## GO:0032385  BP     4  0 1.000000e+00
## GO:0032379  BP     4  0 1.000000e+00
## GO:0032382  BP     4  0 1.000000e+00
## GO:0010912  BP     4  0 1.000000e+00
## GO:0048295  BP     4  0 1.000000e+00
## GO:0002913  BP     4  0 1.000000e+00
## GO:1900365  BP     4  0 1.000000e+00
## GO:0070668  BP     4  0 1.000000e+00
## GO:1903527  BP     4  0 1.000000e+00
## GO:2000741  BP     4  0 1.000000e+00
## GO:0072108  BP     4  0 1.000000e+00
## GO:1904141  BP     4  0 1.000000e+00
## GO:0031117  BP     4  0 1.000000e+00
## GO:0010636  BP     4  0 1.000000e+00
## GO:2000503  BP     4  0 1.000000e+00
## GO:1902565  BP     4  0 1.000000e+00
## GO:0043315  BP     4  0 1.000000e+00
## GO:0010750  BP     4  0 1.000000e+00
## GO:2000327  BP     4  0 1.000000e+00
## GO:0060282  BP     4  0 1.000000e+00
## GO:1905881  BP     4  0 1.000000e+00
## GO:0090290  BP     4  0 1.000000e+00
## GO:0060279  BP     4  0 1.000000e+00
## GO:0090187  BP     4  0 1.000000e+00
## GO:1900738  BP     4  0 1.000000e+00
## GO:1903061  BP     4  0 1.000000e+00
## GO:1905342  BP     4  0 1.000000e+00
## GO:1902527  BP     4  0 1.000000e+00
## GO:1902730  BP     4  0 1.000000e+00
## GO:1904395  BP     4  0 1.000000e+00
## GO:0071673  BP     4  0 1.000000e+00
## GO:1903278  BP     4  0 1.000000e+00
## GO:0032417  BP     4  0 1.000000e+00
## GO:0090274  BP     4  0 1.000000e+00
## GO:2000911  BP     4  0 1.000000e+00
## GO:0051176  BP     4  0 1.000000e+00
## GO:0051835  BP     4  0 1.000000e+00
## GO:1904874  BP     4  0 1.000000e+00
## GO:0003099  BP     4  0 1.000000e+00
## GO:0001997  BP     4  0 1.000000e+00
## GO:2000412  BP     4  0 1.000000e+00
## GO:0046016  BP     4  0 1.000000e+00
## GO:0036091  BP     4  0 1.000000e+00
## GO:0003257  BP     4  0 1.000000e+00
## GO:0010735  BP     4  0 1.000000e+00
## GO:0045901  BP     4  0 1.000000e+00
## GO:0045903  BP     4  0 1.000000e+00
## GO:0001805  BP     4  0 1.000000e+00
## GO:0072107  BP     4  0 1.000000e+00
## GO:1901610  BP     4  0 1.000000e+00
## GO:1904071  BP     4  0 1.000000e+00
## GO:0060468  BP     4  0 1.000000e+00
## GO:0006562  BP     4  0 1.000000e+00
## GO:0060737  BP     4  0 1.000000e+00
## GO:0018103  BP     4  0 1.000000e+00
## GO:0018406  BP     4  0 1.000000e+00
## GO:0018317  BP     4  0 1.000000e+00
## GO:0044314  BP     4  0 1.000000e+00
## GO:1990168  BP     4  0 1.000000e+00
## GO:0036508  BP     4  0 1.000000e+00
## GO:0018214  BP     4  0 1.000000e+00
## GO:0035977  BP     4  0 1.000000e+00
## GO:0036507  BP     4  0 1.000000e+00
## GO:0018343  BP     4  0 1.000000e+00
## GO:0016560  BP     4  0 1.000000e+00
## GO:0032978  BP     4  0 1.000000e+00
## GO:0089700  BP     4  0 1.000000e+00
## GO:0061739  BP     4  0 1.000000e+00
## GO:0071896  BP     4  0 1.000000e+00
## GO:1902463  BP     4  0 1.000000e+00
## GO:0033366  BP     4  0 1.000000e+00
## GO:0018377  BP     4  0 1.000000e+00
## GO:0030091  BP     4  0 1.000000e+00
## GO:0018335  BP     4  0 1.000000e+00
## GO:0022615  BP     4  0 1.000000e+00
## GO:0032596  BP     4  0 1.000000e+00
## GO:0043328  BP     4  0 1.000000e+00
## GO:0030167  BP     4  0 1.000000e+00
## GO:0009946  BP     4  0 1.000000e+00
## GO:0036343  BP     4  0 1.000000e+00
## GO:0009136  BP     4  0 1.000000e+00
## GO:0009180  BP     4  0 1.000000e+00
## GO:0006166  BP     4  0 1.000000e+00
## GO:0035590  BP     4  0 1.000000e+00
## GO:0033387  BP     4  0 1.000000e+00
## GO:0046125  BP     4  0 1.000000e+00
## GO:0009223  BP     4  0 1.000000e+00
## GO:0000720  BP     4  0 1.000000e+00
## GO:0006244  BP     4  0 1.000000e+00
## GO:0009078  BP     4  0 1.000000e+00
## GO:0006848  BP     4  0 1.000000e+00
## GO:0000320  BP     4  0 1.000000e+00
## GO:0097500  BP     4  0 1.000000e+00
## GO:0035624  BP     4  0 1.000000e+00
## GO:0019065  BP     4  0 1.000000e+00
## GO:0046813  BP     4  0 1.000000e+00
## GO:2000580  BP     4  0 1.000000e+00
## GO:0098904  BP     4  0 1.000000e+00
## GO:1905289  BP     4  0 1.000000e+00
## GO:0032829  BP     4  0 1.000000e+00
## GO:0003400  BP     4  0 1.000000e+00
## GO:1905774  BP     4  0 1.000000e+00
## GO:0051105  BP     4  0 1.000000e+00
## GO:0097752  BP     4  0 1.000000e+00
## GO:0090113  BP     4  0 1.000000e+00
## GO:0090170  BP     4  0 1.000000e+00
## GO:0034124  BP     4  0 1.000000e+00
## GO:1900368  BP     4  0 1.000000e+00
## GO:1904475  BP     4  0 1.000000e+00
## GO:2001106  BP     4  0 1.000000e+00
## GO:0046013  BP     4  0 1.000000e+00
## GO:0002840  BP     4  0 1.000000e+00
## GO:2000328  BP     4  0 1.000000e+00
## GO:1903121  BP     4  0 1.000000e+00
## GO:0008592  BP     4  0 1.000000e+00
## GO:0061356  BP     4  0 1.000000e+00
## GO:0010510  BP     4  0 1.000000e+00
## GO:0001969  BP     4  0 1.000000e+00
## GO:0060167  BP     4  0 1.000000e+00
## GO:0140192  BP     4  0 1.000000e+00
## GO:1902869  BP     4  0 1.000000e+00
## GO:0002586  BP     4  0 1.000000e+00
## GO:1903847  BP     4  0 1.000000e+00
## GO:2000359  BP     4  0 1.000000e+00
## GO:1905553  BP     4  0 1.000000e+00
## GO:0072095  BP     4  0 1.000000e+00
## GO:1902080  BP     4  0 1.000000e+00
## GO:0060800  BP     4  0 1.000000e+00
## GO:1900069  BP     4  0 1.000000e+00
## GO:0090230  BP     4  0 1.000000e+00
## GO:0070602  BP     4  0 1.000000e+00
## GO:1904714  BP     4  0 1.000000e+00
## GO:1903644  BP     4  0 1.000000e+00
## GO:1904207  BP     4  0 1.000000e+00
## GO:0061181  BP     4  0 1.000000e+00
## GO:1901382  BP     4  0 1.000000e+00
## GO:0010847  BP     4  0 1.000000e+00
## GO:0010710  BP     4  0 1.000000e+00
## GO:2000852  BP     4  0 1.000000e+00
## GO:0043397  BP     4  0 1.000000e+00
## GO:2001270  BP     4  0 1.000000e+00
## GO:1904688  BP     4  0 1.000000e+00
## GO:0010724  BP     4  0 1.000000e+00
## GO:1904809  BP     4  0 1.000000e+00
## GO:0061183  BP     4  0 1.000000e+00
## GO:1905749  BP     4  0 1.000000e+00
## GO:1902566  BP     4  0 1.000000e+00
## GO:1903903  BP     4  0 1.000000e+00
## GO:0090210  BP     4  0 1.000000e+00
## GO:0043465  BP     4  0 1.000000e+00
## GO:1903596  BP     4  0 1.000000e+00
## GO:2000211  BP     4  0 1.000000e+00
## GO:1903294  BP     4  0 1.000000e+00
## GO:0045423  BP     4  0 1.000000e+00
## GO:0100012  BP     4  0 1.000000e+00
## GO:0070366  BP     4  0 1.000000e+00
## GO:1902202  BP     4  0 1.000000e+00
## GO:1903593  BP     4  0 1.000000e+00
## GO:1900109  BP     4  0 1.000000e+00
## GO:2000520  BP     4  0 1.000000e+00
## GO:0032672  BP     4  0 1.000000e+00
## GO:0045402  BP     4  0 1.000000e+00
## GO:0070103  BP     4  0 1.000000e+00
## GO:1904580  BP     4  0 1.000000e+00
## GO:1903750  BP     4  0 1.000000e+00
## GO:0010911  BP     4  0 1.000000e+00
## GO:0019747  BP     4  0 1.000000e+00
## GO:0035564  BP     4  0 1.000000e+00
## GO:1902746  BP     4  0 1.000000e+00
## GO:0072367  BP     4  0 1.000000e+00
## GO:1904059  BP     4  0 1.000000e+00
## GO:0014916  BP     4  0 1.000000e+00
## GO:1905671  BP     4  0 1.000000e+00
## GO:1902435  BP     4  0 1.000000e+00
## GO:0032763  BP     4  0 1.000000e+00
## GO:1905132  BP     4  0 1.000000e+00
## GO:1902630  BP     4  0 1.000000e+00
## GO:1905031  BP     4  0 1.000000e+00
## GO:1900211  BP     4  0 1.000000e+00
## GO:0072039  BP     4  0 1.000000e+00
## GO:0072199  BP     4  0 1.000000e+00
## GO:2000589  BP     4  0 1.000000e+00
## GO:1902102  BP     4  0 1.000000e+00
## GO:0061884  BP     4  0 1.000000e+00
## GO:0000960  BP     4  0 1.000000e+00
## GO:1902956  BP     4  0 1.000000e+00
## GO:0044528  BP     4  0 1.000000e+00
## GO:2000437  BP     4  0 1.000000e+00
## GO:0032971  BP     4  0 1.000000e+00
## GO:1904760  BP     4  0 1.000000e+00
## GO:0043321  BP     4  0 1.000000e+00
## GO:0050923  BP     4  0 1.000000e+00
## GO:0070949  BP     4  0 1.000000e+00
## GO:0006808  BP     4  0 1.000000e+00
## GO:1900175  BP     4  0 1.000000e+00
## GO:1900145  BP     4  0 1.000000e+00
## GO:2000622  BP     4  0 1.000000e+00
## GO:1902897  BP     4  0 1.000000e+00
## GO:1905764  BP     4  0 1.000000e+00
## GO:1905340  BP     4  0 1.000000e+00
## GO:0061083  BP     4  0 1.000000e+00
## GO:1903613  BP     4  0 1.000000e+00
## GO:1904182  BP     4  0 1.000000e+00
## GO:1901000  BP     4  0 1.000000e+00
## GO:1904220  BP     4  0 1.000000e+00
## GO:1902809  BP     4  0 1.000000e+00
## GO:2000097  BP     4  0 1.000000e+00
## GO:1901668  BP     4  0 1.000000e+00
## GO:1904742  BP     4  0 1.000000e+00
## GO:2000331  BP     4  0 1.000000e+00
## GO:0051794  BP     4  0 1.000000e+00
## GO:0021913  BP     4  0 1.000000e+00
## GO:0032910  BP     4  0 1.000000e+00
## GO:2001201  BP     4  0 1.000000e+00
## GO:0140245  BP     4  0 1.000000e+00
## GO:0099578  BP     4  0 1.000000e+00
## GO:0001803  BP     4  0 1.000000e+00
## GO:0072106  BP     4  0 1.000000e+00
## GO:0002528  BP     4  0 1.000000e+00
## GO:0097494  BP     4  0 1.000000e+00
## GO:1903772  BP     4  0 1.000000e+00
## GO:1905150  BP     4  0 1.000000e+00
## GO:0070350  BP     4  0 1.000000e+00
## GO:0070294  BP     4  0 1.000000e+00
## GO:0002018  BP     4  0 1.000000e+00
## GO:0034552  BP     4  0 1.000000e+00
## GO:0072716  BP     4  0 1.000000e+00
## GO:0043435  BP     4  0 1.000000e+00
## GO:0071724  BP     4  0 1.000000e+00
## GO:1990839  BP     4  0 1.000000e+00
## GO:0051593  BP     4  0 1.000000e+00
## GO:0097210  BP     4  0 1.000000e+00
## GO:0071503  BP     4  0 1.000000e+00
## GO:0052572  BP     4  0 1.000000e+00
## GO:0052564  BP     4  0 1.000000e+00
## GO:0072429  BP     4  0 1.000000e+00
## GO:0010040  BP     4  0 1.000000e+00
## GO:0090649  BP     4  0 1.000000e+00
## GO:1904627  BP     4  0 1.000000e+00
## GO:0036215  BP     4  0 1.000000e+00
## GO:0035983  BP     4  0 1.000000e+00
## GO:0009414  BP     4  0 1.000000e+00
## GO:0061709  BP     4  0 1.000000e+00
## GO:1990009  BP     4  0 1.000000e+00
## GO:0060221  BP     4  0 1.000000e+00
## GO:0034653  BP     4  0 1.000000e+00
## GO:0021569  BP     4  0 1.000000e+00
## GO:0021571  BP     4  0 1.000000e+00
## GO:0097343  BP     4  0 1.000000e+00
## GO:1901026  BP     4  0 1.000000e+00
## GO:0014901  BP     4  0 1.000000e+00
## GO:0060528  BP     4  0 1.000000e+00
## GO:0061792  BP     4  0 1.000000e+00
## GO:0001887  BP     4  0 1.000000e+00
## GO:0016259  BP     4  0 1.000000e+00
## GO:0035582  BP     4  0 1.000000e+00
## GO:0035583  BP     4  0 1.000000e+00
## GO:0036515  BP     4  0 1.000000e+00
## GO:0002351  BP     4  0 1.000000e+00
## GO:0002442  BP     4  0 1.000000e+00
## GO:0051790  BP     4  0 1.000000e+00
## GO:1990926  BP     4  0 1.000000e+00
## GO:0035087  BP     4  0 1.000000e+00
## GO:0007227  BP     4  0 1.000000e+00
## GO:0060921  BP     4  0 1.000000e+00
## GO:0021938  BP     4  0 1.000000e+00
## GO:0000454  BP     4  0 1.000000e+00
## GO:0007525  BP     4  0 1.000000e+00
## GO:0060126  BP     4  0 1.000000e+00
## GO:0001757  BP     4  0 1.000000e+00
## GO:0072086  BP     4  0 1.000000e+00
## GO:0097476  BP     4  0 1.000000e+00
## GO:0090214  BP     4  0 1.000000e+00
## GO:0021773  BP     4  0 1.000000e+00
## GO:0014891  BP     4  0 1.000000e+00
## GO:0006931  BP     4  0 1.000000e+00
## GO:0000103  BP     4  0 1.000000e+00
## GO:0000101  BP     4  0 1.000000e+00
## GO:0097490  BP     4  0 1.000000e+00
## GO:0097491  BP     4  0 1.000000e+00
## GO:0099538  BP     4  0 1.000000e+00
## GO:0016182  BP     4  0 1.000000e+00
## GO:0016080  BP     4  0 1.000000e+00
## GO:0016189  BP     4  0 1.000000e+00
## GO:0002143  BP     4  0 1.000000e+00
## GO:0030423  BP     4  0 1.000000e+00
## GO:0015734  BP     4  0 1.000000e+00
## GO:0090669  BP     4  0 1.000000e+00
## GO:0032202  BP     4  0 1.000000e+00
## GO:0032201  BP     4  0 1.000000e+00
## GO:0031860  BP     4  0 1.000000e+00
## GO:0061819  BP     4  0 1.000000e+00
## GO:0035990  BP     4  0 1.000000e+00
## GO:0035992  BP     4  0 1.000000e+00
## GO:0023021  BP     4  0 1.000000e+00
## GO:0021678  BP     4  0 1.000000e+00
## GO:0060129  BP     4  0 1.000000e+00
## GO:0060535  BP     4  0 1.000000e+00
## GO:0099191  BP     4  0 1.000000e+00
## GO:0099183  BP     4  0 1.000000e+00
## GO:0099553  BP     4  0 1.000000e+00
## GO:0099552  BP     4  0 1.000000e+00
## GO:0036369  BP     4  0 1.000000e+00
## GO:0071733  BP     4  0 1.000000e+00
## GO:0032907  BP     4  0 1.000000e+00
## GO:0002188  BP     4  0 1.000000e+00
## GO:0003195  BP     4  0 1.000000e+00
## GO:0034197  BP     4  0 1.000000e+00
## GO:0042939  BP     4  0 1.000000e+00
## GO:0036484  BP     4  0 1.000000e+00
## GO:0035290  BP     4  0 1.000000e+00
## GO:0001802  BP     4  0 1.000000e+00
## GO:0001806  BP     4  0 1.000000e+00
## GO:0009826  BP     4  0 1.000000e+00
## GO:0035799  BP     4  0 1.000000e+00
## GO:0006573  BP     4  0 1.000000e+00
## GO:0014826  BP     4  0 1.000000e+00
## GO:0007418  BP     4  0 1.000000e+00
## GO:0036486  BP     4  0 1.000000e+00
## GO:0099041  BP     4  0 1.000000e+00
## GO:0021650  BP     4  0 1.000000e+00
## GO:0019042  BP     4  0 1.000000e+00
## GO:0007296  BP     4  0 1.000000e+00
## GO:0070343  BP     4  0 1.000000e+00
## GO:0031591  BP     4  0 1.000000e+00
## GO:0031590  BP     4  0 1.000000e+00
## GO:0009256  BP     5  0 1.000000e+00
## GO:0015867  BP     5  0 1.000000e+00
## GO:0002339  BP     5  0 1.000000e+00
## GO:0001922  BP     5  0 1.000000e+00
## GO:0010387  BP     5  0 1.000000e+00
## GO:0035964  BP     5  0 1.000000e+00
## GO:0070934  BP     5  0 1.000000e+00
## GO:0070779  BP     5  0 1.000000e+00
## GO:0070777  BP     5  0 1.000000e+00
## GO:0000738  BP     5  0 1.000000e+00
## GO:0010792  BP     5  0 1.000000e+00
## GO:0051103  BP     5  0 1.000000e+00
## GO:0000730  BP     5  0 1.000000e+00
## GO:0090735  BP     5  0 1.000000e+00
## GO:0033567  BP     5  0 1.000000e+00
## GO:0070375  BP     5  0 1.000000e+00
## GO:0007199  BP     5  0 1.000000e+00
## GO:0003164  BP     5  0 1.000000e+00
## GO:0032020  BP     5  0 1.000000e+00
## GO:0060397  BP     5  0 1.000000e+00
## GO:0097638  BP     5  0 1.000000e+00
## GO:0019509  BP     5  0 1.000000e+00
## GO:0045341  BP     5  0 1.000000e+00
## GO:0070291  BP     5  0 1.000000e+00
## GO:0070292  BP     5  0 1.000000e+00
## GO:0006116  BP     5  0 1.000000e+00
## GO:0006742  BP     5  0 1.000000e+00
## GO:0003137  BP     5  0 1.000000e+00
## GO:0086068  BP     5  0 1.000000e+00
## GO:0086029  BP     5  0 1.000000e+00
## GO:0036265  BP     5  0 1.000000e+00
## GO:0035927  BP     5  0 1.000000e+00
## GO:0032484  BP     5  0 1.000000e+00
## GO:0001777  BP     5  0 1.000000e+00
## GO:0033153  BP     5  0 1.000000e+00
## GO:0071847  BP     5  0 1.000000e+00
## GO:0035666  BP     5  0 1.000000e+00
## GO:0007171  BP     5  0 1.000000e+00
## GO:0007198  BP     5  0 1.000000e+00
## GO:0080144  BP     5  0 1.000000e+00
## GO:0072488  BP     5  0 1.000000e+00
## GO:0021764  BP     5  0 1.000000e+00
## GO:0033564  BP     5  0 1.000000e+00
## GO:0001788  BP     5  0 1.000000e+00
## GO:0060414  BP     5  0 1.000000e+00
## GO:0030263  BP     5  0 1.000000e+00
## GO:0060057  BP     5  0 1.000000e+00
## GO:0035905  BP     5  0 1.000000e+00
## GO:0003289  BP     5  0 1.000000e+00
## GO:0016255  BP     5  0 1.000000e+00
## GO:0044804  BP     5  0 1.000000e+00
## GO:0030242  BP     5  0 1.000000e+00
## GO:0048319  BP     5  0 1.000000e+00
## GO:0090245  BP     5  0 1.000000e+00
## GO:0016199  BP     5  0 1.000000e+00
## GO:0006287  BP     5  0 1.000000e+00
## GO:2001197  BP     5  0 1.000000e+00
## GO:0060681  BP     5  0 1.000000e+00
## GO:1904970  BP     5  0 1.000000e+00
## GO:0061591  BP     5  0 1.000000e+00
## GO:0061590  BP     5  0 1.000000e+00
## GO:0061588  BP     5  0 1.000000e+00
## GO:0099502  BP     5  0 1.000000e+00
## GO:0038171  BP     5  0 1.000000e+00
## GO:0061316  BP     5  0 1.000000e+00
## GO:0002190  BP     5  0 1.000000e+00
## GO:0045991  BP     5  0 1.000000e+00
## GO:0045990  BP     5  0 1.000000e+00
## GO:0061026  BP     5  0 1.000000e+00
## GO:0060926  BP     5  0 1.000000e+00
## GO:0060948  BP     5  0 1.000000e+00
## GO:0060689  BP     5  0 1.000000e+00
## GO:0035787  BP     5  0 1.000000e+00
## GO:0061325  BP     5  0 1.000000e+00
## GO:0044838  BP     5  0 1.000000e+00
## GO:0044036  BP     5  0 1.000000e+00
## GO:0071554  BP     5  0 1.000000e+00
## GO:0044108  BP     5  0 1.000000e+00
## GO:0044107  BP     5  0 1.000000e+00
## GO:0010961  BP     5  0 1.000000e+00
## GO:1990416  BP     5  0 1.000000e+00
## GO:0072757  BP     5  0 1.000000e+00
## GO:0071455  BP     5  0 1.000000e+00
## GO:0071681  BP     5  0 1.000000e+00
## GO:0036016  BP     5  0 1.000000e+00
## GO:1904637  BP     5  0 1.000000e+00
## GO:0090156  BP     5  0 1.000000e+00
## GO:0022009  BP     5  0 1.000000e+00
## GO:0061642  BP     5  0 1.000000e+00
## GO:0060591  BP     5  0 1.000000e+00
## GO:0097240  BP     5  0 1.000000e+00
## GO:0051305  BP     5  0 1.000000e+00
## GO:0061073  BP     5  0 1.000000e+00
## GO:0070120  BP     5  0 1.000000e+00
## GO:0015889  BP     5  0 1.000000e+00
## GO:0048669  BP     5  0 1.000000e+00
## GO:0002069  BP     5  0 1.000000e+00
## GO:0001661  BP     5  0 1.000000e+00
## GO:0035934  BP     5  0 1.000000e+00
## GO:0007253  BP     5  0 1.000000e+00
## GO:0046078  BP     5  0 1.000000e+00
## GO:0097742  BP     5  0 1.000000e+00
## GO:0098535  BP     5  0 1.000000e+00
## GO:0031087  BP     5  0 1.000000e+00
## GO:0070837  BP     5  0 1.000000e+00
## GO:0097187  BP     5  0 1.000000e+00
## GO:0009157  BP     5  0 1.000000e+00
## GO:0009202  BP     5  0 1.000000e+00
## GO:0070940  BP     5  0 1.000000e+00
## GO:0030205  BP     5  0 1.000000e+00
## GO:0050651  BP     5  0 1.000000e+00
## GO:0009597  BP     5  0 1.000000e+00
## GO:0035469  BP     5  0 1.000000e+00
## GO:0015961  BP     5  0 1.000000e+00
## GO:0060666  BP     5  0 1.000000e+00
## GO:0036072  BP     5  0 1.000000e+00
## GO:0072025  BP     5  0 1.000000e+00
## GO:0019348  BP     5  0 1.000000e+00
## GO:1990961  BP     5  0 1.000000e+00
## GO:0033227  BP     5  0 1.000000e+00
## GO:0060971  BP     5  0 1.000000e+00
## GO:0003199  BP     5  0 1.000000e+00
## GO:0002278  BP     5  0 1.000000e+00
## GO:0043308  BP     5  0 1.000000e+00
## GO:0002447  BP     5  0 1.000000e+00
## GO:0060750  BP     5  0 1.000000e+00
## GO:0042276  BP     5  0 1.000000e+00
## GO:0051295  BP     5  0 1.000000e+00
## GO:0006068  BP     5  0 1.000000e+00
## GO:1901503  BP     5  0 1.000000e+00
## GO:0008611  BP     5  0 1.000000e+00
## GO:0035426  BP     5  0 1.000000e+00
## GO:0033078  BP     5  0 1.000000e+00
## GO:0001561  BP     5  0 1.000000e+00
## GO:0006113  BP     5  0 1.000000e+00
## GO:1904447  BP     5  0 1.000000e+00
## GO:0098838  BP     5  0 1.000000e+00
## GO:0046655  BP     5  0 1.000000e+00
## GO:0015884  BP     5  0 1.000000e+00
## GO:0046292  BP     5  0 1.000000e+00
## GO:0048859  BP     5  0 1.000000e+00
## GO:0021943  BP     5  0 1.000000e+00
## GO:0010994  BP     5  0 1.000000e+00
## GO:0019375  BP     5  0 1.000000e+00
## GO:0033499  BP     5  0 1.000000e+00
## GO:0006682  BP     5  0 1.000000e+00
## GO:0009448  BP     5  0 1.000000e+00
## GO:1990349  BP     5  0 1.000000e+00
## GO:0042078  BP     5  0 1.000000e+00
## GO:0098728  BP     5  0 1.000000e+00
## GO:0021780  BP     5  0 1.000000e+00
## GO:0021563  BP     5  0 1.000000e+00
## GO:0006041  BP     5  0 1.000000e+00
## GO:0015760  BP     5  0 1.000000e+00
## GO:0006538  BP     5  0 1.000000e+00
## GO:0006868  BP     5  0 1.000000e+00
## GO:0006751  BP     5  0 1.000000e+00
## GO:0006114  BP     5  0 1.000000e+00
## GO:0046504  BP     5  0 1.000000e+00
## GO:0015793  BP     5  0 1.000000e+00
## GO:0006545  BP     5  0 1.000000e+00
## GO:0003241  BP     5  0 1.000000e+00
## GO:0003419  BP     5  0 1.000000e+00
## GO:1901069  BP     5  0 1.000000e+00
## GO:0046959  BP     5  0 1.000000e+00
## GO:0031581  BP     5  0 1.000000e+00
## GO:0015015  BP     5  0 1.000000e+00
## GO:0030202  BP     5  0 1.000000e+00
## GO:0051122  BP     5  0 1.000000e+00
## GO:0051121  BP     5  0 1.000000e+00
## GO:0015712  BP     5  0 1.000000e+00
## GO:0006548  BP     5  0 1.000000e+00
## GO:0070535  BP     5  0 1.000000e+00
## GO:0036414  BP     5  0 1.000000e+00
## GO:0009092  BP     5  0 1.000000e+00
## GO:0044027  BP     5  0 1.000000e+00
## GO:0021855  BP     5  0 1.000000e+00
## GO:0002765  BP     5  0 1.000000e+00
## GO:0002085  BP     5  0 1.000000e+00
## GO:0002220  BP     5  0 1.000000e+00
## GO:0045349  BP     5  0 1.000000e+00
## GO:0035546  BP     5  0 1.000000e+00
## GO:0042091  BP     5  0 1.000000e+00
## GO:0032632  BP     5  0 1.000000e+00
## GO:0035771  BP     5  0 1.000000e+00
## GO:0075733  BP     5  0 1.000000e+00
## GO:0035720  BP     5  0 1.000000e+00
## GO:0001957  BP     5  0 1.000000e+00
## GO:0015705  BP     5  0 1.000000e+00
## GO:0009240  BP     5  0 1.000000e+00
## GO:0046490  BP     5  0 1.000000e+00
## GO:0035873  BP     5  0 1.000000e+00
## GO:0015727  BP     5  0 1.000000e+00
## GO:0032802  BP     5  0 1.000000e+00
## GO:0060480  BP     5  0 1.000000e+00
## GO:0071593  BP     5  0 1.000000e+00
## GO:0006398  BP     5  0 1.000000e+00
## GO:0110104  BP     5  0 1.000000e+00
## GO:0098795  BP     5  0 1.000000e+00
## GO:0035279  BP     5  0 1.000000e+00
## GO:1990481  BP     5  0 1.000000e+00
## GO:0038145  BP     5  0 1.000000e+00
## GO:0048496  BP     5  0 1.000000e+00
## GO:0036438  BP     5  0 1.000000e+00
## GO:0072656  BP     5  0 1.000000e+00
## GO:0043490  BP     5  0 1.000000e+00
## GO:0090598  BP     5  0 1.000000e+00
## GO:0048808  BP     5  0 1.000000e+00
## GO:0048133  BP     5  0 1.000000e+00
## GO:0033024  BP     5  0 1.000000e+00
## GO:0060374  BP     5  0 1.000000e+00
## GO:0033023  BP     5  0 1.000000e+00
## GO:0070662  BP     5  0 1.000000e+00
## GO:0060137  BP     5  0 1.000000e+00
## GO:0002901  BP     5  0 1.000000e+00
## GO:0070197  BP     5  0 1.000000e+00
## GO:0051754  BP     5  0 1.000000e+00
## GO:0044821  BP     5  0 1.000000e+00
## GO:1903232  BP     5  0 1.000000e+00
## GO:0086045  BP     5  0 1.000000e+00
## GO:0030397  BP     5  0 1.000000e+00
## GO:0098914  BP     5  0 1.000000e+00
## GO:0072143  BP     5  0 1.000000e+00
## GO:0072007  BP     5  0 1.000000e+00
## GO:0060916  BP     5  0 1.000000e+00
## GO:0072221  BP     5  0 1.000000e+00
## GO:0072235  BP     5  0 1.000000e+00
## GO:0014005  BP     5  0 1.000000e+00
## GO:0002282  BP     5  0 1.000000e+00
## GO:1904124  BP     5  0 1.000000e+00
## GO:0007494  BP     5  0 1.000000e+00
## GO:0072385  BP     5  0 1.000000e+00
## GO:0000965  BP     5  0 1.000000e+00
## GO:0000957  BP     5  0 1.000000e+00
## GO:0035694  BP     5  0 1.000000e+00
## GO:0045448  BP     5  0 1.000000e+00
## GO:0051256  BP     5  0 1.000000e+00
## GO:0003192  BP     5  0 1.000000e+00
## GO:0052150  BP     5  0 1.000000e+00
## GO:0046462  BP     5  0 1.000000e+00
## GO:0061743  BP     5  0 1.000000e+00
## GO:0003150  BP     5  0 1.000000e+00
## GO:0014905  BP     5  0 1.000000e+00
## GO:0035747  BP     5  0 1.000000e+00
## GO:0002325  BP     5  0 1.000000e+00
## GO:0106119  BP     5  0 1.000000e+00
## GO:2001186  BP     5  0 1.000000e+00
## GO:2000002  BP     5  0 1.000000e+00
## GO:2000143  BP     5  0 1.000000e+00
## GO:0070317  BP     5  0 1.000000e+00
## GO:0042997  BP     5  0 1.000000e+00
## GO:0045347  BP     5  0 1.000000e+00
## GO:1900226  BP     5  0 1.000000e+00
## GO:0035021  BP     5  0 1.000000e+00
## GO:0010991  BP     5  0 1.000000e+00
## GO:0060392  BP     5  0 1.000000e+00
## GO:0001915  BP     5  0 1.000000e+00
## GO:0070236  BP     5  0 1.000000e+00
## GO:0010693  BP     5  0 1.000000e+00
## GO:1901877  BP     5  0 1.000000e+00
## GO:0055118  BP     5  0 1.000000e+00
## GO:0033239  BP     5  0 1.000000e+00
## GO:0045541  BP     5  0 1.000000e+00
## GO:0090370  BP     5  0 1.000000e+00
## GO:0090206  BP     5  0 1.000000e+00
## GO:0002740  BP     5  0 1.000000e+00
## GO:1900425  BP     5  0 1.000000e+00
## GO:0060160  BP     5  0 1.000000e+00
## GO:0033602  BP     5  0 1.000000e+00
## GO:1903999  BP     5  0 1.000000e+00
## GO:1903912  BP     5  0 1.000000e+00
## GO:2000697  BP     5  0 1.000000e+00
## GO:2000195  BP     5  0 1.000000e+00
## GO:0090272  BP     5  0 1.000000e+00
## GO:1903976  BP     5  0 1.000000e+00
## GO:0031947  BP     5  0 1.000000e+00
## GO:0031944  BP     5  0 1.000000e+00
## GO:0033132  BP     5  0 1.000000e+00
## GO:0045719  BP     5  0 1.000000e+00
## GO:2000346  BP     5  0 1.000000e+00
## GO:1903300  BP     5  0 1.000000e+00
## GO:1901842  BP     5  0 1.000000e+00
## GO:1903298  BP     5  0 1.000000e+00
## GO:0032304  BP     5  0 1.000000e+00
## GO:0033088  BP     5  0 1.000000e+00
## GO:0051025  BP     5  0 1.000000e+00
## GO:0032687  BP     5  0 1.000000e+00
## GO:1902714  BP     5  0 1.000000e+00
## GO:0032696  BP     5  0 1.000000e+00
## GO:1905077  BP     5  0 1.000000e+00
## GO:0045085  BP     5  0 1.000000e+00
## GO:0032714  BP     5  0 1.000000e+00
## GO:0034760  BP     5  0 1.000000e+00
## GO:0034757  BP     5  0 1.000000e+00
## GO:0045829  BP     5  0 1.000000e+00
## GO:1902744  BP     5  0 1.000000e+00
## GO:0090219  BP     5  0 1.000000e+00
## GO:0033685  BP     5  0 1.000000e+00
## GO:0010936  BP     5  0 1.000000e+00
## GO:0002906  BP     5  0 1.000000e+00
## GO:0051902  BP     5  0 1.000000e+00
## GO:0010637  BP     5  0 1.000000e+00
## GO:0045950  BP     5  0 1.000000e+00
## GO:0051387  BP     5  0 1.000000e+00
## GO:0042483  BP     5  0 1.000000e+00
## GO:1903377  BP     5  0 1.000000e+00
## GO:0048550  BP     5  0 1.000000e+00
## GO:1900045  BP     5  0 1.000000e+00
## GO:1902817  BP     5  0 1.000000e+00
## GO:1901078  BP     5  0 1.000000e+00
## GO:0060266  BP     5  0 1.000000e+00
## GO:0010891  BP     5  0 1.000000e+00
## GO:1900004  BP     5  0 1.000000e+00
## GO:1902572  BP     5  0 1.000000e+00
## GO:0014063  BP     5  0 1.000000e+00
## GO:0045875  BP     5  0 1.000000e+00
## GO:0090155  BP     5  0 1.000000e+00
## GO:0032227  BP     5  0 1.000000e+00
## GO:2000301  BP     5  0 1.000000e+00
## GO:1904506  BP     5  0 1.000000e+00
## GO:0034136  BP     5  0 1.000000e+00
## GO:1990441  BP     5  0 1.000000e+00
## GO:0032911  BP     5  0 1.000000e+00
## GO:0010897  BP     5  0 1.000000e+00
## GO:1901164  BP     5  0 1.000000e+00
## GO:0010957  BP     5  0 1.000000e+00
## GO:0072179  BP     5  0 1.000000e+00
## GO:0023041  BP     5  0 1.000000e+00
## GO:0032898  BP     5  0 1.000000e+00
## GO:0014028  BP     5  0 1.000000e+00
## GO:0051081  BP     5  0 1.000000e+00
## GO:0071033  BP     5  0 1.000000e+00
## GO:0043174  BP     5  0 1.000000e+00
## GO:0070427  BP     5  0 1.000000e+00
## GO:0006297  BP     5  0 1.000000e+00
## GO:0071698  BP     5  0 1.000000e+00
## GO:0030910  BP     5  0 1.000000e+00
## GO:0071699  BP     5  0 1.000000e+00
## GO:0097252  BP     5  0 1.000000e+00
## GO:0021779  BP     5  0 1.000000e+00
## GO:0021778  BP     5  0 1.000000e+00
## GO:0035106  BP     5  0 1.000000e+00
## GO:0019532  BP     5  0 1.000000e+00
## GO:0035513  BP     5  0 1.000000e+00
## GO:0032364  BP     5  0 1.000000e+00
## GO:0072592  BP     5  0 1.000000e+00
## GO:0061205  BP     5  0 1.000000e+00
## GO:0035898  BP     5  0 1.000000e+00
## GO:0009052  BP     5  0 1.000000e+00
## GO:0018057  BP     5  0 1.000000e+00
## GO:1990264  BP     5  0 1.000000e+00
## GO:1990511  BP     5  0 1.000000e+00
## GO:0002317  BP     5  0 1.000000e+00
## GO:0035879  BP     5  0 1.000000e+00
## GO:0044854  BP     5  0 1.000000e+00
## GO:0002904  BP     5  0 1.000000e+00
## GO:1905451  BP     5  0 1.000000e+00
## GO:1903721  BP     5  0 1.000000e+00
## GO:0045345  BP     5  0 1.000000e+00
## GO:0033864  BP     5  0 1.000000e+00
## GO:0035481  BP     5  0 1.000000e+00
## GO:0035022  BP     5  0 1.000000e+00
## GO:1900149  BP     5  0 1.000000e+00
## GO:0106071  BP     5  0 1.000000e+00
## GO:0010694  BP     5  0 1.000000e+00
## GO:1900223  BP     5  0 1.000000e+00
## GO:0002760  BP     5  0 1.000000e+00
## GO:1902512  BP     5  0 1.000000e+00
## GO:0060058  BP     5  0 1.000000e+00
## GO:1904261  BP     5  0 1.000000e+00
## GO:0061047  BP     5  0 1.000000e+00
## GO:2000481  BP     5  0 1.000000e+00
## GO:1905665  BP     5  0 1.000000e+00
## GO:1901896  BP     5  0 1.000000e+00
## GO:0060355  BP     5  0 1.000000e+00
## GO:2000304  BP     5  0 1.000000e+00
## GO:0071651  BP     5  0 1.000000e+00
## GO:0002678  BP     5  0 1.000000e+00
## GO:2000370  BP     5  0 1.000000e+00
## GO:0051464  BP     5  0 1.000000e+00
## GO:0010606  BP     5  0 1.000000e+00
## GO:1902952  BP     5  0 1.000000e+00
## GO:0032077  BP     5  0 1.000000e+00
## GO:0060161  BP     5  0 1.000000e+00
## GO:1904000  BP     5  0 1.000000e+00
## GO:2001137  BP     5  0 1.000000e+00
## GO:1905007  BP     5  0 1.000000e+00
## GO:2000196  BP     5  0 1.000000e+00
## GO:0090271  BP     5  0 1.000000e+00
## GO:0002636  BP     5  0 1.000000e+00
## GO:2000324  BP     5  0 1.000000e+00
## GO:0035948  BP     5  0 1.000000e+00
## GO:2000467  BP     5  0 1.000000e+00
## GO:0032278  BP     5  0 1.000000e+00
## GO:0031284  BP     5  0 1.000000e+00
## GO:0048818  BP     5  0 1.000000e+00
## GO:1901534  BP     5  0 1.000000e+00
## GO:1901843  BP     5  0 1.000000e+00
## GO:0071442  BP     5  0 1.000000e+00
## GO:1900127  BP     5  0 1.000000e+00
## GO:0010726  BP     5  0 1.000000e+00
## GO:0035549  BP     5  0 1.000000e+00
## GO:2001184  BP     5  0 1.000000e+00
## GO:0032747  BP     5  0 1.000000e+00
## GO:1904504  BP     5  0 1.000000e+00
## GO:0050747  BP     5  0 1.000000e+00
## GO:0010986  BP     5  0 1.000000e+00
## GO:0034241  BP     5  0 1.000000e+00
## GO:0034184  BP     5  0 1.000000e+00
## GO:1903521  BP     5  0 1.000000e+00
## GO:1901995  BP     5  0 1.000000e+00
## GO:0045636  BP     5  0 1.000000e+00
## GO:2000382  BP     5  0 1.000000e+00
## GO:0072300  BP     5  0 1.000000e+00
## GO:2000576  BP     5  0 1.000000e+00
## GO:1905448  BP     5  0 1.000000e+00
## GO:0002729  BP     5  0 1.000000e+00
## GO:0033031  BP     5  0 1.000000e+00
## GO:2001206  BP     5  0 1.000000e+00
## GO:0010513  BP     5  0 1.000000e+00
## GO:0032430  BP     5  0 1.000000e+00
## GO:0010641  BP     5  0 1.000000e+00
## GO:1903566  BP     5  0 1.000000e+00
## GO:1902474  BP     5  0 1.000000e+00
## GO:0032106  BP     5  0 1.000000e+00
## GO:0032109  BP     5  0 1.000000e+00
## GO:0048386  BP     5  0 1.000000e+00
## GO:0060316  BP     5  0 1.000000e+00
## GO:0046878  BP     5  0 1.000000e+00
## GO:0060298  BP     5  0 1.000000e+00
## GO:0072513  BP     5  0 1.000000e+00
## GO:0014858  BP     5  0 1.000000e+00
## GO:0090154  BP     5  0 1.000000e+00
## GO:1905832  BP     5  0 1.000000e+00
## GO:0048687  BP     5  0 1.000000e+00
## GO:0031632  BP     5  0 1.000000e+00
## GO:1902949  BP     5  0 1.000000e+00
## GO:0098735  BP     5  0 1.000000e+00
## GO:1901165  BP     5  0 1.000000e+00
## GO:0035470  BP     5  0 1.000000e+00
## GO:0007023  BP     5  0 1.000000e+00
## GO:1990709  BP     5  0 1.000000e+00
## GO:0060431  BP     5  0 1.000000e+00
## GO:0006701  BP     5  0 1.000000e+00
## GO:0042701  BP     5  0 1.000000e+00
## GO:0006561  BP     5  0 1.000000e+00
## GO:0019541  BP     5  0 1.000000e+00
## GO:0019230  BP     5  0 1.000000e+00
## GO:0035523  BP     5  0 1.000000e+00
## GO:0035519  BP     5  0 1.000000e+00
## GO:1990592  BP     5  0 1.000000e+00
## GO:0018101  BP     5  0 1.000000e+00
## GO:0051725  BP     5  0 1.000000e+00
## GO:0071947  BP     5  0 1.000000e+00
## GO:0033578  BP     5  0 1.000000e+00
## GO:0045040  BP     5  0 1.000000e+00
## GO:0001844  BP     5  0 1.000000e+00
## GO:0097039  BP     5  0 1.000000e+00
## GO:0009249  BP     5  0 1.000000e+00
## GO:1903361  BP     5  0 1.000000e+00
## GO:0071205  BP     5  0 1.000000e+00
## GO:0002175  BP     5  0 1.000000e+00
## GO:0106035  BP     5  0 1.000000e+00
## GO:1990564  BP     5  0 1.000000e+00
## GO:0045053  BP     5  0 1.000000e+00
## GO:1990743  BP     5  0 1.000000e+00
## GO:0035610  BP     5  0 1.000000e+00
## GO:0046501  BP     5  0 1.000000e+00
## GO:0072014  BP     5  0 1.000000e+00
## GO:0072047  BP     5  0 1.000000e+00
## GO:0009137  BP     5  0 1.000000e+00
## GO:0009181  BP     5  0 1.000000e+00
## GO:0009177  BP     5  0 1.000000e+00
## GO:0009211  BP     5  0 1.000000e+00
## GO:0046133  BP     5  0 1.000000e+00
## GO:0019805  BP     5  0 1.000000e+00
## GO:0031118  BP     5  0 1.000000e+00
## GO:0051029  BP     5  0 1.000000e+00
## GO:0090118  BP     5  0 1.000000e+00
## GO:0043654  BP     5  0 1.000000e+00
## GO:1905462  BP     5  0 1.000000e+00
## GO:0031554  BP     5  0 1.000000e+00
## GO:0045343  BP     5  0 1.000000e+00
## GO:1902031  BP     5  0 1.000000e+00
## GO:0051140  BP     5  0 1.000000e+00
## GO:0035480  BP     5  0 1.000000e+00
## GO:2000523  BP     5  0 1.000000e+00
## GO:0050812  BP     5  0 1.000000e+00
## GO:0002786  BP     5  0 1.000000e+00
## GO:0002580  BP     5  0 1.000000e+00
## GO:0002784  BP     5  0 1.000000e+00
## GO:0009786  BP     5  0 1.000000e+00
## GO:0098910  BP     5  0 1.000000e+00
## GO:0048690  BP     5  0 1.000000e+00
## GO:2000812  BP     5  0 1.000000e+00
## GO:1904259  BP     5  0 1.000000e+00
## GO:0110011  BP     5  0 1.000000e+00
## GO:0060762  BP     5  0 1.000000e+00
## GO:0060665  BP     5  0 1.000000e+00
## GO:1901876  BP     5  0 1.000000e+00
## GO:0098909  BP     5  0 1.000000e+00
## GO:0032847  BP     5  0 1.000000e+00
## GO:1903972  BP     5  0 1.000000e+00
## GO:1903722  BP     5  0 1.000000e+00
## GO:0060623  BP     5  0 1.000000e+00
## GO:0071922  BP     5  0 1.000000e+00
## GO:1904026  BP     5  0 1.000000e+00
## GO:0051342  BP     5  0 1.000000e+00
## GO:1903224  BP     5  0 1.000000e+00
## GO:1903371  BP     5  0 1.000000e+00
## GO:0051036  BP     5  0 1.000000e+00
## GO:1901509  BP     5  0 1.000000e+00
## GO:2000535  BP     5  0 1.000000e+00
## GO:1905333  BP     5  0 1.000000e+00
## GO:0060398  BP     5  0 1.000000e+00
## GO:0046984  BP     5  0 1.000000e+00
## GO:2001166  BP     5  0 1.000000e+00
## GO:1903297  BP     5  0 1.000000e+00
## GO:0106014  BP     5  0 1.000000e+00
## GO:0045113  BP     5  0 1.000000e+00
## GO:0045354  BP     5  0 1.000000e+00
## GO:0035547  BP     5  0 1.000000e+00
## GO:0045074  BP     5  0 1.000000e+00
## GO:1902218  BP     5  0 1.000000e+00
## GO:1901979  BP     5  0 1.000000e+00
## GO:1904502  BP     5  0 1.000000e+00
## GO:0032803  BP     5  0 1.000000e+00
## GO:1903519  BP     5  0 1.000000e+00
## GO:0033025  BP     5  0 1.000000e+00
## GO:0070666  BP     5  0 1.000000e+00
## GO:0002905  BP     5  0 1.000000e+00
## GO:1900825  BP     5  0 1.000000e+00
## GO:1903525  BP     5  0 1.000000e+00
## GO:0043380  BP     5  0 1.000000e+00
## GO:1904139  BP     5  0 1.000000e+00
## GO:0010968  BP     5  0 1.000000e+00
## GO:1904956  BP     5  0 1.000000e+00
## GO:0009794  BP     5  0 1.000000e+00
## GO:1902412  BP     5  0 1.000000e+00
## GO:0014735  BP     5  0 1.000000e+00
## GO:2000501  BP     5  0 1.000000e+00
## GO:0032826  BP     5  0 1.000000e+00
## GO:2000325  BP     5  0 1.000000e+00
## GO:0070432  BP     5  0 1.000000e+00
## GO:0070424  BP     5  0 1.000000e+00
## GO:0090289  BP     5  0 1.000000e+00
## GO:0060278  BP     5  0 1.000000e+00
## GO:2000275  BP     5  0 1.000000e+00
## GO:1902308  BP     5  0 1.000000e+00
## GO:2001245  BP     5  0 1.000000e+00
## GO:1900736  BP     5  0 1.000000e+00
## GO:0060696  BP     5  0 1.000000e+00
## GO:2000583  BP     5  0 1.000000e+00
## GO:1902267  BP     5  0 1.000000e+00
## GO:1902498  BP     5  0 1.000000e+00
## GO:1903059  BP     5  0 1.000000e+00
## GO:1902816  BP     5  0 1.000000e+00
## GO:1902525  BP     5  0 1.000000e+00
## GO:2000434  BP     5  0 1.000000e+00
## GO:1900133  BP     5  0 1.000000e+00
## GO:1903969  BP     5  0 1.000000e+00
## GO:0090259  BP     5  0 1.000000e+00
## GO:0061088  BP     5  0 1.000000e+00
## GO:1900003  BP     5  0 1.000000e+00
## GO:1902571  BP     5  0 1.000000e+00
## GO:1904347  BP     5  0 1.000000e+00
## GO:1903276  BP     5  0 1.000000e+00
## GO:2000118  BP     5  0 1.000000e+00
## GO:0150003  BP     5  0 1.000000e+00
## GO:0062028  BP     5  0 1.000000e+00
## GO:0008582  BP     5  0 1.000000e+00
## GO:0001978  BP     5  0 1.000000e+00
## GO:0001992  BP     5  0 1.000000e+00
## GO:1904505  BP     5  0 1.000000e+00
## GO:2000224  BP     5  0 1.000000e+00
## GO:2000410  BP     5  0 1.000000e+00
## GO:2000609  BP     5  0 1.000000e+00
## GO:0002155  BP     5  0 1.000000e+00
## GO:0051884  BP     5  0 1.000000e+00
## GO:0060164  BP     5  0 1.000000e+00
## GO:0046015  BP     5  0 1.000000e+00
## GO:0014724  BP     5  0 1.000000e+00
## GO:0106020  BP     5  0 1.000000e+00
## GO:0048209  BP     5  0 1.000000e+00
## GO:1901608  BP     5  0 1.000000e+00
## GO:0070295  BP     5  0 1.000000e+00
## GO:0072344  BP     5  0 1.000000e+00
## GO:0061476  BP     5  0 1.000000e+00
## GO:0072718  BP     5  0 1.000000e+00
## GO:0009750  BP     5  0 1.000000e+00
## GO:0071680  BP     5  0 1.000000e+00
## GO:0070669  BP     5  0 1.000000e+00
## GO:0036015  BP     5  0 1.000000e+00
## GO:1904636  BP     5  0 1.000000e+00
## GO:0002238  BP     5  0 1.000000e+00
## GO:0014873  BP     5  0 1.000000e+00
## GO:0032571  BP     5  0 1.000000e+00
## GO:0061304  BP     5  0 1.000000e+00
## GO:0098942  BP     5  0 1.000000e+00
## GO:0090677  BP     5  0 1.000000e+00
## GO:0009188  BP     5  0 1.000000e+00
## GO:0090666  BP     5  0 1.000000e+00
## GO:0061056  BP     5  0 1.000000e+00
## GO:0050915  BP     5  0 1.000000e+00
## GO:0032329  BP     5  0 1.000000e+00
## GO:0015739  BP     5  0 1.000000e+00
## GO:0097503  BP     5  0 1.000000e+00
## GO:0003163  BP     5  0 1.000000e+00
## GO:0014734  BP     5  0 1.000000e+00
## GO:0014834  BP     5  0 1.000000e+00
## GO:1990770  BP     5  0 1.000000e+00
## GO:0060083  BP     5  0 1.000000e+00
## GO:0040031  BP     5  0 1.000000e+00
## GO:0048254  BP     5  0 1.000000e+00
## GO:0060023  BP     5  0 1.000000e+00
## GO:0002568  BP     5  0 1.000000e+00
## GO:0002681  BP     5  0 1.000000e+00
## GO:0065001  BP     5  0 1.000000e+00
## GO:0072081  BP     5  0 1.000000e+00
## GO:0030382  BP     5  0 1.000000e+00
## GO:0007290  BP     5  0 1.000000e+00
## GO:0008295  BP     5  0 1.000000e+00
## GO:0003376  BP     5  0 1.000000e+00
## GO:0000393  BP     5  0 1.000000e+00
## GO:0042148  BP     5  0 1.000000e+00
## GO:0035617  BP     5  0 1.000000e+00
## GO:0015744  BP     5  0 1.000000e+00
## GO:0016191  BP     5  0 1.000000e+00
## GO:0031119  BP     5  0 1.000000e+00
## GO:0034227  BP     5  0 1.000000e+00
## GO:0051031  BP     5  0 1.000000e+00
## GO:0006363  BP     5  0 1.000000e+00
## GO:0033015  BP     5  0 1.000000e+00
## GO:0050955  BP     5  0 1.000000e+00
## GO:0006567  BP     5  0 1.000000e+00
## GO:0038163  BP     5  0 1.000000e+00
## GO:0070460  BP     5  0 1.000000e+00
## GO:0044691  BP     5  0 1.000000e+00
## GO:0009403  BP     5  0 1.000000e+00
## GO:0009407  BP     5  0 1.000000e+00
## GO:0019087  BP     5  0 1.000000e+00
## GO:0032197  BP     5  0 1.000000e+00
## GO:0019346  BP     5  0 1.000000e+00
## GO:0061551  BP     5  0 1.000000e+00
## GO:0021636  BP     5  0 1.000000e+00
## GO:0021637  BP     5  0 1.000000e+00
## GO:0001834  BP     5  0 1.000000e+00
## GO:0019441  BP     5  0 1.000000e+00
## GO:0006572  BP     5  0 1.000000e+00
## GO:0070086  BP     5  0 1.000000e+00
## GO:0097466  BP     5  0 1.000000e+00
## GO:0090611  BP     5  0 1.000000e+00
## GO:0072193  BP     5  0 1.000000e+00
## GO:0072191  BP     5  0 1.000000e+00
## GO:0060157  BP     5  0 1.000000e+00
## GO:0034447  BP     5  0 1.000000e+00
## GO:0030050  BP     5  0 1.000000e+00
## GO:0060005  BP     5  0 1.000000e+00
## GO:0075525  BP     5  0 1.000000e+00
## GO:0006776  BP     5  0 1.000000e+00
## GO:0070640  BP     5  0 1.000000e+00
## GO:0009115  BP     5  0 1.000000e+00
## GO:0007354  BP     5  0 1.000000e+00
## GO:0006207  BP     6  0 1.000000e+00
## GO:0050427  BP     6  0 1.000000e+00
## GO:0006167  BP     6  0 1.000000e+00
## GO:0002326  BP     6  0 1.000000e+00
## GO:0002322  BP     6  0 1.000000e+00
## GO:0001923  BP     6  0 1.000000e+00
## GO:0061312  BP     6  0 1.000000e+00
## GO:0006501  BP     6  0 1.000000e+00
## GO:0006975  BP     6  0 1.000000e+00
## GO:0006307  BP     6  0 1.000000e+00
## GO:0015074  BP     6  0 1.000000e+00
## GO:0044806  BP     6  0 1.000000e+00
## GO:0046037  BP     6  0 1.000000e+00
## GO:0090166  BP     6  0 1.000000e+00
## GO:0015808  BP     6  0 1.000000e+00
## GO:1903400  BP     6  0 1.000000e+00
## GO:0006777  BP     6  0 1.000000e+00
## GO:0019720  BP     6  0 1.000000e+00
## GO:0019262  BP     6  0 1.000000e+00
## GO:0006498  BP     6  0 1.000000e+00
## GO:0097114  BP     6  0 1.000000e+00
## GO:0070898  BP     6  0 1.000000e+00
## GO:0006048  BP     6  0 1.000000e+00
## GO:0014055  BP     6  0 1.000000e+00
## GO:0000147  BP     6  0 1.000000e+00
## GO:0051666  BP     6  0 1.000000e+00
## GO:0044396  BP     6  0 1.000000e+00
## GO:0008635  BP     6  0 1.000000e+00
## GO:0031584  BP     6  0 1.000000e+00
## GO:0032237  BP     6  0 1.000000e+00
## GO:0000915  BP     6  0 1.000000e+00
## GO:0044837  BP     6  0 1.000000e+00
## GO:0019401  BP     6  0 1.000000e+00
## GO:0097647  BP     6  0 1.000000e+00
## GO:0006702  BP     6  0 1.000000e+00
## GO:0021960  BP     6  0 1.000000e+00
## GO:0098937  BP     6  0 1.000000e+00
## GO:0071839  BP     6  0 1.000000e+00
## GO:1902262  BP     6  0 1.000000e+00
## GO:0003278  BP     6  0 1.000000e+00
## GO:0006526  BP     6  0 1.000000e+00
## GO:1903826  BP     6  0 1.000000e+00
## GO:0015801  BP     6  0 1.000000e+00
## GO:0060842  BP     6  0 1.000000e+00
## GO:0000912  BP     6  0 1.000000e+00
## GO:0055059  BP     6  0 1.000000e+00
## GO:0009912  BP     6  0 1.000000e+00
## GO:0075071  BP     6  0 1.000000e+00
## GO:0075044  BP     6  0 1.000000e+00
## GO:0048677  BP     6  0 1.000000e+00
## GO:1990822  BP     6  0 1.000000e+00
## GO:0032782  BP     6  0 1.000000e+00
## GO:0010815  BP     6  0 1.000000e+00
## GO:0060751  BP     6  0 1.000000e+00
## GO:0021785  BP     6  0 1.000000e+00
## GO:0086073  BP     6  0 1.000000e+00
## GO:1990036  BP     6  0 1.000000e+00
## GO:0015722  BP     6  0 1.000000e+00
## GO:0044340  BP     6  0 1.000000e+00
## GO:0009756  BP     6  0 1.000000e+00
## GO:0060920  BP     6  0 1.000000e+00
## GO:0015879  BP     6  0 1.000000e+00
## GO:0044278  BP     6  0 1.000000e+00
## GO:0071494  BP     6  0 1.000000e+00
## GO:0071221  BP     6  0 1.000000e+00
## GO:0071220  BP     6  0 1.000000e+00
## GO:0071321  BP     6  0 1.000000e+00
## GO:0071350  BP     6  0 1.000000e+00
## GO:0071499  BP     6  0 1.000000e+00
## GO:0071286  BP     6  0 1.000000e+00
## GO:0071287  BP     6  0 1.000000e+00
## GO:0071316  BP     6  0 1.000000e+00
## GO:0071500  BP     6  0 1.000000e+00
## GO:0071224  BP     6  0 1.000000e+00
## GO:1902075  BP     6  0 1.000000e+00
## GO:0009992  BP     6  0 1.000000e+00
## GO:0061511  BP     6  0 1.000000e+00
## GO:0021937  BP     6  0 1.000000e+00
## GO:0021853  BP     6  0 1.000000e+00
## GO:0035926  BP     6  0 1.000000e+00
## GO:0061643  BP     6  0 1.000000e+00
## GO:0019695  BP     6  0 1.000000e+00
## GO:0015871  BP     6  0 1.000000e+00
## GO:0060718  BP     6  0 1.000000e+00
## GO:0034382  BP     6  0 1.000000e+00
## GO:0042746  BP     6  0 1.000000e+00
## GO:0015746  BP     6  0 1.000000e+00
## GO:0006824  BP     6  0 1.000000e+00
## GO:0051182  BP     6  0 1.000000e+00
## GO:0071921  BP     6  0 1.000000e+00
## GO:0072049  BP     6  0 1.000000e+00
## GO:0007182  BP     6  0 1.000000e+00
## GO:0002248  BP     6  0 1.000000e+00
## GO:0035434  BP     6  0 1.000000e+00
## GO:0043400  BP     6  0 1.000000e+00
## GO:0007619  BP     6  0 1.000000e+00
## GO:0061550  BP     6  0 1.000000e+00
## GO:0009214  BP     6  0 1.000000e+00
## GO:0016554  BP     6  0 1.000000e+00
## GO:0007016  BP     6  0 1.000000e+00
## GO:0046070  BP     6  0 1.000000e+00
## GO:0098963  BP     6  0 1.000000e+00
## GO:0098961  BP     6  0 1.000000e+00
## GO:0009186  BP     6  0 1.000000e+00
## GO:0071910  BP     6  0 1.000000e+00
## GO:0010273  BP     6  0 1.000000e+00
## GO:0048852  BP     6  0 1.000000e+00
## GO:0005984  BP     6  0 1.000000e+00
## GO:0042420  BP     6  0 1.000000e+00
## GO:0036514  BP     6  0 1.000000e+00
## GO:1990791  BP     6  0 1.000000e+00
## GO:0045002  BP     6  0 1.000000e+00
## GO:0097070  BP     6  0 1.000000e+00
## GO:0001705  BP     6  0 1.000000e+00
## GO:0010668  BP     6  0 1.000000e+00
## GO:0060956  BP     6  0 1.000000e+00
## GO:0090500  BP     6  0 1.000000e+00
## GO:0000447  BP     6  0 1.000000e+00
## GO:0061817  BP     6  0 1.000000e+00
## GO:0035635  BP     6  0 1.000000e+00
## GO:0043307  BP     6  0 1.000000e+00
## GO:0060684  BP     6  0 1.000000e+00
## GO:0014045  BP     6  0 1.000000e+00
## GO:0006703  BP     6  0 1.000000e+00
## GO:0006069  BP     6  0 1.000000e+00
## GO:0046949  BP     6  0 1.000000e+00
## GO:0042699  BP     6  0 1.000000e+00
## GO:0021869  BP     6  0 1.000000e+00
## GO:0006003  BP     6  0 1.000000e+00
## GO:0006004  BP     6  0 1.000000e+00
## GO:0061197  BP     6  0 1.000000e+00
## GO:0035483  BP     6  0 1.000000e+00
## GO:0035860  BP     6  0 1.000000e+00
## GO:0072104  BP     6  0 1.000000e+00
## GO:0072103  BP     6  0 1.000000e+00
## GO:0010255  BP     6  0 1.000000e+00
## GO:0061535  BP     6  0 1.000000e+00
## GO:0046476  BP     6  0 1.000000e+00
## GO:0046487  BP     6  0 1.000000e+00
## GO:0060789  BP     6  0 1.000000e+00
## GO:0060022  BP     6  0 1.000000e+00
## GO:0009757  BP     6  0 1.000000e+00
## GO:0071557  BP     6  0 1.000000e+00
## GO:0034773  BP     6  0 1.000000e+00
## GO:0016576  BP     6  0 1.000000e+00
## GO:0035405  BP     6  0 1.000000e+00
## GO:0070813  BP     6  0 1.000000e+00
## GO:0052805  BP     6  0 1.000000e+00
## GO:0033152  BP     6  0 1.000000e+00
## GO:0090715  BP     6  0 1.000000e+00
## GO:0060120  BP     6  0 1.000000e+00
## GO:0045112  BP     6  0 1.000000e+00
## GO:0010496  BP     6  0 1.000000e+00
## GO:0035723  BP     6  0 1.000000e+00
## GO:0035655  BP     6  0 1.000000e+00
## GO:0072602  BP     6  0 1.000000e+00
## GO:1904936  BP     6  0 1.000000e+00
## GO:0060729  BP     6  0 1.000000e+00
## GO:0051454  BP     6  0 1.000000e+00
## GO:0036481  BP     6  0 1.000000e+00
## GO:1902774  BP     6  0 1.000000e+00
## GO:0000237  BP     6  0 1.000000e+00
## GO:0002232  BP     6  0 1.000000e+00
## GO:0061724  BP     6  0 1.000000e+00
## GO:0060481  BP     6  0 1.000000e+00
## GO:0051661  BP     6  0 1.000000e+00
## GO:0035633  BP     6  0 1.000000e+00
## GO:0060745  BP     6  0 1.000000e+00
## GO:0060744  BP     6  0 1.000000e+00
## GO:0032762  BP     6  0 1.000000e+00
## GO:0042256  BP     6  0 1.000000e+00
## GO:0051792  BP     6  0 1.000000e+00
## GO:0031293  BP     6  0 1.000000e+00
## GO:0043379  BP     6  0 1.000000e+00
## GO:0008078  BP     6  0 1.000000e+00
## GO:0072177  BP     6  0 1.000000e+00
## GO:0072257  BP     6  0 1.000000e+00
## GO:0072174  BP     6  0 1.000000e+00
## GO:0014004  BP     6  0 1.000000e+00
## GO:0051415  BP     6  0 1.000000e+00
## GO:0051013  BP     6  0 1.000000e+00
## GO:0043504  BP     6  0 1.000000e+00
## GO:0033615  BP     6  0 1.000000e+00
## GO:0000022  BP     6  0 1.000000e+00
## GO:0044789  BP     6  0 1.000000e+00
## GO:0052433  BP     6  0 1.000000e+00
## GO:0052040  BP     6  0 1.000000e+00
## GO:0044532  BP     6  0 1.000000e+00
## GO:0044531  BP     6  0 1.000000e+00
## GO:0052248  BP     6  0 1.000000e+00
## GO:0097475  BP     6  0 1.000000e+00
## GO:0044803  BP     6  0 1.000000e+00
## GO:0002372  BP     6  0 1.000000e+00
## GO:0002370  BP     6  0 1.000000e+00
## GO:0097064  BP     6  0 1.000000e+00
## GO:0097527  BP     6  0 1.000000e+00
## GO:0052405  BP     6  0 1.000000e+00
## GO:0034316  BP     6  0 1.000000e+00
## GO:0032792  BP     6  0 1.000000e+00
## GO:1903026  BP     6  0 1.000000e+00
## GO:2000405  BP     6  0 1.000000e+00
## GO:0002826  BP     6  0 1.000000e+00
## GO:0045629  BP     6  0 1.000000e+00
## GO:0003308  BP     6  0 1.000000e+00
## GO:0002865  BP     6  0 1.000000e+00
## GO:0010360  BP     6  0 1.000000e+00
## GO:0071866  BP     6  0 1.000000e+00
## GO:0010754  BP     6  0 1.000000e+00
## GO:1901895  BP     6  0 1.000000e+00
## GO:1903243  BP     6  0 1.000000e+00
## GO:1901723  BP     6  0 1.000000e+00
## GO:0070100  BP     6  0 1.000000e+00
## GO:0010887  BP     6  0 1.000000e+00
## GO:0002677  BP     6  0 1.000000e+00
## GO:2001268  BP     6  0 1.000000e+00
## GO:0032466  BP     6  0 1.000000e+00
## GO:0031999  BP     6  0 1.000000e+00
## GO:0003105  BP     6  0 1.000000e+00
## GO:0070093  BP     6  0 1.000000e+00
## GO:2000323  BP     6  0 1.000000e+00
## GO:0051572  BP     6  0 1.000000e+00
## GO:0090241  BP     6  0 1.000000e+00
## GO:0033087  BP     6  0 1.000000e+00
## GO:0060336  BP     6  0 1.000000e+00
## GO:2000483  BP     6  0 1.000000e+00
## GO:0051005  BP     6  0 1.000000e+00
## GO:2000110  BP     6  0 1.000000e+00
## GO:0043305  BP     6  0 1.000000e+00
## GO:1904180  BP     6  0 1.000000e+00
## GO:1905049  BP     6  0 1.000000e+00
## GO:0051562  BP     6  0 1.000000e+00
## GO:0090258  BP     6  0 1.000000e+00
## GO:0035795  BP     6  0 1.000000e+00
## GO:1901525  BP     6  0 1.000000e+00
## GO:0044362  BP     6  0 1.000000e+00
## GO:0052204  BP     6  0 1.000000e+00
## GO:0090027  BP     6  0 1.000000e+00
## GO:2000672  BP     6  0 1.000000e+00
## GO:0035509  BP     6  0 1.000000e+00
## GO:0014043  BP     6  0 1.000000e+00
## GO:0051771  BP     6  0 1.000000e+00
## GO:1900194  BP     6  0 1.000000e+00
## GO:0090188  BP     6  0 1.000000e+00
## GO:1902083  BP     6  0 1.000000e+00
## GO:0010757  BP     6  0 1.000000e+00
## GO:0046826  BP     6  0 1.000000e+00
## GO:0090315  BP     6  0 1.000000e+00
## GO:1903215  BP     6  0 1.000000e+00
## GO:0010871  BP     6  0 1.000000e+00
## GO:0045590  BP     6  0 1.000000e+00
## GO:0060331  BP     6  0 1.000000e+00
## GO:1900028  BP     6  0 1.000000e+00
## GO:0060315  BP     6  0 1.000000e+00
## GO:1901621  BP     6  0 1.000000e+00
## GO:0090032  BP     6  0 1.000000e+00
## GO:0051964  BP     6  0 1.000000e+00
## GO:0031914  BP     6  0 1.000000e+00
## GO:1902804  BP     6  0 1.000000e+00
## GO:0032055  BP     6  0 1.000000e+00
## GO:1904428  BP     6  0 1.000000e+00
## GO:0042536  BP     6  0 1.000000e+00
## GO:2000675  BP     6  0 1.000000e+00
## GO:1904753  BP     6  0 1.000000e+00
## GO:1905563  BP     6  0 1.000000e+00
## GO:0031339  BP     6  0 1.000000e+00
## GO:0046137  BP     6  0 1.000000e+00
## GO:0021999  BP     6  0 1.000000e+00
## GO:0045213  BP     6  0 1.000000e+00
## GO:0019740  BP     6  0 1.000000e+00
## GO:0038031  BP     6  0 1.000000e+00
## GO:0003357  BP     6  0 1.000000e+00
## GO:0071763  BP     6  0 1.000000e+00
## GO:0071029  BP     6  0 1.000000e+00
## GO:0071046  BP     6  0 1.000000e+00
## GO:0071035  BP     6  0 1.000000e+00
## GO:0071038  BP     6  0 1.000000e+00
## GO:0031086  BP     6  0 1.000000e+00
## GO:0033869  BP     6  0 1.000000e+00
## GO:0071895  BP     6  0 1.000000e+00
## GO:0008228  BP     6  0 1.000000e+00
## GO:0021631  BP     6  0 1.000000e+00
## GO:0002051  BP     6  0 1.000000e+00
## GO:0061734  BP     6  0 1.000000e+00
## GO:0009253  BP     6  0 1.000000e+00
## GO:0000270  BP     6  0 1.000000e+00
## GO:0018120  BP     6  0 1.000000e+00
## GO:0019919  BP     6  0 1.000000e+00
## GO:0017183  BP     6  0 1.000000e+00
## GO:0017182  BP     6  0 1.000000e+00
## GO:1904238  BP     6  0 1.000000e+00
## GO:0090383  BP     6  0 1.000000e+00
## GO:0034638  BP     6  0 1.000000e+00
## GO:0003402  BP     6  0 1.000000e+00
## GO:1904938  BP     6  0 1.000000e+00
## GO:0035790  BP     6  0 1.000000e+00
## GO:0040038  BP     6  0 1.000000e+00
## GO:1902047  BP     6  0 1.000000e+00
## GO:0015846  BP     6  0 1.000000e+00
## GO:0006798  BP     6  0 1.000000e+00
## GO:0006797  BP     6  0 1.000000e+00
## GO:0044791  BP     6  0 1.000000e+00
## GO:1903626  BP     6  0 1.000000e+00
## GO:1903071  BP     6  0 1.000000e+00
## GO:0090080  BP     6  0 1.000000e+00
## GO:0051138  BP     6  0 1.000000e+00
## GO:0046833  BP     6  0 1.000000e+00
## GO:2000321  BP     6  0 1.000000e+00
## GO:1903116  BP     6  0 1.000000e+00
## GO:2000210  BP     6  0 1.000000e+00
## GO:2000427  BP     6  0 1.000000e+00
## GO:0090238  BP     6  0 1.000000e+00
## GO:0051987  BP     6  0 1.000000e+00
## GO:1901098  BP     6  0 1.000000e+00
## GO:0051891  BP     6  0 1.000000e+00
## GO:0046601  BP     6  0 1.000000e+00
## GO:0002606  BP     6  0 1.000000e+00
## GO:0038033  BP     6  0 1.000000e+00
## GO:1901552  BP     6  0 1.000000e+00
## GO:1903142  BP     6  0 1.000000e+00
## GO:0045925  BP     6  0 1.000000e+00
## GO:0046645  BP     6  0 1.000000e+00
## GO:0045588  BP     6  0 1.000000e+00
## GO:2000851  BP     6  0 1.000000e+00
## GO:0033133  BP     6  0 1.000000e+00
## GO:1901321  BP     6  0 1.000000e+00
## GO:0051096  BP     6  0 1.000000e+00
## GO:1902035  BP     6  0 1.000000e+00
## GO:2000491  BP     6  0 1.000000e+00
## GO:0090240  BP     6  0 1.000000e+00
## GO:1901727  BP     6  0 1.000000e+00
## GO:0033184  BP     6  0 1.000000e+00
## GO:0034112  BP     6  0 1.000000e+00
## GO:0002925  BP     6  0 1.000000e+00
## GO:1905206  BP     6  0 1.000000e+00
## GO:0090261  BP     6  0 1.000000e+00
## GO:0032962  BP     6  0 1.000000e+00
## GO:0032730  BP     6  0 1.000000e+00
## GO:0050725  BP     6  0 1.000000e+00
## GO:2001181  BP     6  0 1.000000e+00
## GO:0032741  BP     6  0 1.000000e+00
## GO:2000664  BP     6  0 1.000000e+00
## GO:0048298  BP     6  0 1.000000e+00
## GO:2000394  BP     6  0 1.000000e+00
## GO:1903238  BP     6  0 1.000000e+00
## GO:0034093  BP     6  0 1.000000e+00
## GO:0060903  BP     6  0 1.000000e+00
## GO:2000630  BP     6  0 1.000000e+00
## GO:1904528  BP     6  0 1.000000e+00
## GO:0002735  BP     6  0 1.000000e+00
## GO:1904398  BP     6  0 1.000000e+00
## GO:0010701  BP     6  0 1.000000e+00
## GO:0010571  BP     6  0 1.000000e+00
## GO:0032075  BP     6  0 1.000000e+00
## GO:0042488  BP     6  0 1.000000e+00
## GO:0070447  BP     6  0 1.000000e+00
## GO:1900086  BP     6  0 1.000000e+00
## GO:0048549  BP     6  0 1.000000e+00
## GO:0010756  BP     6  0 1.000000e+00
## GO:0010572  BP     6  0 1.000000e+00
## GO:1903334  BP     6  0 1.000000e+00
## GO:1904778  BP     6  0 1.000000e+00
## GO:1904751  BP     6  0 1.000000e+00
## GO:2000646  BP     6  0 1.000000e+00
## GO:0060267  BP     6  0 1.000000e+00
## GO:0048633  BP     6  0 1.000000e+00
## GO:0043415  BP     6  0 1.000000e+00
## GO:0070245  BP     6  0 1.000000e+00
## GO:0034165  BP     6  0 1.000000e+00
## GO:0070172  BP     6  0 1.000000e+00
## GO:0061408  BP     6  0 1.000000e+00
## GO:0061419  BP     6  0 1.000000e+00
## GO:1901228  BP     6  0 1.000000e+00
## GO:0007221  BP     6  0 1.000000e+00
## GO:0032914  BP     6  0 1.000000e+00
## GO:0032056  BP     6  0 1.000000e+00
## GO:2000676  BP     6  0 1.000000e+00
## GO:1900748  BP     6  0 1.000000e+00
## GO:1905065  BP     6  0 1.000000e+00
## GO:0048597  BP     6  0 1.000000e+00
## GO:0035166  BP     6  0 1.000000e+00
## GO:0031204  BP     6  0 1.000000e+00
## GO:1901162  BP     6  0 1.000000e+00
## GO:0035524  BP     6  0 1.000000e+00
## GO:0035608  BP     6  0 1.000000e+00
## GO:0045046  BP     6  0 1.000000e+00
## GO:1903044  BP     6  0 1.000000e+00
## GO:1903546  BP     6  0 1.000000e+00
## GO:0022417  BP     6  0 1.000000e+00
## GO:0006477  BP     6  0 1.000000e+00
## GO:0071569  BP     6  0 1.000000e+00
## GO:0009217  BP     6  0 1.000000e+00
## GO:0034034  BP     6  0 1.000000e+00
## GO:0032261  BP     6  0 1.000000e+00
## GO:0009446  BP     6  0 1.000000e+00
## GO:0019364  BP     6  0 1.000000e+00
## GO:0009176  BP     6  0 1.000000e+00
## GO:0072531  BP     6  0 1.000000e+00
## GO:0046874  BP     6  0 1.000000e+00
## GO:0002023  BP     6  0 1.000000e+00
## GO:0046719  BP     6  0 1.000000e+00
## GO:2000348  BP     6  0 1.000000e+00
## GO:0043376  BP     6  0 1.000000e+00
## GO:0032489  BP     6  0 1.000000e+00
## GO:0030174  BP     6  0 1.000000e+00
## GO:1903719  BP     6  0 1.000000e+00
## GO:1903894  BP     6  0 1.000000e+00
## GO:0002036  BP     6  0 1.000000e+00
## GO:0039533  BP     6  0 1.000000e+00
## GO:2000298  BP     6  0 1.000000e+00
## GO:0010990  BP     6  0 1.000000e+00
## GO:2000407  BP     6  0 1.000000e+00
## GO:0014056  BP     6  0 1.000000e+00
## GO:0071865  BP     6  0 1.000000e+00
## GO:0031133  BP     6  0 1.000000e+00
## GO:0002034  BP     6  0 1.000000e+00
## GO:1900157  BP     6  0 1.000000e+00
## GO:0060687  BP     6  0 1.000000e+00
## GO:0051940  BP     6  0 1.000000e+00
## GO:2001286  BP     6  0 1.000000e+00
## GO:0010649  BP     6  0 1.000000e+00
## GO:0060620  BP     6  0 1.000000e+00
## GO:0060296  BP     6  0 1.000000e+00
## GO:0060295  BP     6  0 1.000000e+00
## GO:1902019  BP     6  0 1.000000e+00
## GO:0010840  BP     6  0 1.000000e+00
## GO:1905203  BP     6  0 1.000000e+00
## GO:2000064  BP     6  0 1.000000e+00
## GO:0051462  BP     6  0 1.000000e+00
## GO:1904959  BP     6  0 1.000000e+00
## GO:2000015  BP     6  0 1.000000e+00
## GO:0051584  BP     6  0 1.000000e+00
## GO:0070173  BP     6  0 1.000000e+00
## GO:2000416  BP     6  0 1.000000e+00
## GO:1905005  BP     6  0 1.000000e+00
## GO:1903551  BP     6  0 1.000000e+00
## GO:2000821  BP     6  0 1.000000e+00
## GO:0000414  BP     6  0 1.000000e+00
## GO:0031585  BP     6  0 1.000000e+00
## GO:0050705  BP     6  0 1.000000e+00
## GO:0050722  BP     6  0 1.000000e+00
## GO:2000659  BP     6  0 1.000000e+00
## GO:0034759  BP     6  0 1.000000e+00
## GO:0090325  BP     6  0 1.000000e+00
## GO:1905165  BP     6  0 1.000000e+00
## GO:0010793  BP     6  0 1.000000e+00
## GO:0034239  BP     6  0 1.000000e+00
## GO:0071640  BP     6  0 1.000000e+00
## GO:0098902  BP     6  0 1.000000e+00
## GO:1904683  BP     6  0 1.000000e+00
## GO:0072298  BP     6  0 1.000000e+00
## GO:0072307  BP     6  0 1.000000e+00
## GO:1905446  BP     6  0 1.000000e+00
## GO:1901858  BP     6  0 1.000000e+00
## GO:0002733  BP     6  0 1.000000e+00
## GO:0002727  BP     6  0 1.000000e+00
## GO:0070948  BP     6  0 1.000000e+00
## GO:1900239  BP     6  0 1.000000e+00
## GO:0060304  BP     6  0 1.000000e+00
## GO:0010746  BP     6  0 1.000000e+00
## GO:0099566  BP     6  0 1.000000e+00
## GO:0060685  BP     6  0 1.000000e+00
## GO:0099576  BP     6  0 1.000000e+00
## GO:1905634  BP     6  0 1.000000e+00
## GO:0060264  BP     6  0 1.000000e+00
## GO:0046668  BP     6  0 1.000000e+00
## GO:0051611  BP     6  0 1.000000e+00
## GO:0071671  BP     6  0 1.000000e+00
## GO:0032415  BP     6  0 1.000000e+00
## GO:1904672  BP     6  0 1.000000e+00
## GO:0090273  BP     6  0 1.000000e+00
## GO:0048686  BP     6  0 1.000000e+00
## GO:2000909  BP     6  0 1.000000e+00
## GO:0099179  BP     6  0 1.000000e+00
## GO:0003100  BP     6  0 1.000000e+00
## GO:1904429  BP     6  0 1.000000e+00
## GO:0006449  BP     6  0 1.000000e+00
## GO:2000074  BP     6  0 1.000000e+00
## GO:0061043  BP     6  0 1.000000e+00
## GO:0070562  BP     6  0 1.000000e+00
## GO:1903689  BP     6  0 1.000000e+00
## GO:0003072  BP     6  0 1.000000e+00
## GO:0003096  BP     6  0 1.000000e+00
## GO:1990414  BP     6  0 1.000000e+00
## GO:0001302  BP     6  0 1.000000e+00
## GO:0070339  BP     6  0 1.000000e+00
## GO:1901563  BP     6  0 1.000000e+00
## GO:0052173  BP     6  0 1.000000e+00
## GO:0014894  BP     6  0 1.000000e+00
## GO:1904587  BP     6  0 1.000000e+00
## GO:0075136  BP     6  0 1.000000e+00
## GO:0052200  BP     6  0 1.000000e+00
## GO:0055093  BP     6  0 1.000000e+00
## GO:0035902  BP     6  0 1.000000e+00
## GO:0014854  BP     6  0 1.000000e+00
## GO:0070671  BP     6  0 1.000000e+00
## GO:0034616  BP     6  0 1.000000e+00
## GO:0009642  BP     6  0 1.000000e+00
## GO:0014870  BP     6  0 1.000000e+00
## GO:0014877  BP     6  0 1.000000e+00
## GO:0010046  BP     6  0 1.000000e+00
## GO:0071107  BP     6  0 1.000000e+00
## GO:0010269  BP     6  0 1.000000e+00
## GO:1903935  BP     6  0 1.000000e+00
## GO:0001878  BP     6  0 1.000000e+00
## GO:0003406  BP     6  0 1.000000e+00
## GO:1990049  BP     6  0 1.000000e+00
## GO:0098921  BP     6  0 1.000000e+00
## GO:0098920  BP     6  0 1.000000e+00
## GO:0060024  BP     6  0 1.000000e+00
## GO:0034031  BP     6  0 1.000000e+00
## GO:0060662  BP     6  0 1.000000e+00
## GO:0050916  BP     6  0 1.000000e+00
## GO:0050975  BP     6  0 1.000000e+00
## GO:0050917  BP     6  0 1.000000e+00
## GO:0003284  BP     6  0 1.000000e+00
## GO:0032119  BP     6  0 1.000000e+00
## GO:0042427  BP     6  0 1.000000e+00
## GO:0019626  BP     6  0 1.000000e+00
## GO:0098528  BP     6  0 1.000000e+00
## GO:0061302  BP     6  0 1.000000e+00
## GO:0042796  BP     6  0 1.000000e+00
## GO:0021523  BP     6  0 1.000000e+00
## GO:0042713  BP     6  0 1.000000e+00
## GO:0006686  BP     6  0 1.000000e+00
## GO:0060708  BP     6  0 1.000000e+00
## GO:0048865  BP     6  0 1.000000e+00
## GO:1990169  BP     6  0 1.000000e+00
## GO:0021825  BP     6  0 1.000000e+00
## GO:0006104  BP     6  0 1.000000e+00
## GO:0010182  BP     6  0 1.000000e+00
## GO:0016185  BP     6  0 1.000000e+00
## GO:0070127  BP     6  0 1.000000e+00
## GO:0007217  BP     6  0 1.000000e+00
## GO:0071816  BP     6  0 1.000000e+00
## GO:1905323  BP     6  0 1.000000e+00
## GO:0034398  BP     6  0 1.000000e+00
## GO:0016115  BP     6  0 1.000000e+00
## GO:0046654  BP     6  0 1.000000e+00
## GO:0042695  BP     6  0 1.000000e+00
## GO:0070327  BP     6  0 1.000000e+00
## GO:0002461  BP     6  0 1.000000e+00
## GO:0002513  BP     6  0 1.000000e+00
## GO:0006362  BP     6  0 1.000000e+00
## GO:0006361  BP     6  0 1.000000e+00
## GO:0000972  BP     6  0 1.000000e+00
## GO:0030321  BP     6  0 1.000000e+00
## GO:0038044  BP     6  0 1.000000e+00
## GO:0006842  BP     6  0 1.000000e+00
## GO:0006642  BP     6  0 1.000000e+00
## GO:0071830  BP     6  0 1.000000e+00
## GO:0060605  BP     6  0 1.000000e+00
## GO:0030579  BP     6  0 1.000000e+00
## GO:0015747  BP     6  0 1.000000e+00
## GO:0015840  BP     6  0 1.000000e+00
## GO:0061038  BP     6  0 1.000000e+00
## GO:0070072  BP     6  0 1.000000e+00
## GO:0042760  BP     6  0 1.000000e+00
## GO:0021648  BP     6  0 1.000000e+00
## GO:0042373  BP     6  0 1.000000e+00
## GO:0046110  BP     6  0 1.000000e+00
## GO:0006015  BP     7  0 1.000000e+00
## GO:0046391  BP     7  0 1.000000e+00
## GO:0006370  BP     7  0 1.000000e+00
## GO:0042904  BP     7  0 1.000000e+00
## GO:0042905  BP     7  0 1.000000e+00
## GO:0035754  BP     7  0 1.000000e+00
## GO:0002361  BP     7  0 1.000000e+00
## GO:0061641  BP     7  0 1.000000e+00
## GO:0034080  BP     7  0 1.000000e+00
## GO:0045006  BP     7  0 1.000000e+00
## GO:0044026  BP     7  0 1.000000e+00
## GO:0032776  BP     7  0 1.000000e+00
## GO:0006265  BP     7  0 1.000000e+00
## GO:0019673  BP     7  0 1.000000e+00
## GO:0019852  BP     7  0 1.000000e+00
## GO:0046439  BP     7  0 1.000000e+00
## GO:0071265  BP     7  0 1.000000e+00
## GO:0071267  BP     7  0 1.000000e+00
## GO:1903352  BP     7  0 1.000000e+00
## GO:0006559  BP     7  0 1.000000e+00
## GO:0039530  BP     7  0 1.000000e+00
## GO:0017196  BP     7  0 1.000000e+00
## GO:0006735  BP     7  0 1.000000e+00
## GO:0070995  BP     7  0 1.000000e+00
## GO:0001866  BP     7  0 1.000000e+00
## GO:0006607  BP     7  0 1.000000e+00
## GO:0061314  BP     7  0 1.000000e+00
## GO:0030578  BP     7  0 1.000000e+00
## GO:0060011  BP     7  0 1.000000e+00
## GO:0002291  BP     7  0 1.000000e+00
## GO:0002870  BP     7  0 1.000000e+00
## GO:0002457  BP     7  0 1.000000e+00
## GO:0033292  BP     7  0 1.000000e+00
## GO:0036462  BP     7  0 1.000000e+00
## GO:0008063  BP     7  0 1.000000e+00
## GO:1904953  BP     7  0 1.000000e+00
## GO:1900619  BP     7  0 1.000000e+00
## GO:0008291  BP     7  0 1.000000e+00
## GO:0061526  BP     7  0 1.000000e+00
## GO:0007256  BP     7  0 1.000000e+00
## GO:0086023  BP     7  0 1.000000e+00
## GO:0033211  BP     7  0 1.000000e+00
## GO:0070842  BP     7  0 1.000000e+00
## GO:0035932  BP     7  0 1.000000e+00
## GO:0019694  BP     7  0 1.000000e+00
## GO:0043102  BP     7  0 1.000000e+00
## GO:0150094  BP     7  0 1.000000e+00
## GO:0150093  BP     7  0 1.000000e+00
## GO:0060978  BP     7  0 1.000000e+00
## GO:1990048  BP     7  0 1.000000e+00
## GO:0002778  BP     7  0 1.000000e+00
## GO:0002775  BP     7  0 1.000000e+00
## GO:0006531  BP     7  0 1.000000e+00
## GO:0036302  BP     7  0 1.000000e+00
## GO:0016198  BP     7  0 1.000000e+00
## GO:0060385  BP     7  0 1.000000e+00
## GO:0001955  BP     7  0 1.000000e+00
## GO:0031547  BP     7  0 1.000000e+00
## GO:0060449  BP     7  0 1.000000e+00
## GO:0086043  BP     7  0 1.000000e+00
## GO:0086028  BP     7  0 1.000000e+00
## GO:0097646  BP     7  0 1.000000e+00
## GO:1990034  BP     7  0 1.000000e+00
## GO:0061621  BP     7  0 1.000000e+00
## GO:0086042  BP     7  0 1.000000e+00
## GO:0003253  BP     7  0 1.000000e+00
## GO:0032049  BP     7  0 1.000000e+00
## GO:0019614  BP     7  0 1.000000e+00
## GO:0042424  BP     7  0 1.000000e+00
## GO:0061343  BP     7  0 1.000000e+00
## GO:0035766  BP     7  0 1.000000e+00
## GO:0086064  BP     7  0 1.000000e+00
## GO:0021814  BP     7  0 1.000000e+00
## GO:0033278  BP     7  0 1.000000e+00
## GO:0071476  BP     7  0 1.000000e+00
## GO:0046950  BP     7  0 1.000000e+00
## GO:0097384  BP     7  0 1.000000e+00
## GO:1903351  BP     7  0 1.000000e+00
## GO:0071362  BP     7  0 1.000000e+00
## GO:0071351  BP     7  0 1.000000e+00
## GO:0035865  BP     7  0 1.000000e+00
## GO:0035356  BP     7  0 1.000000e+00
## GO:0051026  BP     7  0 1.000000e+00
## GO:0006348  BP     7  0 1.000000e+00
## GO:0042747  BP     7  0 1.000000e+00
## GO:0072318  BP     7  0 1.000000e+00
## GO:0036089  BP     7  0 1.000000e+00
## GO:0045162  BP     7  0 1.000000e+00
## GO:0060029  BP     7  0 1.000000e+00
## GO:0015677  BP     7  0 1.000000e+00
## GO:0009804  BP     7  0 1.000000e+00
## GO:0051715  BP     7  0 1.000000e+00
## GO:0060318  BP     7  0 1.000000e+00
## GO:0097048  BP     7  0 1.000000e+00
## GO:0050655  BP     7  0 1.000000e+00
## GO:0071907  BP     7  0 1.000000e+00
## GO:0050904  BP     7  0 1.000000e+00
## GO:0045003  BP     7  0 1.000000e+00
## GO:0036492  BP     7  0 1.000000e+00
## GO:0048702  BP     7  0 1.000000e+00
## GO:0060059  BP     7  0 1.000000e+00
## GO:0003160  BP     7  0 1.000000e+00
## GO:0032510  BP     7  0 1.000000e+00
## GO:0035768  BP     7  0 1.000000e+00
## GO:0060839  BP     7  0 1.000000e+00
## GO:0060664  BP     7  0 1.000000e+00
## GO:0060287  BP     7  0 1.000000e+00
## GO:1902222  BP     7  0 1.000000e+00
## GO:0071169  BP     7  0 1.000000e+00
## GO:0048069  BP     7  0 1.000000e+00
## GO:0060613  BP     7  0 1.000000e+00
## GO:0034625  BP     7  0 1.000000e+00
## GO:0034626  BP     7  0 1.000000e+00
## GO:0019367  BP     7  0 1.000000e+00
## GO:0019368  BP     7  0 1.000000e+00
## GO:0033504  BP     7  0 1.000000e+00
## GO:0021798  BP     7  0 1.000000e+00
## GO:0061196  BP     7  0 1.000000e+00
## GO:0019388  BP     7  0 1.000000e+00
## GO:0006689  BP     7  0 1.000000e+00
## GO:0033483  BP     7  0 1.000000e+00
## GO:0030718  BP     7  0 1.000000e+00
## GO:0061718  BP     7  0 1.000000e+00
## GO:0006678  BP     7  0 1.000000e+00
## GO:0046477  BP     7  0 1.000000e+00
## GO:0035701  BP     7  0 1.000000e+00
## GO:0021578  BP     7  0 1.000000e+00
## GO:0006547  BP     7  0 1.000000e+00
## GO:0034720  BP     7  0 1.000000e+00
## GO:0036123  BP     7  0 1.000000e+00
## GO:0043987  BP     7  0 1.000000e+00
## GO:0097411  BP     7  0 1.000000e+00
## GO:0098596  BP     7  0 1.000000e+00
## GO:0046218  BP     7  0 1.000000e+00
## GO:0042436  BP     7  0 1.000000e+00
## GO:1990001  BP     7  0 1.000000e+00
## GO:0050703  BP     7  0 1.000000e+00
## GO:0050720  BP     7  0 1.000000e+00
## GO:0072603  BP     7  0 1.000000e+00
## GO:0045110  BP     7  0 1.000000e+00
## GO:0120009  BP     7  0 1.000000e+00
## GO:0035735  BP     7  0 1.000000e+00
## GO:1990144  BP     7  0 1.000000e+00
## GO:0008627  BP     7  0 1.000000e+00
## GO:0061072  BP     7  0 1.000000e+00
## GO:0006102  BP     7  0 1.000000e+00
## GO:0048289  BP     7  0 1.000000e+00
## GO:0097283  BP     7  0 1.000000e+00
## GO:0061439  BP     7  0 1.000000e+00
## GO:0032808  BP     7  0 1.000000e+00
## GO:0006273  BP     7  0 1.000000e+00
## GO:0070309  BP     7  0 1.000000e+00
## GO:0060235  BP     7  0 1.000000e+00
## GO:0006551  BP     7  0 1.000000e+00
## GO:0060482  BP     7  0 1.000000e+00
## GO:0060437  BP     7  0 1.000000e+00
## GO:0002249  BP     7  0 1.000000e+00
## GO:0000395  BP     7  0 1.000000e+00
## GO:0071608  BP     7  0 1.000000e+00
## GO:0061517  BP     7  0 1.000000e+00
## GO:0043570  BP     7  0 1.000000e+00
## GO:0098880  BP     7  0 1.000000e+00
## GO:0071694  BP     7  0 1.000000e+00
## GO:0006108  BP     7  0 1.000000e+00
## GO:0060763  BP     7  0 1.000000e+00
## GO:0042138  BP     7  0 1.000000e+00
## GO:0010032  BP     7  0 1.000000e+00
## GO:0098915  BP     7  0 1.000000e+00
## GO:0072161  BP     7  0 1.000000e+00
## GO:2001012  BP     7  0 1.000000e+00
## GO:0072038  BP     7  0 1.000000e+00
## GO:0072282  BP     7  0 1.000000e+00
## GO:0009438  BP     7  0 1.000000e+00
## GO:0035280  BP     7  0 1.000000e+00
## GO:0061518  BP     7  0 1.000000e+00
## GO:0035931  BP     7  0 1.000000e+00
## GO:0042776  BP     7  0 1.000000e+00
## GO:0061668  BP     7  0 1.000000e+00
## GO:0052428  BP     7  0 1.000000e+00
## GO:0044359  BP     7  0 1.000000e+00
## GO:0052205  BP     7  0 1.000000e+00
## GO:0043545  BP     7  0 1.000000e+00
## GO:1903251  BP     7  0 1.000000e+00
## GO:0044828  BP     7  0 1.000000e+00
## GO:0050859  BP     7  0 1.000000e+00
## GO:0032876  BP     7  0 1.000000e+00
## GO:0039536  BP     7  0 1.000000e+00
## GO:0010626  BP     7  0 1.000000e+00
## GO:0042985  BP     7  0 1.000000e+00
## GO:0002578  BP     7  0 1.000000e+00
## GO:1902338  BP     7  0 1.000000e+00
## GO:0010616  BP     7  0 1.000000e+00
## GO:0033629  BP     7  0 1.000000e+00
## GO:1901977  BP     7  0 1.000000e+00
## GO:0045794  BP     7  0 1.000000e+00
## GO:2000048  BP     7  0 1.000000e+00
## GO:0046600  BP     7  0 1.000000e+00
## GO:0042321  BP     7  0 1.000000e+00
## GO:0032811  BP     7  0 1.000000e+00
## GO:0060770  BP     7  0 1.000000e+00
## GO:0060467  BP     7  0 1.000000e+00
## GO:0051918  BP     7  0 1.000000e+00
## GO:0070874  BP     7  0 1.000000e+00
## GO:0051799  BP     7  0 1.000000e+00
## GO:0035331  BP     7  0 1.000000e+00
## GO:1900113  BP     7  0 1.000000e+00
## GO:0010727  BP     7  0 1.000000e+00
## GO:1903208  BP     7  0 1.000000e+00
## GO:0032713  BP     7  0 1.000000e+00
## GO:0045409  BP     7  0 1.000000e+00
## GO:0010989  BP     7  0 1.000000e+00
## GO:0010760  BP     7  0 1.000000e+00
## GO:0033600  BP     7  0 1.000000e+00
## GO:0051045  BP     7  0 1.000000e+00
## GO:1903979  BP     7  0 1.000000e+00
## GO:0071638  BP     7  0 1.000000e+00
## GO:0045656  BP     7  0 1.000000e+00
## GO:0071676  BP     7  0 1.000000e+00
## GO:0032074  BP     7  0 1.000000e+00
## GO:0060283  BP     7  0 1.000000e+00
## GO:1905880  BP     7  0 1.000000e+00
## GO:1903753  BP     7  0 1.000000e+00
## GO:0010519  BP     7  0 1.000000e+00
## GO:1902915  BP     7  0 1.000000e+00
## GO:0060268  BP     7  0 1.000000e+00
## GO:0048387  BP     7  0 1.000000e+00
## GO:1902455  BP     7  0 1.000000e+00
## GO:0016479  BP     7  0 1.000000e+00
## GO:0051970  BP     7  0 1.000000e+00
## GO:1900747  BP     7  0 1.000000e+00
## GO:0038007  BP     7  0 1.000000e+00
## GO:1901166  BP     7  0 1.000000e+00
## GO:0060897  BP     7  0 1.000000e+00
## GO:0036476  BP     7  0 1.000000e+00
## GO:0099011  BP     7  0 1.000000e+00
## GO:0098943  BP     7  0 1.000000e+00
## GO:0070945  BP     7  0 1.000000e+00
## GO:1900164  BP     7  0 1.000000e+00
## GO:0038107  BP     7  0 1.000000e+00
## GO:0038030  BP     7  0 1.000000e+00
## GO:0030473  BP     7  0 1.000000e+00
## GO:0002072  BP     7  0 1.000000e+00
## GO:0015822  BP     7  0 1.000000e+00
## GO:0072675  BP     7  0 1.000000e+00
## GO:0015671  BP     7  0 1.000000e+00
## GO:0045852  BP     7  0 1.000000e+00
## GO:0030046  BP     7  0 1.000000e+00
## GO:0030913  BP     7  0 1.000000e+00
## GO:0060017  BP     7  0 1.000000e+00
## GO:0035247  BP     7  0 1.000000e+00
## GO:0036166  BP     7  0 1.000000e+00
## GO:0009698  BP     7  0 1.000000e+00
## GO:0006655  BP     7  0 1.000000e+00
## GO:0070782  BP     7  0 1.000000e+00
## GO:0060158  BP     7  0 1.000000e+00
## GO:0008594  BP     7  0 1.000000e+00
## GO:0044857  BP     7  0 1.000000e+00
## GO:0048227  BP     7  0 1.000000e+00
## GO:0002576  BP     7  0 1.000000e+00
## GO:0051694  BP     7  0 1.000000e+00
## GO:0043634  BP     7  0 1.000000e+00
## GO:0071051  BP     7  0 1.000000e+00
## GO:0050861  BP     7  0 1.000000e+00
## GO:0060369  BP     7  0 1.000000e+00
## GO:1900227  BP     7  0 1.000000e+00
## GO:0002666  BP     7  0 1.000000e+00
## GO:2000553  BP     7  0 1.000000e+00
## GO:0045630  BP     7  0 1.000000e+00
## GO:1905653  BP     7  0 1.000000e+00
## GO:1902961  BP     7  0 1.000000e+00
## GO:0048842  BP     7  0 1.000000e+00
## GO:0003321  BP     7  0 1.000000e+00
## GO:0045915  BP     7  0 1.000000e+00
## GO:2000138  BP     7  0 1.000000e+00
## GO:2000049  BP     7  0 1.000000e+00
## GO:0033634  BP     7  0 1.000000e+00
## GO:2001040  BP     7  0 1.000000e+00
## GO:0010886  BP     7  0 1.000000e+00
## GO:1902732  BP     7  0 1.000000e+00
## GO:1904798  BP     7  0 1.000000e+00
## GO:0051461  BP     7  0 1.000000e+00
## GO:2000510  BP     7  0 1.000000e+00
## GO:0002732  BP     7  0 1.000000e+00
## GO:0045964  BP     7  0 1.000000e+00
## GO:2000698  BP     7  0 1.000000e+00
## GO:0060501  BP     7  0 1.000000e+00
## GO:0060054  BP     7  0 1.000000e+00
## GO:2000271  BP     7  0 1.000000e+00
## GO:0014054  BP     7  0 1.000000e+00
## GO:1904306  BP     7  0 1.000000e+00
## GO:1903301  BP     7  0 1.000000e+00
## GO:0061087  BP     7  0 1.000000e+00
## GO:0045359  BP     7  0 1.000000e+00
## GO:0060335  BP     7  0 1.000000e+00
## GO:1900042  BP     7  0 1.000000e+00
## GO:0051351  BP     7  0 1.000000e+00
## GO:0048170  BP     7  0 1.000000e+00
## GO:0060754  BP     7  0 1.000000e+00
## GO:0048023  BP     7  0 1.000000e+00
## GO:1905050  BP     7  0 1.000000e+00
## GO:1903980  BP     7  0 1.000000e+00
## GO:0090267  BP     7  0 1.000000e+00
## GO:0002860  BP     7  0 1.000000e+00
## GO:0032819  BP     7  0 1.000000e+00
## GO:0010940  BP     7  0 1.000000e+00
## GO:0014042  BP     7  0 1.000000e+00
## GO:0150012  BP     7  0 1.000000e+00
## GO:0051582  BP     7  0 1.000000e+00
## GO:0032241  BP     7  0 1.000000e+00
## GO:1902177  BP     7  0 1.000000e+00
## GO:1903223  BP     7  0 1.000000e+00
## GO:0050942  BP     7  0 1.000000e+00
## GO:1903288  BP     7  0 1.000000e+00
## GO:1903003  BP     7  0 1.000000e+00
## GO:1900020  BP     7  0 1.000000e+00
## GO:1904781  BP     7  0 1.000000e+00
## GO:1903955  BP     7  0 1.000000e+00
## GO:0060332  BP     7  0 1.000000e+00
## GO:0010890  BP     7  0 1.000000e+00
## GO:2001016  BP     7  0 1.000000e+00
## GO:0090232  BP     7  0 1.000000e+00
## GO:0032226  BP     7  0 1.000000e+00
## GO:0034137  BP     7  0 1.000000e+00
## GO:0034141  BP     7  0 1.000000e+00
## GO:1904668  BP     7  0 1.000000e+00
## GO:1905461  BP     7  0 1.000000e+00
## GO:0048050  BP     7  0 1.000000e+00
## GO:0036388  BP     7  0 1.000000e+00
## GO:1902299  BP     7  0 1.000000e+00
## GO:0006267  BP     7  0 1.000000e+00
## GO:0099525  BP     7  0 1.000000e+00
## GO:0031053  BP     7  0 1.000000e+00
## GO:0030422  BP     7  0 1.000000e+00
## GO:0070459  BP     7  0 1.000000e+00
## GO:0060527  BP     7  0 1.000000e+00
## GO:0060526  BP     7  0 1.000000e+00
## GO:0051189  BP     7  0 1.000000e+00
## GO:0042270  BP     7  0 1.000000e+00
## GO:0036066  BP     7  0 1.000000e+00
## GO:0045048  BP     7  0 1.000000e+00
## GO:1903608  BP     7  0 1.000000e+00
## GO:0070973  BP     7  0 1.000000e+00
## GO:0070212  BP     7  0 1.000000e+00
## GO:0006627  BP     7  0 1.000000e+00
## GO:0006621  BP     7  0 1.000000e+00
## GO:0043461  BP     7  0 1.000000e+00
## GO:0070070  BP     7  0 1.000000e+00
## GO:0061156  BP     7  0 1.000000e+00
## GO:0009155  BP     7  0 1.000000e+00
## GO:0006145  BP     7  0 1.000000e+00
## GO:0009146  BP     7  0 1.000000e+00
## GO:0034035  BP     7  0 1.000000e+00
## GO:0009445  BP     7  0 1.000000e+00
## GO:0046135  BP     7  0 1.000000e+00
## GO:0021942  BP     7  0 1.000000e+00
## GO:0038026  BP     7  0 1.000000e+00
## GO:1904717  BP     7  0 1.000000e+00
## GO:1901535  BP     7  0 1.000000e+00
## GO:1905449  BP     7  0 1.000000e+00
## GO:1903897  BP     7  0 1.000000e+00
## GO:0002667  BP     7  0 1.000000e+00
## GO:0010533  BP     7  0 1.000000e+00
## GO:2000858  BP     7  0 1.000000e+00
## GO:1905906  BP     7  0 1.000000e+00
## GO:0002002  BP     7  0 1.000000e+00
## GO:0002583  BP     7  0 1.000000e+00
## GO:0002759  BP     7  0 1.000000e+00
## GO:2000425  BP     7  0 1.000000e+00
## GO:0060372  BP     7  0 1.000000e+00
## GO:0061046  BP     7  0 1.000000e+00
## GO:1905664  BP     7  0 1.000000e+00
## GO:0060353  BP     7  0 1.000000e+00
## GO:1904847  BP     7  0 1.000000e+00
## GO:0070099  BP     7  0 1.000000e+00
## GO:0042320  BP     7  0 1.000000e+00
## GO:2000668  BP     7  0 1.000000e+00
## GO:2001198  BP     7  0 1.000000e+00
## GO:1904732  BP     7  0 1.000000e+00
## GO:0032071  BP     7  0 1.000000e+00
## GO:2000544  BP     7  0 1.000000e+00
## GO:0003330  BP     7  0 1.000000e+00
## GO:2000653  BP     7  0 1.000000e+00
## GO:1905936  BP     7  0 1.000000e+00
## GO:0106104  BP     7  0 1.000000e+00
## GO:0031282  BP     7  0 1.000000e+00
## GO:0071440  BP     7  0 1.000000e+00
## GO:2000618  BP     7  0 1.000000e+00
## GO:1903207  BP     7  0 1.000000e+00
## GO:0032960  BP     7  0 1.000000e+00
## GO:2000665  BP     7  0 1.000000e+00
## GO:2000662  BP     7  0 1.000000e+00
## GO:0048296  BP     7  0 1.000000e+00
## GO:0048293  BP     7  0 1.000000e+00
## GO:1902172  BP     7  0 1.000000e+00
## GO:0045714  BP     7  0 1.000000e+00
## GO:1901490  BP     7  0 1.000000e+00
## GO:0002911  BP     7  0 1.000000e+00
## GO:2000254  BP     7  0 1.000000e+00
## GO:0045634  BP     7  0 1.000000e+00
## GO:0098903  BP     7  0 1.000000e+00
## GO:2000739  BP     7  0 1.000000e+00
## GO:1905902  BP     7  0 1.000000e+00
## GO:1905770  BP     7  0 1.000000e+00
## GO:0042661  BP     7  0 1.000000e+00
## GO:0090235  BP     7  0 1.000000e+00
## GO:0032532  BP     7  0 1.000000e+00
## GO:2000855  BP     7  0 1.000000e+00
## GO:0000019  BP     7  0 1.000000e+00
## GO:0030885  BP     7  0 1.000000e+00
## GO:0061074  BP     7  0 1.000000e+00
## GO:1900107  BP     7  0 1.000000e+00
## GO:2000354  BP     7  0 1.000000e+00
## GO:1900084  BP     7  0 1.000000e+00
## GO:0010511  BP     7  0 1.000000e+00
## GO:1902302  BP     7  0 1.000000e+00
## GO:1903764  BP     7  0 1.000000e+00
## GO:1904350  BP     7  0 1.000000e+00
## GO:1900019  BP     7  0 1.000000e+00
## GO:1901897  BP     7  0 1.000000e+00
## GO:0060075  BP     7  0 1.000000e+00
## GO:2000197  BP     7  0 1.000000e+00
## GO:2001260  BP     7  0 1.000000e+00
## GO:0003025  BP     7  0 1.000000e+00
## GO:1904872  BP     7  0 1.000000e+00
## GO:0003057  BP     7  0 1.000000e+00
## GO:1900094  BP     7  0 1.000000e+00
## GO:0003256  BP     7  0 1.000000e+00
## GO:1901388  BP     7  0 1.000000e+00
## GO:0140243  BP     7  0 1.000000e+00
## GO:0099547  BP     7  0 1.000000e+00
## GO:0036491  BP     7  0 1.000000e+00
## GO:0060373  BP     7  0 1.000000e+00
## GO:0061438  BP     7  0 1.000000e+00
## GO:0003097  BP     7  0 1.000000e+00
## GO:0002001  BP     7  0 1.000000e+00
## GO:0002536  BP     7  0 1.000000e+00
## GO:0072423  BP     7  0 1.000000e+00
## GO:0072402  BP     7  0 1.000000e+00
## GO:1902065  BP     7  0 1.000000e+00
## GO:0070141  BP     7  0 1.000000e+00
## GO:0032493  BP     7  0 1.000000e+00
## GO:0070305  BP     7  0 1.000000e+00
## GO:0072396  BP     7  0 1.000000e+00
## GO:1903350  BP     7  0 1.000000e+00
## GO:0033762  BP     7  0 1.000000e+00
## GO:0009635  BP     7  0 1.000000e+00
## GO:0035864  BP     7  0 1.000000e+00
## GO:0000056  BP     7  0 1.000000e+00
## GO:0032790  BP     7  0 1.000000e+00
## GO:0051610  BP     7  0 1.000000e+00
## GO:0014719  BP     7  0 1.000000e+00
## GO:0021910  BP     7  0 1.000000e+00
## GO:0044341  BP     7  0 1.000000e+00
## GO:0008215  BP     7  0 1.000000e+00
## GO:0090306  BP     7  0 1.000000e+00
## GO:0051231  BP     7  0 1.000000e+00
## GO:0051255  BP     7  0 1.000000e+00
## GO:0048682  BP     7  0 1.000000e+00
## GO:0090400  BP     7  0 1.000000e+00
## GO:0060012  BP     7  0 1.000000e+00
## GO:0036466  BP     7  0 1.000000e+00
## GO:0019530  BP     7  0 1.000000e+00
## GO:0035989  BP     7  0 1.000000e+00
## GO:0006369  BP     7  0 1.000000e+00
## GO:0006729  BP     7  0 1.000000e+00
## GO:0006566  BP     7  0 1.000000e+00
## GO:0072679  BP     7  0 1.000000e+00
## GO:0002154  BP     7  0 1.000000e+00
## GO:0034154  BP     7  0 1.000000e+00
## GO:0060440  BP     7  0 1.000000e+00
## GO:0003186  BP     7  0 1.000000e+00
## GO:0006569  BP     7  0 1.000000e+00
## GO:0014721  BP     7  0 1.000000e+00
## GO:0060509  BP     7  0 1.000000e+00
## GO:0060510  BP     7  0 1.000000e+00
## GO:0060676  BP     7  0 1.000000e+00
## GO:0034379  BP     7  0 1.000000e+00
## GO:0099022  BP     7  0 1.000000e+00
## GO:0046784  BP     7  0 1.000000e+00
## GO:0019062  BP     7  0 1.000000e+00
## GO:0042297  BP     7  0 1.000000e+00
## GO:0003010  BP     7  0 1.000000e+00
## GO:0009452  BP     8  0 1.000000e+00
## GO:0061762  BP     8  0 1.000000e+00
## GO:0023035  BP     8  0 1.000000e+00
## GO:0035740  BP     8  0 1.000000e+00
## GO:0042940  BP     8  0 1.000000e+00
## GO:0042769  BP     8  0 1.000000e+00
## GO:0043045  BP     8  0 1.000000e+00
## GO:0098664  BP     8  0 1.000000e+00
## GO:0070314  BP     8  0 1.000000e+00
## GO:0090160  BP     8  0 1.000000e+00
## GO:0006188  BP     8  0 1.000000e+00
## GO:0016266  BP     8  0 1.000000e+00
## GO:0036260  BP     8  0 1.000000e+00
## GO:0090670  BP     8  0 1.000000e+00
## GO:0090685  BP     8  0 1.000000e+00
## GO:0010501  BP     8  0 1.000000e+00
## GO:0035385  BP     8  0 1.000000e+00
## GO:0072050  BP     8  0 1.000000e+00
## GO:0038203  BP     8  0 1.000000e+00
## GO:0034475  BP     8  0 1.000000e+00
## GO:0006228  BP     8  0 1.000000e+00
## GO:0060478  BP     8  0 1.000000e+00
## GO:0090527  BP     8  0 1.000000e+00
## GO:0099515  BP     8  0 1.000000e+00
## GO:0000185  BP     8  0 1.000000e+00
## GO:0051503  BP     8  0 1.000000e+00
## GO:0007197  BP     8  0 1.000000e+00
## GO:0034334  BP     8  0 1.000000e+00
## GO:0044650  BP     8  0 1.000000e+00
## GO:0035973  BP     8  0 1.000000e+00
## GO:0046349  BP     8  0 1.000000e+00
## GO:0015838  BP     8  0 1.000000e+00
## GO:0097065  BP     8  0 1.000000e+00
## GO:0043615  BP     8  0 1.000000e+00
## GO:0055009  BP     8  0 1.000000e+00
## GO:0003190  BP     8  0 1.000000e+00
## GO:0035425  BP     8  0 1.000000e+00
## GO:0072378  BP     8  0 1.000000e+00
## GO:0002035  BP     8  0 1.000000e+00
## GO:0015670  BP     8  0 1.000000e+00
## GO:0003348  BP     8  0 1.000000e+00
## GO:0060923  BP     8  0 1.000000e+00
## GO:0042637  BP     8  0 1.000000e+00
## GO:0043697  BP     8  0 1.000000e+00
## GO:0110095  BP     8  0 1.000000e+00
## GO:0072501  BP     8  0 1.000000e+00
## GO:0030643  BP     8  0 1.000000e+00
## GO:0071493  BP     8  0 1.000000e+00
## GO:0071313  BP     8  0 1.000000e+00
## GO:0071420  BP     8  0 1.000000e+00
## GO:0071447  BP     8  0 1.000000e+00
## GO:1990314  BP     8  0 1.000000e+00
## GO:0072502  BP     8  0 1.000000e+00
## GO:0021626  BP     8  0 1.000000e+00
## GO:0021894  BP     8  0 1.000000e+00
## GO:1901538  BP     8  0 1.000000e+00
## GO:0006032  BP     8  0 1.000000e+00
## GO:0006030  BP     8  0 1.000000e+00
## GO:0000052  BP     8  0 1.000000e+00
## GO:0009235  BP     8  0 1.000000e+00
## GO:0060242  BP     8  0 1.000000e+00
## GO:0060027  BP     8  0 1.000000e+00
## GO:0021540  BP     8  0 1.000000e+00
## GO:0034651  BP     8  0 1.000000e+00
## GO:0021603  BP     8  0 1.000000e+00
## GO:0060363  BP     8  0 1.000000e+00
## GO:0002182  BP     8  0 1.000000e+00
## GO:0046060  BP     8  0 1.000000e+00
## GO:0043696  BP     8  0 1.000000e+00
## GO:0140059  BP     8  0 1.000000e+00
## GO:0009120  BP     8  0 1.000000e+00
## GO:0009162  BP     8  0 1.000000e+00
## GO:0009204  BP     8  0 1.000000e+00
## GO:0005513  BP     8  0 1.000000e+00
## GO:0061687  BP     8  0 1.000000e+00
## GO:0015959  BP     8  0 1.000000e+00
## GO:0035912  BP     8  0 1.000000e+00
## GO:0034498  BP     8  0 1.000000e+00
## GO:0040016  BP     8  0 1.000000e+00
## GO:0001714  BP     8  0 1.000000e+00
## GO:0051643  BP     8  0 1.000000e+00
## GO:0090158  BP     8  0 1.000000e+00
## GO:0042045  BP     8  0 1.000000e+00
## GO:0051683  BP     8  0 1.000000e+00
## GO:0097368  BP     8  0 1.000000e+00
## GO:0034085  BP     8  0 1.000000e+00
## GO:0006067  BP     8  0 1.000000e+00
## GO:0098881  BP     8  0 1.000000e+00
## GO:0098967  BP     8  0 1.000000e+00
## GO:0000459  BP     8  0 1.000000e+00
## GO:0000467  BP     8  0 1.000000e+00
## GO:0042363  BP     8  0 1.000000e+00
## GO:1902001  BP     8  0 1.000000e+00
## GO:0007144  BP     8  0 1.000000e+00
## GO:0016321  BP     8  0 1.000000e+00
## GO:0021861  BP     8  0 1.000000e+00
## GO:0001325  BP     8  0 1.000000e+00
## GO:0072310  BP     8  0 1.000000e+00
## GO:0072015  BP     8  0 1.000000e+00
## GO:0016139  BP     8  0 1.000000e+00
## GO:0061484  BP     8  0 1.000000e+00
## GO:0007442  BP     8  0 1.000000e+00
## GO:0043983  BP     8  0 1.000000e+00
## GO:0035404  BP     8  0 1.000000e+00
## GO:0030214  BP     8  0 1.000000e+00
## GO:0021979  BP     8  0 1.000000e+00
## GO:0042435  BP     8  0 1.000000e+00
## GO:0001826  BP     8  0 1.000000e+00
## GO:0072611  BP     8  0 1.000000e+00
## GO:0032627  BP     8  0 1.000000e+00
## GO:0097376  BP     8  0 1.000000e+00
## GO:0097286  BP     8  0 1.000000e+00
## GO:0048290  BP     8  0 1.000000e+00
## GO:0032511  BP     8  0 1.000000e+00
## GO:0019372  BP     8  0 1.000000e+00
## GO:0042758  BP     8  0 1.000000e+00
## GO:0045713  BP     8  0 1.000000e+00
## GO:0060836  BP     8  0 1.000000e+00
## GO:0034238  BP     8  0 1.000000e+00
## GO:0010216  BP     8  0 1.000000e+00
## GO:0022605  BP     8  0 1.000000e+00
## GO:0033313  BP     8  0 1.000000e+00
## GO:0072205  BP     8  0 1.000000e+00
## GO:0072239  BP     8  0 1.000000e+00
## GO:0061732  BP     8  0 1.000000e+00
## GO:0035696  BP     8  0 1.000000e+00
## GO:0061744  BP     8  0 1.000000e+00
## GO:0014908  BP     8  0 1.000000e+00
## GO:2000562  BP     8  0 1.000000e+00
## GO:0051126  BP     8  0 1.000000e+00
## GO:1900222  BP     8  0 1.000000e+00
## GO:1904746  BP     8  0 1.000000e+00
## GO:1903147  BP     8  0 1.000000e+00
## GO:2000480  BP     8  0 1.000000e+00
## GO:0009996  BP     8  0 1.000000e+00
## GO:0002692  BP     8  0 1.000000e+00
## GO:1902548  BP     8  0 1.000000e+00
## GO:0045916  BP     8  0 1.000000e+00
## GO:2000766  BP     8  0 1.000000e+00
## GO:0061002  BP     8  0 1.000000e+00
## GO:0010764  BP     8  0 1.000000e+00
## GO:0060455  BP     8  0 1.000000e+00
## GO:2000542  BP     8  0 1.000000e+00
## GO:1905940  BP     8  0 1.000000e+00
## GO:0032277  BP     8  0 1.000000e+00
## GO:1905098  BP     8  0 1.000000e+00
## GO:0042636  BP     8  0 1.000000e+00
## GO:1901533  BP     8  0 1.000000e+00
## GO:1901299  BP     8  0 1.000000e+00
## GO:0090084  BP     8  0 1.000000e+00
## GO:0031665  BP     8  0 1.000000e+00
## GO:0031441  BP     8  0 1.000000e+00
## GO:1900364  BP     8  0 1.000000e+00
## GO:0033007  BP     8  0 1.000000e+00
## GO:1905709  BP     8  0 1.000000e+00
## GO:0072201  BP     8  0 1.000000e+00
## GO:1901029  BP     8  0 1.000000e+00
## GO:0032815  BP     8  0 1.000000e+00
## GO:0051581  BP     8  0 1.000000e+00
## GO:0010700  BP     8  0 1.000000e+00
## GO:0090324  BP     8  0 1.000000e+00
## GO:1903726  BP     8  0 1.000000e+00
## GO:2000258  BP     8  0 1.000000e+00
## GO:0044387  BP     8  0 1.000000e+00
## GO:0035814  BP     8  0 1.000000e+00
## GO:0032229  BP     8  0 1.000000e+00
## GO:0034144  BP     8  0 1.000000e+00
## GO:1905064  BP     8  0 1.000000e+00
## GO:0046958  BP     8  0 1.000000e+00
## GO:0007000  BP     8  0 1.000000e+00
## GO:0009133  BP     8  0 1.000000e+00
## GO:1901642  BP     8  0 1.000000e+00
## GO:0038003  BP     8  0 1.000000e+00
## GO:0030916  BP     8  0 1.000000e+00
## GO:0007008  BP     8  0 1.000000e+00
## GO:0019800  BP     8  0 1.000000e+00
## GO:0035246  BP     8  0 1.000000e+00
## GO:0018202  BP     8  0 1.000000e+00
## GO:0034983  BP     8  0 1.000000e+00
## GO:0017185  BP     8  0 1.000000e+00
## GO:0018401  BP     8  0 1.000000e+00
## GO:0036289  BP     8  0 1.000000e+00
## GO:0032287  BP     8  0 1.000000e+00
## GO:0090385  BP     8  0 1.000000e+00
## GO:0036092  BP     8  0 1.000000e+00
## GO:0015911  BP     8  0 1.000000e+00
## GO:0043633  BP     8  0 1.000000e+00
## GO:0016093  BP     8  0 1.000000e+00
## GO:0044829  BP     8  0 1.000000e+00
## GO:2000601  BP     8  0 1.000000e+00
## GO:1900264  BP     8  0 1.000000e+00
## GO:0051135  BP     8  0 1.000000e+00
## GO:1904783  BP     8  0 1.000000e+00
## GO:1900246  BP     8  0 1.000000e+00
## GO:0045627  BP     8  0 1.000000e+00
## GO:2000096  BP     8  0 1.000000e+00
## GO:1904747  BP     8  0 1.000000e+00
## GO:1902339  BP     8  0 1.000000e+00
## GO:1905247  BP     8  0 1.000000e+00
## GO:2000987  BP     8  0 1.000000e+00
## GO:0062043  BP     8  0 1.000000e+00
## GO:0010455  BP     8  0 1.000000e+00
## GO:0038089  BP     8  0 1.000000e+00
## GO:0045542  BP     8  0 1.000000e+00
## GO:0090205  BP     8  0 1.000000e+00
## GO:0045919  BP     8  0 1.000000e+00
## GO:0048087  BP     8  0 1.000000e+00
## GO:2000643  BP     8  0 1.000000e+00
## GO:1903367  BP     8  0 1.000000e+00
## GO:0045743  BP     8  0 1.000000e+00
## GO:2000543  BP     8  0 1.000000e+00
## GO:0072126  BP     8  0 1.000000e+00
## GO:0097151  BP     8  0 1.000000e+00
## GO:0045362  BP     8  0 1.000000e+00
## GO:1902255  BP     8  0 1.000000e+00
## GO:0031666  BP     8  0 1.000000e+00
## GO:1902416  BP     8  0 1.000000e+00
## GO:0033601  BP     8  0 1.000000e+00
## GO:0045842  BP     8  0 1.000000e+00
## GO:1901970  BP     8  0 1.000000e+00
## GO:0014744  BP     8  0 1.000000e+00
## GO:0002857  BP     8  0 1.000000e+00
## GO:0150078  BP     8  0 1.000000e+00
## GO:0051388  BP     8  0 1.000000e+00
## GO:0035360  BP     8  0 1.000000e+00
## GO:1901628  BP     8  0 1.000000e+00
## GO:0060050  BP     8  0 1.000000e+00
## GO:1900378  BP     8  0 1.000000e+00
## GO:0048743  BP     8  0 1.000000e+00
## GO:0106120  BP     8  0 1.000000e+00
## GO:1901341  BP     8  0 1.000000e+00
## GO:2000809  BP     8  0 1.000000e+00
## GO:1903265  BP     8  0 1.000000e+00
## GO:0001812  BP     8  0 1.000000e+00
## GO:1904417  BP     8  0 1.000000e+00
## GO:0034310  BP     8  0 1.000000e+00
## GO:0050847  BP     8  0 1.000000e+00
## GO:0048793  BP     8  0 1.000000e+00
## GO:0085020  BP     8  0 1.000000e+00
## GO:0018243  BP     8  0 1.000000e+00
## GO:0018344  BP     8  0 1.000000e+00
## GO:0045039  BP     8  0 1.000000e+00
## GO:1904491  BP     8  0 1.000000e+00
## GO:0071692  BP     8  0 1.000000e+00
## GO:0018065  BP     8  0 1.000000e+00
## GO:0009113  BP     8  0 1.000000e+00
## GO:0009169  BP     8  0 1.000000e+00
## GO:0015868  BP     8  0 1.000000e+00
## GO:0043101  BP     8  0 1.000000e+00
## GO:0072526  BP     8  0 1.000000e+00
## GO:0019856  BP     8  0 1.000000e+00
## GO:0009130  BP     8  0 1.000000e+00
## GO:0070475  BP     8  0 1.000000e+00
## GO:2000564  BP     8  0 1.000000e+00
## GO:1900262  BP     8  0 1.000000e+00
## GO:1903069  BP     8  0 1.000000e+00
## GO:0051136  BP     8  0 1.000000e+00
## GO:1900147  BP     8  0 1.000000e+00
## GO:0003307  BP     8  0 1.000000e+00
## GO:0070235  BP     8  0 1.000000e+00
## GO:0032347  BP     8  0 1.000000e+00
## GO:1905651  BP     8  0 1.000000e+00
## GO:0060371  BP     8  0 1.000000e+00
## GO:0051890  BP     8  0 1.000000e+00
## GO:0071649  BP     8  0 1.000000e+00
## GO:1904796  BP     8  0 1.000000e+00
## GO:0051459  BP     8  0 1.000000e+00
## GO:0010603  BP     8  0 1.000000e+00
## GO:1900247  BP     8  0 1.000000e+00
## GO:1901201  BP     8  0 1.000000e+00
## GO:0046880  BP     8  0 1.000000e+00
## GO:0031946  BP     8  0 1.000000e+00
## GO:0000820  BP     8  0 1.000000e+00
## GO:2000465  BP     8  0 1.000000e+00
## GO:0005981  BP     8  0 1.000000e+00
## GO:0090381  BP     8  0 1.000000e+00
## GO:1901725  BP     8  0 1.000000e+00
## GO:0010728  BP     8  0 1.000000e+00
## GO:1903795  BP     8  0 1.000000e+00
## GO:0045360  BP     8  0 1.000000e+00
## GO:2001182  BP     8  0 1.000000e+00
## GO:1905076  BP     8  0 1.000000e+00
## GO:0032661  BP     8  0 1.000000e+00
## GO:0032667  BP     8  0 1.000000e+00
## GO:0030300  BP     8  0 1.000000e+00
## GO:0032383  BP     8  0 1.000000e+00
## GO:0032377  BP     8  0 1.000000e+00
## GO:0032380  BP     8  0 1.000000e+00
## GO:0051340  BP     8  0 1.000000e+00
## GO:0033684  BP     8  0 1.000000e+00
## GO:0034182  BP     8  0 1.000000e+00
## GO:0060753  BP     8  0 1.000000e+00
## GO:0003339  BP     8  0 1.000000e+00
## GO:0032534  BP     8  0 1.000000e+00
## GO:0046602  BP     8  0 1.000000e+00
## GO:1905274  BP     8  0 1.000000e+00
## GO:0035507  BP     8  0 1.000000e+00
## GO:0043313  BP     8  0 1.000000e+00
## GO:2000169  BP     8  0 1.000000e+00
## GO:2000586  BP     8  0 1.000000e+00
## GO:1903286  BP     8  0 1.000000e+00
## GO:2000973  BP     8  0 1.000000e+00
## GO:1903564  BP     8  0 1.000000e+00
## GO:1902866  BP     8  0 1.000000e+00
## GO:1904393  BP     8  0 1.000000e+00
## GO:0048631  BP     8  0 1.000000e+00
## GO:1901620  BP     8  0 1.000000e+00
## GO:0001993  BP     8  0 1.000000e+00
## GO:0032909  BP     8  0 1.000000e+00
## GO:0036490  BP     8  0 1.000000e+00
## GO:1904415  BP     8  0 1.000000e+00
## GO:0060087  BP     8  0 1.000000e+00
## GO:0001999  BP     8  0 1.000000e+00
## GO:0072033  BP     8  0 1.000000e+00
## GO:0048478  BP     8  0 1.000000e+00
## GO:0070672  BP     8  0 1.000000e+00
## GO:0009415  BP     8  0 1.000000e+00
## GO:0016056  BP     8  0 1.000000e+00
## GO:0009191  BP     8  0 1.000000e+00
## GO:0009158  BP     8  0 1.000000e+00
## GO:0000055  BP     8  0 1.000000e+00
## GO:0001514  BP     8  0 1.000000e+00
## GO:0048752  BP     8  0 1.000000e+00
## GO:0071670  BP     8  0 1.000000e+00
## GO:0070253  BP     8  0 1.000000e+00
## GO:0006685  BP     8  0 1.000000e+00
## GO:0097501  BP     8  0 1.000000e+00
## GO:0006930  BP     8  0 1.000000e+00
## GO:0006105  BP     8  0 1.000000e+00
## GO:0000098  BP     8  0 1.000000e+00
## GO:0098883  BP     8  0 1.000000e+00
## GO:0099532  BP     8  0 1.000000e+00
## GO:0090656  BP     8  0 1.000000e+00
## GO:0042780  BP     8  0 1.000000e+00
## GO:0016078  BP     8  0 1.000000e+00
## GO:0090672  BP     8  0 1.000000e+00
## GO:0090671  BP     8  0 1.000000e+00
## GO:0090737  BP     8  0 1.000000e+00
## GO:0061820  BP     8  0 1.000000e+00
## GO:0090657  BP     8  0 1.000000e+00
## GO:0072553  BP     8  0 1.000000e+00
## GO:1902645  BP     8  0 1.000000e+00
## GO:0060534  BP     8  0 1.000000e+00
## GO:0032906  BP     8  0 1.000000e+00
## GO:0006451  BP     8  0 1.000000e+00
## GO:0044417  BP     8  0 1.000000e+00
## GO:0051836  BP     8  0 1.000000e+00
## GO:0003175  BP     8  0 1.000000e+00
## GO:0007021  BP     8  0 1.000000e+00
## GO:0010992  BP     8  0 1.000000e+00
## GO:0048280  BP     8  0 1.000000e+00
## GO:0072319  BP     8  0 1.000000e+00
## GO:0070561  BP     8  0 1.000000e+00
## GO:0042364  BP     8  0 1.000000e+00
## GO:0042908  BP     8  0 1.000000e+00
## GO:0071578  BP     8  0 1.000000e+00
## GO:0006241  BP     9  0 1.000000e+00
## GO:0046036  BP     9  0 1.000000e+00
## GO:0038096  BP     9  0 1.000000e+00
## GO:0045023  BP     9  0 1.000000e+00
## GO:1902023  BP     9  0 1.000000e+00
## GO:0006563  BP     9  0 1.000000e+00
## GO:0046498  BP     9  0 1.000000e+00
## GO:0086015  BP     9  0 1.000000e+00
## GO:0086070  BP     9  0 1.000000e+00
## GO:0086018  BP     9  0 1.000000e+00
## GO:0032933  BP     9  0 1.000000e+00
## GO:0006616  BP     9  0 1.000000e+00
## GO:0036135  BP     9  0 1.000000e+00
## GO:0046051  BP     9  0 1.000000e+00
## GO:1901374  BP     9  0 1.000000e+00
## GO:0015870  BP     9  0 1.000000e+00
## GO:0006382  BP     9  0 1.000000e+00
## GO:0008343  BP     9  0 1.000000e+00
## GO:0032328  BP     9  0 1.000000e+00
## GO:0030647  BP     9  0 1.000000e+00
## GO:0099641  BP     9  0 1.000000e+00
## GO:0042590  BP     9  0 1.000000e+00
## GO:0001547  BP     9  0 1.000000e+00
## GO:0015810  BP     9  0 1.000000e+00
## GO:0099624  BP     9  0 1.000000e+00
## GO:0003228  BP     9  0 1.000000e+00
## GO:0048102  BP     9  0 1.000000e+00
## GO:0048318  BP     9  0 1.000000e+00
## GO:0035095  BP     9  0 1.000000e+00
## GO:0060837  BP     9  0 1.000000e+00
## GO:0048539  BP     9  0 1.000000e+00
## GO:0016338  BP     9  0 1.000000e+00
## GO:0051934  BP     9  0 1.000000e+00
## GO:0060352  BP     9  0 1.000000e+00
## GO:0030644  BP     9  0 1.000000e+00
## GO:0071481  BP     9  0 1.000000e+00
## GO:0110096  BP     9  0 1.000000e+00
## GO:0071872  BP     9  0 1.000000e+00
## GO:0071372  BP     9  0 1.000000e+00
## GO:0071225  BP     9  0 1.000000e+00
## GO:0071394  BP     9  0 1.000000e+00
## GO:0097067  BP     9  0 1.000000e+00
## GO:0021796  BP     9  0 1.000000e+00
## GO:0071609  BP     9  0 1.000000e+00
## GO:0060717  BP     9  0 1.000000e+00
## GO:0061009  BP     9  0 1.000000e+00
## GO:0060028  BP     9  0 1.000000e+00
## GO:0061303  BP     9  0 1.000000e+00
## GO:0021957  BP     9  0 1.000000e+00
## GO:0090286  BP     9  0 1.000000e+00
## GO:0044597  BP     9  0 1.000000e+00
## GO:0099519  BP     9  0 1.000000e+00
## GO:0003140  BP     9  0 1.000000e+00
## GO:0060539  BP     9  0 1.000000e+00
## GO:0051583  BP     9  0 1.000000e+00
## GO:0044598  BP     9  0 1.000000e+00
## GO:0046618  BP     9  0 1.000000e+00
## GO:0007343  BP     9  0 1.000000e+00
## GO:0048251  BP     9  0 1.000000e+00
## GO:0060136  BP     9  0 1.000000e+00
## GO:0034058  BP     9  0 1.000000e+00
## GO:0042118  BP     9  0 1.000000e+00
## GO:0043353  BP     9  0 1.000000e+00
## GO:0050957  BP     9  0 1.000000e+00
## GO:0001768  BP     9  0 1.000000e+00
## GO:0051660  BP     9  0 1.000000e+00
## GO:0001767  BP     9  0 1.000000e+00
## GO:0044849  BP     9  0 1.000000e+00
## GO:0042439  BP     9  0 1.000000e+00
## GO:0031017  BP     9  0 1.000000e+00
## GO:0052696  BP     9  0 1.000000e+00
## GO:0009396  BP     9  0 1.000000e+00
## GO:0006012  BP     9  0 1.000000e+00
## GO:0006681  BP     9  0 1.000000e+00
## GO:0035482  BP     9  0 1.000000e+00
## GO:0008354  BP     9  0 1.000000e+00
## GO:0032836  BP     9  0 1.000000e+00
## GO:0015886  BP     9  0 1.000000e+00
## GO:0034384  BP     9  0 1.000000e+00
## GO:0061525  BP     9  0 1.000000e+00
## GO:0036353  BP     9  0 1.000000e+00
## GO:0070544  BP     9  0 1.000000e+00
## GO:0034770  BP     9  0 1.000000e+00
## GO:0006971  BP     9  0 1.000000e+00
## GO:0002433  BP     9  0 1.000000e+00
## GO:0090713  BP     9  0 1.000000e+00
## GO:0097340  BP     9  0 1.000000e+00
## GO:0042222  BP     9  0 1.000000e+00
## GO:0021830  BP     9  0 1.000000e+00
## GO:0014827  BP     9  0 1.000000e+00
## GO:1902224  BP     9  0 1.000000e+00
## GO:0042182  BP     9  0 1.000000e+00
## GO:0070189  BP     9  0 1.000000e+00
## GO:0019249  BP     9  0 1.000000e+00
## GO:0044539  BP     9  0 1.000000e+00
## GO:0034374  BP     9  0 1.000000e+00
## GO:0060462  BP     9  0 1.000000e+00
## GO:0060463  BP     9  0 1.000000e+00
## GO:0060426  BP     9  0 1.000000e+00
## GO:0007042  BP     9  0 1.000000e+00
## GO:1905146  BP     9  0 1.000000e+00
## GO:0098734  BP     9  0 1.000000e+00
## GO:0044351  BP     9  0 1.000000e+00
## GO:0045199  BP     9  0 1.000000e+00
## GO:0060592  BP     9  0 1.000000e+00
## GO:0006013  BP     9  0 1.000000e+00
## GO:0044771  BP     9  0 1.000000e+00
## GO:0033206  BP     9  0 1.000000e+00
## GO:0072497  BP     9  0 1.000000e+00
## GO:0060638  BP     9  0 1.000000e+00
## GO:0051418  BP     9  0 1.000000e+00
## GO:0030917  BP     9  0 1.000000e+00
## GO:0034551  BP     9  0 1.000000e+00
## GO:0090646  BP     9  0 1.000000e+00
## GO:0090647  BP     9  0 1.000000e+00
## GO:0098828  BP     9  0 1.000000e+00
## GO:0035520  BP     9  0 1.000000e+00
## GO:0035878  BP     9  0 1.000000e+00
## GO:0043320  BP     9  0 1.000000e+00
## GO:0002713  BP     9  0 1.000000e+00
## GO:0002725  BP     9  0 1.000000e+00
## GO:0035562  BP     9  0 1.000000e+00
## GO:0032471  BP     9  0 1.000000e+00
## GO:1900102  BP     9  0 1.000000e+00
## GO:1903748  BP     9  0 1.000000e+00
## GO:1903054  BP     9  0 1.000000e+00
## GO:2000192  BP     9  0 1.000000e+00
## GO:2000270  BP     9  0 1.000000e+00
## GO:0034351  BP     9  0 1.000000e+00
## GO:0002890  BP     9  0 1.000000e+00
## GO:0043569  BP     9  0 1.000000e+00
## GO:0050713  BP     9  0 1.000000e+00
## GO:0045617  BP     9  0 1.000000e+00
## GO:0010985  BP     9  0 1.000000e+00
## GO:2000381  BP     9  0 1.000000e+00
## GO:0072217  BP     9  0 1.000000e+00
## GO:0002887  BP     9  0 1.000000e+00
## GO:0007406  BP     9  0 1.000000e+00
## GO:2000051  BP     9  0 1.000000e+00
## GO:0046533  BP     9  0 1.000000e+00
## GO:0033234  BP     9  0 1.000000e+00
## GO:1904153  BP     9  0 1.000000e+00
## GO:0045869  BP     9  0 1.000000e+00
## GO:0045988  BP     9  0 1.000000e+00
## GO:1904354  BP     9  0 1.000000e+00
## GO:0010944  BP     9  0 1.000000e+00
## GO:0014029  BP     9  0 1.000000e+00
## GO:0001842  BP     9  0 1.000000e+00
## GO:0001839  BP     9  0 1.000000e+00
## GO:0060896  BP     9  0 1.000000e+00
## GO:0061101  BP     9  0 1.000000e+00
## GO:0048664  BP     9  0 1.000000e+00
## GO:0036480  BP     9  0 1.000000e+00
## GO:0030223  BP     9  0 1.000000e+00
## GO:0070944  BP     9  0 1.000000e+00
## GO:0051292  BP     9  0 1.000000e+00
## GO:0046113  BP     9  0 1.000000e+00
## GO:0009134  BP     9  0 1.000000e+00
## GO:0015858  BP     9  0 1.000000e+00
## GO:0043173  BP     9  0 1.000000e+00
## GO:0033683  BP     9  0 1.000000e+00
## GO:0098597  BP     9  0 1.000000e+00
## GO:0021891  BP     9  0 1.000000e+00
## GO:0009313  BP     9  0 1.000000e+00
## GO:0002158  BP     9  0 1.000000e+00
## GO:0048840  BP     9  0 1.000000e+00
## GO:0042473  BP     9  0 1.000000e+00
## GO:0003310  BP     9  0 1.000000e+00
## GO:0048341  BP     9  0 1.000000e+00
## GO:0007567  BP     9  0 1.000000e+00
## GO:0061004  BP     9  0 1.000000e+00
## GO:0007341  BP     9  0 1.000000e+00
## GO:0003344  BP     9  0 1.000000e+00
## GO:0016559  BP     9  0 1.000000e+00
## GO:0006646  BP     9  0 1.000000e+00
## GO:0070816  BP     9  0 1.000000e+00
## GO:0030638  BP     9  0 1.000000e+00
## GO:0015791  BP     9  0 1.000000e+00
## GO:2000969  BP     9  0 1.000000e+00
## GO:2001187  BP     9  0 1.000000e+00
## GO:1905216  BP     9  0 1.000000e+00
## GO:1904179  BP     9  0 1.000000e+00
## GO:1902669  BP     9  0 1.000000e+00
## GO:1903012  BP     9  0 1.000000e+00
## GO:0010753  BP     9  0 1.000000e+00
## GO:1901978  BP     9  0 1.000000e+00
## GO:0010825  BP     9  0 1.000000e+00
## GO:0010873  BP     9  0 1.000000e+00
## GO:0046010  BP     9  0 1.000000e+00
## GO:2000848  BP     9  0 1.000000e+00
## GO:2001269  BP     9  0 1.000000e+00
## GO:0002741  BP     9  0 1.000000e+00
## GO:2000767  BP     9  0 1.000000e+00
## GO:0090045  BP     9  0 1.000000e+00
## GO:1905168  BP     9  0 1.000000e+00
## GO:1902237  BP     9  0 1.000000e+00
## GO:0031536  BP     9  0 1.000000e+00
## GO:2000617  BP     9  0 1.000000e+00
## GO:0033129  BP     9  0 1.000000e+00
## GO:2001046  BP     9  0 1.000000e+00
## GO:0045084  BP     9  0 1.000000e+00
## GO:0051006  BP     9  0 1.000000e+00
## GO:1900454  BP     9  0 1.000000e+00
## GO:2000020  BP     9  0 1.000000e+00
## GO:1902101  BP     9  0 1.000000e+00
## GO:0090309  BP     9  0 1.000000e+00
## GO:0098779  BP     9  0 1.000000e+00
## GO:0045657  BP     9  0 1.000000e+00
## GO:0033034  BP     9  0 1.000000e+00
## GO:0060406  BP     9  0 1.000000e+00
## GO:2001140  BP     9  0 1.000000e+00
## GO:1902966  BP     9  0 1.000000e+00
## GO:2000234  BP     9  0 1.000000e+00
## GO:1900122  BP     9  0 1.000000e+00
## GO:1903911  BP     9  0 1.000000e+00
## GO:1901033  BP     9  0 1.000000e+00
## GO:0090070  BP     9  0 1.000000e+00
## GO:1904058  BP     9  0 1.000000e+00
## GO:0090031  BP     9  0 1.000000e+00
## GO:0010898  BP     9  0 1.000000e+00
## GO:0002894  BP     9  0 1.000000e+00
## GO:0001798  BP     9  0 1.000000e+00
## GO:0070474  BP     9  0 1.000000e+00
## GO:0046598  BP     9  0 1.000000e+00
## GO:0000338  BP     9  0 1.000000e+00
## GO:0002084  BP     9  0 1.000000e+00
## GO:0099612  BP     9  0 1.000000e+00
## GO:1905383  BP     9  0 1.000000e+00
## GO:0018095  BP     9  0 1.000000e+00
## GO:0006152  BP     9  0 1.000000e+00
## GO:0009128  BP     9  0 1.000000e+00
## GO:0015865  BP     9  0 1.000000e+00
## GO:0046130  BP     9  0 1.000000e+00
## GO:0009221  BP     9  0 1.000000e+00
## GO:0006290  BP     9  0 1.000000e+00
## GO:0009129  BP     9  0 1.000000e+00
## GO:0090481  BP     9  0 1.000000e+00
## GO:0031125  BP     9  0 1.000000e+00
## GO:0070316  BP     9  0 1.000000e+00
## GO:0033860  BP     9  0 1.000000e+00
## GO:0010624  BP     9  0 1.000000e+00
## GO:1903715  BP     9  0 1.000000e+00
## GO:0032344  BP     9  0 1.000000e+00
## GO:0090237  BP     9  0 1.000000e+00
## GO:1902959  BP     9  0 1.000000e+00
## GO:0060312  BP     9  0 1.000000e+00
## GO:0062042  BP     9  0 1.000000e+00
## GO:0086036  BP     9  0 1.000000e+00
## GO:0010881  BP     9  0 1.000000e+00
## GO:1903242  BP     9  0 1.000000e+00
## GO:0106049  BP     9  0 1.000000e+00
## GO:2001225  BP     9  0 1.000000e+00
## GO:0001672  BP     9  0 1.000000e+00
## GO:1903659  BP     9  0 1.000000e+00
## GO:0002604  BP     9  0 1.000000e+00
## GO:2000508  BP     9  0 1.000000e+00
## GO:0032070  BP     9  0 1.000000e+00
## GO:1904338  BP     9  0 1.000000e+00
## GO:0014060  BP     9  0 1.000000e+00
## GO:2000794  BP     9  0 1.000000e+00
## GO:0046643  BP     9  0 1.000000e+00
## GO:0045586  BP     9  0 1.000000e+00
## GO:1904304  BP     9  0 1.000000e+00
## GO:0048819  BP     9  0 1.000000e+00
## GO:0051095  BP     9  0 1.000000e+00
## GO:1902033  BP     9  0 1.000000e+00
## GO:2000489  BP     9  0 1.000000e+00
## GO:1900125  BP     9  0 1.000000e+00
## GO:0032650  BP     9  0 1.000000e+00
## GO:1904729  BP     9  0 1.000000e+00
## GO:0034756  BP     9  0 1.000000e+00
## GO:2000392  BP     9  0 1.000000e+00
## GO:1903236  BP     9  0 1.000000e+00
## GO:0034091  BP     9  0 1.000000e+00
## GO:0060631  BP     9  0 1.000000e+00
## GO:1901993  BP     9  0 1.000000e+00
## GO:0010635  BP     9  0 1.000000e+00
## GO:2000671  BP     9  0 1.000000e+00
## GO:0032817  BP     9  0 1.000000e+00
## GO:0150011  BP     9  0 1.000000e+00
## GO:1903376  BP     9  0 1.000000e+00
## GO:0010966  BP     9  0 1.000000e+00
## GO:0032429  BP     9  0 1.000000e+00
## GO:2001138  BP     9  0 1.000000e+00
## GO:0050932  BP     9  0 1.000000e+00
## GO:0010835  BP     9  0 1.000000e+00
## GO:1900044  BP     9  0 1.000000e+00
## GO:0061635  BP     9  0 1.000000e+00
## GO:1904776  BP     9  0 1.000000e+00
## GO:1902965  BP     9  0 1.000000e+00
## GO:1904749  BP     9  0 1.000000e+00
## GO:2000121  BP     9  0 1.000000e+00
## GO:0046877  BP     9  0 1.000000e+00
## GO:0014807  BP     9  0 1.000000e+00
## GO:0034139  BP     9  0 1.000000e+00
## GO:0034163  BP     9  0 1.000000e+00
## GO:0001810  BP     9  0 1.000000e+00
## GO:0002892  BP     9  0 1.000000e+00
## GO:0001796  BP     9  0 1.000000e+00
## GO:0003056  BP     9  0 1.000000e+00
## GO:0072048  BP     9  0 1.000000e+00
## GO:0090399  BP     9  0 1.000000e+00
## GO:0017062  BP     9  0 1.000000e+00
## GO:0051412  BP     9  0 1.000000e+00
## GO:0071871  BP     9  0 1.000000e+00
## GO:0045472  BP     9  0 1.000000e+00
## GO:0051409  BP     9  0 1.000000e+00
## GO:0060040  BP     9  0 1.000000e+00
## GO:0046666  BP     9  0 1.000000e+00
## GO:0021546  BP     9  0 1.000000e+00
## GO:0003139  BP     9  0 1.000000e+00
## GO:0097264  BP     9  0 1.000000e+00
## GO:0035581  BP     9  0 1.000000e+00
## GO:0007210  BP     9  0 1.000000e+00
## GO:0030241  BP     9  0 1.000000e+00
## GO:0014816  BP     9  0 1.000000e+00
## GO:0070922  BP     9  0 1.000000e+00
## GO:0042795  BP     9  0 1.000000e+00
## GO:0090520  BP     9  0 1.000000e+00
## GO:0000244  BP     9  0 1.000000e+00
## GO:0071688  BP     9  0 1.000000e+00
## GO:0061549  BP     9  0 1.000000e+00
## GO:0022028  BP     9  0 1.000000e+00
## GO:0061370  BP     9  0 1.000000e+00
## GO:0046146  BP     9  0 1.000000e+00
## GO:0043587  BP     9  0 1.000000e+00
## GO:0099545  BP     9  0 1.000000e+00
## GO:0060290  BP     9  0 1.000000e+00
## GO:0036363  BP     9  0 1.000000e+00
## GO:0046794  BP     9  0 1.000000e+00
## GO:0016068  BP     9  0 1.000000e+00
## GO:0002445  BP     9  0 1.000000e+00
## GO:0001794  BP     9  0 1.000000e+00
## GO:0072197  BP     9  0 1.000000e+00
## GO:0060677  BP     9  0 1.000000e+00
## GO:0061042  BP     9  0 1.000000e+00
## GO:0003223  BP     9  0 1.000000e+00
## GO:0034372  BP     9  0 1.000000e+00
## GO:0021562  BP     9  0 1.000000e+00
## GO:0061032  BP     9  0 1.000000e+00
## GO:0050882  BP     9  0 1.000000e+00
## GO:0002246  BP     9  0 1.000000e+00
## GO:0052697  BP     9  0 1.000000e+00
## GO:0097341  BP     9  0 1.000000e+00
## GO:0060020  BP    10  0 1.000000e+00
## GO:0048208  BP    10  0 1.000000e+00
## GO:0006183  BP    10  0 1.000000e+00
## GO:0075522  BP    10  0 1.000000e+00
## GO:0006558  BP    10  0 1.000000e+00
## GO:0007220  BP    10  0 1.000000e+00
## GO:0036499  BP    10  0 1.000000e+00
## GO:0009650  BP    10  0 1.000000e+00
## GO:0051639  BP    10  0 1.000000e+00
## GO:0046085  BP    10  0 1.000000e+00
## GO:0007191  BP    10  0 1.000000e+00
## GO:0042891  BP    10  0 1.000000e+00
## GO:0045176  BP    10  0 1.000000e+00
## GO:0048149  BP    10  0 1.000000e+00
## GO:0000492  BP    10  0 1.000000e+00
## GO:0099004  BP    10  0 1.000000e+00
## GO:0060379  BP    10  0 1.000000e+00
## GO:0003211  BP    10  0 1.000000e+00
## GO:0072203  BP    10  0 1.000000e+00
## GO:0070417  BP    10  0 1.000000e+00
## GO:0071257  BP    10  0 1.000000e+00
## GO:0071233  BP    10  0 1.000000e+00
## GO:1990253  BP    10  0 1.000000e+00
## GO:0071223  BP    10  0 1.000000e+00
## GO:0043562  BP    10  0 1.000000e+00
## GO:0006995  BP    10  0 1.000000e+00
## GO:0140052  BP    10  0 1.000000e+00
## GO:0071501  BP    10  0 1.000000e+00
## GO:0071305  BP    10  0 1.000000e+00
## GO:0021800  BP    10  0 1.000000e+00
## GO:0061684  BP    10  0 1.000000e+00
## GO:0072321  BP    10  0 1.000000e+00
## GO:0006707  BP    10  0 1.000000e+00
## GO:0060710  BP    10  0 1.000000e+00
## GO:0000183  BP    10  0 1.000000e+00
## GO:0015937  BP    10  0 1.000000e+00
## GO:0060982  BP    10  0 1.000000e+00
## GO:0051458  BP    10  0 1.000000e+00
## GO:0034650  BP    10  0 1.000000e+00
## GO:0000290  BP    10  0 1.000000e+00
## GO:1990504  BP    10  0 1.000000e+00
## GO:0032253  BP    10  0 1.000000e+00
## GO:1901950  BP    10  0 1.000000e+00
## GO:0002934  BP    10  0 1.000000e+00
## GO:0046543  BP    10  0 1.000000e+00
## GO:0072017  BP    10  0 1.000000e+00
## GO:0006488  BP    10  0 1.000000e+00
## GO:0035907  BP    10  0 1.000000e+00
## GO:0048703  BP    10  0 1.000000e+00
## GO:0000478  BP    10  0 1.000000e+00
## GO:0000479  BP    10  0 1.000000e+00
## GO:0035646  BP    10  0 1.000000e+00
## GO:0043485  BP    10  0 1.000000e+00
## GO:0048242  BP    10  0 1.000000e+00
## GO:1902221  BP    10  0 1.000000e+00
## GO:0046485  BP    10  0 1.000000e+00
## GO:0051601  BP    10  0 1.000000e+00
## GO:0043928  BP    10  0 1.000000e+00
## GO:1900116  BP    10  0 1.000000e+00
## GO:1900115  BP    10  0 1.000000e+00
## GO:0021612  BP    10  0 1.000000e+00
## GO:1901569  BP    10  0 1.000000e+00
## GO:0090269  BP    10  0 1.000000e+00
## GO:0046884  BP    10  0 1.000000e+00
## GO:0021873  BP    10  0 1.000000e+00
## GO:0006000  BP    10  0 1.000000e+00
## GO:0019374  BP    10  0 1.000000e+00
## GO:0016264  BP    10  0 1.000000e+00
## GO:0061620  BP    10  0 1.000000e+00
## GO:0003129  BP    10  0 1.000000e+00
## GO:0015014  BP    10  0 1.000000e+00
## GO:0034380  BP    10  0 1.000000e+00
## GO:0002349  BP    10  0 1.000000e+00
## GO:0002553  BP    10  0 1.000000e+00
## GO:0002441  BP    10  0 1.000000e+00
## GO:0044154  BP    10  0 1.000000e+00
## GO:0098532  BP    10  0 1.000000e+00
## GO:0010452  BP    10  0 1.000000e+00
## GO:0052803  BP    10  0 1.000000e+00
## GO:1901142  BP    10  0 1.000000e+00
## GO:0045350  BP    10  0 1.000000e+00
## GO:0022027  BP    10  0 1.000000e+00
## GO:0072610  BP    10  0 1.000000e+00
## GO:0032621  BP    10  0 1.000000e+00
## GO:0008300  BP    10  0 1.000000e+00
## GO:0098598  BP    10  0 1.000000e+00
## GO:0043651  BP    10  0 1.000000e+00
## GO:0035336  BP    10  0 1.000000e+00
## GO:0072070  BP    10  0 1.000000e+00
## GO:0060484  BP    10  0 1.000000e+00
## GO:0071888  BP    10  0 1.000000e+00
## GO:0035090  BP    10  0 1.000000e+00
## GO:0035437  BP    10  0 1.000000e+00
## GO:0002176  BP    10  0 1.000000e+00
## GO:0002315  BP    10  0 1.000000e+00
## GO:0051791  BP    10  0 1.000000e+00
## GO:0051177  BP    10  0 1.000000e+00
## GO:0045144  BP    10  0 1.000000e+00
## GO:0003149  BP    10  0 1.000000e+00
## GO:0048382  BP    10  0 1.000000e+00
## GO:0072173  BP    10  0 1.000000e+00
## GO:0010587  BP    10  0 1.000000e+00
## GO:0034454  BP    10  0 1.000000e+00
## GO:0033314  BP    10  0 1.000000e+00
## GO:0072674  BP    10  0 1.000000e+00
## GO:0030049  BP    10  0 1.000000e+00
## GO:0002318  BP    10  0 1.000000e+00
## GO:0031034  BP    10  0 1.000000e+00
## GO:0002420  BP    10  0 1.000000e+00
## GO:0044793  BP    10  0 1.000000e+00
## GO:0043922  BP    10  0 1.000000e+00
## GO:0033085  BP    10  0 1.000000e+00
## GO:0045759  BP    10  0 1.000000e+00
## GO:1903011  BP    10  0 1.000000e+00
## GO:0032375  BP    10  0 1.000000e+00
## GO:1902018  BP    10  0 1.000000e+00
## GO:0048671  BP    10  0 1.000000e+00
## GO:0030853  BP    10  0 1.000000e+00
## GO:0043301  BP    10  0 1.000000e+00
## GO:0010745  BP    10  0 1.000000e+00
## GO:1905522  BP    10  0 1.000000e+00
## GO:0031642  BP    10  0 1.000000e+00
## GO:0051001  BP    10  0 1.000000e+00
## GO:0033689  BP    10  0 1.000000e+00
## GO:0070862  BP    10  0 1.000000e+00
## GO:0032372  BP    10  0 1.000000e+00
## GO:0070244  BP    10  0 1.000000e+00
## GO:0071635  BP    10  0 1.000000e+00
## GO:1904468  BP    10  0 1.000000e+00
## GO:1904667  BP    10  0 1.000000e+00
## GO:0035811  BP    10  0 1.000000e+00
## GO:0039532  BP    10  0 1.000000e+00
## GO:0060052  BP    10  0 1.000000e+00
## GO:0007158  BP    10  0 1.000000e+00
## GO:1990535  BP    10  0 1.000000e+00
## GO:0007270  BP    10  0 1.000000e+00
## GO:0098700  BP    10  0 1.000000e+00
## GO:0099628  BP    10  0 1.000000e+00
## GO:0042421  BP    10  0 1.000000e+00
## GO:0031468  BP    10  0 1.000000e+00
## GO:0034427  BP    10  0 1.000000e+00
## GO:0015780  BP    10  0 1.000000e+00
## GO:0006591  BP    10  0 1.000000e+00
## GO:0018026  BP    10  0 1.000000e+00
## GO:0061626  BP    10  0 1.000000e+00
## GO:0019336  BP    10  0 1.000000e+00
## GO:0007603  BP    10  0 1.000000e+00
## GO:0048757  BP    10  0 1.000000e+00
## GO:0030311  BP    10  0 1.000000e+00
## GO:0030309  BP    10  0 1.000000e+00
## GO:0045348  BP    10  0 1.000000e+00
## GO:2000318  BP    10  0 1.000000e+00
## GO:0032927  BP    10  0 1.000000e+00
## GO:0045762  BP    10  0 1.000000e+00
## GO:0090336  BP    10  0 1.000000e+00
## GO:1901724  BP    10  0 1.000000e+00
## GO:2000774  BP    10  0 1.000000e+00
## GO:0021940  BP    10  0 1.000000e+00
## GO:1905820  BP    10  0 1.000000e+00
## GO:1900103  BP    10  0 1.000000e+00
## GO:0045741  BP    10  0 1.000000e+00
## GO:1903749  BP    10  0 1.000000e+00
## GO:1904851  BP    10  0 1.000000e+00
## GO:0090091  BP    10  0 1.000000e+00
## GO:0032000  BP    10  0 1.000000e+00
## GO:1902093  BP    10  0 1.000000e+00
## GO:0030854  BP    10  0 1.000000e+00
## GO:2000347  BP    10  0 1.000000e+00
## GO:0033625  BP    10  0 1.000000e+00
## GO:0060907  BP    10  0 1.000000e+00
## GO:1901526  BP    10  0 1.000000e+00
## GO:0070257  BP    10  0 1.000000e+00
## GO:2000391  BP    10  0 1.000000e+00
## GO:1903800  BP    10  0 1.000000e+00
## GO:0031274  BP    10  0 1.000000e+00
## GO:0090129  BP    10  0 1.000000e+00
## GO:0032224  BP    10  0 1.000000e+00
## GO:2000302  BP    10  0 1.000000e+00
## GO:0002645  BP    10  0 1.000000e+00
## GO:0034145  BP    10  0 1.000000e+00
## GO:1901838  BP    10  0 1.000000e+00
## GO:0051971  BP    10  0 1.000000e+00
## GO:0061365  BP    10  0 1.000000e+00
## GO:0097119  BP    10  0 1.000000e+00
## GO:0098970  BP    10  0 1.000000e+00
## GO:0097105  BP    10  0 1.000000e+00
## GO:0090009  BP    10  0 1.000000e+00
## GO:0006560  BP    10  0 1.000000e+00
## GO:0015824  BP    10  0 1.000000e+00
## GO:0060513  BP    10  0 1.000000e+00
## GO:0031848  BP    10  0 1.000000e+00
## GO:0035871  BP    10  0 1.000000e+00
## GO:0018242  BP    10  0 1.000000e+00
## GO:0034975  BP    10  0 1.000000e+00
## GO:0034214  BP    10  0 1.000000e+00
## GO:0051204  BP    10  0 1.000000e+00
## GO:0090435  BP    10  0 1.000000e+00
## GO:0009209  BP    10  0 1.000000e+00
## GO:0098953  BP    10  0 1.000000e+00
## GO:0032875  BP    10  0 1.000000e+00
## GO:0042996  BP    10  0 1.000000e+00
## GO:0051133  BP    10  0 1.000000e+00
## GO:0035542  BP    10  0 1.000000e+00
## GO:2000551  BP    10  0 1.000000e+00
## GO:0010692  BP    10  0 1.000000e+00
## GO:0010958  BP    10  0 1.000000e+00
## GO:1905245  BP    10  0 1.000000e+00
## GO:1901096  BP    10  0 1.000000e+00
## GO:0070857  BP    10  0 1.000000e+00
## GO:0010612  BP    10  0 1.000000e+00
## GO:2000303  BP    10  0 1.000000e+00
## GO:2001135  BP    10  0 1.000000e+00
## GO:0051917  BP    10  0 1.000000e+00
## GO:0090270  BP    10  0 1.000000e+00
## GO:0002634  BP    10  0 1.000000e+00
## GO:0031943  BP    10  0 1.000000e+00
## GO:0033131  BP    10  0 1.000000e+00
## GO:0035947  BP    10  0 1.000000e+00
## GO:0040009  BP    10  0 1.000000e+00
## GO:1905097  BP    10  0 1.000000e+00
## GO:1902036  BP    10  0 1.000000e+00
## GO:0033182  BP    10  0 1.000000e+00
## GO:0045607  BP    10  0 1.000000e+00
## GO:2000980  BP    10  0 1.000000e+00
## GO:0045357  BP    10  0 1.000000e+00
## GO:2001179  BP    10  0 1.000000e+00
## GO:1905456  BP    10  0 1.000000e+00
## GO:1902415  BP    10  0 1.000000e+00
## GO:2000109  BP    10  0 1.000000e+00
## GO:0045631  BP    10  0 1.000000e+00
## GO:1904526  BP    10  0 1.000000e+00
## GO:2000574  BP    10  0 1.000000e+00
## GO:0002858  BP    10  0 1.000000e+00
## GO:0098908  BP    10  0 1.000000e+00
## GO:1902563  BP    10  0 1.000000e+00
## GO:0033029  BP    10  0 1.000000e+00
## GO:2000389  BP    10  0 1.000000e+00
## GO:1900193  BP    10  0 1.000000e+00
## GO:0090186  BP    10  0 1.000000e+00
## GO:0099509  BP    10  0 1.000000e+00
## GO:0043497  BP    10  0 1.000000e+00
## GO:1904779  BP    10  0 1.000000e+00
## GO:2000644  BP    10  0 1.000000e+00
## GO:0060297  BP    10  0 1.000000e+00
## GO:0014062  BP    10  0 1.000000e+00
## GO:0043416  BP    10  0 1.000000e+00
## GO:0051823  BP    10  0 1.000000e+00
## GO:2000807  BP    10  0 1.000000e+00
## GO:1902947  BP    10  0 1.000000e+00
## GO:0070170  BP    10  0 1.000000e+00
## GO:0032908  BP    10  0 1.000000e+00
## GO:0032354  BP    10  0 1.000000e+00
## GO:0070673  BP    10  0 1.000000e+00
## GO:0010288  BP    10  0 1.000000e+00
## GO:0043201  BP    10  0 1.000000e+00
## GO:0070391  BP    10  0 1.000000e+00
## GO:0051775  BP    10  0 1.000000e+00
## GO:1902074  BP    10  0 1.000000e+00
## GO:0033299  BP    10  0 1.000000e+00
## GO:0000012  BP    10  0 1.000000e+00
## GO:0035093  BP    10  0 1.000000e+00
## GO:0008216  BP    10  0 1.000000e+00
## GO:0046512  BP    10  0 1.000000e+00
## GO:0016127  BP    10  0 1.000000e+00
## GO:0021843  BP    10  0 1.000000e+00
## GO:0021826  BP    10  0 1.000000e+00
## GO:0051124  BP    10  0 1.000000e+00
## GO:0006388  BP    10  0 1.000000e+00
## GO:0099542  BP    10  0 1.000000e+00
## GO:0099541  BP    10  0 1.000000e+00
## GO:0006283  BP    10  0 1.000000e+00
## GO:0033572  BP    10  0 1.000000e+00
## GO:0014883  BP    10  0 1.000000e+00
## GO:0034370  BP    10  0 1.000000e+00
## GO:0048207  BP    10  0 1.000000e+00
## GO:0009265  BP    11  0 1.000000e+00
## GO:0097113  BP    11  0 1.000000e+00
## GO:0086016  BP    11  0 1.000000e+00
## GO:0086027  BP    11  0 1.000000e+00
## GO:0035739  BP    11  0 1.000000e+00
## GO:0006977  BP    11  0 1.000000e+00
## GO:0042023  BP    11  0 1.000000e+00
## GO:0006266  BP    11  0 1.000000e+00
## GO:0086103  BP    11  0 1.000000e+00
## GO:0046040  BP    11  0 1.000000e+00
## GO:0033327  BP    11  0 1.000000e+00
## GO:0006054  BP    11  0 1.000000e+00
## GO:0001865  BP    11  0 1.000000e+00
## GO:0000394  BP    11  0 1.000000e+00
## GO:0014010  BP    11  0 1.000000e+00
## GO:0051764  BP    11  0 1.000000e+00
## GO:0051014  BP    11  0 1.000000e+00
## GO:0098870  BP    11  0 1.000000e+00
## GO:0002118  BP    11  0 1.000000e+00
## GO:0032342  BP    11  0 1.000000e+00
## GO:0035881  BP    11  0 1.000000e+00
## GO:0006527  BP    11  0 1.000000e+00
## GO:0015809  BP    11  0 1.000000e+00
## GO:0014824  BP    11  0 1.000000e+00
## GO:0030953  BP    11  0 1.000000e+00
## GO:0098722  BP    11  0 1.000000e+00
## GO:0070831  BP    11  0 1.000000e+00
## GO:0060346  BP    11  0 1.000000e+00
## GO:0006171  BP    11  0 1.000000e+00
## GO:0036444  BP    11  0 1.000000e+00
## GO:1901660  BP    11  0 1.000000e+00
## GO:0061309  BP    11  0 1.000000e+00
## GO:0003263  BP    11  0 1.000000e+00
## GO:0072584  BP    11  0 1.000000e+00
## GO:0043482  BP    11  0 1.000000e+00
## GO:0036006  BP    11  0 1.000000e+00
## GO:0071732  BP    11  0 1.000000e+00
## GO:0071415  BP    11  0 1.000000e+00
## GO:0070601  BP    11  0 1.000000e+00
## GO:0035627  BP    11  0 1.000000e+00
## GO:0021684  BP    11  0 1.000000e+00
## GO:0021707  BP    11  0 1.000000e+00
## GO:0021892  BP    11  0 1.000000e+00
## GO:0030206  BP    11  0 1.000000e+00
## GO:0031055  BP    11  0 1.000000e+00
## GO:0038063  BP    11  0 1.000000e+00
## GO:0035726  BP    11  0 1.000000e+00
## GO:0001867  BP    11  0 1.000000e+00
## GO:0097278  BP    11  0 1.000000e+00
## GO:0097709  BP    11  0 1.000000e+00
## GO:0007028  BP    11  0 1.000000e+00
## GO:0002468  BP    11  0 1.000000e+00
## GO:0098935  BP    11  0 1.000000e+00
## GO:0046385  BP    11  0 1.000000e+00
## GO:0046386  BP    11  0 1.000000e+00
## GO:0032490  BP    11  0 1.000000e+00
## GO:0048263  BP    11  0 1.000000e+00
## GO:0048262  BP    11  0 1.000000e+00
## GO:0060600  BP    11  0 1.000000e+00
## GO:0016102  BP    11  0 1.000000e+00
## GO:0000727  BP    11  0 1.000000e+00
## GO:0060900  BP    11  0 1.000000e+00
## GO:0048617  BP    11  0 1.000000e+00
## GO:0048241  BP    11  0 1.000000e+00
## GO:0070278  BP    11  0 1.000000e+00
## GO:1903867  BP    11  0 1.000000e+00
## GO:0033539  BP    11  0 1.000000e+00
## GO:0009812  BP    11  0 1.000000e+00
## GO:0006002  BP    11  0 1.000000e+00
## GO:0001574  BP    11  0 1.000000e+00
## GO:0036093  BP    11  0 1.000000e+00
## GO:0072102  BP    11  0 1.000000e+00
## GO:1901072  BP    11  0 1.000000e+00
## GO:0006072  BP    11  0 1.000000e+00
## GO:0008626  BP    11  0 1.000000e+00
## GO:0035733  BP    11  0 1.000000e+00
## GO:0031507  BP    11  0 1.000000e+00
## GO:0006586  BP    11  0 1.000000e+00
## GO:1904862  BP    11  0 1.000000e+00
## GO:0072642  BP    11  0 1.000000e+00
## GO:0032610  BP    11  0 1.000000e+00
## GO:0042090  BP    11  0 1.000000e+00
## GO:0048312  BP    11  0 1.000000e+00
## GO:1901678  BP    11  0 1.000000e+00
## GO:0033210  BP    11  0 1.000000e+00
## GO:0060174  BP    11  0 1.000000e+00
## GO:0097421  BP    11  0 1.000000e+00
## GO:0051657  BP    11  0 1.000000e+00
## GO:0099558  BP    11  0 1.000000e+00
## GO:0060056  BP    11  0 1.000000e+00
## GO:0090148  BP    11  0 1.000000e+00
## GO:0001765  BP    11  0 1.000000e+00
## GO:0072172  BP    11  0 1.000000e+00
## GO:0072075  BP    11  0 1.000000e+00
## GO:0043653  BP    11  0 1.000000e+00
## GO:0014889  BP    11  0 1.000000e+00
## GO:0002423  BP    11  0 1.000000e+00
## GO:2000320  BP    11  0 1.000000e+00
## GO:0046007  BP    11  0 1.000000e+00
## GO:0090281  BP    11  0 1.000000e+00
## GO:1902260  BP    11  0 1.000000e+00
## GO:0045602  BP    11  0 1.000000e+00
## GO:0090394  BP    11  0 1.000000e+00
## GO:0010459  BP    11  0 1.000000e+00
## GO:0034115  BP    11  0 1.000000e+00
## GO:1902166  BP    11  0 1.000000e+00
## GO:0150079  BP    11  0 1.000000e+00
## GO:1903799  BP    11  0 1.000000e+00
## GO:0032463  BP    11  0 1.000000e+00
## GO:0051967  BP    11  0 1.000000e+00
## GO:0090209  BP    11  0 1.000000e+00
## GO:0072178  BP    11  0 1.000000e+00
## GO:0038180  BP    11  0 1.000000e+00
## GO:0019227  BP    11  0 1.000000e+00
## GO:0098887  BP    11  0 1.000000e+00
## GO:0070943  BP    11  0 1.000000e+00
## GO:0009125  BP    11  0 1.000000e+00
## GO:0021554  BP    11  0 1.000000e+00
## GO:0071600  BP    11  0 1.000000e+00
## GO:0006107  BP    11  0 1.000000e+00
## GO:0018206  BP    11  0 1.000000e+00
## GO:0019511  BP    11  0 1.000000e+00
## GO:0048935  BP    11  0 1.000000e+00
## GO:0048934  BP    11  0 1.000000e+00
## GO:0006658  BP    11  0 1.000000e+00
## GO:0033700  BP    11  0 1.000000e+00
## GO:0035845  BP    11  0 1.000000e+00
## GO:2000344  BP    11  0 1.000000e+00
## GO:0002579  BP    11  0 1.000000e+00
## GO:2000786  BP    11  0 1.000000e+00
## GO:1903431  BP    11  0 1.000000e+00
## GO:0071864  BP    11  0 1.000000e+00
## GO:1901857  BP    11  0 1.000000e+00
## GO:2000343  BP    11  0 1.000000e+00
## GO:0033603  BP    11  0 1.000000e+00
## GO:1903977  BP    11  0 1.000000e+00
## GO:0051574  BP    11  0 1.000000e+00
## GO:0043568  BP    11  0 1.000000e+00
## GO:1902741  BP    11  0 1.000000e+00
## GO:0045416  BP    11  0 1.000000e+00
## GO:1902231  BP    11  0 1.000000e+00
## GO:0031442  BP    11  0 1.000000e+00
## GO:0010744  BP    11  0 1.000000e+00
## GO:0051561  BP    11  0 1.000000e+00
## GO:0051901  BP    11  0 1.000000e+00
## GO:1901030  BP    11  0 1.000000e+00
## GO:2000288  BP    11  0 1.000000e+00
## GO:0032464  BP    11  0 1.000000e+00
## GO:0010739  BP    11  0 1.000000e+00
## GO:0090037  BP    11  0 1.000000e+00
## GO:0010870  BP    11  0 1.000000e+00
## GO:0045876  BP    11  0 1.000000e+00
## GO:0045945  BP    11  0 1.000000e+00
## GO:1990440  BP    11  0 1.000000e+00
## GO:0048563  BP    11  0 1.000000e+00
## GO:0031077  BP    11  0 1.000000e+00
## GO:0097104  BP    11  0 1.000000e+00
## GO:0098789  BP    11  0 1.000000e+00
## GO:0097354  BP    11  0 1.000000e+00
## GO:0070213  BP    11  0 1.000000e+00
## GO:0007039  BP    11  0 1.000000e+00
## GO:0097499  BP    11  0 1.000000e+00
## GO:0018342  BP    11  0 1.000000e+00
## GO:0018298  BP    11  0 1.000000e+00
## GO:0021860  BP    11  0 1.000000e+00
## GO:0009208  BP    11  0 1.000000e+00
## GO:2000561  BP    11  0 1.000000e+00
## GO:0002664  BP    11  0 1.000000e+00
## GO:2000822  BP    11  0 1.000000e+00
## GO:0060693  BP    11  0 1.000000e+00
## GO:1902514  BP    11  0 1.000000e+00
## GO:1901894  BP    11  0 1.000000e+00
## GO:0070587  BP    11  0 1.000000e+00
## GO:0010872  BP    11  0 1.000000e+00
## GO:0002676  BP    11  0 1.000000e+00
## GO:0003356  BP    11  0 1.000000e+00
## GO:0150065  BP    11  0 1.000000e+00
## GO:1903998  BP    11  0 1.000000e+00
## GO:0060768  BP    11  0 1.000000e+00
## GO:0070203  BP    11  0 1.000000e+00
## GO:1903365  BP    11  0 1.000000e+00
## GO:0045924  BP    11  0 1.000000e+00
## GO:0014052  BP    11  0 1.000000e+00
## GO:2000322  BP    11  0 1.000000e+00
## GO:2000849  BP    11  0 1.000000e+00
## GO:1903299  BP    11  0 1.000000e+00
## GO:0035330  BP    11  0 1.000000e+00
## GO:0061085  BP    11  0 1.000000e+00
## GO:0002923  BP    11  0 1.000000e+00
## GO:1902739  BP    11  0 1.000000e+00
## GO:0045075  BP    11  0 1.000000e+00
## GO:0048021  BP    11  0 1.000000e+00
## GO:1905038  BP    11  0 1.000000e+00
## GO:0002855  BP    11  0 1.000000e+00
## GO:0072182  BP    11  0 1.000000e+00
## GO:1902513  BP    11  0 1.000000e+00
## GO:2001204  BP    11  0 1.000000e+00
## GO:0060405  BP    11  0 1.000000e+00
## GO:0046532  BP    11  0 1.000000e+00
## GO:0048548  BP    11  0 1.000000e+00
## GO:1903332  BP    11  0 1.000000e+00
## GO:0031272  BP    11  0 1.000000e+00
## GO:0003266  BP    11  0 1.000000e+00
## GO:0045091  BP    11  0 1.000000e+00
## GO:0090153  BP    11  0 1.000000e+00
## GO:1901339  BP    11  0 1.000000e+00
## GO:0042762  BP    11  0 1.000000e+00
## GO:0031630  BP    11  0 1.000000e+00
## GO:0010807  BP    11  0 1.000000e+00
## GO:0034135  BP    11  0 1.000000e+00
## GO:0043619  BP    11  0 1.000000e+00
## GO:0006450  BP    11  0 1.000000e+00
## GO:1901163  BP    11  0 1.000000e+00
## GO:0090043  BP    11  0 1.000000e+00
## GO:1905459  BP    11  0 1.000000e+00
## GO:0044557  BP    11  0 1.000000e+00
## GO:0002679  BP    11  0 1.000000e+00
## GO:0034776  BP    11  0 1.000000e+00
## GO:0017085  BP    11  0 1.000000e+00
## GO:0036005  BP    11  0 1.000000e+00
## GO:0010042  BP    11  0 1.000000e+00
## GO:0046689  BP    11  0 1.000000e+00
## GO:0051385  BP    11  0 1.000000e+00
## GO:0006991  BP    11  0 1.000000e+00
## GO:0014874  BP    11  0 1.000000e+00
## GO:0061299  BP    11  0 1.000000e+00
## GO:0002138  BP    11  0 1.000000e+00
## GO:0060013  BP    11  0 1.000000e+00
## GO:0048630  BP    11  0 1.000000e+00
## GO:0043589  BP    11  0 1.000000e+00
## GO:0009301  BP    11  0 1.000000e+00
## GO:0046520  BP    11  0 1.000000e+00
## GO:0061669  BP    11  0 1.000000e+00
## GO:0070142  BP    11  0 1.000000e+00
## GO:0016188  BP    11  0 1.000000e+00
## GO:0035999  BP    11  0 1.000000e+00
## GO:0070493  BP    11  0 1.000000e+00
## GO:0006384  BP    11  0 1.000000e+00
## GO:0032905  BP    11  0 1.000000e+00
## GO:0021559  BP    11  0 1.000000e+00
## GO:0006568  BP    11  0 1.000000e+00
## GO:0072641  BP    11  0 1.000000e+00
## GO:0006570  BP    11  0 1.000000e+00
## GO:0000050  BP    11  0 1.000000e+00
## GO:1905288  BP    11  0 1.000000e+00
## GO:0097084  BP    11  0 1.000000e+00
## GO:0048845  BP    11  0 1.000000e+00
## GO:0055015  BP    11  0 1.000000e+00
## GO:0009111  BP    11  0 1.000000e+00
## GO:0098792  BP    11  0 1.000000e+00
## GO:0019471  BP    12  0 1.000000e+00
## GO:0032488  BP    12  0 1.000000e+00
## GO:0071712  BP    12  0 1.000000e+00
## GO:0035588  BP    12  0 1.000000e+00
## GO:0090161  BP    12  0 1.000000e+00
## GO:0036498  BP    12  0 1.000000e+00
## GO:0072683  BP    12  0 1.000000e+00
## GO:0072540  BP    12  0 1.000000e+00
## GO:0006047  BP    12  0 1.000000e+00
## GO:0003306  BP    12  0 1.000000e+00
## GO:0006086  BP    12  0 1.000000e+00
## GO:0033275  BP    12  0 1.000000e+00
## GO:0001973  BP    12  0 1.000000e+00
## GO:0007195  BP    12  0 1.000000e+00
## GO:0019646  BP    12  0 1.000000e+00
## GO:0032341  BP    12  0 1.000000e+00
## GO:0060033  BP    12  0 1.000000e+00
## GO:0038166  BP    12  0 1.000000e+00
## GO:0009068  BP    12  0 1.000000e+00
## GO:0019896  BP    12  0 1.000000e+00
## GO:0035630  BP    12  0 1.000000e+00
## GO:0060433  BP    12  0 1.000000e+00
## GO:0006182  BP    12  0 1.000000e+00
## GO:0061577  BP    12  0 1.000000e+00
## GO:0003207  BP    12  0 1.000000e+00
## GO:0032048  BP    12  0 1.000000e+00
## GO:0009437  BP    12  0 1.000000e+00
## GO:0060573  BP    12  0 1.000000e+00
## GO:0071838  BP    12  0 1.000000e+00
## GO:0070586  BP    12  0 1.000000e+00
## GO:0045217  BP    12  0 1.000000e+00
## GO:0071318  BP    12  0 1.000000e+00
## GO:0071468  BP    12  0 1.000000e+00
## GO:0036295  BP    12  0 1.000000e+00
## GO:0035457  BP    12  0 1.000000e+00
## GO:0071281  BP    12  0 1.000000e+00
## GO:0071294  BP    12  0 1.000000e+00
## GO:0070508  BP    12  0 1.000000e+00
## GO:0048096  BP    12  0 1.000000e+00
## GO:0072044  BP    12  0 1.000000e+00
## GO:0006957  BP    12  0 1.000000e+00
## GO:0009264  BP    12  0 1.000000e+00
## GO:0043649  BP    12  0 1.000000e+00
## GO:0090494  BP    12  0 1.000000e+00
## GO:0060502  BP    12  0 1.000000e+00
## GO:0060767  BP    12  0 1.000000e+00
## GO:0090557  BP    12  0 1.000000e+00
## GO:0021561  BP    12  0 1.000000e+00
## GO:0021610  BP    12  0 1.000000e+00
## GO:0007440  BP    12  0 1.000000e+00
## GO:0001731  BP    12  0 1.000000e+00
## GO:0030388  BP    12  0 1.000000e+00
## GO:0035933  BP    12  0 1.000000e+00
## GO:0097688  BP    12  0 1.000000e+00
## GO:0006750  BP    12  0 1.000000e+00
## GO:0006662  BP    12  0 1.000000e+00
## GO:0015816  BP    12  0 1.000000e+00
## GO:0042541  BP    12  0 1.000000e+00
## GO:0034375  BP    12  0 1.000000e+00
## GO:0033523  BP    12  0 1.000000e+00
## GO:0070933  BP    12  0 1.000000e+00
## GO:0034969  BP    12  0 1.000000e+00
## GO:0071044  BP    12  0 1.000000e+00
## GO:0006020  BP    12  0 1.000000e+00
## GO:0072608  BP    12  0 1.000000e+00
## GO:0072615  BP    12  0 1.000000e+00
## GO:0006880  BP    12  0 1.000000e+00
## GO:1902400  BP    12  0 1.000000e+00
## GO:0021670  BP    12  0 1.000000e+00
## GO:0070986  BP    12  0 1.000000e+00
## GO:0032799  BP    12  0 1.000000e+00
## GO:0060430  BP    12  0 1.000000e+00
## GO:0032275  BP    12  0 1.000000e+00
## GO:0098787  BP    12  0 1.000000e+00
## GO:0034088  BP    12  0 1.000000e+00
## GO:0060179  BP    12  0 1.000000e+00
## GO:0007135  BP    12  0 1.000000e+00
## GO:0061983  BP    12  0 1.000000e+00
## GO:0007128  BP    12  0 1.000000e+00
## GO:0045141  BP    12  0 1.000000e+00
## GO:0086013  BP    12  0 1.000000e+00
## GO:0003337  BP    12  0 1.000000e+00
## GO:0009086  BP    12  0 1.000000e+00
## GO:0072393  BP    12  0 1.000000e+00
## GO:0060073  BP    12  0 1.000000e+00
## GO:0006705  BP    12  0 1.000000e+00
## GO:0006123  BP    12  0 1.000000e+00
## GO:0006122  BP    12  0 1.000000e+00
## GO:0007100  BP    12  0 1.000000e+00
## GO:0003183  BP    12  0 1.000000e+00
## GO:0097049  BP    12  0 1.000000e+00
## GO:0060586  BP    12  0 1.000000e+00
## GO:0031033  BP    12  0 1.000000e+00
## GO:0001787  BP    12  0 1.000000e+00
## GO:2000317  BP    12  0 1.000000e+00
## GO:0061052  BP    12  0 1.000000e+00
## GO:0010826  BP    12  0 1.000000e+00
## GO:1900118  BP    12  0 1.000000e+00
## GO:0045717  BP    12  0 1.000000e+00
## GO:0032353  BP    12  0 1.000000e+00
## GO:0002921  BP    12  0 1.000000e+00
## GO:1900165  BP    12  0 1.000000e+00
## GO:1900272  BP    12  0 1.000000e+00
## GO:2000402  BP    12  0 1.000000e+00
## GO:0033004  BP    12  0 1.000000e+00
## GO:0014745  BP    12  0 1.000000e+00
## GO:0046929  BP    12  0 1.000000e+00
## GO:2000009  BP    12  0 1.000000e+00
## GO:0051280  BP    12  0 1.000000e+00
## GO:0034392  BP    12  0 1.000000e+00
## GO:0097201  BP    12  0 1.000000e+00
## GO:0072176  BP    12  0 1.000000e+00
## GO:0001840  BP    12  0 1.000000e+00
## GO:0045161  BP    12  0 1.000000e+00
## GO:0099639  BP    12  0 1.000000e+00
## GO:0001781  BP    12  0 1.000000e+00
## GO:0043312  BP    12  0 1.000000e+00
## GO:0048570  BP    12  0 1.000000e+00
## GO:0070431  BP    12  0 1.000000e+00
## GO:0070423  BP    12  0 1.000000e+00
## GO:0070444  BP    12  0 1.000000e+00
## GO:0006490  BP    12  0 1.000000e+00
## GO:0006098  BP    12  0 1.000000e+00
## GO:0030432  BP    12  0 1.000000e+00
## GO:0006654  BP    12  0 1.000000e+00
## GO:0055091  BP    12  0 1.000000e+00
## GO:0043476  BP    12  0 1.000000e+00
## GO:0001778  BP    12  0 1.000000e+00
## GO:2000105  BP    12  0 1.000000e+00
## GO:0030836  BP    12  0 1.000000e+00
## GO:1903961  BP    12  0 1.000000e+00
## GO:0090343  BP    12  0 1.000000e+00
## GO:0033240  BP    12  0 1.000000e+00
## GO:0046607  BP    12  0 1.000000e+00
## GO:1900426  BP    12  0 1.000000e+00
## GO:2000253  BP    12  0 1.000000e+00
## GO:0060124  BP    12  0 1.000000e+00
## GO:0051798  BP    12  0 1.000000e+00
## GO:0051024  BP    12  0 1.000000e+00
## GO:0045078  BP    12  0 1.000000e+00
## GO:0032754  BP    12  0 1.000000e+00
## GO:0010838  BP    12  0 1.000000e+00
## GO:0032825  BP    12  0 1.000000e+00
## GO:0060213  BP    12  0 1.000000e+00
## GO:0071073  BP    12  0 1.000000e+00
## GO:1905668  BP    12  0 1.000000e+00
## GO:1902459  BP    12  0 1.000000e+00
## GO:1900244  BP    12  0 1.000000e+00
## GO:1902805  BP    12  0 1.000000e+00
## GO:0002329  BP    12  0 1.000000e+00
## GO:0051324  BP    12  0 1.000000e+00
## GO:0060525  BP    12  0 1.000000e+00
## GO:0006517  BP    12  0 1.000000e+00
## GO:0016926  BP    12  0 1.000000e+00
## GO:0016558  BP    12  0 1.000000e+00
## GO:1902946  BP    12  0 1.000000e+00
## GO:0097428  BP    12  0 1.000000e+00
## GO:0021859  BP    12  0 1.000000e+00
## GO:0009219  BP    12  0 1.000000e+00
## GO:0007168  BP    12  0 1.000000e+00
## GO:0060368  BP    12  0 1.000000e+00
## GO:1905214  BP    12  0 1.000000e+00
## GO:0045625  BP    12  0 1.000000e+00
## GO:1903789  BP    12  0 1.000000e+00
## GO:1902510  BP    12  0 1.000000e+00
## GO:0051988  BP    12  0 1.000000e+00
## GO:1904251  BP    12  0 1.000000e+00
## GO:0002016  BP    12  0 1.000000e+00
## GO:0003264  BP    12  0 1.000000e+00
## GO:0071863  BP    12  0 1.000000e+00
## GO:0033632  BP    12  0 1.000000e+00
## GO:0006521  BP    12  0 1.000000e+00
## GO:0043471  BP    12  0 1.000000e+00
## GO:0042268  BP    12  0 1.000000e+00
## GO:0002730  BP    12  0 1.000000e+00
## GO:0060159  BP    12  0 1.000000e+00
## GO:0070202  BP    12  0 1.000000e+00
## GO:0060453  BP    12  0 1.000000e+00
## GO:0072124  BP    12  0 1.000000e+00
## GO:0070092  BP    12  0 1.000000e+00
## GO:2000615  BP    12  0 1.000000e+00
## GO:1900112  BP    12  0 1.000000e+00
## GO:1901298  BP    12  0 1.000000e+00
## GO:0010749  BP    12  0 1.000000e+00
## GO:0070445  BP    12  0 1.000000e+00
## GO:2000232  BP    12  0 1.000000e+00
## GO:1904152  BP    12  0 1.000000e+00
## GO:1900376  BP    12  0 1.000000e+00
## GO:0010889  BP    12  0 1.000000e+00
## GO:0014842  BP    12  0 1.000000e+00
## GO:2000035  BP    12  0 1.000000e+00
## GO:0000083  BP    12  0 1.000000e+00
## GO:0010998  BP    12  0 1.000000e+00
## GO:2000674  BP    12  0 1.000000e+00
## GO:0070472  BP    12  0 1.000000e+00
## GO:0003091  BP    12  0 1.000000e+00
## GO:0032026  BP    12  0 1.000000e+00
## GO:0046548  BP    12  0 1.000000e+00
## GO:0043691  BP    12  0 1.000000e+00
## GO:1902287  BP    12  0 1.000000e+00
## GO:0042989  BP    12  0 1.000000e+00
## GO:0072431  BP    12  0 1.000000e+00
## GO:0039692  BP    12  0 1.000000e+00
## GO:0000491  BP    12  0 1.000000e+00
## GO:0031126  BP    12  0 1.000000e+00
## GO:0035376  BP    12  0 1.000000e+00
## GO:0001682  BP    12  0 1.000000e+00
## GO:0060439  BP    12  0 1.000000e+00
## GO:0061450  BP    12  0 1.000000e+00
## GO:0046415  BP    12  0 1.000000e+00
## GO:0019627  BP    12  0 1.000000e+00
## GO:0014832  BP    12  0 1.000000e+00
## GO:0060068  BP    12  0 1.000000e+00
## GO:0021521  BP    12  0 1.000000e+00
## GO:0039702  BP    12  0 1.000000e+00
## GO:0086067  BP    13  0 1.000000e+00
## GO:0018410  BP    13  0 1.000000e+00
## GO:0006268  BP    13  0 1.000000e+00
## GO:0006983  BP    13  0 1.000000e+00
## GO:0038094  BP    13  0 1.000000e+00
## GO:0007213  BP    13  0 1.000000e+00
## GO:0006895  BP    13  0 1.000000e+00
## GO:0002756  BP    13  0 1.000000e+00
## GO:0006491  BP    13  0 1.000000e+00
## GO:0051132  BP    13  0 1.000000e+00
## GO:0016246  BP    13  0 1.000000e+00
## GO:0032486  BP    13  0 1.000000e+00
## GO:0007183  BP    13  0 1.000000e+00
## GO:0002517  BP    13  0 1.000000e+00
## GO:0070914  BP    13  0 1.000000e+00
## GO:0097202  BP    13  0 1.000000e+00
## GO:0052646  BP    13  0 1.000000e+00
## GO:0042983  BP    13  0 1.000000e+00
## GO:0031145  BP    13  0 1.000000e+00
## GO:0008595  BP    13  0 1.000000e+00
## GO:0051315  BP    13  0 1.000000e+00
## GO:0031223  BP    13  0 1.000000e+00
## GO:0015802  BP    13  0 1.000000e+00
## GO:0032060  BP    13  0 1.000000e+00
## GO:0060670  BP    13  0 1.000000e+00
## GO:0060911  BP    13  0 1.000000e+00
## GO:0090493  BP    13  0 1.000000e+00
## GO:0021924  BP    13  0 1.000000e+00
## GO:0042402  BP    13  0 1.000000e+00
## GO:0052695  BP    13  0 1.000000e+00
## GO:0071397  BP    13  0 1.000000e+00
## GO:0097011  BP    13  0 1.000000e+00
## GO:0072711  BP    13  0 1.000000e+00
## GO:0071285  BP    13  0 1.000000e+00
## GO:0071380  BP    13  0 1.000000e+00
## GO:1902170  BP    13  0 1.000000e+00
## GO:0071295  BP    13  0 1.000000e+00
## GO:0051299  BP    13  0 1.000000e+00
## GO:0021683  BP    13  0 1.000000e+00
## GO:0021930  BP    13  0 1.000000e+00
## GO:0090220  BP    13  0 1.000000e+00
## GO:0038065  BP    13  0 1.000000e+00
## GO:0071679  BP    13  0 1.000000e+00
## GO:0002430  BP    13  0 1.000000e+00
## GO:0021604  BP    13  0 1.000000e+00
## GO:0042994  BP    13  0 1.000000e+00
## GO:0002371  BP    13  0 1.000000e+00
## GO:0045136  BP    13  0 1.000000e+00
## GO:0009950  BP    13  0 1.000000e+00
## GO:0060272  BP    13  0 1.000000e+00
## GO:0003157  BP    13  0 1.000000e+00
## GO:0015682  BP    13  0 1.000000e+00
## GO:0042492  BP    13  0 1.000000e+00
## GO:0072311  BP    13  0 1.000000e+00
## GO:0072110  BP    13  0 1.000000e+00
## GO:0072112  BP    13  0 1.000000e+00
## GO:0070091  BP    13  0 1.000000e+00
## GO:0006544  BP    13  0 1.000000e+00
## GO:0061615  BP    13  0 1.000000e+00
## GO:1901070  BP    13  0 1.000000e+00
## GO:0048012  BP    13  0 1.000000e+00
## GO:0043970  BP    13  0 1.000000e+00
## GO:0033169  BP    13  0 1.000000e+00
## GO:0090594  BP    13  0 1.000000e+00
## GO:0007320  BP    13  0 1.000000e+00
## GO:0030299  BP    13  0 1.000000e+00
## GO:0008298  BP    13  0 1.000000e+00
## GO:0035721  BP    13  0 1.000000e+00
## GO:0060601  BP    13  0 1.000000e+00
## GO:0019370  BP    13  0 1.000000e+00
## GO:0061140  BP    13  0 1.000000e+00
## GO:0001553  BP    13  0 1.000000e+00
## GO:0034086  BP    13  0 1.000000e+00
## GO:0002551  BP    13  0 1.000000e+00
## GO:0098764  BP    13  0 1.000000e+00
## GO:0098762  BP    13  0 1.000000e+00
## GO:0007501  BP    13  0 1.000000e+00
## GO:0008212  BP    13  0 1.000000e+00
## GO:0034982  BP    13  0 1.000000e+00
## GO:0003174  BP    13  0 1.000000e+00
## GO:0019054  BP    13  0 1.000000e+00
## GO:0042693  BP    13  0 1.000000e+00
## GO:1904293  BP    13  0 1.000000e+00
## GO:0043508  BP    13  0 1.000000e+00
## GO:0032926  BP    13  0 1.000000e+00
## GO:0002674  BP    13  0 1.000000e+00
## GO:0106072  BP    13  0 1.000000e+00
## GO:0046642  BP    13  0 1.000000e+00
## GO:0032099  BP    13  0 1.000000e+00
## GO:1902902  BP    13  0 1.000000e+00
## GO:0045955  BP    13  0 1.000000e+00
## GO:0046606  BP    13  0 1.000000e+00
## GO:0046322  BP    13  0 1.000000e+00
## GO:0045820  BP    13  0 1.000000e+00
## GO:0051573  BP    13  0 1.000000e+00
## GO:0032351  BP    13  0 1.000000e+00
## GO:0002638  BP    13  0 1.000000e+00
## GO:0050711  BP    13  0 1.000000e+00
## GO:0033147  BP    13  0 1.000000e+00
## GO:2001054  BP    13  0 1.000000e+00
## GO:0060546  BP    13  0 1.000000e+00
## GO:2001223  BP    13  0 1.000000e+00
## GO:0060394  BP    13  0 1.000000e+00
## GO:0031953  BP    13  0 1.000000e+00
## GO:1900121  BP    13  0 1.000000e+00
## GO:0002091  BP    13  0 1.000000e+00
## GO:2000650  BP    13  0 1.000000e+00
## GO:1900025  BP    13  0 1.000000e+00
## GO:0051974  BP    13  0 1.000000e+00
## GO:0034244  BP    13  0 1.000000e+00
## GO:0060339  BP    13  0 1.000000e+00
## GO:0030948  BP    13  0 1.000000e+00
## GO:0045906  BP    13  0 1.000000e+00
## GO:1903817  BP    13  0 1.000000e+00
## GO:0072160  BP    13  0 1.000000e+00
## GO:0070942  BP    13  0 1.000000e+00
## GO:0071941  BP    13  0 1.000000e+00
## GO:0071027  BP    13  0 1.000000e+00
## GO:0071028  BP    13  0 1.000000e+00
## GO:0006862  BP    13  0 1.000000e+00
## GO:0035872  BP    13  0 1.000000e+00
## GO:0042048  BP    13  0 1.000000e+00
## GO:0006857  BP    13  0 1.000000e+00
## GO:0001542  BP    13  0 1.000000e+00
## GO:0048340  BP    13  0 1.000000e+00
## GO:0019321  BP    13  0 1.000000e+00
## GO:0018216  BP    13  0 1.000000e+00
## GO:0001845  BP    13  0 1.000000e+00
## GO:0035435  BP    13  0 1.000000e+00
## GO:0046471  BP    13  0 1.000000e+00
## GO:0006596  BP    13  0 1.000000e+00
## GO:0021548  BP    13  0 1.000000e+00
## GO:0045899  BP    13  0 1.000000e+00
## GO:0060391  BP    13  0 1.000000e+00
## GO:1904925  BP    13  0 1.000000e+00
## GO:0060452  BP    13  0 1.000000e+00
## GO:1903651  BP    13  0 1.000000e+00
## GO:2001034  BP    13  0 1.000000e+00
## GO:0090193  BP    13  0 1.000000e+00
## GO:0042635  BP    13  0 1.000000e+00
## GO:1902715  BP    13  0 1.000000e+00
## GO:2000484  BP    13  0 1.000000e+00
## GO:0033148  BP    13  0 1.000000e+00
## GO:0048304  BP    13  0 1.000000e+00
## GO:0051549  BP    13  0 1.000000e+00
## GO:1904181  BP    13  0 1.000000e+00
## GO:0072216  BP    13  0 1.000000e+00
## GO:0010918  BP    13  0 1.000000e+00
## GO:1902857  BP    13  0 1.000000e+00
## GO:1903862  BP    13  0 1.000000e+00
## GO:0090073  BP    13  0 1.000000e+00
## GO:1904816  BP    13  0 1.000000e+00
## GO:1902916  BP    13  0 1.000000e+00
## GO:2000833  BP    13  0 1.000000e+00
## GO:0060340  BP    13  0 1.000000e+00
## GO:0035810  BP    13  0 1.000000e+00
## GO:0044090  BP    13  0 1.000000e+00
## GO:0097090  BP    13  0 1.000000e+00
## GO:0034309  BP    13  0 1.000000e+00
## GO:0002328  BP    13  0 1.000000e+00
## GO:1903441  BP    13  0 1.000000e+00
## GO:0034497  BP    13  0 1.000000e+00
## GO:0031269  BP    13  0 1.000000e+00
## GO:0009148  BP    13  0 1.000000e+00
## GO:1900225  BP    13  0 1.000000e+00
## GO:1903025  BP    13  0 1.000000e+00
## GO:0045628  BP    13  0 1.000000e+00
## GO:1904177  BP    13  0 1.000000e+00
## GO:0042984  BP    13  0 1.000000e+00
## GO:0010359  BP    13  0 1.000000e+00
## GO:0021936  BP    13  0 1.000000e+00
## GO:0010885  BP    13  0 1.000000e+00
## GO:1902950  BP    13  0 1.000000e+00
## GO:0034350  BP    13  0 1.000000e+00
## GO:0003093  BP    13  0 1.000000e+00
## GO:0032276  BP    13  0 1.000000e+00
## GO:0090239  BP    13  0 1.000000e+00
## GO:0045072  BP    13  0 1.000000e+00
## GO:1904478  BP    13  0 1.000000e+00
## GO:0050746  BP    13  0 1.000000e+00
## GO:0010988  BP    13  0 1.000000e+00
## GO:0035751  BP    13  0 1.000000e+00
## GO:2000018  BP    13  0 1.000000e+00
## GO:1905048  BP    13  0 1.000000e+00
## GO:0090308  BP    13  0 1.000000e+00
## GO:0099159  BP    13  0 1.000000e+00
## GO:0070255  BP    13  0 1.000000e+00
## GO:1904396  BP    13  0 1.000000e+00
## GO:0033262  BP    13  0 1.000000e+00
## GO:0060281  BP    13  0 1.000000e+00
## GO:1905879  BP    13  0 1.000000e+00
## GO:0010755  BP    13  0 1.000000e+00
## GO:0090085  BP    13  0 1.000000e+00
## GO:1905666  BP    13  0 1.000000e+00
## GO:0002087  BP    13  0 1.000000e+00
## GO:0048742  BP    13  0 1.000000e+00
## GO:0061418  BP    13  0 1.000000e+00
## GO:0043558  BP    13  0 1.000000e+00
## GO:0055119  BP    13  0 1.000000e+00
## GO:0061318  BP    13  0 1.000000e+00
## GO:0036296  BP    13  0 1.000000e+00
## GO:0032494  BP    13  0 1.000000e+00
## GO:0033280  BP    13  0 1.000000e+00
## GO:0000054  BP    13  0 1.000000e+00
## GO:0033750  BP    13  0 1.000000e+00
## GO:0048733  BP    13  0 1.000000e+00
## GO:1902285  BP    13  0 1.000000e+00
## GO:0097577  BP    13  0 1.000000e+00
## GO:0009071  BP    13  0 1.000000e+00
## GO:0007614  BP    13  0 1.000000e+00
## GO:0006465  BP    13  0 1.000000e+00
## GO:0072425  BP    13  0 1.000000e+00
## GO:0014841  BP    13  0 1.000000e+00
## GO:0030240  BP    13  0 1.000000e+00
## GO:0036376  BP    13  0 1.000000e+00
## GO:0032525  BP    13  0 1.000000e+00
## GO:0006670  BP    13  0 1.000000e+00
## GO:0021520  BP    13  0 1.000000e+00
## GO:0070525  BP    13  0 1.000000e+00
## GO:0043247  BP    13  0 1.000000e+00
## GO:0021794  BP    13  0 1.000000e+00
## GO:0014820  BP    13  0 1.000000e+00
## GO:0007351  BP    13  0 1.000000e+00
## GO:0072512  BP    13  0 1.000000e+00
## GO:0090042  BP    13  0 1.000000e+00
## GO:0014848  BP    13  0 1.000000e+00
## GO:0070471  BP    13  0 1.000000e+00
## GO:0042761  BP    13  0 1.000000e+00
## GO:0000076  BP    14  0 1.000000e+00
## GO:0048313  BP    14  0 1.000000e+00
## GO:0098712  BP    14  0 1.000000e+00
## GO:0000279  BP    14  0 1.000000e+00
## GO:0044546  BP    14  0 1.000000e+00
## GO:0048541  BP    14  0 1.000000e+00
## GO:0090503  BP    14  0 1.000000e+00
## GO:0046500  BP    14  0 1.000000e+00
## GO:0035745  BP    14  0 1.000000e+00
## GO:0042976  BP    14  0 1.000000e+00
## GO:0006924  BP    14  0 1.000000e+00
## GO:0021984  BP    14  0 1.000000e+00
## GO:0046185  BP    14  0 1.000000e+00
## GO:0009310  BP    14  0 1.000000e+00
## GO:0006577  BP    14  0 1.000000e+00
## GO:0019886  BP    14  0 1.000000e+00
## GO:0086069  BP    14  0 1.000000e+00
## GO:0046058  BP    14  0 1.000000e+00
## GO:0061308  BP    14  0 1.000000e+00
## GO:0090110  BP    14  0 1.000000e+00
## GO:0010644  BP    14  0 1.000000e+00
## GO:0021534  BP    14  0 1.000000e+00
## GO:0030007  BP    14  0 1.000000e+00
## GO:0071371  BP    14  0 1.000000e+00
## GO:0010457  BP    14  0 1.000000e+00
## GO:0021702  BP    14  0 1.000000e+00
## GO:0034435  BP    14  0 1.000000e+00
## GO:0015936  BP    14  0 1.000000e+00
## GO:0009263  BP    14  0 1.000000e+00
## GO:0043650  BP    14  0 1.000000e+00
## GO:0072505  BP    14  0 1.000000e+00
## GO:0048484  BP    14  0 1.000000e+00
## GO:0090136  BP    14  0 1.000000e+00
## GO:0045198  BP    14  0 1.000000e+00
## GO:0090151  BP    14  0 1.000000e+00
## GO:0030950  BP    14  0 1.000000e+00
## GO:0030497  BP    14  0 1.000000e+00
## GO:0060180  BP    14  0 1.000000e+00
## GO:0072537  BP    14  0 1.000000e+00
## GO:0007342  BP    14  0 1.000000e+00
## GO:0014831  BP    14  0 1.000000e+00
## GO:0042921  BP    14  0 1.000000e+00
## GO:0006007  BP    14  0 1.000000e+00
## GO:0019585  BP    14  0 1.000000e+00
## GO:0046479  BP    14  0 1.000000e+00
## GO:0070365  BP    14  0 1.000000e+00
## GO:0021932  BP    14  0 1.000000e+00
## GO:0050667  BP    14  0 1.000000e+00
## GO:0010421  BP    14  0 1.000000e+00
## GO:0031573  BP    14  0 1.000000e+00
## GO:0003334  BP    14  0 1.000000e+00
## GO:0031987  BP    14  0 1.000000e+00
## GO:0080009  BP    14  0 1.000000e+00
## GO:0097531  BP    14  0 1.000000e+00
## GO:0072224  BP    14  0 1.000000e+00
## GO:1904948  BP    14  0 1.000000e+00
## GO:0006264  BP    14  0 1.000000e+00
## GO:0000963  BP    14  0 1.000000e+00
## GO:1902969  BP    14  0 1.000000e+00
## GO:0071850  BP    14  0 1.000000e+00
## GO:0048537  BP    14  0 1.000000e+00
## GO:0051451  BP    14  0 1.000000e+00
## GO:0007194  BP    14  0 1.000000e+00
## GO:1902931  BP    14  0 1.000000e+00
## GO:0051782  BP    14  0 1.000000e+00
## GO:1903430  BP    14  0 1.000000e+00
## GO:0045792  BP    14  0 1.000000e+00
## GO:0051198  BP    14  0 1.000000e+00
## GO:0032966  BP    14  0 1.000000e+00
## GO:0010713  BP    14  0 1.000000e+00
## GO:0007175  BP    14  0 1.000000e+00
## GO:0045647  BP    14  0 1.000000e+00
## GO:0010561  BP    14  0 1.000000e+00
## GO:0010839  BP    14  0 1.000000e+00
## GO:0043031  BP    14  0 1.000000e+00
## GO:0032769  BP    14  0 1.000000e+00
## GO:0030812  BP    14  0 1.000000e+00
## GO:0090331  BP    14  0 1.000000e+00
## GO:0010642  BP    14  0 1.000000e+00
## GO:1904590  BP    14  0 1.000000e+00
## GO:0042308  BP    14  0 1.000000e+00
## GO:0032096  BP    14  0 1.000000e+00
## GO:1902306  BP    14  0 1.000000e+00
## GO:0010804  BP    14  0 1.000000e+00
## GO:0002829  BP    14  0 1.000000e+00
## GO:0042532  BP    14  0 1.000000e+00
## GO:0043116  BP    14  0 1.000000e+00
## GO:0045060  BP    14  0 1.000000e+00
## GO:0019184  BP    14  0 1.000000e+00
## GO:0006999  BP    14  0 1.000000e+00
## GO:0009226  BP    14  0 1.000000e+00
## GO:0019755  BP    14  0 1.000000e+00
## GO:0048308  BP    14  0 1.000000e+00
## GO:0018119  BP    14  0 1.000000e+00
## GO:0035970  BP    14  0 1.000000e+00
## GO:0055062  BP    14  0 1.000000e+00
## GO:0046473  BP    14  0 1.000000e+00
## GO:0090179  BP    14  0 1.000000e+00
## GO:0035791  BP    14  0 1.000000e+00
## GO:0043517  BP    14  0 1.000000e+00
## GO:0010820  BP    14  0 1.000000e+00
## GO:1904263  BP    14  0 1.000000e+00
## GO:0048680  BP    14  0 1.000000e+00
## GO:0035563  BP    14  0 1.000000e+00
## GO:0031937  BP    14  0 1.000000e+00
## GO:0045938  BP    14  0 1.000000e+00
## GO:0048672  BP    14  0 1.000000e+00
## GO:1905516  BP    14  0 1.000000e+00
## GO:1905941  BP    14  0 1.000000e+00
## GO:0002885  BP    14  0 1.000000e+00
## GO:0060732  BP    14  0 1.000000e+00
## GO:0032736  BP    14  0 1.000000e+00
## GO:0045618  BP    14  0 1.000000e+00
## GO:0045651  BP    14  0 1.000000e+00
## GO:0090141  BP    14  0 1.000000e+00
## GO:2000052  BP    14  0 1.000000e+00
## GO:0033690  BP    14  0 1.000000e+00
## GO:0071803  BP    14  0 1.000000e+00
## GO:0070863  BP    14  0 1.000000e+00
## GO:0045591  BP    14  0 1.000000e+00
## GO:0035815  BP    14  0 1.000000e+00
## GO:0051284  BP    14  0 1.000000e+00
## GO:0051152  BP    14  0 1.000000e+00
## GO:0031915  BP    14  0 1.000000e+00
## GO:0030949  BP    14  0 1.000000e+00
## GO:0031340  BP    14  0 1.000000e+00
## GO:1901387  BP    14  0 1.000000e+00
## GO:0006620  BP    14  0 1.000000e+00
## GO:0097468  BP    14  0 1.000000e+00
## GO:0060736  BP    14  0 1.000000e+00
## GO:0043248  BP    14  0 1.000000e+00
## GO:0072697  BP    14  0 1.000000e+00
## GO:0018158  BP    14  0 1.000000e+00
## GO:0070071  BP    14  0 1.000000e+00
## GO:0042559  BP    14  0 1.000000e+00
## GO:0009215  BP    14  0 1.000000e+00
## GO:0046134  BP    14  0 1.000000e+00
## GO:0046132  BP    14  0 1.000000e+00
## GO:0071428  BP    14  0 1.000000e+00
## GO:0060019  BP    14  0 1.000000e+00
## GO:1903624  BP    14  0 1.000000e+00
## GO:0045346  BP    14  0 1.000000e+00
## GO:0046831  BP    14  0 1.000000e+00
## GO:1900221  BP    14  0 1.000000e+00
## GO:1904923  BP    14  0 1.000000e+00
## GO:1900402  BP    14  0 1.000000e+00
## GO:0010882  BP    14  0 1.000000e+00
## GO:0032536  BP    14  0 1.000000e+00
## GO:2000047  BP    14  0 1.000000e+00
## GO:2000341  BP    14  0 1.000000e+00
## GO:0045188  BP    14  0 1.000000e+00
## GO:1901841  BP    14  0 1.000000e+00
## GO:0033127  BP    14  0 1.000000e+00
## GO:2001044  BP    14  0 1.000000e+00
## GO:0090266  BP    14  0 1.000000e+00
## GO:1903504  BP    14  0 1.000000e+00
## GO:0060211  BP    14  0 1.000000e+00
## GO:0035358  BP    14  0 1.000000e+00
## GO:0099151  BP    14  0 1.000000e+00
## GO:0060049  BP    14  0 1.000000e+00
## GO:0060263  BP    14  0 1.000000e+00
## GO:0047484  BP    14  0 1.000000e+00
## GO:0090069  BP    14  0 1.000000e+00
## GO:0014819  BP    14  0 1.000000e+00
## GO:0048505  BP    14  0 1.000000e+00
## GO:1901836  BP    14  0 1.000000e+00
## GO:0010896  BP    14  0 1.000000e+00
## GO:0061469  BP    14  0 1.000000e+00
## GO:1905063  BP    14  0 1.000000e+00
## GO:0098911  BP    14  0 1.000000e+00
## GO:0010225  BP    14  0 1.000000e+00
## GO:0097012  BP    14  0 1.000000e+00
## GO:0072710  BP    14  0 1.000000e+00
## GO:0010226  BP    14  0 1.000000e+00
## GO:0097066  BP    14  0 1.000000e+00
## GO:0042574  BP    14  0 1.000000e+00
## GO:0032988  BP    14  0 1.000000e+00
## GO:0042454  BP    14  0 1.000000e+00
## GO:0021903  BP    14  0 1.000000e+00
## GO:0046459  BP    14  0 1.000000e+00
## GO:0071340  BP    14  0 1.000000e+00
## GO:0014866  BP    14  0 1.000000e+00
## GO:0060831  BP    14  0 1.000000e+00
## GO:0043144  BP    14  0 1.000000e+00
## GO:0098719  BP    14  0 1.000000e+00
## GO:0016446  BP    14  0 1.000000e+00
## GO:0035092  BP    14  0 1.000000e+00
## GO:0021527  BP    14  0 1.000000e+00
## GO:0098814  BP    14  0 1.000000e+00
## GO:0034433  BP    14  0 1.000000e+00
## GO:0034434  BP    14  0 1.000000e+00
## GO:0042271  BP    14  0 1.000000e+00
## GO:0016081  BP    14  0 1.000000e+00
## GO:0099116  BP    14  0 1.000000e+00
## GO:0034397  BP    14  0 1.000000e+00
## GO:0099550  BP    14  0 1.000000e+00
## GO:0006415  BP    14  0 1.000000e+00
## GO:0072506  BP    14  0 1.000000e+00
## GO:0045351  BP    14  0 1.000000e+00
## GO:0006063  BP    14  0 1.000000e+00
## GO:0006901  BP    14  0 1.000000e+00
## GO:0019081  BP    14  0 1.000000e+00
## GO:0046033  BP    15  0 1.000000e+00
## GO:0006978  BP    15  0 1.000000e+00
## GO:0051645  BP    15  0 1.000000e+00
## GO:0006896  BP    15  0 1.000000e+00
## GO:0051938  BP    15  0 1.000000e+00
## GO:0045342  BP    15  0 1.000000e+00
## GO:0071025  BP    15  0 1.000000e+00
## GO:0033151  BP    15  0 1.000000e+00
## GO:0046348  BP    15  0 1.000000e+00
## GO:0060055  BP    15  0 1.000000e+00
## GO:0086014  BP    15  0 1.000000e+00
## GO:0086066  BP    15  0 1.000000e+00
## GO:0086026  BP    15  0 1.000000e+00
## GO:0016553  BP    15  0 1.000000e+00
## GO:0061430  BP    15  0 1.000000e+00
## GO:0009083  BP    15  0 1.000000e+00
## GO:0060442  BP    15  0 1.000000e+00
## GO:0061307  BP    15  0 1.000000e+00
## GO:0006878  BP    15  0 1.000000e+00
## GO:0071243  BP    15  0 1.000000e+00
## GO:0071280  BP    15  0 1.000000e+00
## GO:0071378  BP    15  0 1.000000e+00
## GO:0071404  BP    15  0 1.000000e+00
## GO:0021694  BP    15  0 1.000000e+00
## GO:0051131  BP    15  0 1.000000e+00
## GO:0072567  BP    15  0 1.000000e+00
## GO:0010878  BP    15  0 1.000000e+00
## GO:0042748  BP    15  0 1.000000e+00
## GO:0031958  BP    15  0 1.000000e+00
## GO:0070593  BP    15  0 1.000000e+00
## GO:0042416  BP    15  0 1.000000e+00
## GO:0010172  BP    15  0 1.000000e+00
## GO:0072498  BP    15  0 1.000000e+00
## GO:0001711  BP    15  0 1.000000e+00
## GO:0060742  BP    15  0 1.000000e+00
## GO:0043249  BP    15  0 1.000000e+00
## GO:0060856  BP    15  0 1.000000e+00
## GO:0061029  BP    15  0 1.000000e+00
## GO:0055089  BP    15  0 1.000000e+00
## GO:0035337  BP    15  0 1.000000e+00
## GO:0015669  BP    15  0 1.000000e+00
## GO:0021781  BP    15  0 1.000000e+00
## GO:0072010  BP    15  0 1.000000e+00
## GO:0006704  BP    15  0 1.000000e+00
## GO:0019377  BP    15  0 1.000000e+00
## GO:0060396  BP    15  0 1.000000e+00
## GO:0003128  BP    15  0 1.000000e+00
## GO:0060347  BP    15  0 1.000000e+00
## GO:0003188  BP    15  0 1.000000e+00
## GO:0043981  BP    15  0 1.000000e+00
## GO:0043982  BP    15  0 1.000000e+00
## GO:0001771  BP    15  0 1.000000e+00
## GO:0050930  BP    15  0 1.000000e+00
## GO:0036159  BP    15  0 1.000000e+00
## GO:0046855  BP    15  0 1.000000e+00
## GO:0042095  BP    15  0 1.000000e+00
## GO:0070102  BP    15  0 1.000000e+00
## GO:0060576  BP    15  0 1.000000e+00
## GO:0034755  BP    15  0 1.000000e+00
## GO:0072074  BP    15  0 1.000000e+00
## GO:0051382  BP    15  0 1.000000e+00
## GO:0021819  BP    15  0 1.000000e+00
## GO:0070307  BP    15  0 1.000000e+00
## GO:0030259  BP    15  0 1.000000e+00
## GO:0042159  BP    15  0 1.000000e+00
## GO:0044872  BP    15  0 1.000000e+00
## GO:0042953  BP    15  0 1.000000e+00
## GO:0035641  BP    15  0 1.000000e+00
## GO:0042759  BP    15  0 1.000000e+00
## GO:0010960  BP    15  0 1.000000e+00
## GO:0015693  BP    15  0 1.000000e+00
## GO:0000212  BP    15  0 1.000000e+00
## GO:0072283  BP    15  0 1.000000e+00
## GO:0007076  BP    15  0 1.000000e+00
## GO:0044827  BP    15  0 1.000000e+00
## GO:0070254  BP    15  0 1.000000e+00
## GO:0043217  BP    15  0 1.000000e+00
## GO:0034471  BP    15  0 1.000000e+00
## GO:0043383  BP    15  0 1.000000e+00
## GO:0032785  BP    15  0 1.000000e+00
## GO:1902430  BP    15  0 1.000000e+00
## GO:2000811  BP    15  0 1.000000e+00
## GO:0048681  BP    15  0 1.000000e+00
## GO:0010523  BP    15  0 1.000000e+00
## GO:0031280  BP    15  0 1.000000e+00
## GO:0061000  BP    15  0 1.000000e+00
## GO:0045605  BP    15  0 1.000000e+00
## GO:2000252  BP    15  0 1.000000e+00
## GO:0060965  BP    15  0 1.000000e+00
## GO:0002862  BP    15  0 1.000000e+00
## GO:0032717  BP    15  0 1.000000e+00
## GO:0045835  BP    15  0 1.000000e+00
## GO:0031115  BP    15  0 1.000000e+00
## GO:0010917  BP    15  0 1.000000e+00
## GO:1902894  BP    15  0 1.000000e+00
## GO:1901386  BP    15  0 1.000000e+00
## GO:0000291  BP    15  0 1.000000e+00
## GO:0009143  BP    15  0 1.000000e+00
## GO:0006337  BP    15  0 1.000000e+00
## GO:0009312  BP    15  0 1.000000e+00
## GO:0071599  BP    15  0 1.000000e+00
## GO:0030157  BP    15  0 1.000000e+00
## GO:0015919  BP    15  0 1.000000e+00
## GO:1904294  BP    15  0 1.000000e+00
## GO:0070234  BP    15  0 1.000000e+00
## GO:0050862  BP    15  0 1.000000e+00
## GO:0051127  BP    15  0 1.000000e+00
## GO:0045760  BP    15  0 1.000000e+00
## GO:0061051  BP    15  0 1.000000e+00
## GO:0090197  BP    15  0 1.000000e+00
## GO:1903543  BP    15  0 1.000000e+00
## GO:2001241  BP    15  0 1.000000e+00
## GO:1902043  BP    15  0 1.000000e+00
## GO:0014049  BP    15  0 1.000000e+00
## GO:0051571  BP    15  0 1.000000e+00
## GO:0051712  BP    15  0 1.000000e+00
## GO:0070572  BP    15  0 1.000000e+00
## GO:0033235  BP    15  0 1.000000e+00
## GO:1900029  BP    15  0 1.000000e+00
## GO:0034393  BP    15  0 1.000000e+00
## GO:1903423  BP    15  0 1.000000e+00
## GO:0043117  BP    15  0 1.000000e+00
## GO:1903818  BP    15  0 1.000000e+00
## GO:0099527  BP    15  0 1.000000e+00
## GO:0098926  BP    15  0 1.000000e+00
## GO:0031054  BP    15  0 1.000000e+00
## GO:0060134  BP    15  0 1.000000e+00
## GO:1902570  BP    15  0 1.000000e+00
## GO:0017014  BP    15  0 1.000000e+00
## GO:0031268  BP    15  0 1.000000e+00
## GO:0009151  BP    15  0 1.000000e+00
## GO:0035587  BP    15  0 1.000000e+00
## GO:0006206  BP    15  0 1.000000e+00
## GO:0009220  BP    15  0 1.000000e+00
## GO:1903358  BP    15  0 1.000000e+00
## GO:0039535  BP    15  0 1.000000e+00
## GO:0010819  BP    15  0 1.000000e+00
## GO:2000095  BP    15  0 1.000000e+00
## GO:0003352  BP    15  0 1.000000e+00
## GO:2000369  BP    15  0 1.000000e+00
## GO:2001267  BP    15  0 1.000000e+00
## GO:0048070  BP    15  0 1.000000e+00
## GO:0090178  BP    15  0 1.000000e+00
## GO:0010715  BP    15  0 1.000000e+00
## GO:2000194  BP    15  0 1.000000e+00
## GO:1901317  BP    15  0 1.000000e+00
## GO:0090083  BP    15  0 1.000000e+00
## GO:0033623  BP    15  0 1.000000e+00
## GO:0060334  BP    15  0 1.000000e+00
## GO:0045414  BP    15  0 1.000000e+00
## GO:1902165  BP    15  0 1.000000e+00
## GO:0051547  BP    15  0 1.000000e+00
## GO:0051004  BP    15  0 1.000000e+00
## GO:0010935  BP    15  0 1.000000e+00
## GO:2000628  BP    15  0 1.000000e+00
## GO:1903978  BP    15  0 1.000000e+00
## GO:0032530  BP    15  0 1.000000e+00
## GO:1903729  BP    15  0 1.000000e+00
## GO:0098962  BP    15  0 1.000000e+00
## GO:1904814  BP    15  0 1.000000e+00
## GO:1901077  BP    15  0 1.000000e+00
## GO:0060330  BP    15  0 1.000000e+00
## GO:0048385  BP    15  0 1.000000e+00
## GO:0060700  BP    15  0 1.000000e+00
## GO:0043455  BP    15  0 1.000000e+00
## GO:0014857  BP    15  0 1.000000e+00
## GO:2001256  BP    15  0 1.000000e+00
## GO:0032222  BP    15  0 1.000000e+00
## GO:1901213  BP    15  0 1.000000e+00
## GO:0070293  BP    15  0 1.000000e+00
## GO:0034698  BP    15  0 1.000000e+00
## GO:0071731  BP    15  0 1.000000e+00
## GO:0098917  BP    15  0 1.000000e+00
## GO:0046541  BP    15  0 1.000000e+00
## GO:0007379  BP    15  0 1.000000e+00
## GO:0009070  BP    15  0 1.000000e+00
## GO:0042428  BP    15  0 1.000000e+00
## GO:1902402  BP    15  0 1.000000e+00
## GO:1902403  BP    15  0 1.000000e+00
## GO:0072413  BP    15  0 1.000000e+00
## GO:0002566  BP    15  0 1.000000e+00
## GO:0051923  BP    15  0 1.000000e+00
## GO:0000097  BP    15  0 1.000000e+00
## GO:0043129  BP    15  0 1.000000e+00
## GO:0000722  BP    15  0 1.000000e+00
## GO:0016114  BP    15  0 1.000000e+00
## GO:0006590  BP    15  0 1.000000e+00
## GO:0034162  BP    15  0 1.000000e+00
## GO:0097050  BP    15  0 1.000000e+00
## GO:0035461  BP    15  0 1.000000e+00
## GO:0050872  BP    15  0 1.000000e+00
## GO:0006103  BP    16  0 1.000000e+00
## GO:0043374  BP    16  0 1.000000e+00
## GO:0042772  BP    16  0 1.000000e+00
## GO:0000729  BP    16  0 1.000000e+00
## GO:0006271  BP    16  0 1.000000e+00
## GO:0002431  BP    16  0 1.000000e+00
## GO:0006044  BP    16  0 1.000000e+00
## GO:0002295  BP    16  0 1.000000e+00
## GO:0007250  BP    16  0 1.000000e+00
## GO:0007512  BP    16  0 1.000000e+00
## GO:1990000  BP    16  0 1.000000e+00
## GO:0042640  BP    16  0 1.000000e+00
## GO:0099640  BP    16  0 1.000000e+00
## GO:0009081  BP    16  0 1.000000e+00
## GO:0098703  BP    16  0 1.000000e+00
## GO:0046835  BP    16  0 1.000000e+00
## GO:0003161  BP    16  0 1.000000e+00
## GO:0060581  BP    16  0 1.000000e+00
## GO:0033631  BP    16  0 1.000000e+00
## GO:0006968  BP    16  0 1.000000e+00
## GO:0071498  BP    16  0 1.000000e+00
## GO:0044320  BP    16  0 1.000000e+00
## GO:0071379  BP    16  0 1.000000e+00
## GO:0036315  BP    16  0 1.000000e+00
## GO:0090171  BP    16  0 1.000000e+00
## GO:0003414  BP    16  0 1.000000e+00
## GO:0002544  BP    16  0 1.000000e+00
## GO:0060026  BP    16  0 1.000000e+00
## GO:0055070  BP    16  0 1.000000e+00
## GO:0006825  BP    16  0 1.000000e+00
## GO:0097094  BP    16  0 1.000000e+00
## GO:0042407  BP    16  0 1.000000e+00
## GO:0006534  BP    16  0 1.000000e+00
## GO:0002407  BP    16  0 1.000000e+00
## GO:0016045  BP    16  0 1.000000e+00
## GO:0098543  BP    16  0 1.000000e+00
## GO:0051852  BP    16  0 1.000000e+00
## GO:0070166  BP    16  0 1.000000e+00
## GO:0099638  BP    16  0 1.000000e+00
## GO:0001886  BP    16  0 1.000000e+00
## GO:0061154  BP    16  0 1.000000e+00
## GO:0043652  BP    16  0 1.000000e+00
## GO:0002070  BP    16  0 1.000000e+00
## GO:0090177  BP    16  0 1.000000e+00
## GO:0070200  BP    16  0 1.000000e+00
## GO:0018904  BP    16  0 1.000000e+00
## GO:0046629  BP    16  0 1.000000e+00
## GO:0061548  BP    16  0 1.000000e+00
## GO:0035112  BP    16  0 1.000000e+00
## GO:0002467  BP    16  0 1.000000e+00
## GO:0072109  BP    16  0 1.000000e+00
## GO:0009084  BP    16  0 1.000000e+00
## GO:0019682  BP    16  0 1.000000e+00
## GO:0003429  BP    16  0 1.000000e+00
## GO:0097284  BP    16  0 1.000000e+00
## GO:0001821  BP    16  0 1.000000e+00
## GO:0070932  BP    16  0 1.000000e+00
## GO:0002327  BP    16  0 1.000000e+00
## GO:0042228  BP    16  0 1.000000e+00
## GO:0098856  BP    16  0 1.000000e+00
## GO:0035235  BP    16  0 1.000000e+00
## GO:0051873  BP    16  0 1.000000e+00
## GO:0072673  BP    16  0 1.000000e+00
## GO:0044241  BP    16  0 1.000000e+00
## GO:0002281  BP    16  0 1.000000e+00
## GO:0030011  BP    16  0 1.000000e+00
## GO:0030238  BP    16  0 1.000000e+00
## GO:0006828  BP    16  0 1.000000e+00
## GO:0007638  BP    16  0 1.000000e+00
## GO:0061952  BP    16  0 1.000000e+00
## GO:0098885  BP    16  0 1.000000e+00
## GO:0044068  BP    16  0 1.000000e+00
## GO:0003159  BP    16  0 1.000000e+00
## GO:0043518  BP    16  0 1.000000e+00
## GO:0060766  BP    16  0 1.000000e+00
## GO:0045779  BP    16  0 1.000000e+00
## GO:0070885  BP    16  0 1.000000e+00
## GO:0106057  BP    16  0 1.000000e+00
## GO:0090051  BP    16  0 1.000000e+00
## GO:1900016  BP    16  0 1.000000e+00
## GO:0032688  BP    16  0 1.000000e+00
## GO:0002689  BP    16  0 1.000000e+00
## GO:0060192  BP    16  0 1.000000e+00
## GO:0048715  BP    16  0 1.000000e+00
## GO:0014067  BP    16  0 1.000000e+00
## GO:0032105  BP    16  0 1.000000e+00
## GO:0032108  BP    16  0 1.000000e+00
## GO:2001015  BP    16  0 1.000000e+00
## GO:0051151  BP    16  0 1.000000e+00
## GO:2000647  BP    16  0 1.000000e+00
## GO:0045947  BP    16  0 1.000000e+00
## GO:1902187  BP    16  0 1.000000e+00
## GO:0055057  BP    16  0 1.000000e+00
## GO:0016322  BP    16  0 1.000000e+00
## GO:0036445  BP    16  0 1.000000e+00
## GO:0002283  BP    16  0 1.000000e+00
## GO:0072672  BP    16  0 1.000000e+00
## GO:0043584  BP    16  0 1.000000e+00
## GO:0046112  BP    16  0 1.000000e+00
## GO:0036035  BP    16  0 1.000000e+00
## GO:0043084  BP    16  0 1.000000e+00
## GO:0018027  BP    16  0 1.000000e+00
## GO:0070262  BP    16  0 1.000000e+00
## GO:0043923  BP    16  0 1.000000e+00
## GO:0002866  BP    16  0 1.000000e+00
## GO:1902004  BP    16  0 1.000000e+00
## GO:0010875  BP    16  0 1.000000e+00
## GO:1900119  BP    16  0 1.000000e+00
## GO:1904996  BP    16  0 1.000000e+00
## GO:0062033  BP    16  0 1.000000e+00
## GO:1901881  BP    16  0 1.000000e+00
## GO:2000651  BP    16  0 1.000000e+00
## GO:0032230  BP    16  0 1.000000e+00
## GO:0002830  BP    16  0 1.000000e+00
## GO:1905564  BP    16  0 1.000000e+00
## GO:1902188  BP    16  0 1.000000e+00
## GO:0045059  BP    16  0 1.000000e+00
## GO:0098974  BP    16  0 1.000000e+00
## GO:0099188  BP    16  0 1.000000e+00
## GO:1901160  BP    16  0 1.000000e+00
## GO:0042448  BP    16  0 1.000000e+00
## GO:0016540  BP    16  0 1.000000e+00
## GO:1902414  BP    16  0 1.000000e+00
## GO:0009147  BP    16  0 1.000000e+00
## GO:0009218  BP    16  0 1.000000e+00
## GO:0072529  BP    16  0 1.000000e+00
## GO:0015697  BP    16  0 1.000000e+00
## GO:0034315  BP    16  0 1.000000e+00
## GO:0045898  BP    16  0 1.000000e+00
## GO:0106070  BP    16  0 1.000000e+00
## GO:1902337  BP    16  0 1.000000e+00
## GO:0090335  BP    16  0 1.000000e+00
## GO:2000479  BP    16  0 1.000000e+00
## GO:0010752  BP    16  0 1.000000e+00
## GO:1903779  BP    16  0 1.000000e+00
## GO:0042659  BP    16  0 1.000000e+00
## GO:1901722  BP    16  0 1.000000e+00
## GO:0090196  BP    16  0 1.000000e+00
## GO:0002739  BP    16  0 1.000000e+00
## GO:0040034  BP    16  0 1.000000e+00
## GO:1903541  BP    16  0 1.000000e+00
## GO:0010310  BP    16  0 1.000000e+00
## GO:0048302  BP    16  0 1.000000e+00
## GO:0051709  BP    16  0 1.000000e+00
## GO:2001053  BP    16  0 1.000000e+00
## GO:1901524  BP    16  0 1.000000e+00
## GO:0045655  BP    16  0 1.000000e+00
## GO:2000291  BP    16  0 1.000000e+00
## GO:0098696  BP    16  0 1.000000e+00
## GO:0051386  BP    16  0 1.000000e+00
## GO:0032239  BP    16  0 1.000000e+00
## GO:0044065  BP    16  0 1.000000e+00
## GO:0060314  BP    16  0 1.000000e+00
## GO:0014733  BP    16  0 1.000000e+00
## GO:0090231  BP    16  0 1.000000e+00
## GO:0090128  BP    16  0 1.000000e+00
## GO:0006359  BP    16  0 1.000000e+00
## GO:0001977  BP    16  0 1.000000e+00
## GO:0010224  BP    16  0 1.000000e+00
## GO:0097329  BP    16  0 1.000000e+00
## GO:0031000  BP    16  0 1.000000e+00
## GO:0036270  BP    16  0 1.000000e+00
## GO:0032570  BP    16  0 1.000000e+00
## GO:0032252  BP    16  0 1.000000e+00
## GO:0014856  BP    16  0 1.000000e+00
## GO:0046519  BP    16  0 1.000000e+00
## GO:0006684  BP    16  0 1.000000e+00
## GO:0030322  BP    16  0 1.000000e+00
## GO:0008272  BP    16  0 1.000000e+00
## GO:0021978  BP    16  0 1.000000e+00
## GO:0034134  BP    16  0 1.000000e+00
## GO:0019985  BP    16  0 1.000000e+00
## GO:0060979  BP    16  0 1.000000e+00
## GO:0060579  BP    16  0 1.000000e+00
## GO:0003222  BP    16  0 1.000000e+00
## GO:0061158  BP    17  0 1.000000e+00
## GO:0043373  BP    17  0 1.000000e+00
## GO:0007216  BP    17  0 1.000000e+00
## GO:0006474  BP    17  0 1.000000e+00
## GO:0000966  BP    17  0 1.000000e+00
## GO:0090502  BP    17  0 1.000000e+00
## GO:0006614  BP    17  0 1.000000e+00
## GO:0045064  BP    17  0 1.000000e+00
## GO:0007202  BP    17  0 1.000000e+00
## GO:0044406  BP    17  0 1.000000e+00
## GO:0060413  BP    17  0 1.000000e+00
## GO:0015701  BP    17  0 1.000000e+00
## GO:0007350  BP    17  0 1.000000e+00
## GO:1902656  BP    17  0 1.000000e+00
## GO:0048739  BP    17  0 1.000000e+00
## GO:0035459  BP    17  0 1.000000e+00
## GO:0034331  BP    17  0 1.000000e+00
## GO:0042074  BP    17  0 1.000000e+00
## GO:0060973  BP    17  0 1.000000e+00
## GO:0071360  BP    17  0 1.000000e+00
## GO:0035729  BP    17  0 1.000000e+00
## GO:0098761  BP    17  0 1.000000e+00
## GO:0036120  BP    17  0 1.000000e+00
## GO:0021681  BP    17  0 1.000000e+00
## GO:0048875  BP    17  0 1.000000e+00
## GO:0090195  BP    17  0 1.000000e+00
## GO:0035988  BP    17  0 1.000000e+00
## GO:0031498  BP    17  0 1.000000e+00
## GO:0009109  BP    17  0 1.000000e+00
## GO:0002024  BP    17  0 1.000000e+00
## GO:0042756  BP    17  0 1.000000e+00
## GO:0060788  BP    17  0 1.000000e+00
## GO:0071697  BP    17  0 1.000000e+00
## GO:0071786  BP    17  0 1.000000e+00
## GO:0003198  BP    17  0 1.000000e+00
## GO:0072663  BP    17  0 1.000000e+00
## GO:0048853  BP    17  0 1.000000e+00
## GO:0036065  BP    17  0 1.000000e+00
## GO:0014051  BP    17  0 1.000000e+00
## GO:0034349  BP    17  0 1.000000e+00
## GO:0006677  BP    17  0 1.000000e+00
## GO:0003422  BP    17  0 1.000000e+00
## GO:0043968  BP    17  0 1.000000e+00
## GO:0080182  BP    17  0 1.000000e+00
## GO:0036124  BP    17  0 1.000000e+00
## GO:0008334  BP    17  0 1.000000e+00
## GO:0050665  BP    17  0 1.000000e+00
## GO:0021854  BP    17  0 1.000000e+00
## GO:0000188  BP    17  0 1.000000e+00
## GO:0071545  BP    17  0 1.000000e+00
## GO:0048291  BP    17  0 1.000000e+00
## GO:0048368  BP    17  0 1.000000e+00
## GO:0010934  BP    17  0 1.000000e+00
## GO:0030277  BP    17  0 1.000000e+00
## GO:0060644  BP    17  0 1.000000e+00
## GO:0000463  BP    17  0 1.000000e+00
## GO:0032438  BP    17  0 1.000000e+00
## GO:0032402  BP    17  0 1.000000e+00
## GO:0086012  BP    17  0 1.000000e+00
## GO:0060081  BP    17  0 1.000000e+00
## GO:0097152  BP    17  0 1.000000e+00
## GO:0072234  BP    17  0 1.000000e+00
## GO:0006555  BP    17  0 1.000000e+00
## GO:0030033  BP    17  0 1.000000e+00
## GO:2001170  BP    17  0 1.000000e+00
## GO:1902992  BP    17  0 1.000000e+00
## GO:1903960  BP    17  0 1.000000e+00
## GO:0010454  BP    17  0 1.000000e+00
## GO:2000042  BP    17  0 1.000000e+00
## GO:0051895  BP    17  0 1.000000e+00
## GO:0060967  BP    17  0 1.000000e+00
## GO:0060253  BP    17  0 1.000000e+00
## GO:0035067  BP    17  0 1.000000e+00
## GO:0061179  BP    17  0 1.000000e+00
## GO:0090185  BP    17  0 1.000000e+00
## GO:0010888  BP    17  0 1.000000e+00
## GO:0051350  BP    17  0 1.000000e+00
## GO:0045653  BP    17  0 1.000000e+00
## GO:1905331  BP    17  0 1.000000e+00
## GO:0040015  BP    17  0 1.000000e+00
## GO:0070571  BP    17  0 1.000000e+00
## GO:1902176  BP    17  0 1.000000e+00
## GO:0060149  BP    17  0 1.000000e+00
## GO:0032460  BP    17  0 1.000000e+00
## GO:0042135  BP    17  0 1.000000e+00
## GO:0038092  BP    17  0 1.000000e+00
## GO:0030575  BP    17  0 1.000000e+00
## GO:0009164  BP    17  0 1.000000e+00
## GO:0043574  BP    17  0 1.000000e+00
## GO:0046337  BP    17  0 1.000000e+00
## GO:0046838  BP    17  0 1.000000e+00
## GO:0045026  BP    17  0 1.000000e+00
## GO:0045579  BP    17  0 1.000000e+00
## GO:0070886  BP    17  0 1.000000e+00
## GO:0106058  BP    17  0 1.000000e+00
## GO:0045793  BP    17  0 1.000000e+00
## GO:2001028  BP    17  0 1.000000e+00
## GO:0045603  BP    17  0 1.000000e+00
## GO:0045725  BP    17  0 1.000000e+00
## GO:0002839  BP    17  0 1.000000e+00
## GO:0032740  BP    17  0 1.000000e+00
## GO:0140131  BP    17  0 1.000000e+00
## GO:0045836  BP    17  0 1.000000e+00
## GO:0051000  BP    17  0 1.000000e+00
## GO:0032516  BP    17  0 1.000000e+00
## GO:0001921  BP    17  0 1.000000e+00
## GO:0002836  BP    17  0 1.000000e+00
## GO:0045989  BP    17  0 1.000000e+00
## GO:1904355  BP    17  0 1.000000e+00
## GO:0010867  BP    17  0 1.000000e+00
## GO:0009886  BP    17  0 1.000000e+00
## GO:0099171  BP    17  0 1.000000e+00
## GO:0035269  BP    17  0 1.000000e+00
## GO:0034501  BP    17  0 1.000000e+00
## GO:0035372  BP    17  0 1.000000e+00
## GO:0072662  BP    17  0 1.000000e+00
## GO:0006625  BP    17  0 1.000000e+00
## GO:0032986  BP    17  0 1.000000e+00
## GO:0001522  BP    17  0 1.000000e+00
## GO:0003184  BP    17  0 1.000000e+00
## GO:1901663  BP    17  0 1.000000e+00
## GO:0050855  BP    17  0 1.000000e+00
## GO:2001185  BP    17  0 1.000000e+00
## GO:2000001  BP    17  0 1.000000e+00
## GO:0060628  BP    17  0 1.000000e+00
## GO:0035020  BP    17  0 1.000000e+00
## GO:0060046  BP    17  0 1.000000e+00
## GO:1904748  BP    17  0 1.000000e+00
## GO:0045540  BP    17  0 1.000000e+00
## GO:1904889  BP    17  0 1.000000e+00
## GO:0007096  BP    17  0 1.000000e+00
## GO:0090192  BP    17  0 1.000000e+00
## GO:0002883  BP    17  0 1.000000e+00
## GO:0010919  BP    17  0 1.000000e+00
## GO:1902713  BP    17  0 1.000000e+00
## GO:1900452  BP    17  0 1.000000e+00
## GO:1900363  BP    17  0 1.000000e+00
## GO:2000380  BP    17  0 1.000000e+00
## GO:1905244  BP    17  0 1.000000e+00
## GO:0060544  BP    17  0 1.000000e+00
## GO:0042487  BP    17  0 1.000000e+00
## GO:0071071  BP    17  0 1.000000e+00
## GO:0106118  BP    17  0 1.000000e+00
## GO:0032225  BP    17  0 1.000000e+00
## GO:0070243  BP    17  0 1.000000e+00
## GO:0043555  BP    17  0 1.000000e+00
## GO:0006448  BP    17  0 1.000000e+00
## GO:1900746  BP    17  0 1.000000e+00
## GO:0098760  BP    17  0 1.000000e+00
## GO:0043278  BP    17  0 1.000000e+00
## GO:0046549  BP    17  0 1.000000e+00
## GO:0001820  BP    17  0 1.000000e+00
## GO:0007288  BP    17  0 1.000000e+00
## GO:0001967  BP    17  0 1.000000e+00
## GO:0002098  BP    17  0 1.000000e+00
## GO:0006744  BP    17  0 1.000000e+00
## GO:0055012  BP    17  0 1.000000e+00
## GO:0046755  BP    17  0 1.000000e+00
## GO:0071625  BP    17  0 1.000000e+00
## GO:0006833  BP    17  0 1.000000e+00
## GO:0035313  BP    17  0 1.000000e+00
## GO:0070935  BP    18  0 1.000000e+00
## GO:0006700  BP    18  0 1.000000e+00
## GO:0038093  BP    18  0 1.000000e+00
## GO:0002031  BP    18  0 1.000000e+00
## GO:0007252  BP    18  0 1.000000e+00
## GO:0039529  BP    18  0 1.000000e+00
## GO:0006085  BP    18  0 1.000000e+00
## GO:0001675  BP    18  0 1.000000e+00
## GO:0009309  BP    18  0 1.000000e+00
## GO:0048791  BP    18  0 1.000000e+00
## GO:0060947  BP    18  0 1.000000e+00
## GO:0010002  BP    18  0 1.000000e+00
## GO:0030002  BP    18  0 1.000000e+00
## GO:0042401  BP    18  0 1.000000e+00
## GO:0043094  BP    18  0 1.000000e+00
## GO:0042219  BP    18  0 1.000000e+00
## GO:0030320  BP    18  0 1.000000e+00
## GO:0048268  BP    18  0 1.000000e+00
## GO:0022038  BP    18  0 1.000000e+00
## GO:0006613  BP    18  0 1.000000e+00
## GO:0021542  BP    18  0 1.000000e+00
## GO:0050961  BP    18  0 1.000000e+00
## GO:0050965  BP    18  0 1.000000e+00
## GO:0034312  BP    18  0 1.000000e+00
## GO:0007398  BP    18  0 1.000000e+00
## GO:0071696  BP    18  0 1.000000e+00
## GO:0072148  BP    18  0 1.000000e+00
## GO:0035089  BP    18  0 1.000000e+00
## GO:0032401  BP    18  0 1.000000e+00
## GO:0042249  BP    18  0 1.000000e+00
## GO:0030952  BP    18  0 1.000000e+00
## GO:0030540  BP    18  0 1.000000e+00
## GO:0015812  BP    18  0 1.000000e+00
## GO:0009251  BP    18  0 1.000000e+00
## GO:0051156  BP    18  0 1.000000e+00
## GO:0005980  BP    18  0 1.000000e+00
## GO:0006027  BP    18  0 1.000000e+00
## GO:0016137  BP    18  0 1.000000e+00
## GO:0032274  BP    18  0 1.000000e+00
## GO:0020027  BP    18  0 1.000000e+00
## GO:0051608  BP    18  0 1.000000e+00
## GO:0035518  BP    18  0 1.000000e+00
## GO:0042447  BP    18  0 1.000000e+00
## GO:0002524  BP    18  0 1.000000e+00
## GO:0001833  BP    18  0 1.000000e+00
## GO:0045324  BP    18  0 1.000000e+00
## GO:0034389  BP    18  0 1.000000e+00
## GO:0042711  BP    18  0 1.000000e+00
## GO:0086011  BP    18  0 1.000000e+00
## GO:0001710  BP    18  0 1.000000e+00
## GO:0035278  BP    18  0 1.000000e+00
## GO:0006851  BP    18  0 1.000000e+00
## GO:0006390  BP    18  0 1.000000e+00
## GO:0060572  BP    18  0 1.000000e+00
## GO:1904262  BP    18  0 1.000000e+00
## GO:0046851  BP    18  0 1.000000e+00
## GO:0060044  BP    18  0 1.000000e+00
## GO:0033604  BP    18  0 1.000000e+00
## GO:0042754  BP    18  0 1.000000e+00
## GO:0045721  BP    18  0 1.000000e+00
## GO:0032700  BP    18  0 1.000000e+00
## GO:0045837  BP    18  0 1.000000e+00
## GO:0010832  BP    18  0 1.000000e+00
## GO:0060547  BP    18  0 1.000000e+00
## GO:0030809  BP    18  0 1.000000e+00
## GO:0010801  BP    18  0 1.000000e+00
## GO:1900372  BP    18  0 1.000000e+00
## GO:0051444  BP    18  0 1.000000e+00
## GO:1904706  BP    18  0 1.000000e+00
## GO:0072578  BP    18  0 1.000000e+00
## GO:0042415  BP    18  0 1.000000e+00
## GO:0048243  BP    18  0 1.000000e+00
## GO:0042790  BP    18  0 1.000000e+00
## GO:0016584  BP    18  0 1.000000e+00
## GO:0002076  BP    18  0 1.000000e+00
## GO:0036158  BP    18  0 1.000000e+00
## GO:0016486  BP    18  0 1.000000e+00
## GO:0006656  BP    18  0 1.000000e+00
## GO:0017121  BP    18  0 1.000000e+00
## GO:0034587  BP    18  0 1.000000e+00
## GO:0048753  BP    18  0 1.000000e+00
## GO:0051904  BP    18  0 1.000000e+00
## GO:0016973  BP    18  0 1.000000e+00
## GO:0032793  BP    18  0 1.000000e+00
## GO:1903599  BP    18  0 1.000000e+00
## GO:0031281  BP    18  0 1.000000e+00
## GO:0046321  BP    18  0 1.000000e+00
## GO:0010763  BP    18  0 1.000000e+00
## GO:0045722  BP    18  0 1.000000e+00
## GO:0070131  BP    18  0 1.000000e+00
## GO:1900153  BP    18  0 1.000000e+00
## GO:1903209  BP    18  0 1.000000e+00
## GO:0071435  BP    18  0 1.000000e+00
## GO:0097623  BP    18  0 1.000000e+00
## GO:0021783  BP    18  0 1.000000e+00
## GO:0030150  BP    18  0 1.000000e+00
## GO:0006622  BP    18  0 1.000000e+00
## GO:1904424  BP    18  0 1.000000e+00
## GO:2000319  BP    18  0 1.000000e+00
## GO:2000810  BP    18  0 1.000000e+00
## GO:1902547  BP    18  0 1.000000e+00
## GO:2000846  BP    18  0 1.000000e+00
## GO:2000641  BP    18  0 1.000000e+00
## GO:2000696  BP    18  0 1.000000e+00
## GO:0032674  BP    18  0 1.000000e+00
## GO:0010566  BP    18  0 1.000000e+00
## GO:0014041  BP    18  0 1.000000e+00
## GO:1902855  BP    18  0 1.000000e+00
## GO:0014061  BP    18  0 1.000000e+00
## GO:0071801  BP    18  0 1.000000e+00
## GO:0150052  BP    18  0 1.000000e+00
## GO:0099150  BP    18  0 1.000000e+00
## GO:1903909  BP    18  0 1.000000e+00
## GO:0001991  BP    18  0 1.000000e+00
## GO:0060850  BP    18  0 1.000000e+00
## GO:0039531  BP    18  0 1.000000e+00
## GO:0072077  BP    18  0 1.000000e+00
## GO:0000712  BP    18  0 1.000000e+00
## GO:0060416  BP    18  0 1.000000e+00
## GO:0014072  BP    18  0 1.000000e+00
## GO:0044321  BP    18  0 1.000000e+00
## GO:0036119  BP    18  0 1.000000e+00
## GO:0034695  BP    18  0 1.000000e+00
## GO:0033574  BP    18  0 1.000000e+00
## GO:0042670  BP    18  0 1.000000e+00
## GO:0043252  BP    18  0 1.000000e+00
## GO:0060712  BP    18  0 1.000000e+00
## GO:0021756  BP    18  0 1.000000e+00
## GO:0097091  BP    18  0 1.000000e+00
## GO:0034138  BP    18  0 1.000000e+00
## GO:0060707  BP    18  0 1.000000e+00
## GO:0006743  BP    18  0 1.000000e+00
## GO:0043162  BP    18  0 1.000000e+00
## GO:0060841  BP    18  0 1.000000e+00
## GO:0032011  BP    19  0 1.000000e+00
## GO:0015740  BP    19  0 1.000000e+00
## GO:0043046  BP    19  0 1.000000e+00
## GO:0009435  BP    19  0 1.000000e+00
## GO:0010818  BP    19  0 1.000000e+00
## GO:0046184  BP    19  0 1.000000e+00
## GO:0002363  BP    19  0 1.000000e+00
## GO:0008209  BP    19  0 1.000000e+00
## GO:0002495  BP    19  0 1.000000e+00
## GO:0003180  BP    19  0 1.000000e+00
## GO:0006309  BP    19  0 1.000000e+00
## GO:0009074  BP    19  0 1.000000e+00
## GO:0060088  BP    19  0 1.000000e+00
## GO:0046068  BP    19  0 1.000000e+00
## GO:0003214  BP    19  0 1.000000e+00
## GO:0003215  BP    19  0 1.000000e+00
## GO:0001502  BP    19  0 1.000000e+00
## GO:0021535  BP    19  0 1.000000e+00
## GO:1904385  BP    19  0 1.000000e+00
## GO:0006883  BP    19  0 1.000000e+00
## GO:0021692  BP    19  0 1.000000e+00
## GO:0035930  BP    19  0 1.000000e+00
## GO:0033962  BP    19  0 1.000000e+00
## GO:0051818  BP    19  0 1.000000e+00
## GO:0034643  BP    19  0 1.000000e+00
## GO:0051905  BP    19  0 1.000000e+00
## GO:0006071  BP    19  0 1.000000e+00
## GO:0032634  BP    19  0 1.000000e+00
## GO:0051546  BP    19  0 1.000000e+00
## GO:0051883  BP    19  0 1.000000e+00
## GO:0042789  BP    19  0 1.000000e+00
## GO:0060231  BP    19  0 1.000000e+00
## GO:0099118  BP    19  0 1.000000e+00
## GO:0033617  BP    19  0 1.000000e+00
## GO:0048311  BP    19  0 1.000000e+00
## GO:0047497  BP    19  0 1.000000e+00
## GO:0031571  BP    19  0 1.000000e+00
## GO:1902579  BP    19  0 1.000000e+00
## GO:0044766  BP    19  0 1.000000e+00
## GO:0030889  BP    19  0 1.000000e+00
## GO:2000104  BP    19  0 1.000000e+00
## GO:0002710  BP    19  0 1.000000e+00
## GO:0050860  BP    19  0 1.000000e+00
## GO:0048712  BP    19  0 1.000000e+00
## GO:2000773  BP    19  0 1.000000e+00
## GO:0031936  BP    19  0 1.000000e+00
## GO:0050774  BP    19  0 1.000000e+00
## GO:1902236  BP    19  0 1.000000e+00
## GO:0040037  BP    19  0 1.000000e+00
## GO:0034111  BP    19  0 1.000000e+00
## GO:0032695  BP    19  0 1.000000e+00
## GO:0045953  BP    19  0 1.000000e+00
## GO:0010544  BP    19  0 1.000000e+00
## GO:0010766  BP    19  0 1.000000e+00
## GO:0032211  BP    19  0 1.000000e+00
## GO:0040033  BP    19  0 1.000000e+00
## GO:0010529  BP    19  0 1.000000e+00
## GO:0050884  BP    19  0 1.000000e+00
## GO:0034656  BP    19  0 1.000000e+00
## GO:0070989  BP    19  0 1.000000e+00
## GO:0060746  BP    19  0 1.000000e+00
## GO:0030220  BP    19  0 1.000000e+00
## GO:0030859  BP    19  0 1.000000e+00
## GO:0006595  BP    19  0 1.000000e+00
## GO:0044794  BP    19  0 1.000000e+00
## GO:2000251  BP    19  0 1.000000e+00
## GO:0060456  BP    19  0 1.000000e+00
## GO:1900451  BP    19  0 1.000000e+00
## GO:0070875  BP    19  0 1.000000e+00
## GO:0051349  BP    19  0 1.000000e+00
## GO:0090026  BP    19  0 1.000000e+00
## GO:0061081  BP    19  0 1.000000e+00
## GO:0046827  BP    19  0 1.000000e+00
## GO:1904754  BP    19  0 1.000000e+00
## GO:0070208  BP    19  0 1.000000e+00
## GO:0045116  BP    19  0 1.000000e+00
## GO:0098840  BP    19  0 1.000000e+00
## GO:0016075  BP    19  0 1.000000e+00
## GO:0032012  BP    19  0 1.000000e+00
## GO:1900424  BP    19  0 1.000000e+00
## GO:1902259  BP    19  0 1.000000e+00
## GO:1905276  BP    19  0 1.000000e+00
## GO:2000114  BP    19  0 1.000000e+00
## GO:0031998  BP    19  0 1.000000e+00
## GO:2000269  BP    19  0 1.000000e+00
## GO:1903975  BP    19  0 1.000000e+00
## GO:0030852  BP    19  0 1.000000e+00
## GO:0060123  BP    19  0 1.000000e+00
## GO:2000345  BP    19  0 1.000000e+00
## GO:0032656  BP    19  0 1.000000e+00
## GO:0031664  BP    19  0 1.000000e+00
## GO:0010984  BP    19  0 1.000000e+00
## GO:0032823  BP    19  0 1.000000e+00
## GO:1905874  BP    19  0 1.000000e+00
## GO:0090036  BP    19  0 1.000000e+00
## GO:1903214  BP    19  0 1.000000e+00
## GO:0010880  BP    19  0 1.000000e+00
## GO:0032095  BP    19  0 1.000000e+00
## GO:0048172  BP    19  0 1.000000e+00
## GO:0090030  BP    19  0 1.000000e+00
## GO:0002643  BP    19  0 1.000000e+00
## GO:0045974  BP    19  0 1.000000e+00
## GO:0010528  BP    19  0 1.000000e+00
## GO:0010447  BP    19  0 1.000000e+00
## GO:0001975  BP    19  0 1.000000e+00
## GO:0070723  BP    19  0 1.000000e+00
## GO:0035728  BP    19  0 1.000000e+00
## GO:0033194  BP    19  0 1.000000e+00
## GO:0035994  BP    19  0 1.000000e+00
## GO:0072520  BP    19  0 1.000000e+00
## GO:0051238  BP    19  0 1.000000e+00
## GO:0016074  BP    19  0 1.000000e+00
## GO:0034063  BP    19  0 1.000000e+00
## GO:1902644  BP    19  0 1.000000e+00
## GO:0072189  BP    19  0 1.000000e+00
## GO:0080111  BP    20  0 1.000000e+00
## GO:0044783  BP    20  0 1.000000e+00
## GO:0002755  BP    20  0 1.000000e+00
## GO:0032148  BP    20  0 1.000000e+00
## GO:0048490  BP    20  0 1.000000e+00
## GO:0002504  BP    20  0 1.000000e+00
## GO:0006525  BP    20  0 1.000000e+00
## GO:0006699  BP    20  0 1.000000e+00
## GO:0035584  BP    20  0 1.000000e+00
## GO:0098743  BP    20  0 1.000000e+00
## GO:0061323  BP    20  0 1.000000e+00
## GO:0044247  BP    20  0 1.000000e+00
## GO:0046514  BP    20  0 1.000000e+00
## GO:0055064  BP    20  0 1.000000e+00
## GO:0060294  BP    20  0 1.000000e+00
## GO:0046697  BP    20  0 1.000000e+00
## GO:0036336  BP    20  0 1.000000e+00
## GO:0009200  BP    20  0 1.000000e+00
## GO:0050966  BP    20  0 1.000000e+00
## GO:0050910  BP    20  0 1.000000e+00
## GO:1990403  BP    20  0 1.000000e+00
## GO:0048557  BP    20  0 1.000000e+00
## GO:0048245  BP    20  0 1.000000e+00
## GO:0061162  BP    20  0 1.000000e+00
## GO:0008210  BP    20  0 1.000000e+00
## GO:1990182  BP    20  0 1.000000e+00
## GO:0042730  BP    20  0 1.000000e+00
## GO:0001573  BP    20  0 1.000000e+00
## GO:0001696  BP    20  0 1.000000e+00
## GO:0006688  BP    20  0 1.000000e+00
## GO:0070828  BP    20  0 1.000000e+00
## GO:0070498  BP    20  0 1.000000e+00
## GO:0016226  BP    20  0 1.000000e+00
## GO:0051383  BP    20  0 1.000000e+00
## GO:0006089  BP    20  0 1.000000e+00
## GO:0002523  BP    20  0 1.000000e+00
## GO:0006691  BP    20  0 1.000000e+00
## GO:0001946  BP    20  0 1.000000e+00
## GO:0006379  BP    20  0 1.000000e+00
## GO:0002313  BP    20  0 1.000000e+00
## GO:0035855  BP    20  0 1.000000e+00
## GO:0031163  BP    20  0 1.000000e+00
## GO:0072243  BP    20  0 1.000000e+00
## GO:0044819  BP    20  0 1.000000e+00
## GO:0032288  BP    20  0 1.000000e+00
## GO:0043011  BP    20  0 1.000000e+00
## GO:0045623  BP    20  0 1.000000e+00
## GO:1903392  BP    20  0 1.000000e+00
## GO:2000726  BP    20  0 1.000000e+00
## GO:0071157  BP    20  0 1.000000e+00
## GO:0051195  BP    20  0 1.000000e+00
## GO:0051481  BP    20  0 1.000000e+00
## GO:1902254  BP    20  0 1.000000e+00
## GO:0033033  BP    20  0 1.000000e+00
## GO:0002716  BP    20  0 1.000000e+00
## GO:0048261  BP    20  0 1.000000e+00
## GO:0090201  BP    20  0 1.000000e+00
## GO:0045986  BP    20  0 1.000000e+00
## GO:2000678  BP    20  0 1.000000e+00
## GO:0072079  BP    20  0 1.000000e+00
## GO:0043931  BP    20  0 1.000000e+00
## GO:0034377  BP    20  0 1.000000e+00
## GO:0034369  BP    20  0 1.000000e+00
## GO:0097320  BP    20  0 1.000000e+00
## GO:0036344  BP    20  0 1.000000e+00
## GO:1902993  BP    20  0 1.000000e+00
## GO:0033605  BP    20  0 1.000000e+00
## GO:0033630  BP    20  0 1.000000e+00
## GO:1900409  BP    20  0 1.000000e+00
## GO:0045821  BP    20  0 1.000000e+00
## GO:0045838  BP    20  0 1.000000e+00
## GO:0045948  BP    20  0 1.000000e+00
## GO:0050434  BP    20  0 1.000000e+00
## GO:0018279  BP    20  0 1.000000e+00
## GO:0034368  BP    20  0 1.000000e+00
## GO:0042451  BP    20  0 1.000000e+00
## GO:0046129  BP    20  0 1.000000e+00
## GO:0046131  BP    20  0 1.000000e+00
## GO:0070269  BP    20  0 1.000000e+00
## GO:0031167  BP    20  0 1.000000e+00
## GO:0002577  BP    20  0 1.000000e+00
## GO:2000136  BP    20  0 1.000000e+00
## GO:0042053  BP    20  0 1.000000e+00
## GO:1900101  BP    20  0 1.000000e+00
## GO:1904994  BP    20  0 1.000000e+00
## GO:0033599  BP    20  0 1.000000e+00
## GO:1901028  BP    20  0 1.000000e+00
## GO:1900151  BP    20  0 1.000000e+00
## GO:1903798  BP    20  0 1.000000e+00
## GO:0010869  BP    20  0 1.000000e+00
## GO:0034143  BP    20  0 1.000000e+00
## GO:0060307  BP    20  0 1.000000e+00
## GO:0072087  BP    20  0 1.000000e+00
## GO:0014075  BP    20  0 1.000000e+00
## GO:1990776  BP    20  0 1.000000e+00
## GO:0010039  BP    20  0 1.000000e+00
## GO:0032495  BP    20  0 1.000000e+00
## GO:0010842  BP    20  0 1.000000e+00
## GO:0008090  BP    20  0 1.000000e+00
## GO:0034472  BP    20  0 1.000000e+00
## GO:0099514  BP    20  0 1.000000e+00
## GO:0099517  BP    20  0 1.000000e+00
## GO:0046653  BP    20  0 1.000000e+00
## GO:0070633  BP    20  0 1.000000e+00
## GO:0007035  BP    20  0 1.000000e+00
## GO:0048199  BP    20  0 1.000000e+00
## GO:0042178  BP    20  0 1.000000e+00
## GO:0043369  BP    21  0 1.000000e+00
## GO:0015813  BP    21  0 1.000000e+00
## GO:0007190  BP    21  0 1.000000e+00
## GO:0017000  BP    21  0 1.000000e+00
## GO:0008356  BP    21  0 1.000000e+00
## GO:0003283  BP    21  0 1.000000e+00
## GO:0032291  BP    21  0 1.000000e+00
## GO:0051016  BP    21  0 1.000000e+00
## GO:0022010  BP    21  0 1.000000e+00
## GO:0007635  BP    21  0 1.000000e+00
## GO:0000469  BP    21  0 1.000000e+00
## GO:0051220  BP    21  0 1.000000e+00
## GO:0050962  BP    21  0 1.000000e+00
## GO:0050908  BP    21  0 1.000000e+00
## GO:0046339  BP    21  0 1.000000e+00
## GO:0061339  BP    21  0 1.000000e+00
## GO:0044346  BP    21  0 1.000000e+00
## GO:0003094  BP    21  0 1.000000e+00
## GO:0006541  BP    21  0 1.000000e+00
## GO:0007625  BP    21  0 1.000000e+00
## GO:0006783  BP    21  0 1.000000e+00
## GO:0043984  BP    21  0 1.000000e+00
## GO:0060333  BP    21  0 1.000000e+00
## GO:0045475  BP    21  0 1.000000e+00
## GO:0036303  BP    21  0 1.000000e+00
## GO:0000466  BP    21  0 1.000000e+00
## GO:0042438  BP    21  0 1.000000e+00
## GO:0032400  BP    21  0 1.000000e+00
## GO:0031579  BP    21  0 1.000000e+00
## GO:0072170  BP    21  0 1.000000e+00
## GO:0006120  BP    21  0 1.000000e+00
## GO:0008053  BP    21  0 1.000000e+00
## GO:0007095  BP    21  0 1.000000e+00
## GO:0046716  BP    21  0 1.000000e+00
## GO:0051450  BP    21  0 1.000000e+00
## GO:1901223  BP    21  0 1.000000e+00
## GO:0032682  BP    21  0 1.000000e+00
## GO:0060457  BP    21  0 1.000000e+00
## GO:0046325  BP    21  0 1.000000e+00
## GO:0032693  BP    21  0 1.000000e+00
## GO:0051447  BP    21  0 1.000000e+00
## GO:1901017  BP    21  0 1.000000e+00
## GO:0001976  BP    21  0 1.000000e+00
## GO:0140058  BP    21  0 1.000000e+00
## GO:0098969  BP    21  0 1.000000e+00
## GO:0048486  BP    21  0 1.000000e+00
## GO:0018196  BP    21  0 1.000000e+00
## GO:0035357  BP    21  0 1.000000e+00
## GO:0006907  BP    21  0 1.000000e+00
## GO:0046174  BP    21  0 1.000000e+00
## GO:0032332  BP    21  0 1.000000e+00
## GO:0051197  BP    21  0 1.000000e+00
## GO:1900017  BP    21  0 1.000000e+00
## GO:0010560  BP    21  0 1.000000e+00
## GO:0031065  BP    21  0 1.000000e+00
## GO:0002863  BP    21  0 1.000000e+00
## GO:0070230  BP    21  0 1.000000e+00
## GO:0010759  BP    21  0 1.000000e+00
## GO:2001224  BP    21  0 1.000000e+00
## GO:0051770  BP    21  0 1.000000e+00
## GO:0030813  BP    21  0 1.000000e+00
## GO:0032930  BP    21  0 1.000000e+00
## GO:1901522  BP    21  0 1.000000e+00
## GO:0042535  BP    21  0 1.000000e+00
## GO:0048569  BP    21  0 1.000000e+00
## GO:0097107  BP    21  0 1.000000e+00
## GO:0000413  BP    21  0 1.000000e+00
## GO:0034367  BP    21  0 1.000000e+00
## GO:0003177  BP    21  0 1.000000e+00
## GO:2000209  BP    21  0 1.000000e+00
## GO:0042069  BP    21  0 1.000000e+00
## GO:2001032  BP    21  0 1.000000e+00
## GO:0006349  BP    21  0 1.000000e+00
## GO:0051023  BP    21  0 1.000000e+00
## GO:2000482  BP    21  0 1.000000e+00
## GO:1901623  BP    21  0 1.000000e+00
## GO:0010743  BP    21  0 1.000000e+00
## GO:0051900  BP    21  0 1.000000e+00
## GO:1901673  BP    21  0 1.000000e+00
## GO:0090330  BP    21  0 1.000000e+00
## GO:1901626  BP    21  0 1.000000e+00
## GO:0070920  BP    21  0 1.000000e+00
## GO:0010866  BP    21  0 1.000000e+00
## GO:1904666  BP    21  0 1.000000e+00
## GO:0014808  BP    21  0 1.000000e+00
## GO:0019430  BP    21  0 1.000000e+00
## GO:0098780  BP    21  0 1.000000e+00
## GO:0034694  BP    21  0 1.000000e+00
## GO:0031290  BP    21  0 1.000000e+00
## GO:0000028  BP    21  0 1.000000e+00
## GO:0044273  BP    21  0 1.000000e+00
## GO:0002097  BP    21  0 1.000000e+00
## GO:0043586  BP    21  0 1.000000e+00
## GO:0071577  BP    21  0 1.000000e+00
## GO:0035510  BP    22  0 1.000000e+00
## GO:0006353  BP    22  0 1.000000e+00
## GO:0035493  BP    22  0 1.000000e+00
## GO:0060009  BP    22  0 1.000000e+00
## GO:0045063  BP    22  0 1.000000e+00
## GO:0019400  BP    22  0 1.000000e+00
## GO:0048532  BP    22  0 1.000000e+00
## GO:0009067  BP    22  0 1.000000e+00
## GO:0042537  BP    22  0 1.000000e+00
## GO:0070977  BP    22  0 1.000000e+00
## GO:0060602  BP    22  0 1.000000e+00
## GO:0072111  BP    22  0 1.000000e+00
## GO:0071475  BP    22  0 1.000000e+00
## GO:0071870  BP    22  0 1.000000e+00
## GO:0003433  BP    22  0 1.000000e+00
## GO:0030204  BP    22  0 1.000000e+00
## GO:0002374  BP    22  0 1.000000e+00
## GO:0002183  BP    22  0 1.000000e+00
## GO:0097062  BP    22  0 1.000000e+00
## GO:0098581  BP    22  0 1.000000e+00
## GO:0016048  BP    22  0 1.000000e+00
## GO:0021516  BP    22  0 1.000000e+00
## GO:0043153  BP    22  0 1.000000e+00
## GO:0051654  BP    22  0 1.000000e+00
## GO:1903540  BP    22  0 1.000000e+00
## GO:0030252  BP    22  0 1.000000e+00
## GO:0003418  BP    22  0 1.000000e+00
## GO:0044851  BP    22  0 1.000000e+00
## GO:0070734  BP    22  0 1.000000e+00
## GO:0070841  BP    22  0 1.000000e+00
## GO:0060080  BP    22  0 1.000000e+00
## GO:0032616  BP    22  0 1.000000e+00
## GO:0060575  BP    22  0 1.000000e+00
## GO:0032367  BP    22  0 1.000000e+00
## GO:0032366  BP    22  0 1.000000e+00
## GO:0007141  BP    22  0 1.000000e+00
## GO:0060749  BP    22  0 1.000000e+00
## GO:0061377  BP    22  0 1.000000e+00
## GO:0072273  BP    22  0 1.000000e+00
## GO:0032042  BP    22  0 1.000000e+00
## GO:0000423  BP    22  0 1.000000e+00
## GO:0032780  BP    22  0 1.000000e+00
## GO:1901889  BP    22  0 1.000000e+00
## GO:0032331  BP    22  0 1.000000e+00
## GO:0045683  BP    22  0 1.000000e+00
## GO:0032691  BP    22  0 1.000000e+00
## GO:0046823  BP    22  0 1.000000e+00
## GO:2000757  BP    22  0 1.000000e+00
## GO:0014912  BP    22  0 1.000000e+00
## GO:0046597  BP    22  0 1.000000e+00
## GO:0032897  BP    22  0 1.000000e+00
## GO:0048857  BP    22  0 1.000000e+00
## GO:0098877  BP    22  0 1.000000e+00
## GO:0001780  BP    22  0 1.000000e+00
## GO:0015874  BP    22  0 1.000000e+00
## GO:0048339  BP    22  0 1.000000e+00
## GO:0018230  BP    22  0 1.000000e+00
## GO:0018231  BP    22  0 1.000000e+00
## GO:0090382  BP    22  0 1.000000e+00
## GO:0051875  BP    22  0 1.000000e+00
## GO:0071800  BP    22  0 1.000000e+00
## GO:0045624  BP    22  0 1.000000e+00
## GO:0046641  BP    22  0 1.000000e+00
## GO:0050857  BP    22  0 1.000000e+00
## GO:0010666  BP    22  0 1.000000e+00
## GO:2000353  BP    22  0 1.000000e+00
## GO:0045606  BP    22  0 1.000000e+00
## GO:1903055  BP    22  0 1.000000e+00
## GO:0046628  BP    22  0 1.000000e+00
## GO:0033145  BP    22  0 1.000000e+00
## GO:0010884  BP    22  0 1.000000e+00
## GO:0031643  BP    22  0 1.000000e+00
## GO:1901741  BP    22  0 1.000000e+00
## GO:2000010  BP    22  0 1.000000e+00
## GO:1902307  BP    22  0 1.000000e+00
## GO:0003084  BP    22  0 1.000000e+00
## GO:1904469  BP    22  0 1.000000e+00
## GO:0099170  BP    22  0 1.000000e+00
## GO:0071459  BP    22  0 1.000000e+00
## GO:0035268  BP    22  0 1.000000e+00
## GO:0002864  BP    22  0 1.000000e+00
## GO:0032098  BP    22  0 1.000000e+00
## GO:0046599  BP    22  0 1.000000e+00
## GO:2001026  BP    22  0 1.000000e+00
## GO:0051797  BP    22  0 1.000000e+00
## GO:0002837  BP    22  0 1.000000e+00
## GO:0072215  BP    22  0 1.000000e+00
## GO:0032462  BP    22  0 1.000000e+00
## GO:1902914  BP    22  0 1.000000e+00
## GO:0002834  BP    22  0 1.000000e+00
## GO:0007063  BP    22  0 1.000000e+00
## GO:1905562  BP    22  0 1.000000e+00
## GO:1903514  BP    22  0 1.000000e+00
## GO:0097205  BP    22  0 1.000000e+00
## GO:0008535  BP    22  0 1.000000e+00
## GO:0010996  BP    22  0 1.000000e+00
## GO:0051602  BP    22  0 1.000000e+00
## GO:0034405  BP    22  0 1.000000e+00
## GO:0014850  BP    22  0 1.000000e+00
## GO:0036314  BP    22  0 1.000000e+00
## GO:0035634  BP    22  0 1.000000e+00
## GO:0002115  BP    22  0 1.000000e+00
## GO:0007130  BP    22  0 1.000000e+00
## GO:0070242  BP    22  0 1.000000e+00
## GO:0009404  BP    22  0 1.000000e+00
## GO:0060438  BP    22  0 1.000000e+00
## GO:0032196  BP    22  0 1.000000e+00
## GO:0003323  BP    22  0 1.000000e+00
## GO:0101023  BP    22  0 1.000000e+00
## GO:0099625  BP    22  0 1.000000e+00
## GO:0015986  BP    23  0 1.000000e+00
## GO:0022616  BP    23  0 1.000000e+00
## GO:0003176  BP    23  0 1.000000e+00
## GO:0002093  BP    23  0 1.000000e+00
## GO:0015721  BP    23  0 1.000000e+00
## GO:0022403  BP    23  0 1.000000e+00
## GO:0072202  BP    23  0 1.000000e+00
## GO:0071276  BP    23  0 1.000000e+00
## GO:0071359  BP    23  0 1.000000e+00
## GO:0071218  BP    23  0 1.000000e+00
## GO:0071868  BP    23  0 1.000000e+00
## GO:0071450  BP    23  0 1.000000e+00
## GO:0071467  BP    23  0 1.000000e+00
## GO:0071451  BP    23  0 1.000000e+00
## GO:0039528  BP    23  0 1.000000e+00
## GO:0015985  BP    23  0 1.000000e+00
## GO:0008211  BP    23  0 1.000000e+00
## GO:0046475  BP    23  0 1.000000e+00
## GO:0032959  BP    23  0 1.000000e+00
## GO:0060972  BP    23  0 1.000000e+00
## GO:0034383  BP    23  0 1.000000e+00
## GO:0002320  BP    23  0 1.000000e+00
## GO:0051457  BP    23  0 1.000000e+00
## GO:0030539  BP    23  0 1.000000e+00
## GO:0097502  BP    23  0 1.000000e+00
## GO:0006582  BP    23  0 1.000000e+00
## GO:0048333  BP    23  0 1.000000e+00
## GO:0006346  BP    23  0 1.000000e+00
## GO:0007020  BP    23  0 1.000000e+00
## GO:1902410  BP    23  0 1.000000e+00
## GO:0072337  BP    23  0 1.000000e+00
## GO:0002903  BP    23  0 1.000000e+00
## GO:0043371  BP    23  0 1.000000e+00
## GO:0045736  BP    23  0 1.000000e+00
## GO:0002719  BP    23  0 1.000000e+00
## GO:0001911  BP    23  0 1.000000e+00
## GO:0050765  BP    23  0 1.000000e+00
## GO:1903077  BP    23  0 1.000000e+00
## GO:1903306  BP    23  0 1.000000e+00
## GO:0009648  BP    23  0 1.000000e+00
## GO:0000272  BP    23  0 1.000000e+00
## GO:0046931  BP    23  0 1.000000e+00
## GO:0090190  BP    23  0 1.000000e+00
## GO:1903020  BP    23  0 1.000000e+00
## GO:0032727  BP    23  0 1.000000e+00
## GO:0010592  BP    23  0 1.000000e+00
## GO:0031954  BP    23  0 1.000000e+00
## GO:0032461  BP    23  0 1.000000e+00
## GO:1902884  BP    23  0 1.000000e+00
## GO:0010663  BP    23  0 1.000000e+00
## GO:0045943  BP    23  0 1.000000e+00
## GO:0032968  BP    23  0 1.000000e+00
## GO:0060261  BP    23  0 1.000000e+00
## GO:0043687  BP    23  0 1.000000e+00
## GO:0036010  BP    23  0 1.000000e+00
## GO:0006144  BP    23  0 1.000000e+00
## GO:0009154  BP    23  0 1.000000e+00
## GO:0060390  BP    23  0 1.000000e+00
## GO:2000316  BP    23  0 1.000000e+00
## GO:0010874  BP    23  0 1.000000e+00
## GO:0099149  BP    23  0 1.000000e+00
## GO:0010738  BP    23  0 1.000000e+00
## GO:0043576  BP    23  0 1.000000e+00
## GO:2000831  BP    23  0 1.000000e+00
## GO:1900242  BP    23  0 1.000000e+00
## GO:0051969  BP    23  0 1.000000e+00
## GO:0071869  BP    23  0 1.000000e+00
## GO:0009261  BP    23  0 1.000000e+00
## GO:0006837  BP    23  0 1.000000e+00
## GO:0023019  BP    23  0 1.000000e+00
## GO:0043501  BP    23  0 1.000000e+00
## GO:0048485  BP    23  0 1.000000e+00
## GO:0045056  BP    23  0 1.000000e+00
## GO:0097186  BP    24  0 1.000000e+00
## GO:0003181  BP    24  0 1.000000e+00
## GO:0098869  BP    24  0 1.000000e+00
## GO:0071392  BP    24  0 1.000000e+00
## GO:0006882  BP    24  0 1.000000e+00
## GO:0009190  BP    24  0 1.000000e+00
## GO:0052652  BP    24  0 1.000000e+00
## GO:0034311  BP    24  0 1.000000e+00
## GO:0009048  BP    24  0 1.000000e+00
## GO:0003272  BP    24  0 1.000000e+00
## GO:0072677  BP    24  0 1.000000e+00
## GO:0070199  BP    24  0 1.000000e+00
## GO:0042044  BP    24  0 1.000000e+00
## GO:0009065  BP    24  0 1.000000e+00
## GO:0016578  BP    24  0 1.000000e+00
## GO:0002418  BP    24  0 1.000000e+00
## GO:0033622  BP    24  0 1.000000e+00
## GO:0072643  BP    24  0 1.000000e+00
## GO:0072207  BP    24  0 1.000000e+00
## GO:0042474  BP    24  0 1.000000e+00
## GO:0051882  BP    24  0 1.000000e+00
## GO:0070584  BP    24  0 1.000000e+00
## GO:0006312  BP    24  0 1.000000e+00
## GO:0007064  BP    24  0 1.000000e+00
## GO:0052472  BP    24  0 1.000000e+00
## GO:0043921  BP    24  0 1.000000e+00
## GO:0019048  BP    24  0 1.000000e+00
## GO:0052312  BP    24  0 1.000000e+00
## GO:1905208  BP    24  0 1.000000e+00
## GO:0050687  BP    24  0 1.000000e+00
## GO:0045922  BP    24  0 1.000000e+00
## GO:0031061  BP    24  0 1.000000e+00
## GO:0048025  BP    24  0 1.000000e+00
## GO:1903204  BP    24  0 1.000000e+00
## GO:1901984  BP    24  0 1.000000e+00
## GO:0034104  BP    24  0 1.000000e+00
## GO:0097150  BP    24  0 1.000000e+00
## GO:0021889  BP    24  0 1.000000e+00
## GO:0030728  BP    24  0 1.000000e+00
## GO:0046856  BP    24  0 1.000000e+00
## GO:0002693  BP    24  0 1.000000e+00
## GO:2000637  BP    24  0 1.000000e+00
## GO:0032753  BP    24  0 1.000000e+00
## GO:0006301  BP    24  0 1.000000e+00
## GO:0010499  BP    24  0 1.000000e+00
## GO:0007205  BP    24  0 1.000000e+00
## GO:0065005  BP    24  0 1.000000e+00
## GO:0006221  BP    24  0 1.000000e+00
## GO:0099623  BP    24  0 1.000000e+00
## GO:0035561  BP    24  0 1.000000e+00
## GO:0048670  BP    24  0 1.000000e+00
## GO:0032878  BP    24  0 1.000000e+00
## GO:0051580  BP    24  0 1.000000e+00
## GO:0043496  BP    24  0 1.000000e+00
## GO:0033233  BP    24  0 1.000000e+00
## GO:1900120  BP    24  0 1.000000e+00
## GO:1902683  BP    24  0 1.000000e+00
## GO:0035813  BP    24  0 1.000000e+00
## GO:0032928  BP    24  0 1.000000e+00
## GO:0046685  BP    24  0 1.000000e+00
## GO:0035455  BP    24  0 1.000000e+00
## GO:0071867  BP    24  0 1.000000e+00
## GO:0042572  BP    24  0 1.000000e+00
## GO:0062009  BP    24  0 1.000000e+00
## GO:0006706  BP    24  0 1.000000e+00
## GO:0021544  BP    24  0 1.000000e+00
## GO:0034505  BP    24  0 1.000000e+00
## GO:0001829  BP    24  0 1.000000e+00
## GO:0019068  BP    24  0 1.000000e+00
## GO:0090114  BP    25  0 1.000000e+00
## GO:0095500  BP    25  0 1.000000e+00
## GO:0071616  BP    25  0 1.000000e+00
## GO:0030325  BP    25  0 1.000000e+00
## GO:0031100  BP    25  0 1.000000e+00
## GO:0002478  BP    25  0 1.000000e+00
## GO:0007413  BP    25  0 1.000000e+00
## GO:0071711  BP    25  0 1.000000e+00
## GO:0048148  BP    25  0 1.000000e+00
## GO:0048266  BP    25  0 1.000000e+00
## GO:0086019  BP    25  0 1.000000e+00
## GO:0071312  BP    25  0 1.000000e+00
## GO:0071234  BP    25  0 1.000000e+00
## GO:0021895  BP    25  0 1.000000e+00
## GO:0021801  BP    25  0 1.000000e+00
## GO:0050832  BP    25  0 1.000000e+00
## GO:0009595  BP    25  0 1.000000e+00
## GO:0032469  BP    25  0 1.000000e+00
## GO:0009649  BP    25  0 1.000000e+00
## GO:0003351  BP    25  0 1.000000e+00
## GO:0010669  BP    25  0 1.000000e+00
## GO:0085029  BP    25  0 1.000000e+00
## GO:0006760  BP    25  0 1.000000e+00
## GO:1901658  BP    25  0 1.000000e+00
## GO:0019320  BP    25  0 1.000000e+00
## GO:0043486  BP    25  0 1.000000e+00
## GO:0042430  BP    25  0 1.000000e+00
## GO:0006925  BP    25  0 1.000000e+00
## GO:0072606  BP    25  0 1.000000e+00
## GO:0010742  BP    25  0 1.000000e+00
## GO:0006298  BP    25  0 1.000000e+00
## GO:0046426  BP    25  0 1.000000e+00
## GO:0035024  BP    25  0 1.000000e+00
## GO:0090344  BP    25  0 1.000000e+00
## GO:2001039  BP    25  0 1.000000e+00
## GO:1904030  BP    25  0 1.000000e+00
## GO:0042059  BP    25  0 1.000000e+00
## GO:1903206  BP    25  0 1.000000e+00
## GO:1902230  BP    25  0 1.000000e+00
## GO:0032515  BP    25  0 1.000000e+00
## GO:0120033  BP    25  0 1.000000e+00
## GO:1904376  BP    25  0 1.000000e+00
## GO:1901032  BP    25  0 1.000000e+00
## GO:1903671  BP    25  0 1.000000e+00
## GO:2000737  BP    25  0 1.000000e+00
## GO:0010894  BP    25  0 1.000000e+00
## GO:0045939  BP    25  0 1.000000e+00
## GO:1905809  BP    25  0 1.000000e+00
## GO:1904357  BP    25  0 1.000000e+00
## GO:0032480  BP    25  0 1.000000e+00
## GO:0070050  BP    25  0 1.000000e+00
## GO:0106030  BP    25  0 1.000000e+00
## GO:0098810  BP    25  0 1.000000e+00
## GO:0030903  BP    25  0 1.000000e+00
## GO:0000289  BP    25  0 1.000000e+00
## GO:0043171  BP    25  0 1.000000e+00
## GO:0018200  BP    25  0 1.000000e+00
## GO:0014821  BP    25  0 1.000000e+00
## GO:0006817  BP    25  0 1.000000e+00
## GO:0031639  BP    25  0 1.000000e+00
## GO:0030194  BP    25  0 1.000000e+00
## GO:0090280  BP    25  0 1.000000e+00
## GO:0032376  BP    25  0 1.000000e+00
## GO:0045737  BP    25  0 1.000000e+00
## GO:0051894  BP    25  0 1.000000e+00
## GO:1900048  BP    25  0 1.000000e+00
## GO:0061213  BP    25  0 1.000000e+00
## GO:0071677  BP    25  0 1.000000e+00
## GO:0001956  BP    25  0 1.000000e+00
## GO:0060148  BP    25  0 1.000000e+00
## GO:1901798  BP    25  0 1.000000e+00
## GO:0032373  BP    25  0 1.000000e+00
## GO:0034123  BP    25  0 1.000000e+00
## GO:2000679  BP    25  0 1.000000e+00
## GO:0051443  BP    25  0 1.000000e+00
## GO:0018126  BP    25  0 1.000000e+00
## GO:0051205  BP    25  0 1.000000e+00
## GO:0032800  BP    25  0 1.000000e+00
## GO:0060004  BP    25  0 1.000000e+00
## GO:2000765  BP    25  0 1.000000e+00
## GO:1903649  BP    25  0 1.000000e+00
## GO:1903747  BP    25  0 1.000000e+00
## GO:1905939  BP    25  0 1.000000e+00
## GO:0043567  BP    25  0 1.000000e+00
## GO:0090140  BP    25  0 1.000000e+00
## GO:1901739  BP    25  0 1.000000e+00
## GO:0150077  BP    25  0 1.000000e+00
## GO:0010640  BP    25  0 1.000000e+00
## GO:0070861  BP    25  0 1.000000e+00
## GO:0032104  BP    25  0 1.000000e+00
## GO:0032107  BP    25  0 1.000000e+00
## GO:0060338  BP    25  0 1.000000e+00
## GO:1904752  BP    25  0 1.000000e+00
## GO:0010165  BP    25  0 1.000000e+00
## GO:0046688  BP    25  0 1.000000e+00
## GO:0055094  BP    25  0 1.000000e+00
## GO:0051788  BP    25  0 1.000000e+00
## GO:0080053  BP    25  0 1.000000e+00
## GO:0042573  BP    25  0 1.000000e+00
## GO:0050951  BP    25  0 1.000000e+00
## GO:1903831  BP    25  0 1.000000e+00
## GO:0021513  BP    25  0 1.000000e+00
## GO:0031629  BP    25  0 1.000000e+00
## GO:0070193  BP    25  0 1.000000e+00
## GO:0022030  BP    25  0 1.000000e+00
## GO:0035384  BP    25  0 1.000000e+00
## GO:0042403  BP    25  0 1.000000e+00
## GO:1904738  BP    25  0 1.000000e+00
## GO:0055069  BP    25  0 1.000000e+00
## GO:0000737  BP    26  0 1.000000e+00
## GO:0051123  BP    26  0 1.000000e+00
## GO:0089718  BP    26  0 1.000000e+00
## GO:0006026  BP    26  0 1.000000e+00
## GO:0048799  BP    26  0 1.000000e+00
## GO:0045117  BP    26  0 1.000000e+00
## GO:0014898  BP    26  0 1.000000e+00
## GO:0055003  BP    26  0 1.000000e+00
## GO:0009713  BP    26  0 1.000000e+00
## GO:0042423  BP    26  0 1.000000e+00
## GO:0071474  BP    26  0 1.000000e+00
## GO:0071549  BP    26  0 1.000000e+00
## GO:0007620  BP    26  0 1.000000e+00
## GO:0007549  BP    26  0 1.000000e+00
## GO:0072575  BP    26  0 1.000000e+00
## GO:0061436  BP    26  0 1.000000e+00
## GO:0090077  BP    26  0 1.000000e+00
## GO:0072012  BP    26  0 1.000000e+00
## GO:1901071  BP    26  0 1.000000e+00
## GO:0072574  BP    26  0 1.000000e+00
## GO:0033522  BP    26  0 1.000000e+00
## GO:0045109  BP    26  0 1.000000e+00
## GO:0006891  BP    26  0 1.000000e+00
## GO:0016556  BP    26  0 1.000000e+00
## GO:0009299  BP    26  0 1.000000e+00
## GO:0000460  BP    26  0 1.000000e+00
## GO:0034453  BP    26  0 1.000000e+00
## GO:0032528  BP    26  0 1.000000e+00
## GO:0099010  BP    26  0 1.000000e+00
## GO:0003299  BP    26  0 1.000000e+00
## GO:1903579  BP    26  0 1.000000e+00
## GO:1904893  BP    26  0 1.000000e+00
## GO:0070233  BP    26  0 1.000000e+00
## GO:0050858  BP    26  0 1.000000e+00
## GO:2000780  BP    26  0 1.000000e+00
## GO:1901380  BP    26  0 1.000000e+00
## GO:0048642  BP    26  0 1.000000e+00
## GO:0051497  BP    26  0 1.000000e+00
## GO:0007263  BP    26  0 1.000000e+00
## GO:0051767  BP    26  0 1.000000e+00
## GO:0006730  BP    26  0 1.000000e+00
## GO:0006779  BP    26  0 1.000000e+00
## GO:0042104  BP    26  0 1.000000e+00
## GO:1900078  BP    26  0 1.000000e+00
## GO:0045742  BP    26  0 1.000000e+00
## GO:1900273  BP    26  0 1.000000e+00
## GO:1905523  BP    26  0 1.000000e+00
## GO:0010863  BP    26  0 1.000000e+00
## GO:0050927  BP    26  0 1.000000e+00
## GO:2000738  BP    26  0 1.000000e+00
## GO:0090208  BP    26  0 1.000000e+00
## GO:0036342  BP    26  0 1.000000e+00
## GO:0034067  BP    26  0 1.000000e+00
## GO:0006213  BP    26  0 1.000000e+00
## GO:0000154  BP    26  0 1.000000e+00
## GO:2000311  BP    26  0 1.000000e+00
## GO:0051125  BP    26  0 1.000000e+00
## GO:0045761  BP    26  0 1.000000e+00
## GO:1903010  BP    26  0 1.000000e+00
## GO:0090189  BP    26  0 1.000000e+00
## GO:0098901  BP    26  0 1.000000e+00
## GO:0007176  BP    26  0 1.000000e+00
## GO:0051570  BP    26  0 1.000000e+00
## GO:0070129  BP    26  0 1.000000e+00
## GO:0090025  BP    26  0 1.000000e+00
## GO:0051769  BP    26  0 1.000000e+00
## GO:2000050  BP    26  0 1.000000e+00
## GO:0033688  BP    26  0 1.000000e+00
## GO:1902175  BP    26  0 1.000000e+00
## GO:1902473  BP    26  0 1.000000e+00
## GO:0010155  BP    26  0 1.000000e+00
## GO:1904353  BP    26  0 1.000000e+00
## GO:0035809  BP    26  0 1.000000e+00
## GO:0035812  BP    26  0 1.000000e+00
## GO:0000303  BP    26  0 1.000000e+00
## GO:0016180  BP    26  0 1.000000e+00
## GO:0007289  BP    26  0 1.000000e+00
## GO:0035929  BP    26  0 1.000000e+00
## GO:0016082  BP    26  0 1.000000e+00
## GO:0019433  BP    26  0 1.000000e+00
## GO:0060065  BP    26  0 1.000000e+00
## GO:0099500  BP    26  0 1.000000e+00
## GO:0009394  BP    27  0 1.000000e+00
## GO:0036037  BP    27  0 1.000000e+00
## GO:0031365  BP    27  0 1.000000e+00
## GO:0060008  BP    27  0 1.000000e+00
## GO:0003171  BP    27  0 1.000000e+00
## GO:0060219  BP    27  0 1.000000e+00
## GO:0014887  BP    27  0 1.000000e+00
## GO:0060536  BP    27  0 1.000000e+00
## GO:1905145  BP    27  0 1.000000e+00
## GO:0071361  BP    27  0 1.000000e+00
## GO:0071402  BP    27  0 1.000000e+00
## GO:0071472  BP    27  0 1.000000e+00
## GO:0090103  BP    27  0 1.000000e+00
## GO:0019692  BP    27  0 1.000000e+00
## GO:0008340  BP    27  0 1.000000e+00
## GO:0035987  BP    27  0 1.000000e+00
## GO:1903513  BP    27  0 1.000000e+00
## GO:0032509  BP    27  0 1.000000e+00
## GO:0021871  BP    27  0 1.000000e+00
## GO:0007214  BP    27  0 1.000000e+00
## GO:0016577  BP    27  0 1.000000e+00
## GO:0070076  BP    27  0 1.000000e+00
## GO:0042538  BP    27  0 1.000000e+00
## GO:0048305  BP    27  0 1.000000e+00
## GO:0032957  BP    27  0 1.000000e+00
## GO:0032365  BP    27  0 1.000000e+00
## GO:0061440  BP    27  0 1.000000e+00
## GO:0060713  BP    27  0 1.000000e+00
## GO:0050901  BP    27  0 1.000000e+00
## GO:0006376  BP    27  0 1.000000e+00
## GO:0000470  BP    27  0 1.000000e+00
## GO:0002335  BP    27  0 1.000000e+00
## GO:0003338  BP    27  0 1.000000e+00
## GO:0051560  BP    27  0 1.000000e+00
## GO:0045738  BP    27  0 1.000000e+00
## GO:1901185  BP    27  0 1.000000e+00
## GO:0046639  BP    27  0 1.000000e+00
## GO:0048843  BP    27  0 1.000000e+00
## GO:0050849  BP    27  0 1.000000e+00
## GO:0031342  BP    27  0 1.000000e+00
## GO:0051354  BP    27  0 1.000000e+00
## GO:0061099  BP    27  0 1.000000e+00
## GO:1900543  BP    27  0 1.000000e+00
## GO:2000272  BP    27  0 1.000000e+00
## GO:0003085  BP    27  0 1.000000e+00
## GO:0009163  BP    27  0 1.000000e+00
## GO:0018195  BP    27  0 1.000000e+00
## GO:0045332  BP    27  0 1.000000e+00
## GO:0010971  BP    27  0 1.000000e+00
## GO:0046852  BP    27  0 1.000000e+00
## GO:0045780  BP    27  0 1.000000e+00
## GO:0045956  BP    27  0 1.000000e+00
## GO:2000727  BP    27  0 1.000000e+00
## GO:0060045  BP    27  0 1.000000e+00
## GO:0042753  BP    27  0 1.000000e+00
## GO:1903861  BP    27  0 1.000000e+00
## GO:0061003  BP    27  0 1.000000e+00
## GO:0010460  BP    27  0 1.000000e+00
## GO:0045830  BP    27  0 1.000000e+00
## GO:1903489  BP    27  0 1.000000e+00
## GO:0002052  BP    27  0 1.000000e+00
## GO:1901018  BP    27  0 1.000000e+00
## GO:0036003  BP    27  0 1.000000e+00
## GO:0071108  BP    27  0 1.000000e+00
## GO:0006515  BP    27  0 1.000000e+00
## GO:0072528  BP    27  0 1.000000e+00
## GO:0032801  BP    27  0 1.000000e+00
## GO:0032925  BP    27  0 1.000000e+00
## GO:1901532  BP    27  0 1.000000e+00
## GO:0031440  BP    27  0 1.000000e+00
## GO:0032069  BP    27  0 1.000000e+00
## GO:0050926  BP    27  0 1.000000e+00
## GO:0003071  BP    27  0 1.000000e+00
## GO:0061437  BP    27  0 1.000000e+00
## GO:0045730  BP    27  0 1.000000e+00
## GO:1905144  BP    27  0 1.000000e+00
## GO:0000305  BP    27  0 1.000000e+00
## GO:0002347  BP    27  0 1.000000e+00
## GO:0061298  BP    27  0 1.000000e+00
## GO:0030970  BP    27  0 1.000000e+00
## GO:0042455  BP    27  0 1.000000e+00
## GO:0044550  BP    27  0 1.000000e+00
## GO:0048745  BP    27  0 1.000000e+00
## GO:0021511  BP    27  0 1.000000e+00
## GO:0033014  BP    27  0 1.000000e+00
## GO:0045061  BP    27  0 1.000000e+00
## GO:0030878  BP    27  0 1.000000e+00
## GO:0060343  BP    27  0 1.000000e+00
## GO:0044342  BP    27  0 1.000000e+00
## GO:0014829  BP    27  0 1.000000e+00
## GO:0039694  BP    27  0 1.000000e+00
## GO:0002360  BP    28  0 1.000000e+00
## GO:0072539  BP    28  0 1.000000e+00
## GO:0060444  BP    28  0 1.000000e+00
## GO:0060445  BP    28  0 1.000000e+00
## GO:0061311  BP    28  0 1.000000e+00
## GO:0021952  BP    28  0 1.000000e+00
## GO:0034508  BP    28  0 1.000000e+00
## GO:0021697  BP    28  0 1.000000e+00
## GO:0002029  BP    28  0 1.000000e+00
## GO:0048596  BP    28  0 1.000000e+00
## GO:1904861  BP    28  0 1.000000e+00
## GO:0010458  BP    28  0 1.000000e+00
## GO:0002068  BP    28  0 1.000000e+00
## GO:0048820  BP    28  0 1.000000e+00
## GO:0060384  BP    28  0 1.000000e+00
## GO:0036297  BP    28  0 1.000000e+00
## GO:0002089  BP    28  0 1.000000e+00
## GO:0034204  BP    28  0 1.000000e+00
## GO:0072576  BP    28  0 1.000000e+00
## GO:0001945  BP    28  0 1.000000e+00
## GO:0051307  BP    28  0 1.000000e+00
## GO:0044003  BP    28  0 1.000000e+00
## GO:0044788  BP    28  0 1.000000e+00
## GO:0022401  BP    28  0 1.000000e+00
## GO:1902668  BP    28  0 1.000000e+00
## GO:0048521  BP    28  0 1.000000e+00
## GO:0045992  BP    28  0 1.000000e+00
## GO:0010719  BP    28  0 1.000000e+00
## GO:0045822  BP    28  0 1.000000e+00
## GO:0032369  BP    28  0 1.000000e+00
## GO:0051589  BP    28  0 1.000000e+00
## GO:0045980  BP    28  0 1.000000e+00
## GO:0045671  BP    28  0 1.000000e+00
## GO:0001759  BP    28  0 1.000000e+00
## GO:0035335  BP    28  0 1.000000e+00
## GO:0060039  BP    28  0 1.000000e+00
## GO:0060037  BP    28  0 1.000000e+00
## GO:1901186  BP    28  0 1.000000e+00
## GO:0051957  BP    28  0 1.000000e+00
## GO:1903846  BP    28  0 1.000000e+00
## GO:0051984  BP    28  0 1.000000e+00
## GO:0045724  BP    28  0 1.000000e+00
## GO:0050820  BP    28  0 1.000000e+00
## GO:0051194  BP    28  0 1.000000e+00
## GO:1904031  BP    28  0 1.000000e+00
## GO:0043032  BP    28  0 1.000000e+00
## GO:0051446  BP    28  0 1.000000e+00
## GO:0045663  BP    28  0 1.000000e+00
## GO:0090312  BP    28  0 1.000000e+00
## GO:0090314  BP    28  0 1.000000e+00
## GO:0090200  BP    28  0 1.000000e+00
## GO:0030511  BP    28  0 1.000000e+00
## GO:0098698  BP    28  0 1.000000e+00
## GO:0071168  BP    28  0 1.000000e+00
## GO:0070198  BP    28  0 1.000000e+00
## GO:0006195  BP    28  0 1.000000e+00
## GO:1904292  BP    28  0 1.000000e+00
## GO:2000310  BP    28  0 1.000000e+00
## GO:0060765  BP    28  0 1.000000e+00
## GO:0061050  BP    28  0 1.000000e+00
## GO:0045187  BP    28  0 1.000000e+00
## GO:0080154  BP    28  0 1.000000e+00
## GO:0010962  BP    28  0 1.000000e+00
## GO:0005979  BP    28  0 1.000000e+00
## GO:0031063  BP    28  0 1.000000e+00
## GO:0032647  BP    28  0 1.000000e+00
## GO:0061217  BP    28  0 1.000000e+00
## GO:0010939  BP    28  0 1.000000e+00
## GO:0045589  BP    28  0 1.000000e+00
## GO:0090169  BP    28  0 1.000000e+00
## GO:0007530  BP    28  0 1.000000e+00
## GO:0048103  BP    28  0 1.000000e+00
## GO:0006929  BP    28  0 1.000000e+00
## GO:0002507  BP    28  0 1.000000e+00
## GO:0086005  BP    28  0 1.000000e+00
## GO:0006270  BP    29  0 1.000000e+00
## GO:0006336  BP    29  0 1.000000e+00
## GO:0000731  BP    29  0 1.000000e+00
## GO:0046039  BP    29  0 1.000000e+00
## GO:0006734  BP    29  0 1.000000e+00
## GO:0031295  BP    29  0 1.000000e+00
## GO:0071880  BP    29  0 1.000000e+00
## GO:0043090  BP    29  0 1.000000e+00
## GO:0030262  BP    29  0 1.000000e+00
## GO:0060117  BP    29  0 1.000000e+00
## GO:0008206  BP    29  0 1.000000e+00
## GO:0099622  BP    29  0 1.000000e+00
## GO:0034629  BP    29  0 1.000000e+00
## GO:0071480  BP    29  0 1.000000e+00
## GO:0071353  BP    29  0 1.000000e+00
## GO:0071354  BP    29  0 1.000000e+00
## GO:0003413  BP    29  0 1.000000e+00
## GO:0050802  BP    29  0 1.000000e+00
## GO:0006536  BP    29  0 1.000000e+00
## GO:0060914  BP    29  0 1.000000e+00
## GO:0007007  BP    29  0 1.000000e+00
## GO:0045292  BP    29  0 1.000000e+00
## GO:0030318  BP    29  0 1.000000e+00
## GO:0010586  BP    29  0 1.000000e+00
## GO:0097345  BP    29  0 1.000000e+00
## GO:0030224  BP    29  0 1.000000e+00
## GO:1903131  BP    29  0 1.000000e+00
## GO:0046365  BP    29  0 1.000000e+00
## GO:0060571  BP    29  0 1.000000e+00
## GO:0044458  BP    29  0 1.000000e+00
## GO:0033119  BP    29  0 1.000000e+00
## GO:0043951  BP    29  0 1.000000e+00
## GO:1902042  BP    29  0 1.000000e+00
## GO:0033137  BP    29  0 1.000000e+00
## GO:0099637  BP    29  0 1.000000e+00
## GO:0042119  BP    29  0 1.000000e+00
## GO:0033687  BP    29  0 1.000000e+00
## GO:0003148  BP    29  0 1.000000e+00
## GO:0007602  BP    29  0 1.000000e+00
## GO:0002230  BP    29  0 1.000000e+00
## GO:0031116  BP    29  0 1.000000e+00
## GO:0033141  BP    29  0 1.000000e+00
## GO:0010800  BP    29  0 1.000000e+00
## GO:0043552  BP    29  0 1.000000e+00
## GO:0002092  BP    29  0 1.000000e+00
## GO:0099632  BP    29  0 1.000000e+00
## GO:0090181  BP    29  0 1.000000e+00
## GO:1902235  BP    29  0 1.000000e+00
## GO:1903487  BP    29  0 1.000000e+00
## GO:0001919  BP    29  0 1.000000e+00
## GO:1900027  BP    29  0 1.000000e+00
## GO:0034391  BP    29  0 1.000000e+00
## GO:0060260  BP    29  0 1.000000e+00
## GO:0071548  BP    29  0 1.000000e+00
## GO:0033273  BP    29  0 1.000000e+00
## GO:1990126  BP    29  0 1.000000e+00
## GO:0070296  BP    29  0 1.000000e+00
## GO:0072422  BP    29  0 1.000000e+00
## GO:0072401  BP    29  0 1.000000e+00
## GO:0072395  BP    29  0 1.000000e+00
## GO:0034390  BP    29  0 1.000000e+00
## GO:0030149  BP    29  0 1.000000e+00
## GO:0030488  BP    29  0 1.000000e+00
## GO:0034724  BP    30  0 1.000000e+00
## GO:0002438  BP    30  0 1.000000e+00
## GO:0023058  BP    30  0 1.000000e+00
## GO:0008608  BP    30  0 1.000000e+00
## GO:0060317  BP    30  0 1.000000e+00
## GO:0006921  BP    30  0 1.000000e+00
## GO:0051085  BP    30  0 1.000000e+00
## GO:0021602  BP    30  0 1.000000e+00
## GO:0021904  BP    30  0 1.000000e+00
## GO:0035767  BP    30  0 1.000000e+00
## GO:0090505  BP    30  0 1.000000e+00
## GO:0000132  BP    30  0 1.000000e+00
## GO:0035640  BP    30  0 1.000000e+00
## GO:0022617  BP    30  0 1.000000e+00
## GO:0042168  BP    30  0 1.000000e+00
## GO:0015012  BP    30  0 1.000000e+00
## GO:0035329  BP    30  0 1.000000e+00
## GO:0010390  BP    30  0 1.000000e+00
## GO:0042744  BP    30  0 1.000000e+00
## GO:0032607  BP    30  0 1.000000e+00
## GO:0070306  BP    30  0 1.000000e+00
## GO:0022011  BP    30  0 1.000000e+00
## GO:0061082  BP    30  0 1.000000e+00
## GO:0070266  BP    30  0 1.000000e+00
## GO:0034260  BP    30  0 1.000000e+00
## GO:0055022  BP    30  0 1.000000e+00
## GO:0061037  BP    30  0 1.000000e+00
## GO:0061117  BP    30  0 1.000000e+00
## GO:0032692  BP    30  0 1.000000e+00
## GO:0016242  BP    30  0 1.000000e+00
## GO:0031645  BP    30  0 1.000000e+00
## GO:0099645  BP    30  0 1.000000e+00
## GO:0032292  BP    30  0 1.000000e+00
## GO:0043372  BP    30  0 1.000000e+00
## GO:1902751  BP    30  0 1.000000e+00
## GO:0035066  BP    30  0 1.000000e+00
## GO:1902745  BP    30  0 1.000000e+00
## GO:0048026  BP    30  0 1.000000e+00
## GO:0048714  BP    30  0 1.000000e+00
## GO:0010922  BP    30  0 1.000000e+00
## GO:0048643  BP    30  0 1.000000e+00
## GO:0060143  BP    30  0 1.000000e+00
## GO:0008214  BP    30  0 1.000000e+00
## GO:0006482  BP    30  0 1.000000e+00
## GO:0099633  BP    30  0 1.000000e+00
## GO:0042026  BP    30  0 1.000000e+00
## GO:0009303  BP    30  0 1.000000e+00
## GO:0002902  BP    30  0 1.000000e+00
## GO:1902003  BP    30  0 1.000000e+00
## GO:1903859  BP    30  0 1.000000e+00
## GO:0044062  BP    30  0 1.000000e+00
## GO:1900117  BP    30  0 1.000000e+00
## GO:0051569  BP    30  0 1.000000e+00
## GO:0034110  BP    30  0 1.000000e+00
## GO:0032673  BP    30  0 1.000000e+00
## GO:1902253  BP    30  0 1.000000e+00
## GO:1900274  BP    30  0 1.000000e+00
## GO:0042534  BP    30  0 1.000000e+00
## GO:0010803  BP    30  0 1.000000e+00
## GO:0031297  BP    30  0 1.000000e+00
## GO:0010043  BP    30  0 1.000000e+00
## GO:0048384  BP    30  0 1.000000e+00
## GO:0042533  BP    30  0 1.000000e+00
## GO:0003309  BP    30  0 1.000000e+00
## GO:0000038  BP    30  0 1.000000e+00
## GO:0044319  BP    30  0 1.000000e+00
## GO:0006829  BP    30  0 1.000000e+00
## GO:0006335  BP    31  0 1.000000e+00
## GO:0034723  BP    31  0 1.000000e+00
## GO:0006506  BP    31  0 1.000000e+00
## GO:0071875  BP    31  0 1.000000e+00
## GO:0043276  BP    31  0 1.000000e+00
## GO:0019884  BP    31  0 1.000000e+00
## GO:1903963  BP    31  0 1.000000e+00
## GO:0050482  BP    31  0 1.000000e+00
## GO:0097352  BP    31  0 1.000000e+00
## GO:0001832  BP    31  0 1.000000e+00
## GO:0060795  BP    31  0 1.000000e+00
## GO:0006884  BP    31  0 1.000000e+00
## GO:0009584  BP    31  0 1.000000e+00
## GO:0001958  BP    31  0 1.000000e+00
## GO:0090504  BP    31  0 1.000000e+00
## GO:0019373  BP    31  0 1.000000e+00
## GO:0090162  BP    31  0 1.000000e+00
## GO:1901659  BP    31  0 1.000000e+00
## GO:0060218  BP    31  0 1.000000e+00
## GO:0008299  BP    31  0 1.000000e+00
## GO:0048535  BP    31  0 1.000000e+00
## GO:0031294  BP    31  0 1.000000e+00
## GO:0061157  BP    31  0 1.000000e+00
## GO:0001893  BP    31  0 1.000000e+00
## GO:0000462  BP    31  0 1.000000e+00
## GO:0086010  BP    31  0 1.000000e+00
## GO:0044818  BP    31  0 1.000000e+00
## GO:2000515  BP    31  0 1.000000e+00
## GO:0032232  BP    31  0 1.000000e+00
## GO:0043537  BP    31  0 1.000000e+00
## GO:1901020  BP    31  0 1.000000e+00
## GO:0010614  BP    31  0 1.000000e+00
## GO:0042036  BP    31  0 1.000000e+00
## GO:0045920  BP    31  0 1.000000e+00
## GO:0045932  BP    31  0 1.000000e+00
## GO:0045662  BP    31  0 1.000000e+00
## GO:1905476  BP    31  0 1.000000e+00
## GO:1901797  BP    31  0 1.000000e+00
## GO:0048011  BP    31  0 1.000000e+00
## GO:0009225  BP    31  0 1.000000e+00
## GO:0001556  BP    31  0 1.000000e+00
## GO:2000144  BP    31  0 1.000000e+00
## GO:1903393  BP    31  0 1.000000e+00
## GO:0061036  BP    31  0 1.000000e+00
## GO:0032967  BP    31  0 1.000000e+00
## GO:2000781  BP    31  0 1.000000e+00
## GO:0051491  BP    31  0 1.000000e+00
## GO:0050718  BP    31  0 1.000000e+00
## GO:0032816  BP    31  0 1.000000e+00
## GO:0140239  BP    31  0 1.000000e+00
## GO:0098884  BP    31  0 1.000000e+00
## GO:0055075  BP    31  0 1.000000e+00
## GO:0070979  BP    31  0 1.000000e+00
## GO:0070536  BP    31  0 1.000000e+00
## GO:1901661  BP    31  0 1.000000e+00
## GO:0044030  BP    31  0 1.000000e+00
## GO:0043457  BP    31  0 1.000000e+00
## GO:0042749  BP    31  0 1.000000e+00
## GO:0042634  BP    31  0 1.000000e+00
## GO:0010758  BP    31  0 1.000000e+00
## GO:0060632  BP    31  0 1.000000e+00
## GO:0033139  BP    31  0 1.000000e+00
## GO:2001014  BP    31  0 1.000000e+00
## GO:1903421  BP    31  0 1.000000e+00
## GO:0002026  BP    31  0 1.000000e+00
## GO:0002828  BP    31  0 1.000000e+00
## GO:0033561  BP    31  0 1.000000e+00
## GO:0045066  BP    31  0 1.000000e+00
## GO:0090075  BP    31  0 1.000000e+00
## GO:0036075  BP    31  0 1.000000e+00
## GO:0070670  BP    31  0 1.000000e+00
## GO:0070741  BP    31  0 1.000000e+00
## GO:1905314  BP    31  0 1.000000e+00
## GO:0000387  BP    31  0 1.000000e+00
## GO:0060074  BP    31  0 1.000000e+00
## GO:0099560  BP    31  0 1.000000e+00
## GO:0006099  BP    31  0 1.000000e+00
## GO:0006767  BP    31  0 1.000000e+00
## GO:0032508  BP    32  0 1.000000e+00
## GO:0031572  BP    32  0 1.000000e+00
## GO:0006505  BP    32  0 1.000000e+00
## GO:0072538  BP    32  0 1.000000e+00
## GO:0097242  BP    32  0 1.000000e+00
## GO:0002486  BP    32  0 1.000000e+00
## GO:0060561  BP    32  0 1.000000e+00
## GO:0070286  BP    32  0 1.000000e+00
## GO:0060706  BP    32  0 1.000000e+00
## GO:1904646  BP    32  0 1.000000e+00
## GO:0051642  BP    32  0 1.000000e+00
## GO:0022410  BP    32  0 1.000000e+00
## GO:0006101  BP    32  0 1.000000e+00
## GO:0048668  BP    32  0 1.000000e+00
## GO:0060977  BP    32  0 1.000000e+00
## GO:0017004  BP    32  0 1.000000e+00
## GO:0009262  BP    32  0 1.000000e+00
## GO:0048048  BP    32  0 1.000000e+00
## GO:0060669  BP    32  0 1.000000e+00
## GO:0046466  BP    32  0 1.000000e+00
## GO:0071985  BP    32  0 1.000000e+00
## GO:0001779  BP    32  0 1.000000e+00
## GO:0034661  BP    32  0 1.000000e+00
## GO:0032689  BP    32  0 1.000000e+00
## GO:0050686  BP    32  0 1.000000e+00
## GO:1900181  BP    32  0 1.000000e+00
## GO:0007274  BP    32  0 1.000000e+00
## GO:0036475  BP    32  0 1.000000e+00
## GO:0002446  BP    32  0 1.000000e+00
## GO:0007097  BP    32  0 1.000000e+00
## GO:0007031  BP    32  0 1.000000e+00
## GO:2001171  BP    32  0 1.000000e+00
## GO:0035025  BP    32  0 1.000000e+00
## GO:0032728  BP    32  0 1.000000e+00
## GO:1902110  BP    32  0 1.000000e+00
## GO:0045672  BP    32  0 1.000000e+00
## GO:0043243  BP    32  0 1.000000e+00
## GO:0032212  BP    32  0 1.000000e+00
## GO:0006623  BP    32  0 1.000000e+00
## GO:0042558  BP    32  0 1.000000e+00
## GO:0006220  BP    32  0 1.000000e+00
## GO:0045577  BP    32  0 1.000000e+00
## GO:0010453  BP    32  0 1.000000e+00
## GO:0040036  BP    32  0 1.000000e+00
## GO:0045616  BP    32  0 1.000000e+00
## GO:0010591  BP    32  0 1.000000e+00
## GO:0060306  BP    32  0 1.000000e+00
## GO:1903203  BP    32  0 1.000000e+00
## GO:0051150  BP    32  0 1.000000e+00
## GO:0030947  BP    32  0 1.000000e+00
## GO:1902186  BP    32  0 1.000000e+00
## GO:0003016  BP    32  0 1.000000e+00
## GO:0001964  BP    32  0 1.000000e+00
## GO:0051180  BP    32  0 1.000000e+00
## GO:0034314  BP    33  0 1.000000e+00
## GO:0006308  BP    33  0 1.000000e+00
## GO:0050779  BP    33  0 1.000000e+00
## GO:0014044  BP    33  0 1.000000e+00
## GO:0006084  BP    33  0 1.000000e+00
## GO:0002484  BP    33  0 1.000000e+00
## GO:0002476  BP    33  0 1.000000e+00
## GO:0021680  BP    33  0 1.000000e+00
## GO:0048566  BP    33  0 1.000000e+00
## GO:0001706  BP    33  0 1.000000e+00
## GO:0035883  BP    33  0 1.000000e+00
## GO:0048013  BP    33  0 1.000000e+00
## GO:0040001  BP    33  0 1.000000e+00
## GO:0060487  BP    33  0 1.000000e+00
## GO:0033598  BP    33  0 1.000000e+00
## GO:0071709  BP    33  0 1.000000e+00
## GO:0061842  BP    33  0 1.000000e+00
## GO:0099563  BP    33  0 1.000000e+00
## GO:0010667  BP    33  0 1.000000e+00
## GO:0007026  BP    33  0 1.000000e+00
## GO:0014741  BP    33  0 1.000000e+00
## GO:0045879  BP    33  0 1.000000e+00
## GO:0071827  BP    33  0 1.000000e+00
## GO:0043950  BP    33  0 1.000000e+00
## GO:1901890  BP    33  0 1.000000e+00
## GO:0032467  BP    33  0 1.000000e+00
## GO:2000108  BP    33  0 1.000000e+00
## GO:0090218  BP    33  0 1.000000e+00
## GO:0031112  BP    33  0 1.000000e+00
## GO:0045070  BP    33  0 1.000000e+00
## GO:0060740  BP    33  0 1.000000e+00
## GO:0071539  BP    33  0 1.000000e+00
## GO:0045047  BP    33  0 1.000000e+00
## GO:1903146  BP    33  0 1.000000e+00
## GO:0048841  BP    33  0 1.000000e+00
## GO:0002691  BP    33  0 1.000000e+00
## GO:0086091  BP    33  0 1.000000e+00
## GO:1903205  BP    33  0 1.000000e+00
## GO:0032660  BP    33  0 1.000000e+00
## GO:0010837  BP    33  0 1.000000e+00
## GO:0002082  BP    33  0 1.000000e+00
## GO:0010543  BP    33  0 1.000000e+00
## GO:1905606  BP    33  0 1.000000e+00
## GO:2000036  BP    33  0 1.000000e+00
## GO:0003081  BP    33  0 1.000000e+00
## GO:1904467  BP    33  0 1.000000e+00
## GO:0046596  BP    33  0 1.000000e+00
## GO:0035094  BP    33  0 1.000000e+00
## GO:0048240  BP    33  0 1.000000e+00
## GO:0007271  BP    33  0 1.000000e+00
## GO:0034142  BP    33  0 1.000000e+00
## GO:0070897  BP    33  0 1.000000e+00
## GO:0021591  BP    33  0 1.000000e+00
## GO:0006984  BP    34  0 1.000000e+00
## GO:0048194  BP    34  0 1.000000e+00
## GO:0006739  BP    34  0 1.000000e+00
## GO:0000186  BP    34  0 1.000000e+00
## GO:0002428  BP    34  0 1.000000e+00
## GO:0003209  BP    34  0 1.000000e+00
## GO:0044275  BP    34  0 1.000000e+00
## GO:0042832  BP    34  0 1.000000e+00
## GO:0035116  BP    34  0 1.000000e+00
## GO:0003203  BP    34  0 1.000000e+00
## GO:0035890  BP    34  0 1.000000e+00
## GO:0035891  BP    34  0 1.000000e+00
## GO:0140115  BP    34  0 1.000000e+00
## GO:0031069  BP    34  0 1.000000e+00
## GO:0060479  BP    34  0 1.000000e+00
## GO:0000002  BP    34  0 1.000000e+00
## GO:1902686  BP    34  0 1.000000e+00
## GO:0008045  BP    34  0 1.000000e+00
## GO:0052192  BP    34  0 1.000000e+00
## GO:0052126  BP    34  0 1.000000e+00
## GO:0001773  BP    34  0 1.000000e+00
## GO:0050869  BP    34  0 1.000000e+00
## GO:0032435  BP    34  0 1.000000e+00
## GO:0009311  BP    34  0 1.000000e+00
## GO:0018208  BP    34  0 1.000000e+00
## GO:2000406  BP    34  0 1.000000e+00
## GO:0010714  BP    34  0 1.000000e+00
## GO:0050716  BP    34  0 1.000000e+00
## GO:1905898  BP    34  0 1.000000e+00
## GO:0099068  BP    34  0 1.000000e+00
## GO:0060512  BP    34  0 1.000000e+00
## GO:0010737  BP    34  0 1.000000e+00
## GO:1905508  BP    34  0 1.000000e+00
## GO:0018345  BP    34  0 1.000000e+00
## GO:2000785  BP    34  0 1.000000e+00
## GO:0048679  BP    34  0 1.000000e+00
## GO:1901976  BP    34  0 1.000000e+00
## GO:1903429  BP    34  0 1.000000e+00
## GO:0033032  BP    34  0 1.000000e+00
## GO:0090313  BP    34  0 1.000000e+00
## GO:0090322  BP    34  0 1.000000e+00
## GO:0006356  BP    34  0 1.000000e+00
## GO:0031338  BP    34  0 1.000000e+00
## GO:0097366  BP    34  0 1.000000e+00
## GO:0002021  BP    34  0 1.000000e+00
## GO:0032094  BP    34  0 1.000000e+00
## GO:0002931  BP    34  0 1.000000e+00
## GO:0019076  BP    34  0 1.000000e+00
## GO:0051084  BP    35  0 1.000000e+00
## GO:0046464  BP    35  0 1.000000e+00
## GO:0055090  BP    35  0 1.000000e+00
## GO:0035909  BP    35  0 1.000000e+00
## GO:0009072  BP    35  0 1.000000e+00
## GO:0021846  BP    35  0 1.000000e+00
## GO:1990748  BP    35  0 1.000000e+00
## GO:1990090  BP    35  0 1.000000e+00
## GO:0001539  BP    35  0 1.000000e+00
## GO:0060285  BP    35  0 1.000000e+00
## GO:0042745  BP    35  0 1.000000e+00
## GO:0009187  BP    35  0 1.000000e+00
## GO:0019835  BP    35  0 1.000000e+00
## GO:0060441  BP    35  0 1.000000e+00
## GO:0007143  BP    35  0 1.000000e+00
## GO:0036230  BP    35  0 1.000000e+00
## GO:1901068  BP    35  0 1.000000e+00
## GO:0030201  BP    35  0 1.000000e+00
## GO:0051567  BP    35  0 1.000000e+00
## GO:0016572  BP    35  0 1.000000e+00
## GO:0006972  BP    35  0 1.000000e+00
## GO:0051452  BP    35  0 1.000000e+00
## GO:0031424  BP    35  0 1.000000e+00
## GO:0060292  BP    35  0 1.000000e+00
## GO:0055083  BP    35  0 1.000000e+00
## GO:0008156  BP    35  0 1.000000e+00
## GO:2000171  BP    35  0 1.000000e+00
## GO:0048147  BP    35  0 1.000000e+00
## GO:0045686  BP    35  0 1.000000e+00
## GO:1902116  BP    35  0 1.000000e+00
## GO:0002701  BP    35  0 1.000000e+00
## GO:0035308  BP    35  0 1.000000e+00
## GO:0032205  BP    35  0 1.000000e+00
## GO:0034122  BP    35  0 1.000000e+00
## GO:0015804  BP    35  0 1.000000e+00
## GO:0046461  BP    35  0 1.000000e+00
## GO:0033866  BP    35  0 1.000000e+00
## GO:0034381  BP    35  0 1.000000e+00
## GO:0032786  BP    35  0 1.000000e+00
## GO:0051973  BP    35  0 1.000000e+00
## GO:1904707  BP    35  0 1.000000e+00
## GO:0097106  BP    35  0 1.000000e+00
## GO:0006471  BP    35  0 1.000000e+00
## GO:0009954  BP    35  0 1.000000e+00
## GO:0034033  BP    35  0 1.000000e+00
## GO:0043516  BP    35  0 1.000000e+00
## GO:2000249  BP    35  0 1.000000e+00
## GO:1903959  BP    35  0 1.000000e+00
## GO:0033238  BP    35  0 1.000000e+00
## GO:2001038  BP    35  0 1.000000e+00
## GO:0031279  BP    35  0 1.000000e+00
## GO:0046320  BP    35  0 1.000000e+00
## GO:0070873  BP    35  0 1.000000e+00
## GO:0033146  BP    35  0 1.000000e+00
## GO:0032228  BP    35  0 1.000000e+00
## GO:0043114  BP    35  0 1.000000e+00
## GO:0014823  BP    35  0 1.000000e+00
## GO:0046686  BP    35  0 1.000000e+00
## GO:1990089  BP    35  0 1.000000e+00
## GO:0034030  BP    35  0 1.000000e+00
## GO:0019432  BP    35  0 1.000000e+00
## GO:0070328  BP    35  0 1.000000e+00
## GO:1990774  BP    35  0 1.000000e+00
## GO:0038084  BP    35  0 1.000000e+00
## GO:0006458  BP    36  0 1.000000e+00
## GO:0034205  BP    36  0 1.000000e+00
## GO:0003401  BP    36  0 1.000000e+00
## GO:0098751  BP    36  0 1.000000e+00
## GO:0071320  BP    36  0 1.000000e+00
## GO:0071398  BP    36  0 1.000000e+00
## GO:0072583  BP    36  0 1.000000e+00
## GO:0051181  BP    36  0 1.000000e+00
## GO:0030574  BP    36  0 1.000000e+00
## GO:0035115  BP    36  0 1.000000e+00
## GO:0051294  BP    36  0 1.000000e+00
## GO:0001702  BP    36  0 1.000000e+00
## GO:0003417  BP    36  0 1.000000e+00
## GO:0061384  BP    36  0 1.000000e+00
## GO:0048009  BP    36  0 1.000000e+00
## GO:0007617  BP    36  0 1.000000e+00
## GO:0046329  BP    36  0 1.000000e+00
## GO:0060969  BP    36  0 1.000000e+00
## GO:0010664  BP    36  0 1.000000e+00
## GO:0046839  BP    36  0 1.000000e+00
## GO:2000516  BP    36  0 1.000000e+00
## GO:0045745  BP    36  0 1.000000e+00
## GO:1905209  BP    36  0 1.000000e+00
## GO:0051482  BP    36  0 1.000000e+00
## GO:1904037  BP    36  0 1.000000e+00
## GO:0045815  BP    36  0 1.000000e+00
## GO:0032735  BP    36  0 1.000000e+00
## GO:0045987  BP    36  0 1.000000e+00
## GO:1904358  BP    36  0 1.000000e+00
## GO:0070528  BP    36  0 1.000000e+00
## GO:0061462  BP    36  0 1.000000e+00
## GO:1902991  BP    36  0 1.000000e+00
## GO:0002861  BP    36  0 1.000000e+00
## GO:0048169  BP    36  0 1.000000e+00
## GO:0031114  BP    36  0 1.000000e+00
## GO:0034243  BP    36  0 1.000000e+00
## GO:0033363  BP    36  0 1.000000e+00
## GO:0042501  BP    36  0 1.000000e+00
## GO:0072348  BP    36  0 1.000000e+00
## GO:0001963  BP    36  0 1.000000e+00
## GO:0035886  BP    36  0 1.000000e+00
## GO:0042311  BP    36  0 1.000000e+00
## GO:0006903  BP    36  0 1.000000e+00
## GO:0001782  BP    37  0 1.000000e+00
## GO:0060071  BP    37  0 1.000000e+00
## GO:0007340  BP    37  0 1.000000e+00
## GO:0051693  BP    37  0 1.000000e+00
## GO:0048846  BP    37  0 1.000000e+00
## GO:0019934  BP    37  0 1.000000e+00
## GO:0086065  BP    37  0 1.000000e+00
## GO:0036474  BP    37  0 1.000000e+00
## GO:0071391  BP    37  0 1.000000e+00
## GO:0021799  BP    37  0 1.000000e+00
## GO:0002753  BP    37  0 1.000000e+00
## GO:0097028  BP    37  0 1.000000e+00
## GO:0035850  BP    37  0 1.000000e+00
## GO:0072599  BP    37  0 1.000000e+00
## GO:0021884  BP    37  0 1.000000e+00
## GO:0071514  BP    37  0 1.000000e+00
## GO:0032633  BP    37  0 1.000000e+00
## GO:0050892  BP    37  0 1.000000e+00
## GO:0061756  BP    37  0 1.000000e+00
## GO:0007094  BP    37  0 1.000000e+00
## GO:0033028  BP    37  0 1.000000e+00
## GO:0033144  BP    37  0 1.000000e+00
## GO:1903318  BP    37  0 1.000000e+00
## GO:0010955  BP    37  0 1.000000e+00
## GO:0048665  BP    37  0 1.000000e+00
## GO:1902284  BP    37  0 1.000000e+00
## GO:0033260  BP    37  0 1.000000e+00
## GO:0000184  BP    37  0 1.000000e+00
## GO:0009112  BP    37  0 1.000000e+00
## GO:0051647  BP    37  0 1.000000e+00
## GO:0014003  BP    37  0 1.000000e+00
## GO:0015695  BP    37  0 1.000000e+00
## GO:0046470  BP    37  0 1.000000e+00
## GO:0071158  BP    37  0 1.000000e+00
## GO:0045684  BP    37  0 1.000000e+00
## GO:2000463  BP    37  0 1.000000e+00
## GO:0002053  BP    37  0 1.000000e+00
## GO:0035794  BP    37  0 1.000000e+00
## GO:0045954  BP    37  0 1.000000e+00
## GO:0002717  BP    37  0 1.000000e+00
## GO:0030810  BP    37  0 1.000000e+00
## GO:1900373  BP    37  0 1.000000e+00
## GO:0045880  BP    37  0 1.000000e+00
## GO:0071825  BP    37  0 1.000000e+00
## GO:1903432  BP    37  0 1.000000e+00
## GO:0046640  BP    37  0 1.000000e+00
## GO:1902229  BP    37  0 1.000000e+00
## GO:0045191  BP    37  0 1.000000e+00
## GO:0040020  BP    37  0 1.000000e+00
## GO:0032885  BP    37  0 1.000000e+00
## GO:0099174  BP    37  0 1.000000e+00
## GO:1901385  BP    37  0 1.000000e+00
## GO:0000027  BP    37  0 1.000000e+00
## GO:0007435  BP    37  0 1.000000e+00
## GO:0071173  BP    37  0 1.000000e+00
## GO:0000096  BP    37  0 1.000000e+00
## GO:0042554  BP    37  0 1.000000e+00
## GO:0016233  BP    37  0 1.000000e+00
## GO:0006383  BP    37  0 1.000000e+00
## GO:0072350  BP    37  0 1.000000e+00
## GO:0042092  BP    37  0 1.000000e+00
## GO:0032392  BP    38  0 1.000000e+00
## GO:0045005  BP    38  0 1.000000e+00
## GO:1902475  BP    38  0 1.000000e+00
## GO:0016601  BP    38  0 1.000000e+00
## GO:0046463  BP    38  0 1.000000e+00
## GO:0002475  BP    38  0 1.000000e+00
## GO:0006284  BP    38  0 1.000000e+00
## GO:0016339  BP    38  0 1.000000e+00
## GO:0003230  BP    38  0 1.000000e+00
## GO:0042149  BP    38  0 1.000000e+00
## GO:0007099  BP    38  0 1.000000e+00
## GO:0032506  BP    38  0 1.000000e+00
## GO:0000578  BP    38  0 1.000000e+00
## GO:0007616  BP    38  0 1.000000e+00
## GO:0072595  BP    38  0 1.000000e+00
## GO:0072210  BP    38  0 1.000000e+00
## GO:0043628  BP    38  0 1.000000e+00
## GO:0001953  BP    38  0 1.000000e+00
## GO:0043267  BP    38  0 1.000000e+00
## GO:0099590  BP    38  0 1.000000e+00
## GO:0046460  BP    38  0 1.000000e+00
## GO:0046854  BP    38  0 1.000000e+00
## GO:0006778  BP    38  0 1.000000e+00
## GO:0043368  BP    38  0 1.000000e+00
## GO:0032781  BP    38  0 1.000000e+00
## GO:0030513  BP    38  0 1.000000e+00
## GO:0040019  BP    38  0 1.000000e+00
## GO:2000403  BP    38  0 1.000000e+00
## GO:0010831  BP    38  0 1.000000e+00
## GO:2001025  BP    38  0 1.000000e+00
## GO:1900026  BP    38  0 1.000000e+00
## GO:0051968  BP    38  0 1.000000e+00
## GO:0097300  BP    38  0 1.000000e+00
## GO:0032594  BP    38  0 1.000000e+00
## GO:0045622  BP    38  0 1.000000e+00
## GO:0046006  BP    38  0 1.000000e+00
## GO:0031935  BP    38  0 1.000000e+00
## GO:0060259  BP    38  0 1.000000e+00
## GO:0010762  BP    38  0 1.000000e+00
## GO:0051339  BP    38  0 1.000000e+00
## GO:0060236  BP    38  0 1.000000e+00
## GO:0070570  BP    38  0 1.000000e+00
## GO:1904645  BP    38  0 1.000000e+00
## GO:0048265  BP    38  0 1.000000e+00
## GO:0001562  BP    38  0 1.000000e+00
## GO:0008207  BP    39  0 1.000000e+00
## GO:0043001  BP    39  0 1.000000e+00
## GO:0007257  BP    39  0 1.000000e+00
## GO:0030521  BP    39  0 1.000000e+00
## GO:0002483  BP    39  0 1.000000e+00
## GO:0019885  BP    39  0 1.000000e+00
## GO:0044331  BP    39  0 1.000000e+00
## GO:0071357  BP    39  0 1.000000e+00
## GO:0098534  BP    39  0 1.000000e+00
## GO:1902476  BP    39  0 1.000000e+00
## GO:0044364  BP    39  0 1.000000e+00
## GO:0031076  BP    39  0 1.000000e+00
## GO:0097009  BP    39  0 1.000000e+00
## GO:0048730  BP    39  0 1.000000e+00
## GO:0006826  BP    39  0 1.000000e+00
## GO:0031640  BP    39  0 1.000000e+00
## GO:0071174  BP    39  0 1.000000e+00
## GO:2001024  BP    39  0 1.000000e+00
## GO:0006998  BP    39  0 1.000000e+00
## GO:0050931  BP    39  0 1.000000e+00
## GO:1900087  BP    39  0 1.000000e+00
## GO:0032008  BP    39  0 1.000000e+00
## GO:1901021  BP    39  0 1.000000e+00
## GO:0010613  BP    39  0 1.000000e+00
## GO:1905710  BP    39  0 1.000000e+00
## GO:0010661  BP    39  0 1.000000e+00
## GO:2000142  BP    39  0 1.000000e+00
## GO:0090175  BP    39  0 1.000000e+00
## GO:1902108  BP    39  0 1.000000e+00
## GO:1902692  BP    39  0 1.000000e+00
## GO:0043551  BP    39  0 1.000000e+00
## GO:0044088  BP    39  0 1.000000e+00
## GO:0009620  BP    39  0 1.000000e+00
## GO:0009651  BP    39  0 1.000000e+00
## GO:0009069  BP    39  0 1.000000e+00
## GO:0030431  BP    39  0 1.000000e+00
## GO:0010092  BP    39  0 1.000000e+00
## GO:1901998  BP    39  0 1.000000e+00
## GO:0060337  BP    39  0 1.000000e+00
## GO:0014037  BP    40  0 1.000000e+00
## GO:0046633  BP    40  0 1.000000e+00
## GO:0007339  BP    40  0 1.000000e+00
## GO:0001835  BP    40  0 1.000000e+00
## GO:0042398  BP    40  0 1.000000e+00
## GO:0071542  BP    40  0 1.000000e+00
## GO:0045022  BP    40  0 1.000000e+00
## GO:0048821  BP    40  0 1.000000e+00
## GO:0060325  BP    40  0 1.000000e+00
## GO:0035188  BP    40  0 1.000000e+00
## GO:0032620  BP    40  0 1.000000e+00
## GO:0060603  BP    40  0 1.000000e+00
## GO:0044091  BP    40  0 1.000000e+00
## GO:0000266  BP    40  0 1.000000e+00
## GO:0044764  BP    40  0 1.000000e+00
## GO:0002323  BP    40  0 1.000000e+00
## GO:0110111  BP    40  0 1.000000e+00
## GO:0002686  BP    40  0 1.000000e+00
## GO:0038179  BP    40  0 1.000000e+00
## GO:0071684  BP    40  0 1.000000e+00
## GO:0045851  BP    40  0 1.000000e+00
## GO:0045911  BP    40  0 1.000000e+00
## GO:0045747  BP    40  0 1.000000e+00
## GO:0048520  BP    40  0 1.000000e+00
## GO:0031062  BP    40  0 1.000000e+00
## GO:1905332  BP    40  0 1.000000e+00
## GO:0014742  BP    40  0 1.000000e+00
## GO:0035307  BP    40  0 1.000000e+00
## GO:2000273  BP    40  0 1.000000e+00
## GO:0034105  BP    40  0 1.000000e+00
## GO:0070207  BP    40  0 1.000000e+00
## GO:0044743  BP    40  0 1.000000e+00
## GO:0072523  BP    40  0 1.000000e+00
## GO:0001881  BP    40  0 1.000000e+00
## GO:0070884  BP    40  0 1.000000e+00
## GO:0106056  BP    40  0 1.000000e+00
## GO:0086004  BP    40  0 1.000000e+00
## GO:1903053  BP    40  0 1.000000e+00
## GO:0010470  BP    40  0 1.000000e+00
## GO:0050706  BP    40  0 1.000000e+00
## GO:0046825  BP    40  0 1.000000e+00
## GO:0098801  BP    40  0 1.000000e+00
## GO:0009409  BP    40  0 1.000000e+00
## GO:0009268  BP    40  0 1.000000e+00
## GO:0003009  BP    40  0 1.000000e+00
## GO:0048741  BP    40  0 1.000000e+00
## GO:0001783  BP    41  0 1.000000e+00
## GO:0046164  BP    41  0 1.000000e+00
## GO:0009066  BP    41  0 1.000000e+00
## GO:0061049  BP    41  0 1.000000e+00
## GO:0033059  BP    41  0 1.000000e+00
## GO:0071364  BP    41  0 1.000000e+00
## GO:0021955  BP    41  0 1.000000e+00
## GO:0021696  BP    41  0 1.000000e+00
## GO:0033344  BP    41  0 1.000000e+00
## GO:0097484  BP    41  0 1.000000e+00
## GO:0042417  BP    41  0 1.000000e+00
## GO:0045197  BP    41  0 1.000000e+00
## GO:0060122  BP    41  0 1.000000e+00
## GO:0086009  BP    41  0 1.000000e+00
## GO:2000279  BP    41  0 1.000000e+00
## GO:0010972  BP    41  0 1.000000e+00
## GO:1903170  BP    41  0 1.000000e+00
## GO:0055026  BP    41  0 1.000000e+00
## GO:2001258  BP    41  0 1.000000e+00
## GO:0001937  BP    41  0 1.000000e+00
## GO:1905953  BP    41  0 1.000000e+00
## GO:0045841  BP    41  0 1.000000e+00
## GO:0002832  BP    41  0 1.000000e+00
## GO:0051154  BP    41  0 1.000000e+00
## GO:0038083  BP    41  0 1.000000e+00
## GO:0045494  BP    41  0 1.000000e+00
## GO:0003301  BP    41  0 1.000000e+00
## GO:0003298  BP    41  0 1.000000e+00
## GO:0030501  BP    41  0 1.000000e+00
## GO:0046326  BP    41  0 1.000000e+00
## GO:0035774  BP    41  0 1.000000e+00
## GO:0050685  BP    41  0 1.000000e+00
## GO:0051281  BP    41  0 1.000000e+00
## GO:0099084  BP    41  0 1.000000e+00
## GO:0050856  BP    41  0 1.000000e+00
## GO:0033628  BP    41  0 1.000000e+00
## GO:2000772  BP    41  0 1.000000e+00
## GO:1905521  BP    41  0 1.000000e+00
## GO:2000008  BP    41  0 1.000000e+00
## GO:0032459  BP    41  0 1.000000e+00
## GO:0046782  BP    41  0 1.000000e+00
## GO:0007431  BP    41  0 1.000000e+00
## GO:0031577  BP    41  0 1.000000e+00
## GO:0006418  BP    41  0 1.000000e+00
## GO:0019883  BP    42  0 1.000000e+00
## GO:1902742  BP    42  0 1.000000e+00
## GO:0034198  BP    42  0 1.000000e+00
## GO:0030866  BP    42  0 1.000000e+00
## GO:0006687  BP    42  0 1.000000e+00
## GO:0032958  BP    42  0 1.000000e+00
## GO:0048255  BP    42  0 1.000000e+00
## GO:0000959  BP    42  0 1.000000e+00
## GO:0007080  BP    42  0 1.000000e+00
## GO:0030835  BP    42  0 1.000000e+00
## GO:0002823  BP    42  0 1.000000e+00
## GO:0046636  BP    42  0 1.000000e+00
## GO:1903523  BP    42  0 1.000000e+00
## GO:2000816  BP    42  0 1.000000e+00
## GO:0046621  BP    42  0 1.000000e+00
## GO:1903573  BP    42  0 1.000000e+00
## GO:0055023  BP    42  0 1.000000e+00
## GO:0010518  BP    42  0 1.000000e+00
## GO:0010765  BP    42  0 1.000000e+00
## GO:1900015  BP    42  0 1.000000e+00
## GO:0010559  BP    42  0 1.000000e+00
## GO:2000826  BP    42  0 1.000000e+00
## GO:1902743  BP    42  0 1.000000e+00
## GO:0010883  BP    42  0 1.000000e+00
## GO:0090224  BP    42  0 1.000000e+00
## GO:0042220  BP    42  0 1.000000e+00
## GO:0097178  BP    42  0 1.000000e+00
## GO:0021522  BP    42  0 1.000000e+00
## GO:0098927  BP    42  0 1.000000e+00
## GO:0038202  BP    43  0 1.000000e+00
## GO:0032924  BP    43  0 1.000000e+00
## GO:0006040  BP    43  0 1.000000e+00
## GO:0043277  BP    43  0 1.000000e+00
## GO:0048854  BP    43  0 1.000000e+00
## GO:0086002  BP    43  0 1.000000e+00
## GO:0031670  BP    43  0 1.000000e+00
## GO:0031128  BP    43  0 1.000000e+00
## GO:0003416  BP    43  0 1.000000e+00
## GO:0072666  BP    43  0 1.000000e+00
## GO:0051293  BP    43  0 1.000000e+00
## GO:0042462  BP    43  0 1.000000e+00
## GO:0009250  BP    43  0 1.000000e+00
## GO:0005978  BP    43  0 1.000000e+00
## GO:0042771  BP    43  0 1.000000e+00
## GO:0008631  BP    43  0 1.000000e+00
## GO:0048246  BP    43  0 1.000000e+00
## GO:0030490  BP    43  0 1.000000e+00
## GO:0051673  BP    43  0 1.000000e+00
## GO:0031057  BP    43  0 1.000000e+00
## GO:0090317  BP    43  0 1.000000e+00
## GO:1902100  BP    43  0 1.000000e+00
## GO:0009395  BP    43  0 1.000000e+00
## GO:0010907  BP    43  0 1.000000e+00
## GO:0045823  BP    43  0 1.000000e+00
## GO:0040018  BP    43  0 1.000000e+00
## GO:1901381  BP    43  0 1.000000e+00
## GO:0042307  BP    43  0 1.000000e+00
## GO:1990573  BP    43  0 1.000000e+00
## GO:0032527  BP    43  0 1.000000e+00
## GO:0016925  BP    43  0 1.000000e+00
## GO:0070232  BP    43  0 1.000000e+00
## GO:0010824  BP    43  0 1.000000e+00
## GO:0032374  BP    43  0 1.000000e+00
## GO:0060964  BP    43  0 1.000000e+00
## GO:1901031  BP    43  0 1.000000e+00
## GO:0032371  BP    43  0 1.000000e+00
## GO:0006890  BP    43  0 1.000000e+00
## GO:0043403  BP    43  0 1.000000e+00
## GO:0016073  BP    43  0 1.000000e+00
## GO:0043044  BP    44  0 1.000000e+00
## GO:0070830  BP    44  0 1.000000e+00
## GO:0001569  BP    44  0 1.000000e+00
## GO:0071385  BP    44  0 1.000000e+00
## GO:0043616  BP    44  0 1.000000e+00
## GO:0042181  BP    44  0 1.000000e+00
## GO:0014904  BP    44  0 1.000000e+00
## GO:0098781  BP    44  0 1.000000e+00
## GO:0050919  BP    44  0 1.000000e+00
## GO:0043124  BP    44  0 1.000000e+00
## GO:1905819  BP    44  0 1.000000e+00
## GO:0051898  BP    44  0 1.000000e+00
## GO:0032873  BP    44  0 1.000000e+00
## GO:0070303  BP    44  0 1.000000e+00
## GO:0070527  BP    44  0 1.000000e+00
## GO:0050918  BP    44  0 1.000000e+00
## GO:0061098  BP    44  0 1.000000e+00
## GO:0003156  BP    44  0 1.000000e+00
## GO:0010569  BP    44  0 1.000000e+00
## GO:0032881  BP    44  0 1.000000e+00
## GO:0070849  BP    44  0 1.000000e+00
## GO:0034340  BP    44  0 1.000000e+00
## GO:0043039  BP    44  0 1.000000e+00
## GO:0006904  BP    44  0 1.000000e+00
## GO:0019083  BP    44  0 1.000000e+00
## GO:0010257  BP    45  0 1.000000e+00
## GO:0043038  BP    45  0 1.000000e+00
## GO:0042987  BP    45  0 1.000000e+00
## GO:0002063  BP    45  0 1.000000e+00
## GO:0002534  BP    45  0 1.000000e+00
## GO:0050974  BP    45  0 1.000000e+00
## GO:0007212  BP    45  0 1.000000e+00
## GO:0014046  BP    45  0 1.000000e+00
## GO:0035136  BP    45  0 1.000000e+00
## GO:0061647  BP    45  0 1.000000e+00
## GO:0002269  BP    45  0 1.000000e+00
## GO:0006378  BP    45  0 1.000000e+00
## GO:0060135  BP    45  0 1.000000e+00
## GO:0001774  BP    45  0 1.000000e+00
## GO:0032981  BP    45  0 1.000000e+00
## GO:0051646  BP    45  0 1.000000e+00
## GO:0010259  BP    45  0 1.000000e+00
## GO:0033048  BP    45  0 1.000000e+00
## GO:0019228  BP    45  0 1.000000e+00
## GO:0018023  BP    45  0 1.000000e+00
## GO:1903580  BP    45  0 1.000000e+00
## GO:0030890  BP    45  0 1.000000e+00
## GO:0001961  BP    45  0 1.000000e+00
## GO:0060421  BP    45  0 1.000000e+00
## GO:0090184  BP    45  0 1.000000e+00
## GO:0035196  BP    45  0 1.000000e+00
## GO:0032965  BP    45  0 1.000000e+00
## GO:0014059  BP    45  0 1.000000e+00
## GO:0003254  BP    45  0 1.000000e+00
## GO:0010464  BP    45  0 1.000000e+00
## GO:0032814  BP    45  0 1.000000e+00
## GO:0031952  BP    45  0 1.000000e+00
## GO:0090207  BP    45  0 1.000000e+00
## GO:0071526  BP    45  0 1.000000e+00
## GO:0000245  BP    45  0 1.000000e+00
## GO:0120192  BP    45  0 1.000000e+00
## GO:0019674  BP    46  0 1.000000e+00
## GO:0043029  BP    46  0 1.000000e+00
## GO:0045010  BP    46  0 1.000000e+00
## GO:0050798  BP    46  0 1.000000e+00
## GO:0007628  BP    46  0 1.000000e+00
## GO:0098868  BP    46  0 1.000000e+00
## GO:0006576  BP    46  0 1.000000e+00
## GO:0071384  BP    46  0 1.000000e+00
## GO:0035458  BP    46  0 1.000000e+00
## GO:0006695  BP    46  0 1.000000e+00
## GO:0098754  BP    46  0 1.000000e+00
## GO:0032456  BP    46  0 1.000000e+00
## GO:0003382  BP    46  0 1.000000e+00
## GO:0060323  BP    46  0 1.000000e+00
## GO:0042073  BP    46  0 1.000000e+00
## GO:0032007  BP    46  0 1.000000e+00
## GO:0030517  BP    46  0 1.000000e+00
## GO:0010677  BP    46  0 1.000000e+00
## GO:0002707  BP    46  0 1.000000e+00
## GO:0031111  BP    46  0 1.000000e+00
## GO:0021772  BP    46  0 1.000000e+00
## GO:0018198  BP    46  0 1.000000e+00
## GO:0033120  BP    46  0 1.000000e+00
## GO:1903727  BP    46  0 1.000000e+00
## GO:0001941  BP    46  0 1.000000e+00
## GO:2000404  BP    46  0 1.000000e+00
## GO:1902667  BP    46  0 1.000000e+00
## GO:0090279  BP    46  0 1.000000e+00
## GO:0060966  BP    46  0 1.000000e+00
## GO:0006110  BP    46  0 1.000000e+00
## GO:0030811  BP    46  0 1.000000e+00
## GO:0010799  BP    46  0 1.000000e+00
## GO:0060147  BP    46  0 1.000000e+00
## GO:1990928  BP    46  0 1.000000e+00
## GO:0035036  BP    46  0 1.000000e+00
## GO:0048536  BP    46  0 1.000000e+00
## GO:0033013  BP    46  0 1.000000e+00
## GO:0043631  BP    47  0 1.000000e+00
## GO:0071300  BP    47  0 1.000000e+00
## GO:0030261  BP    47  0 1.000000e+00
## GO:0031050  BP    47  0 1.000000e+00
## GO:0003197  BP    47  0 1.000000e+00
## GO:0003179  BP    47  0 1.000000e+00
## GO:0016574  BP    47  0 1.000000e+00
## GO:0050702  BP    47  0 1.000000e+00
## GO:0030520  BP    47  0 1.000000e+00
## GO:0045581  BP    47  0 1.000000e+00
## GO:0002820  BP    47  0 1.000000e+00
## GO:0120163  BP    47  0 1.000000e+00
## GO:0033046  BP    47  0 1.000000e+00
## GO:0021532  BP    47  0 1.000000e+00
## GO:0001504  BP    47  0 1.000000e+00
## GO:0002639  BP    47  0 1.000000e+00
## GO:0045907  BP    47  0 1.000000e+00
## GO:0070918  BP    47  0 1.000000e+00
## GO:1902041  BP    47  0 1.000000e+00
## GO:0051489  BP    47  0 1.000000e+00
## GO:0050704  BP    47  0 1.000000e+00
## GO:0090199  BP    47  0 1.000000e+00
## GO:0001990  BP    47  0 1.000000e+00
## GO:1902653  BP    47  0 1.000000e+00
## GO:0006368  BP    47  0 1.000000e+00
## GO:0048010  BP    47  0 1.000000e+00
## GO:0043489  BP    48  0 1.000000e+00
## GO:0050435  BP    48  0 1.000000e+00
## GO:0008089  BP    48  0 1.000000e+00
## GO:0048483  BP    48  0 1.000000e+00
## GO:0044848  BP    48  0 1.000000e+00
## GO:0050873  BP    48  0 1.000000e+00
## GO:0044786  BP    48  0 1.000000e+00
## GO:0061005  BP    48  0 1.000000e+00
## GO:0001580  BP    48  0 1.000000e+00
## GO:0042755  BP    48  0 1.000000e+00
## GO:0007157  BP    48  0 1.000000e+00
## GO:0045104  BP    48  0 1.000000e+00
## GO:0007520  BP    48  0 1.000000e+00
## GO:0045910  BP    48  0 1.000000e+00
## GO:0030857  BP    48  0 1.000000e+00
## GO:0021988  BP    48  0 1.000000e+00
## GO:0022602  BP    48  0 1.000000e+00
## GO:0002714  BP    48  0 1.000000e+00
## GO:0050850  BP    48  0 1.000000e+00
## GO:1902808  BP    48  0 1.000000e+00
## GO:0002891  BP    48  0 1.000000e+00
## GO:0032731  BP    48  0 1.000000e+00
## GO:0051590  BP    48  0 1.000000e+00
## GO:0010862  BP    48  0 1.000000e+00
## GO:1904591  BP    48  0 1.000000e+00
## GO:0010107  BP    48  0 1.000000e+00
## GO:0070534  BP    48  0 1.000000e+00
## GO:0031648  BP    48  0 1.000000e+00
## GO:0007131  BP    48  0 1.000000e+00
## GO:1903115  BP    48  0 1.000000e+00
## GO:2000725  BP    48  0 1.000000e+00
## GO:0090342  BP    48  0 1.000000e+00
## GO:0043550  BP    48  0 1.000000e+00
## GO:0090311  BP    48  0 1.000000e+00
## GO:0051972  BP    48  0 1.000000e+00
## GO:0051438  BP    48  0 1.000000e+00
## GO:0051653  BP    48  0 1.000000e+00
## GO:0047496  BP    48  0 1.000000e+00
## GO:0090659  BP    48  0 1.000000e+00
## GO:0017001  BP    49  0 1.000000e+00
## GO:0002474  BP    49  0 1.000000e+00
## GO:0033173  BP    49  0 1.000000e+00
## GO:0071470  BP    49  0 1.000000e+00
## GO:0098586  BP    49  0 1.000000e+00
## GO:0090102  BP    49  0 1.000000e+00
## GO:0021545  BP    49  0 1.000000e+00
## GO:0035088  BP    49  0 1.000000e+00
## GO:0061245  BP    49  0 1.000000e+00
## GO:0035825  BP    49  0 1.000000e+00
## GO:0045103  BP    49  0 1.000000e+00
## GO:0046834  BP    49  0 1.000000e+00
## GO:0070229  BP    49  0 1.000000e+00
## GO:0048599  BP    49  0 1.000000e+00
## GO:0001916  BP    49  0 1.000000e+00
## GO:0046638  BP    49  0 1.000000e+00
## GO:0070169  BP    49  0 1.000000e+00
## GO:0032941  BP    49  0 1.000000e+00
## GO:0061912  BP    49  0 1.000000e+00
## GO:0014888  BP    49  0 1.000000e+00
## GO:0060612  BP    50  0 1.000000e+00
## GO:0030865  BP    50  0 1.000000e+00
## GO:0006303  BP    50  0 1.000000e+00
## GO:0048701  BP    50  0 1.000000e+00
## GO:0010761  BP    50  0 1.000000e+00
## GO:0035137  BP    50  0 1.000000e+00
## GO:0042491  BP    50  0 1.000000e+00
## GO:0006406  BP    50  0 1.000000e+00
## GO:0071427  BP    50  0 1.000000e+00
## GO:0050891  BP    50  0 1.000000e+00
## GO:0051985  BP    50  0 1.000000e+00
## GO:0010596  BP    50  0 1.000000e+00
## GO:0032715  BP    50  0 1.000000e+00
## GO:0051055  BP    50  0 1.000000e+00
## GO:1902373  BP    50  0 1.000000e+00
## GO:2000059  BP    50  0 1.000000e+00
## GO:0008038  BP    50  0 1.000000e+00
## GO:0000288  BP    50  0 1.000000e+00
## GO:0046189  BP    50  0 1.000000e+00
## GO:0010828  BP    50  0 1.000000e+00
## GO:0061014  BP    50  0 1.000000e+00
## GO:0045981  BP    50  0 1.000000e+00
## GO:1900544  BP    50  0 1.000000e+00
## GO:0099054  BP    50  0 1.000000e+00
## GO:0043370  BP    50  0 1.000000e+00
## GO:0090329  BP    50  0 1.000000e+00
## GO:0045124  BP    50  0 1.000000e+00
## GO:0060043  BP    50  0 1.000000e+00
## GO:0032330  BP    50  0 1.000000e+00
## GO:0071675  BP    50  0 1.000000e+00
## GO:0010332  BP    50  0 1.000000e+00
## GO:0007129  BP    50  0 1.000000e+00
## GO:0120193  BP    50  0 1.000000e+00
## GO:0006360  BP    50  0 1.000000e+00
## GO:0031146  BP    51  0 1.000000e+00
## GO:0031103  BP    51  0 1.000000e+00
## GO:0001974  BP    51  0 1.000000e+00
## GO:0009583  BP    51  0 1.000000e+00
## GO:0031018  BP    51  0 1.000000e+00
## GO:0007032  BP    51  0 1.000000e+00
## GO:0048806  BP    51  0 1.000000e+00
## GO:0060428  BP    51  0 1.000000e+00
## GO:0007140  BP    51  0 1.000000e+00
## GO:0072132  BP    51  0 1.000000e+00
## GO:0030901  BP    51  0 1.000000e+00
## GO:0070265  BP    51  0 1.000000e+00
## GO:0045912  BP    51  0 1.000000e+00
## GO:0051954  BP    51  0 1.000000e+00
## GO:0060760  BP    51  0 1.000000e+00
## GO:0032206  BP    51  0 1.000000e+00
## GO:0032784  BP    51  0 1.000000e+00
## GO:0030834  BP    51  0 1.000000e+00
## GO:0061001  BP    51  0 1.000000e+00
## GO:0044058  BP    51  0 1.000000e+00
## GO:0006111  BP    51  0 1.000000e+00
## GO:0032648  BP    51  0 1.000000e+00
## GO:2000649  BP    51  0 1.000000e+00
## GO:0043618  BP    51  0 1.000000e+00
## GO:0019098  BP    51  0 1.000000e+00
## GO:0032355  BP    51  0 1.000000e+00
## GO:0070542  BP    51  0 1.000000e+00
## GO:0050913  BP    51  0 1.000000e+00
## GO:0017145  BP    51  0 1.000000e+00
## GO:0060412  BP    51  0 1.000000e+00
## GO:0001662  BP    52  0 1.000000e+00
## GO:0097720  BP    52  0 1.000000e+00
## GO:0060351  BP    52  0 1.000000e+00
## GO:0035924  BP    52  0 1.000000e+00
## GO:0021587  BP    52  0 1.000000e+00
## GO:0061077  BP    52  0 1.000000e+00
## GO:0050912  BP    52  0 1.000000e+00
## GO:0048247  BP    52  0 1.000000e+00
## GO:0007019  BP    52  0 1.000000e+00
## GO:1902750  BP    52  0 1.000000e+00
## GO:0001960  BP    52  0 1.000000e+00
## GO:1903202  BP    52  0 1.000000e+00
## GO:0046148  BP    52  0 1.000000e+00
## GO:0001954  BP    52  0 1.000000e+00
## GO:0043268  BP    52  0 1.000000e+00
## GO:0032481  BP    52  0 1.000000e+00
## GO:0072698  BP    52  0 1.000000e+00
## GO:0072527  BP    52  0 1.000000e+00
## GO:0010712  BP    52  0 1.000000e+00
## GO:1900271  BP    52  0 1.000000e+00
## GO:0097035  BP    52  0 1.000000e+00
## GO:2001222  BP    52  0 1.000000e+00
## GO:0048713  BP    52  0 1.000000e+00
## GO:2000677  BP    52  0 1.000000e+00
## GO:0001895  BP    52  0 1.000000e+00
## GO:0031529  BP    52  0 1.000000e+00
## GO:0016126  BP    52  0 1.000000e+00
## GO:0009948  BP    53  0 1.000000e+00
## GO:0002209  BP    53  0 1.000000e+00
## GO:0071242  BP    53  0 1.000000e+00
## GO:0048546  BP    53  0 1.000000e+00
## GO:0032608  BP    53  0 1.000000e+00
## GO:0045190  BP    53  0 1.000000e+00
## GO:0098815  BP    53  0 1.000000e+00
## GO:0030514  BP    53  0 1.000000e+00
## GO:0043392  BP    53  0 1.000000e+00
## GO:1900408  BP    53  0 1.000000e+00
## GO:0014014  BP    53  0 1.000000e+00
## GO:1901799  BP    53  0 1.000000e+00
## GO:0048662  BP    53  0 1.000000e+00
## GO:0009994  BP    53  0 1.000000e+00
## GO:0045777  BP    53  0 1.000000e+00
## GO:0045933  BP    53  0 1.000000e+00
## GO:0030850  BP    53  0 1.000000e+00
## GO:0031113  BP    53  0 1.000000e+00
## GO:0046902  BP    53  0 1.000000e+00
## GO:0030071  BP    53  0 1.000000e+00
## GO:0042269  BP    53  0 1.000000e+00
## GO:0010517  BP    53  0 1.000000e+00
## GO:0043666  BP    53  0 1.000000e+00
## GO:0051930  BP    53  0 1.000000e+00
## GO:1900024  BP    53  0 1.000000e+00
## GO:0032210  BP    53  0 1.000000e+00
## GO:1904705  BP    53  0 1.000000e+00
## GO:0045214  BP    53  0 1.000000e+00
## GO:0055078  BP    53  0 1.000000e+00
## GO:0002208  BP    53  0 1.000000e+00
## GO:0002204  BP    53  0 1.000000e+00
## GO:0051932  BP    53  0 1.000000e+00
## GO:0061383  BP    53  0 1.000000e+00
## GO:1990874  BP    53  0 1.000000e+00
## GO:0055010  BP    53  0 1.000000e+00
## GO:0099518  BP    53  0 1.000000e+00
## GO:0043297  BP    54  0 1.000000e+00
## GO:0086001  BP    54  0 1.000000e+00
## GO:0032964  BP    54  0 1.000000e+00
## GO:0030199  BP    54  0 1.000000e+00
## GO:0035272  BP    54  0 1.000000e+00
## GO:0042738  BP    54  0 1.000000e+00
## GO:0046503  BP    54  0 1.000000e+00
## GO:0051568  BP    54  0 1.000000e+00
## GO:0050922  BP    54  0 1.000000e+00
## GO:0006289  BP    54  0 1.000000e+00
## GO:0055025  BP    54  0 1.000000e+00
## GO:0060193  BP    54  0 1.000000e+00
## GO:2000648  BP    54  0 1.000000e+00
## GO:0051496  BP    54  0 1.000000e+00
## GO:0051290  BP    54  0 1.000000e+00
## GO:0001914  BP    54  0 1.000000e+00
## GO:0045604  BP    54  0 1.000000e+00
## GO:0043030  BP    54  0 1.000000e+00
## GO:0002715  BP    54  0 1.000000e+00
## GO:1903533  BP    54  0 1.000000e+00
## GO:0051931  BP    54  0 1.000000e+00
## GO:0007585  BP    54  0 1.000000e+00
## GO:0046718  BP    54  0 1.000000e+00
## GO:0045058  BP    55  0 1.000000e+00
## GO:0030042  BP    55  0 1.000000e+00
## GO:0046513  BP    55  0 1.000000e+00
## GO:0021795  BP    55  0 1.000000e+00
## GO:0048066  BP    55  0 1.000000e+00
## GO:0035315  BP    55  0 1.000000e+00
## GO:0050701  BP    55  0 1.000000e+00
## GO:0002548  BP    55  0 1.000000e+00
## GO:0046580  BP    55  0 1.000000e+00
## GO:0046676  BP    55  0 1.000000e+00
## GO:0010823  BP    55  0 1.000000e+00
## GO:0045839  BP    55  0 1.000000e+00
## GO:0050732  BP    55  0 1.000000e+00
## GO:0007528  BP    55  0 1.000000e+00
## GO:0045773  BP    55  0 1.000000e+00
## GO:0050775  BP    55  0 1.000000e+00
## GO:0035306  BP    55  0 1.000000e+00
## GO:0002833  BP    55  0 1.000000e+00
## GO:0042531  BP    55  0 1.000000e+00
## GO:0061512  BP    55  0 1.000000e+00
## GO:1903539  BP    55  0 1.000000e+00
## GO:0043470  BP    55  0 1.000000e+00
## GO:0010665  BP    55  0 1.000000e+00
## GO:0032655  BP    55  0 1.000000e+00
## GO:0003044  BP    55  0 1.000000e+00
## GO:0001523  BP    55  0 1.000000e+00
## GO:0006900  BP    55  0 1.000000e+00
## GO:0019369  BP    56  0 1.000000e+00
## GO:0009712  BP    56  0 1.000000e+00
## GO:0006584  BP    56  0 1.000000e+00
## GO:0008333  BP    56  0 1.000000e+00
## GO:0007588  BP    56  0 1.000000e+00
## GO:0042596  BP    56  0 1.000000e+00
## GO:0021575  BP    56  0 1.000000e+00
## GO:0042743  BP    56  0 1.000000e+00
## GO:0002227  BP    56  0 1.000000e+00
## GO:0065002  BP    56  0 1.000000e+00
## GO:1905517  BP    56  0 1.000000e+00
## GO:0007618  BP    56  0 1.000000e+00
## GO:0044773  BP    56  0 1.000000e+00
## GO:0002704  BP    56  0 1.000000e+00
## GO:0045620  BP    56  0 1.000000e+00
## GO:0060761  BP    56  0 1.000000e+00
## GO:1902883  BP    56  0 1.000000e+00
## GO:0035567  BP    56  0 1.000000e+00
## GO:0032732  BP    56  0 1.000000e+00
## GO:0090303  BP    56  0 1.000000e+00
## GO:0043620  BP    56  0 1.000000e+00
## GO:0051196  BP    56  0 1.000000e+00
## GO:1900449  BP    56  0 1.000000e+00
## GO:1902099  BP    56  0 1.000000e+00
## GO:0031641  BP    56  0 1.000000e+00
## GO:0072347  BP    56  0 1.000000e+00
## GO:0035456  BP    56  0 1.000000e+00
## GO:0007062  BP    56  0 1.000000e+00
## GO:0048538  BP    56  0 1.000000e+00
## GO:0030104  BP    56  0 1.000000e+00
## GO:0001825  BP    57  0 1.000000e+00
## GO:0006879  BP    57  0 1.000000e+00
## GO:0016101  BP    57  0 1.000000e+00
## GO:0001736  BP    57  0 1.000000e+00
## GO:0001754  BP    57  0 1.000000e+00
## GO:0002067  BP    57  0 1.000000e+00
## GO:0009247  BP    57  0 1.000000e+00
## GO:0003170  BP    57  0 1.000000e+00
## GO:0048016  BP    57  0 1.000000e+00
## GO:0010463  BP    57  0 1.000000e+00
## GO:0051310  BP    57  0 1.000000e+00
## GO:0007091  BP    57  0 1.000000e+00
## GO:0042775  BP    57  0 1.000000e+00
## GO:0090307  BP    57  0 1.000000e+00
## GO:0050879  BP    57  0 1.000000e+00
## GO:0050881  BP    57  0 1.000000e+00
## GO:0045071  BP    57  0 1.000000e+00
## GO:0042551  BP    57  0 1.000000e+00
## GO:0000726  BP    57  0 1.000000e+00
## GO:0046622  BP    57  0 1.000000e+00
## GO:0048260  BP    57  0 1.000000e+00
## GO:0099172  BP    57  0 1.000000e+00
## GO:0071806  BP    57  0 1.000000e+00
## GO:0050854  BP    57  0 1.000000e+00
## GO:0090109  BP    57  0 1.000000e+00
## GO:0051893  BP    57  0 1.000000e+00
## GO:0019080  BP    57  0 1.000000e+00
## GO:0090501  BP    58  0 1.000000e+00
## GO:0070231  BP    58  0 1.000000e+00
## GO:0072678  BP    58  0 1.000000e+00
## GO:0098930  BP    58  0 1.000000e+00
## GO:0061337  BP    58  0 1.000000e+00
## GO:0043954  BP    58  0 1.000000e+00
## GO:0051187  BP    58  0 1.000000e+00
## GO:0051806  BP    58  0 1.000000e+00
## GO:0044409  BP    58  0 1.000000e+00
## GO:0030260  BP    58  0 1.000000e+00
## GO:0051828  BP    58  0 1.000000e+00
## GO:0007164  BP    58  0 1.000000e+00
## GO:0032835  BP    58  0 1.000000e+00
## GO:0032615  BP    58  0 1.000000e+00
## GO:0015909  BP    58  0 1.000000e+00
## GO:0060443  BP    58  0 1.000000e+00
## GO:0002011  BP    58  0 1.000000e+00
## GO:1902369  BP    58  0 1.000000e+00
## GO:0010656  BP    58  0 1.000000e+00
## GO:1901616  BP    58  0 1.000000e+00
## GO:1903902  BP    58  0 1.000000e+00
## GO:0044380  BP    58  0 1.000000e+00
## GO:0072665  BP    58  0 1.000000e+00
## GO:0046128  BP    58  0 1.000000e+00
## GO:0098900  BP    58  0 1.000000e+00
## GO:0046605  BP    58  0 1.000000e+00
## GO:0051445  BP    58  0 1.000000e+00
## GO:0010965  BP    58  0 1.000000e+00
## GO:0010662  BP    58  0 1.000000e+00
## GO:0043330  BP    58  0 1.000000e+00
## GO:0016447  BP    58  0 1.000000e+00
## GO:0015807  BP    59  0 1.000000e+00
## GO:0010659  BP    59  0 1.000000e+00
## GO:0031122  BP    59  0 1.000000e+00
## GO:0050907  BP    59  0 1.000000e+00
## GO:0015872  BP    59  0 1.000000e+00
## GO:0007029  BP    59  0 1.000000e+00
## GO:0008347  BP    59  0 1.000000e+00
## GO:0006749  BP    59  0 1.000000e+00
## GO:0060119  BP    59  0 1.000000e+00
## GO:0098661  BP    59  0 1.000000e+00
## GO:0031124  BP    59  0 1.000000e+00
## GO:0045806  BP    59  0 1.000000e+00
## GO:0051148  BP    59  0 1.000000e+00
## GO:0001755  BP    59  0 1.000000e+00
## GO:0006661  BP    59  0 1.000000e+00
## GO:0010524  BP    59  0 1.000000e+00
## GO:2001238  BP    59  0 1.000000e+00
## GO:1903078  BP    59  0 1.000000e+00
## GO:0070936  BP    59  0 1.000000e+00
## GO:0070972  BP    59  0 1.000000e+00
## GO:2000401  BP    59  0 1.000000e+00
## GO:1901016  BP    59  0 1.000000e+00
## GO:1901607  BP    60  0 1.000000e+00
## GO:0042982  BP    60  0 1.000000e+00
## GO:0070098  BP    60  0 1.000000e+00
## GO:0050982  BP    60  0 1.000000e+00
## GO:0060324  BP    60  0 1.000000e+00
## GO:0046847  BP    60  0 1.000000e+00
## GO:0001947  BP    60  0 1.000000e+00
## GO:0007595  BP    60  0 1.000000e+00
## GO:0044784  BP    60  0 1.000000e+00
## GO:0045744  BP    60  0 1.000000e+00
## GO:2000134  BP    60  0 1.000000e+00
## GO:0030837  BP    60  0 1.000000e+00
## GO:0045776  BP    60  0 1.000000e+00
## GO:0045824  BP    60  0 1.000000e+00
## GO:0031102  BP    60  0 1.000000e+00
## GO:0046850  BP    60  0 1.000000e+00
## GO:0071156  BP    60  0 1.000000e+00
## GO:1902017  BP    60  0 1.000000e+00
## GO:0090183  BP    60  0 1.000000e+00
## GO:0006446  BP    60  0 1.000000e+00
## GO:0001836  BP    60  0 1.000000e+00
## GO:0033209  BP    60  0 1.000000e+00
## GO:0042773  BP    61  0 1.000000e+00
## GO:0048512  BP    61  0 1.000000e+00
## GO:0045143  BP    61  0 1.000000e+00
## GO:0048286  BP    61  0 1.000000e+00
## GO:0007040  BP    61  0 1.000000e+00
## GO:0080171  BP    61  0 1.000000e+00
## GO:0010812  BP    61  0 1.000000e+00
## GO:0051058  BP    61  0 1.000000e+00
## GO:0042698  BP    61  0 1.000000e+00
## GO:0042461  BP    61  0 1.000000e+00
## GO:0045600  BP    61  0 1.000000e+00
## GO:0006493  BP    61  0 1.000000e+00
## GO:1905207  BP    61  0 1.000000e+00
## GO:0042058  BP    61  0 1.000000e+00
## GO:0097006  BP    61  0 1.000000e+00
## GO:1902305  BP    61  0 1.000000e+00
## GO:0051591  BP    61  0 1.000000e+00
## GO:0010171  BP    62  0 1.000000e+00
## GO:0086003  BP    62  0 1.000000e+00
## GO:0060038  BP    62  0 1.000000e+00
## GO:0071260  BP    62  0 1.000000e+00
## GO:0021695  BP    62  0 1.000000e+00
## GO:0070988  BP    62  0 1.000000e+00
## GO:0061951  BP    62  0 1.000000e+00
## GO:0043966  BP    62  0 1.000000e+00
## GO:0002437  BP    62  0 1.000000e+00
## GO:0051306  BP    62  0 1.000000e+00
## GO:1905268  BP    62  0 1.000000e+00
## GO:0045668  BP    62  0 1.000000e+00
## GO:0018149  BP    62  0 1.000000e+00
## GO:0048008  BP    62  0 1.000000e+00
## GO:0030858  BP    62  0 1.000000e+00
## GO:0014911  BP    62  0 1.000000e+00
## GO:0034308  BP    62  0 1.000000e+00
## GO:0070206  BP    62  0 1.000000e+00
## GO:0042278  BP    62  0 1.000000e+00
## GO:0043949  BP    62  0 1.000000e+00
## GO:0060393  BP    62  0 1.000000e+00
## GO:1904356  BP    62  0 1.000000e+00
## GO:0010658  BP    62  0 1.000000e+00
## GO:0006721  BP    62  0 1.000000e+00
## GO:0006367  BP    62  0 1.000000e+00
## GO:0003229  BP    62  0 1.000000e+00
## GO:0030330  BP    63  0 1.000000e+00
## GO:0006278  BP    63  0 1.000000e+00
## GO:0042093  BP    63  0 1.000000e+00
## GO:0035904  BP    63  0 1.000000e+00
## GO:0045454  BP    63  0 1.000000e+00
## GO:0008652  BP    63  0 1.000000e+00
## GO:0043967  BP    63  0 1.000000e+00
## GO:0070059  BP    63  0 1.000000e+00
## GO:0015914  BP    63  0 1.000000e+00
## GO:0043388  BP    63  0 1.000000e+00
## GO:0046579  BP    63  0 1.000000e+00
## GO:0060999  BP    63  0 1.000000e+00
## GO:0140238  BP    63  0 1.000000e+00
## GO:2001169  BP    63  0 1.000000e+00
## GO:0043462  BP    63  0 1.000000e+00
## GO:0002712  BP    63  0 1.000000e+00
## GO:0002889  BP    63  0 1.000000e+00
## GO:0045661  BP    63  0 1.000000e+00
## GO:0010830  BP    63  0 1.000000e+00
## GO:0099601  BP    63  0 1.000000e+00
## GO:0034121  BP    63  0 1.000000e+00
## GO:0007622  BP    63  0 1.000000e+00
## GO:0048488  BP    63  0 1.000000e+00
## GO:0007004  BP    63  0 1.000000e+00
## GO:0042246  BP    63  0 1.000000e+00
## GO:0002294  BP    64  0 1.000000e+00
## GO:0001658  BP    64  0 1.000000e+00
## GO:1901264  BP    64  0 1.000000e+00
## GO:0009988  BP    64  0 1.000000e+00
## GO:0071479  BP    64  0 1.000000e+00
## GO:0090398  BP    64  0 1.000000e+00
## GO:0007566  BP    64  0 1.000000e+00
## GO:0009880  BP    64  0 1.000000e+00
## GO:0044774  BP    64  0 1.000000e+00
## GO:0042267  BP    64  0 1.000000e+00
## GO:0051926  BP    64  0 1.000000e+00
## GO:1902807  BP    64  0 1.000000e+00
## GO:0030512  BP    64  0 1.000000e+00
## GO:0032233  BP    64  0 1.000000e+00
## GO:0010676  BP    64  0 1.000000e+00
## GO:0002763  BP    64  0 1.000000e+00
## GO:0046824  BP    64  0 1.000000e+00
## GO:2000514  BP    64  0 1.000000e+00
## GO:1903391  BP    64  0 1.000000e+00
## GO:0000381  BP    64  0 1.000000e+00
## GO:1905818  BP    64  0 1.000000e+00
## GO:0042306  BP    64  0 1.000000e+00
## GO:2000736  BP    64  0 1.000000e+00
## GO:0043331  BP    64  0 1.000000e+00
## GO:0060042  BP    64  0 1.000000e+00
## GO:0048278  BP    64  0 1.000000e+00
## GO:0006354  BP    65  0 1.000000e+00
## GO:0006893  BP    65  0 1.000000e+00
## GO:0001510  BP    65  0 1.000000e+00
## GO:0002293  BP    65  0 1.000000e+00
## GO:0000422  BP    65  0 1.000000e+00
## GO:0033627  BP    65  0 1.000000e+00
## GO:0045123  BP    65  0 1.000000e+00
## GO:0030968  BP    65  0 1.000000e+00
## GO:0009064  BP    65  0 1.000000e+00
## GO:0002381  BP    65  0 1.000000e+00
## GO:0043647  BP    65  0 1.000000e+00
## GO:0030032  BP    65  0 1.000000e+00
## GO:0060425  BP    65  0 1.000000e+00
## GO:0001707  BP    65  0 1.000000e+00
## GO:0061726  BP    65  0 1.000000e+00
## GO:2000242  BP    65  0 1.000000e+00
## GO:0003407  BP    65  0 1.000000e+00
## GO:0060389  BP    65  0 1.000000e+00
## GO:0042440  BP    65  0 1.000000e+00
## GO:0006487  BP    65  0 1.000000e+00
## GO:0090559  BP    65  0 1.000000e+00
## GO:0019748  BP    65  0 1.000000e+00
## GO:0016445  BP    65  0 1.000000e+00
## GO:0031638  BP    65  0 1.000000e+00
## GO:0002287  BP    66  0 1.000000e+00
## GO:1904322  BP    66  0 1.000000e+00
## GO:0032922  BP    66  0 1.000000e+00
## GO:0002228  BP    66  0 1.000000e+00
## GO:1903845  BP    66  0 1.000000e+00
## GO:0090278  BP    66  0 1.000000e+00
## GO:0045739  BP    66  0 1.000000e+00
## GO:1904377  BP    66  0 1.000000e+00
## GO:0034394  BP    66  0 1.000000e+00
## GO:1901184  BP    66  0 1.000000e+00
## GO:0046324  BP    66  0 1.000000e+00
## GO:1904321  BP    66  0 1.000000e+00
## GO:0071426  BP    66  0 1.000000e+00
## GO:0042274  BP    66  0 1.000000e+00
## GO:0033692  BP    67  0 1.000000e+00
## GO:0051298  BP    67  0 1.000000e+00
## GO:0061371  BP    67  0 1.000000e+00
## GO:0003143  BP    67  0 1.000000e+00
## GO:0097194  BP    67  0 1.000000e+00
## GO:0006635  BP    67  0 1.000000e+00
## GO:0050771  BP    67  0 1.000000e+00
## GO:0051784  BP    67  0 1.000000e+00
## GO:1905515  BP    67  0 1.000000e+00
## GO:0016239  BP    67  0 1.000000e+00
## GO:2000179  BP    67  0 1.000000e+00
## GO:0043113  BP    67  0 1.000000e+00
## GO:0048168  BP    67  0 1.000000e+00
## GO:0006940  BP    67  0 1.000000e+00
## GO:0048678  BP    67  0 1.000000e+00
## GO:0061478  BP    67  0 1.000000e+00
## GO:0071166  BP    67  0 1.000000e+00
## GO:0016444  BP    67  0 1.000000e+00
## GO:0002562  BP    67  0 1.000000e+00
## GO:0006801  BP    67  0 1.000000e+00
## GO:0032482  BP    68  0 1.000000e+00
## GO:0055081  BP    68  0 1.000000e+00
## GO:0048002  BP    68  0 1.000000e+00
## GO:0035082  BP    68  0 1.000000e+00
## GO:1904888  BP    68  0 1.000000e+00
## GO:0006855  BP    68  0 1.000000e+00
## GO:0034109  BP    68  0 1.000000e+00
## GO:0032387  BP    68  0 1.000000e+00
## GO:2001244  BP    68  0 1.000000e+00
## GO:0045669  BP    68  0 1.000000e+00
## GO:0006513  BP    68  0 1.000000e+00
## GO:0046637  BP    68  0 1.000000e+00
## GO:0051453  BP    68  0 1.000000e+00
## GO:0006305  BP    69  0 1.000000e+00
## GO:0006306  BP    69  0 1.000000e+00
## GO:0060997  BP    69  0 1.000000e+00
## GO:0007492  BP    69  0 1.000000e+00
## GO:0048332  BP    69  0 1.000000e+00
## GO:0000281  BP    69  0 1.000000e+00
## GO:0010633  BP    69  0 1.000000e+00
## GO:2000107  BP    69  0 1.000000e+00
## GO:0007405  BP    69  0 1.000000e+00
## GO:0050885  BP    69  0 1.000000e+00
## GO:0001541  BP    69  0 1.000000e+00
## GO:0046635  BP    69  0 1.000000e+00
## GO:0048146  BP    69  0 1.000000e+00
## GO:0030888  BP    69  0 1.000000e+00
## GO:0055117  BP    69  0 1.000000e+00
## GO:0061035  BP    69  0 1.000000e+00
## GO:0033047  BP    69  0 1.000000e+00
## GO:1904589  BP    69  0 1.000000e+00
## GO:0008542  BP    69  0 1.000000e+00
## GO:0006081  BP    70  0 1.000000e+00
## GO:1990869  BP    70  0 1.000000e+00
## GO:0003341  BP    70  0 1.000000e+00
## GO:0002385  BP    70  0 1.000000e+00
## GO:0042130  BP    70  0 1.000000e+00
## GO:2001021  BP    70  0 1.000000e+00
## GO:0046173  BP    70  0 1.000000e+00
## GO:0051057  BP    70  0 1.000000e+00
## GO:1903725  BP    70  0 1.000000e+00
## GO:0002090  BP    70  0 1.000000e+00
## GO:1901796  BP    70  0 1.000000e+00
## GO:0048641  BP    70  0 1.000000e+00
## GO:1990868  BP    70  0 1.000000e+00
## GO:0009119  BP    70  0 1.000000e+00
## GO:0050909  BP    70  0 1.000000e+00
## GO:0022029  BP    70  0 1.000000e+00
## GO:0002292  BP    71  0 1.000000e+00
## GO:0070192  BP    71  0 1.000000e+00
## GO:0042733  BP    71  0 1.000000e+00
## GO:0032413  BP    71  0 1.000000e+00
## GO:1903051  BP    71  0 1.000000e+00
## GO:0014068  BP    71  0 1.000000e+00
## GO:0097120  BP    71  0 1.000000e+00
## GO:0010611  BP    71  0 1.000000e+00
## GO:0050433  BP    71  0 1.000000e+00
## GO:0042509  BP    71  0 1.000000e+00
## GO:0042255  BP    71  0 1.000000e+00
## GO:0060675  BP    71  0 1.000000e+00
## GO:0048645  BP    72  0 1.000000e+00
## GO:0016575  BP    72  0 1.000000e+00
## GO:0072171  BP    72  0 1.000000e+00
## GO:0030239  BP    72  0 1.000000e+00
## GO:0002251  BP    72  0 1.000000e+00
## GO:0097755  BP    72  0 1.000000e+00
## GO:0000079  BP    72  0 1.000000e+00
## GO:0043627  BP    72  0 1.000000e+00
## GO:0006400  BP    72  0 1.000000e+00
## GO:0007632  BP    72  0 1.000000e+00
## GO:0009060  BP    73  0 1.000000e+00
## GO:0019731  BP    73  0 1.000000e+00
## GO:0021885  BP    73  0 1.000000e+00
## GO:0006094  BP    73  0 1.000000e+00
## GO:1990542  BP    73  0 1.000000e+00
## GO:0051851  BP    73  0 1.000000e+00
## GO:0031397  BP    73  0 1.000000e+00
## GO:0007422  BP    73  0 1.000000e+00
## GO:1903036  BP    73  0 1.000000e+00
## GO:0051155  BP    73  0 1.000000e+00
## GO:0051865  BP    73  0 1.000000e+00
## GO:0006626  BP    73  0 1.000000e+00
## GO:2000779  BP    73  0 1.000000e+00
## GO:0031060  BP    73  0 1.000000e+00
## GO:0002637  BP    73  0 1.000000e+00
## GO:0060191  BP    73  0 1.000000e+00
## GO:0045670  BP    73  0 1.000000e+00
## GO:0051145  BP    73  0 1.000000e+00
## GO:0006414  BP    73  0 1.000000e+00
## GO:0006919  BP    74  0 1.000000e+00
## GO:0007193  BP    74  0 1.000000e+00
## GO:0003333  BP    74  0 1.000000e+00
## GO:0045453  BP    74  0 1.000000e+00
## GO:0050432  BP    74  0 1.000000e+00
## GO:0002066  BP    74  0 1.000000e+00
## GO:0008543  BP    74  0 1.000000e+00
## GO:0021766  BP    74  0 1.000000e+00
## GO:0010507  BP    74  0 1.000000e+00
## GO:1901880  BP    74  0 1.000000e+00
## GO:2000573  BP    74  0 1.000000e+00
## GO:0010822  BP    74  0 1.000000e+00
## GO:0002532  BP    74  0 1.000000e+00
## GO:0032651  BP    74  0 1.000000e+00
## GO:0014743  BP    74  0 1.000000e+00
## GO:1903201  BP    74  0 1.000000e+00
## GO:0097327  BP    74  0 1.000000e+00
## GO:0036465  BP    74  0 1.000000e+00
## GO:0051303  BP    75  0 1.000000e+00
## GO:0008625  BP    75  0 1.000000e+00
## GO:0046323  BP    75  0 1.000000e+00
## GO:0032507  BP    75  0 1.000000e+00
## GO:0032543  BP    75  0 1.000000e+00
## GO:0070373  BP    75  0 1.000000e+00
## GO:0032272  BP    75  0 1.000000e+00
## GO:0045843  BP    75  0 1.000000e+00
## GO:0060563  BP    75  0 1.000000e+00
## GO:0140056  BP    75  0 1.000000e+00
## GO:0000271  BP    75  0 1.000000e+00
## GO:1900182  BP    75  0 1.000000e+00
## GO:0030641  BP    75  0 1.000000e+00
## GO:0051193  BP    75  0 1.000000e+00
## GO:0030808  BP    75  0 1.000000e+00
## GO:0061097  BP    75  0 1.000000e+00
## GO:1900371  BP    75  0 1.000000e+00
## GO:0002200  BP    75  0 1.000000e+00
## GO:0007260  BP    75  0 1.000000e+00
## GO:0030433  BP    75  0 1.000000e+00
## GO:0006405  BP    76  0 1.000000e+00
## GO:0001913  BP    76  0 1.000000e+00
## GO:1901606  BP    76  0 1.000000e+00
## GO:0000380  BP    76  0 1.000000e+00
## GO:0048844  BP    76  0 1.000000e+00
## GO:0008088  BP    76  0 1.000000e+00
## GO:0055008  BP    76  0 1.000000e+00
## GO:0007045  BP    76  0 1.000000e+00
## GO:0050000  BP    76  0 1.000000e+00
## GO:0060350  BP    76  0 1.000000e+00
## GO:0048041  BP    76  0 1.000000e+00
## GO:0019319  BP    76  0 1.000000e+00
## GO:0030168  BP    76  0 1.000000e+00
## GO:1904029  BP    76  0 1.000000e+00
## GO:0070228  BP    76  0 1.000000e+00
## GO:0019229  BP    76  0 1.000000e+00
## GO:0071277  BP    77  0 1.000000e+00
## GO:0071347  BP    77  0 1.000000e+00
## GO:0030301  BP    77  0 1.000000e+00
## GO:0072332  BP    77  0 1.000000e+00
## GO:0061180  BP    77  0 1.000000e+00
## GO:0033108  BP    77  0 1.000000e+00
## GO:0001738  BP    77  0 1.000000e+00
## GO:0032088  BP    77  0 1.000000e+00
## GO:0048635  BP    77  0 1.000000e+00
## GO:2001259  BP    77  0 1.000000e+00
## GO:0051965  BP    77  0 1.000000e+00
## GO:0055021  BP    77  0 1.000000e+00
## GO:1905897  BP    77  0 1.000000e+00
## GO:0051966  BP    77  0 1.000000e+00
## GO:0001756  BP    77  0 1.000000e+00
## GO:0030148  BP    77  0 1.000000e+00
## GO:0015918  BP    77  0 1.000000e+00
## GO:0014855  BP    77  0 1.000000e+00
## GO:0010833  BP    77  0 1.000000e+00
## GO:0034637  BP    78  0 1.000000e+00
## GO:0006073  BP    78  0 1.000000e+00
## GO:0034644  BP    78  0 1.000000e+00
## GO:0060976  BP    78  0 1.000000e+00
## GO:0044042  BP    78  0 1.000000e+00
## GO:0005977  BP    78  0 1.000000e+00
## GO:0002260  BP    78  0 1.000000e+00
## GO:0046785  BP    78  0 1.000000e+00
## GO:0061515  BP    78  0 1.000000e+00
## GO:1901862  BP    78  0 1.000000e+00
## GO:0010389  BP    78  0 1.000000e+00
## GO:0051881  BP    78  0 1.000000e+00
## GO:0045471  BP    78  0 1.000000e+00
## GO:0003208  BP    79  0 1.000000e+00
## GO:0051702  BP    79  0 1.000000e+00
## GO:1902117  BP    79  0 1.000000e+00
## GO:0032465  BP    79  0 1.000000e+00
## GO:0033143  BP    79  0 1.000000e+00
## GO:0051279  BP    79  0 1.000000e+00
## GO:0042147  BP    79  0 1.000000e+00
## GO:0044272  BP    79  0 1.000000e+00
## GO:0002312  BP    80  0 1.000000e+00
## GO:0060113  BP    80  0 1.000000e+00
## GO:0022406  BP    80  0 1.000000e+00
## GO:0043154  BP    80  0 1.000000e+00
## GO:0010923  BP    80  0 1.000000e+00
## GO:0032410  BP    80  0 1.000000e+00
## GO:0072078  BP    80  0 1.000000e+00
## GO:0021675  BP    80  0 1.000000e+00
## GO:1904427  BP    80  0 1.000000e+00
## GO:0045682  BP    80  0 1.000000e+00
## GO:0043367  BP    81  0 1.000000e+00
## GO:0044106  BP    81  0 1.000000e+00
## GO:0006664  BP    81  0 1.000000e+00
## GO:1903312  BP    81  0 1.000000e+00
## GO:0007218  BP    81  0 1.000000e+00
## GO:0072384  BP    81  0 1.000000e+00
## GO:0046530  BP    81  0 1.000000e+00
## GO:0031646  BP    81  0 1.000000e+00
## GO:2000243  BP    81  0 1.000000e+00
## GO:0061178  BP    81  0 1.000000e+00
## GO:0032479  BP    81  0 1.000000e+00
## GO:0022904  BP    81  0 1.000000e+00
## GO:0043279  BP    81  0 1.000000e+00
## GO:0042273  BP    81  0 1.000000e+00
## GO:0090630  BP    82  0 1.000000e+00
## GO:0006637  BP    82  0 1.000000e+00
## GO:0034620  BP    82  0 1.000000e+00
## GO:0035050  BP    82  0 1.000000e+00
## GO:0006720  BP    82  0 1.000000e+00
## GO:1903509  BP    82  0 1.000000e+00
## GO:0051899  BP    82  0 1.000000e+00
## GO:0046364  BP    82  0 1.000000e+00
## GO:0048747  BP    82  0 1.000000e+00
## GO:1903901  BP    82  0 1.000000e+00
## GO:0072088  BP    82  0 1.000000e+00
## GO:0015748  BP    82  0 1.000000e+00
## GO:0032436  BP    82  0 1.000000e+00
## GO:0032204  BP    82  0 1.000000e+00
## GO:0035383  BP    82  0 1.000000e+00
## GO:0006672  BP    83  0 1.000000e+00
## GO:0097581  BP    83  0 1.000000e+00
## GO:0071674  BP    83  0 1.000000e+00
## GO:1903363  BP    83  0 1.000000e+00
## GO:0043242  BP    83  0 1.000000e+00
## GO:1903321  BP    83  0 1.000000e+00
## GO:0072028  BP    83  0 1.000000e+00
## GO:1901992  BP    83  0 1.000000e+00
## GO:1901019  BP    83  0 1.000000e+00
## GO:1901888  BP    83  0 1.000000e+00
## GO:0033045  BP    83  0 1.000000e+00
## GO:0006942  BP    83  0 1.000000e+00
## GO:0044728  BP    84  0 1.000000e+00
## GO:0006342  BP    84  0 1.000000e+00
## GO:0050672  BP    84  0 1.000000e+00
## GO:0032945  BP    84  0 1.000000e+00
## GO:0003151  BP    84  0 1.000000e+00
## GO:0045913  BP    84  0 1.000000e+00
## GO:0048636  BP    84  0 1.000000e+00
## GO:0045844  BP    84  0 1.000000e+00
## GO:0048524  BP    84  0 1.000000e+00
## GO:0060420  BP    84  0 1.000000e+00
## GO:1901379  BP    84  0 1.000000e+00
## GO:0008589  BP    84  0 1.000000e+00
## GO:0034103  BP    84  0 1.000000e+00
## GO:0006970  BP    84  0 1.000000e+00
## GO:0034333  BP    85  0 1.000000e+00
## GO:0042632  BP    85  0 1.000000e+00
## GO:0022900  BP    85  0 1.000000e+00
## GO:0098659  BP    85  0 1.000000e+00
## GO:0099587  BP    85  0 1.000000e+00
## GO:0002088  BP    85  0 1.000000e+00
## GO:0014032  BP    85  0 1.000000e+00
## GO:1901863  BP    85  0 1.000000e+00
## GO:0034502  BP    85  0 1.000000e+00
## GO:0035418  BP    85  0 1.000000e+00
## GO:1900407  BP    85  0 1.000000e+00
## GO:0014910  BP    85  0 1.000000e+00
## GO:0051384  BP    85  0 1.000000e+00
## GO:0032606  BP    85  0 1.000000e+00
## GO:0070509  BP    86  0 1.000000e+00
## GO:0060411  BP    86  0 1.000000e+00
## GO:0007044  BP    86  0 1.000000e+00
## GO:0009593  BP    86  0 1.000000e+00
## GO:0043648  BP    86  0 1.000000e+00
## GO:0060079  BP    86  0 1.000000e+00
## GO:0055072  BP    86  0 1.000000e+00
## GO:0042490  BP    86  0 1.000000e+00
## GO:0001912  BP    86  0 1.000000e+00
## GO:0035304  BP    86  0 1.000000e+00
## GO:0061333  BP    86  0 1.000000e+00
## GO:0055092  BP    86  0 1.000000e+00
## GO:0003281  BP    86  0 1.000000e+00
## GO:0070252  BP    87  0 1.000000e+00
## GO:2000117  BP    87  0 1.000000e+00
## GO:0042475  BP    87  0 1.000000e+00
## GO:1901879  BP    87  0 1.000000e+00
## GO:0072091  BP    87  0 1.000000e+00
## GO:0044344  BP    88  0 1.000000e+00
## GO:0006112  BP    88  0 1.000000e+00
## GO:0070664  BP    88  0 1.000000e+00
## GO:0009116  BP    88  0 1.000000e+00
## GO:0032024  BP    88  0 1.000000e+00
## GO:0051149  BP    88  0 1.000000e+00
## GO:0031110  BP    88  0 1.000000e+00
## GO:0051492  BP    88  0 1.000000e+00
## GO:0035914  BP    88  0 1.000000e+00
## GO:0051937  BP    89  0 1.000000e+00
## GO:0070301  BP    89  0 1.000000e+00
## GO:0035773  BP    89  0 1.000000e+00
## GO:0007229  BP    89  0 1.000000e+00
## GO:0001656  BP    89  0 1.000000e+00
## GO:0060415  BP    89  0 1.000000e+00
## GO:1904063  BP    89  0 1.000000e+00
## GO:1903008  BP    89  0 1.000000e+00
## GO:0031016  BP    89  0 1.000000e+00
## GO:0031960  BP    89  0 1.000000e+00
## GO:0000041  BP    89  0 1.000000e+00
## GO:0019226  BP    89  0 1.000000e+00
## GO:0060395  BP    90  0 1.000000e+00
## GO:0009063  BP    90  0 1.000000e+00
## GO:0072655  BP    90  0 1.000000e+00
## GO:0006096  BP    90  0 1.000000e+00
## GO:0014031  BP    90  0 1.000000e+00
## GO:0045814  BP    90  0 1.000000e+00
## GO:1903524  BP    90  0 1.000000e+00
## GO:1903313  BP    90  0 1.000000e+00
## GO:0006497  BP    90  0 1.000000e+00
## GO:1902600  BP    90  0 1.000000e+00
## GO:0040014  BP    90  0 1.000000e+00
## GO:0071774  BP    90  0 1.000000e+00
## GO:0032526  BP    90  0 1.000000e+00
## GO:0042770  BP    90  0 1.000000e+00
## GO:0006757  BP    91  0 1.000000e+00
## GO:0009308  BP    91  0 1.000000e+00
## GO:0009798  BP    91  0 1.000000e+00
## GO:1903578  BP    91  0 1.000000e+00
## GO:0032652  BP    91  0 1.000000e+00
## GO:0002028  BP    91  0 1.000000e+00
## GO:0048864  BP    91  0 1.000000e+00
## GO:0014033  BP    92  0 1.000000e+00
## GO:0030838  BP    92  0 1.000000e+00
## GO:0006476  BP    92  0 1.000000e+00
## GO:0060998  BP    92  0 1.000000e+00
## GO:0006885  BP    92  0 1.000000e+00
## GO:0014909  BP    92  0 1.000000e+00
## GO:0000045  BP    93  0 1.000000e+00
## GO:0036473  BP    93  0 1.000000e+00
## GO:0061640  BP    93  0 1.000000e+00
## GO:0009062  BP    93  0 1.000000e+00
## GO:0007215  BP    93  0 1.000000e+00
## GO:0001676  BP    93  0 1.000000e+00
## GO:0042116  BP    93  0 1.000000e+00
## GO:0051817  BP    93  0 1.000000e+00
## GO:0045445  BP    93  0 1.000000e+00
## GO:0035305  BP    93  0 1.000000e+00
## GO:2000060  BP    93  0 1.000000e+00
## GO:0002027  BP    93  0 1.000000e+00
## GO:0061844  BP    94  0 1.000000e+00
## GO:0002181  BP    94  0 1.000000e+00
## GO:0097061  BP    94  0 1.000000e+00
## GO:0042866  BP    94  0 1.000000e+00
## GO:1902749  BP    94  0 1.000000e+00
## GO:0060968  BP    94  0 1.000000e+00
## GO:1902882  BP    94  0 1.000000e+00
## GO:0045069  BP    94  0 1.000000e+00
## GO:0060021  BP    94  0 1.000000e+00
## GO:0006906  BP    94  0 1.000000e+00
## GO:0046916  BP    95  0 1.000000e+00
## GO:0051304  BP    95  0 1.000000e+00
## GO:0007173  BP    95  0 1.000000e+00
## GO:0001704  BP    95  0 1.000000e+00
## GO:0042158  BP    95  0 1.000000e+00
## GO:0048477  BP    95  0 1.000000e+00
## GO:0070585  BP    95  0 1.000000e+00
## GO:0006352  BP    96  0 1.000000e+00
## GO:0030004  BP    96  0 1.000000e+00
## GO:0099565  BP    96  0 1.000000e+00
## GO:0140029  BP    96  0 1.000000e+00
## GO:0007200  BP    96  0 1.000000e+00
## GO:1901989  BP    96  0 1.000000e+00
## GO:0120162  BP    96  0 1.000000e+00
## GO:0050795  BP    96  0 1.000000e+00
## GO:0014066  BP    96  0 1.000000e+00
## GO:0099072  BP    96  0 1.000000e+00
## GO:0061053  BP    96  0 1.000000e+00
## GO:0006304  BP    97  0 1.000000e+00
## GO:0036503  BP    97  0 1.000000e+00
## GO:1905037  BP    97  0 1.000000e+00
## GO:0072676  BP    97  0 1.000000e+00
## GO:0045132  BP    97  0 1.000000e+00
## GO:0048644  BP    97  0 1.000000e+00
## GO:2001243  BP    97  0 1.000000e+00
## GO:0048525  BP    97  0 1.000000e+00
## GO:0006334  BP    97  0 1.000000e+00
## GO:0006119  BP    97  0 1.000000e+00
## GO:0031058  BP    97  0 1.000000e+00
## GO:0030510  BP    97  0 1.000000e+00
## GO:0043502  BP    97  0 1.000000e+00
## GO:0046031  BP    98  0 1.000000e+00
## GO:0071482  BP    98  0 1.000000e+00
## GO:0019395  BP    98  0 1.000000e+00
## GO:0021761  BP    98  0 1.000000e+00
## GO:0070227  BP    98  0 1.000000e+00
## GO:0007041  BP    98  0 1.000000e+00
## GO:0007006  BP    98  0 1.000000e+00
## GO:0072080  BP    98  0 1.000000e+00
## GO:0032760  BP    98  0 1.000000e+00
## GO:0043488  BP    98  0 1.000000e+00
## GO:0010660  BP    98  0 1.000000e+00
## GO:0006821  BP    99  0 1.000000e+00
## GO:0060993  BP    99  0 1.000000e+00
## GO:0033555  BP    99  0 1.000000e+00
## GO:0010771  BP    99  0 1.000000e+00
## GO:0062014  BP    99  0 1.000000e+00
## GO:0033865  BP    99  0 1.000000e+00
## GO:1903557  BP    99  0 1.000000e+00
## GO:0006892  BP    99  0 1.000000e+00
## GO:0034032  BP    99  0 1.000000e+00
## GO:0033875  BP    99  0 1.000000e+00
## GO:0006641  BP    99  0 1.000000e+00
## GO:0098876  BP    99  0 1.000000e+00
## GO:0035710  BP   100  0 1.000000e+00
## GO:0055013  BP   100  0 1.000000e+00
## GO:0034440  BP   100  0 1.000000e+00
## GO:0001578  BP   100  0 1.000000e+00
## GO:0090174  BP   100  0 1.000000e+00
## GO:0031343  BP   100  0 1.000000e+00
## GO:0045778  BP   100  0 1.000000e+00
## GO:0032006  BP   100  0 1.000000e+00
## GO:0110020  BP   100  0 1.000000e+00
## GO:0060359  BP   100  0 1.000000e+00
## GO:0000077  BP   101  0 1.000000e+00
## GO:0031532  BP   101  0 1.000000e+00
## GO:0003300  BP   101  0 1.000000e+00
## GO:0051651  BP   101  0 1.000000e+00
## GO:0090263  BP   101  0 1.000000e+00
## GO:2001022  BP   101  0 1.000000e+00
## GO:0050848  BP   101  0 1.000000e+00
## GO:0055024  BP   101  0 1.000000e+00
## GO:2000300  BP   101  0 1.000000e+00
## GO:0034446  BP   101  0 1.000000e+00
## GO:0042310  BP   101  0 1.000000e+00
## GO:0031123  BP   102  0 1.000000e+00
## GO:0046849  BP   102  0 1.000000e+00
## GO:0106027  BP   102  0 1.000000e+00
## GO:0046427  BP   102  0 1.000000e+00
## GO:0050772  BP   102  0 1.000000e+00
## GO:0051897  BP   102  0 1.000000e+00
## GO:1905477  BP   102  0 1.000000e+00
## GO:0010522  BP   102  0 1.000000e+00
## GO:0051225  BP   102  0 1.000000e+00
## GO:0001708  BP   103  0 1.000000e+00
## GO:0035967  BP   103  0 1.000000e+00
## GO:0030038  BP   103  0 1.000000e+00
## GO:0009953  BP   103  0 1.000000e+00
## GO:0030317  BP   103  0 1.000000e+00
## GO:0098732  BP   103  0 1.000000e+00
## GO:0140053  BP   103  0 1.000000e+00
## GO:0010657  BP   103  0 1.000000e+00
## GO:0006165  BP   103  0 1.000000e+00
## GO:0048709  BP   103  0 1.000000e+00
## GO:1901800  BP   103  0 1.000000e+00
## GO:0035601  BP   103  0 1.000000e+00
## GO:0051289  BP   103  0 1.000000e+00
## GO:0009135  BP   103  0 1.000000e+00
## GO:0009179  BP   103  0 1.000000e+00
## GO:0000018  BP   103  0 1.000000e+00
## GO:0032231  BP   103  0 1.000000e+00
## GO:0043255  BP   103  0 1.000000e+00
## GO:1900542  BP   103  0 1.000000e+00
## GO:0017015  BP   103  0 1.000000e+00
## GO:0043149  BP   103  0 1.000000e+00
## GO:0002224  BP   103  0 1.000000e+00
## GO:1905039  BP   104  0 1.000000e+00
## GO:0044264  BP   104  0 1.000000e+00
## GO:0021549  BP   104  0 1.000000e+00
## GO:0030518  BP   104  0 1.000000e+00
## GO:0072163  BP   104  0 1.000000e+00
## GO:0072164  BP   104  0 1.000000e+00
## GO:0030101  BP   104  0 1.000000e+00
## GO:1903825  BP   104  0 1.000000e+00
## GO:0007009  BP   104  0 1.000000e+00
## GO:0046634  BP   104  0 1.000000e+00
## GO:0051983  BP   104  0 1.000000e+00
## GO:0061326  BP   104  0 1.000000e+00
## GO:0097722  BP   104  0 1.000000e+00
## GO:0006413  BP   104  0 1.000000e+00
## GO:0001657  BP   104  0 1.000000e+00
## GO:0038127  BP   105  0 1.000000e+00
## GO:0008306  BP   105  0 1.000000e+00
## GO:0055017  BP   105  0 1.000000e+00
## GO:0034754  BP   105  0 1.000000e+00
## GO:0048704  BP   105  0 1.000000e+00
## GO:0007052  BP   105  0 1.000000e+00
## GO:0034766  BP   105  0 1.000000e+00
## GO:0000956  BP   105  0 1.000000e+00
## GO:0046939  BP   105  0 1.000000e+00
## GO:0043473  BP   105  0 1.000000e+00
## GO:1903844  BP   105  0 1.000000e+00
## GO:0048024  BP   105  0 1.000000e+00
## GO:0016241  BP   105  0 1.000000e+00
## GO:0043266  BP   105  0 1.000000e+00
## GO:0019236  BP   105  0 1.000000e+00
## GO:0035282  BP   105  0 1.000000e+00
## GO:0014897  BP   105  0 1.000000e+00
## GO:0035249  BP   105  0 1.000000e+00
## GO:0060840  BP   106  0 1.000000e+00
## GO:0055006  BP   106  0 1.000000e+00
## GO:0022600  BP   106  0 1.000000e+00
## GO:0046474  BP   106  0 1.000000e+00
## GO:0045185  BP   106  0 1.000000e+00
## GO:0014812  BP   106  0 1.000000e+00
## GO:0032091  BP   106  0 1.000000e+00
## GO:0019359  BP   106  0 1.000000e+00
## GO:1904894  BP   106  0 1.000000e+00
## GO:0120034  BP   106  0 1.000000e+00
## GO:0048661  BP   106  0 1.000000e+00
## GO:1902803  BP   106  0 1.000000e+00
## GO:0007043  BP   107  0 1.000000e+00
## GO:0001823  BP   107  0 1.000000e+00
## GO:0014896  BP   107  0 1.000000e+00
## GO:0097756  BP   107  0 1.000000e+00
## GO:0043487  BP   107  0 1.000000e+00
## GO:0048145  BP   107  0 1.000000e+00
## GO:0006140  BP   107  0 1.000000e+00
## GO:0003014  BP   107  0 1.000000e+00
## GO:0009185  BP   107  0 1.000000e+00
## GO:0030048  BP   108  0 1.000000e+00
## GO:0051028  BP   108  0 1.000000e+00
## GO:0030316  BP   108  0 1.000000e+00
## GO:1900006  BP   108  0 1.000000e+00
## GO:0001959  BP   108  0 1.000000e+00
## GO:2000106  BP   108  0 1.000000e+00
## GO:0035725  BP   108  0 1.000000e+00
## GO:0008344  BP   109  0 1.000000e+00
## GO:0021987  BP   109  0 1.000000e+00
## GO:0032963  BP   109  0 1.000000e+00
## GO:0050829  BP   109  0 1.000000e+00
## GO:0048144  BP   109  0 1.000000e+00
## GO:0034968  BP   109  0 1.000000e+00
## GO:0015844  BP   109  0 1.000000e+00
## GO:0072009  BP   109  0 1.000000e+00
## GO:0018958  BP   109  0 1.000000e+00
## GO:0032092  BP   109  0 1.000000e+00
## GO:0006612  BP   109  0 1.000000e+00
## GO:0019363  BP   109  0 1.000000e+00
## GO:0001910  BP   109  0 1.000000e+00
## GO:1903076  BP   109  0 1.000000e+00
## GO:0048259  BP   109  0 1.000000e+00
## GO:0000086  BP   110  0 1.000000e+00
## GO:0019882  BP   110  0 1.000000e+00
## GO:1901657  BP   110  0 1.000000e+00
## GO:0007156  BP   110  0 1.000000e+00
## GO:0001776  BP   110  0 1.000000e+00
## GO:0001843  BP   110  0 1.000000e+00
## GO:0090100  BP   110  0 1.000000e+00
## GO:0006986  BP   110  0 1.000000e+00
## GO:0031570  BP   111  0 1.000000e+00
## GO:0008637  BP   111  0 1.000000e+00
## GO:0001942  BP   111  0 1.000000e+00
## GO:0007127  BP   111  0 1.000000e+00
## GO:0043401  BP   111  0 1.000000e+00
## GO:0060606  BP   111  0 1.000000e+00
## GO:0019079  BP   111  0 1.000000e+00
## GO:0042100  BP   112  0 1.000000e+00
## GO:0046632  BP   112  0 1.000000e+00
## GO:0007589  BP   112  0 1.000000e+00
## GO:0008630  BP   112  0 1.000000e+00
## GO:0072329  BP   112  0 1.000000e+00
## GO:0016525  BP   112  0 1.000000e+00
## GO:1905269  BP   112  0 1.000000e+00
## GO:0031398  BP   112  0 1.000000e+00
## GO:0030516  BP   112  0 1.000000e+00
## GO:1905330  BP   112  0 1.000000e+00
## GO:0046822  BP   112  0 1.000000e+00
## GO:0060078  BP   112  0 1.000000e+00
## GO:0006939  BP   112  0 1.000000e+00
## GO:0006805  BP   112  0 1.000000e+00
## GO:0002286  BP   113  0 1.000000e+00
## GO:0008585  BP   113  0 1.000000e+00
## GO:0090101  BP   113  0 1.000000e+00
## GO:0090305  BP   113  0 1.000000e+00
## GO:0072525  BP   113  0 1.000000e+00
## GO:0001952  BP   113  0 1.000000e+00
## GO:0098773  BP   113  0 1.000000e+00
## GO:0022405  BP   114  0 1.000000e+00
## GO:0060419  BP   114  0 1.000000e+00
## GO:0046467  BP   114  0 1.000000e+00
## GO:0022404  BP   114  0 1.000000e+00
## GO:0032414  BP   114  0 1.000000e+00
## GO:2000045  BP   114  0 1.000000e+00
## GO:0048814  BP   114  0 1.000000e+00
## GO:0019730  BP   115  0 1.000000e+00
## GO:0071346  BP   115  0 1.000000e+00
## GO:0005976  BP   115  0 1.000000e+00
## GO:0016579  BP   115  0 1.000000e+00
## GO:0043244  BP   115  0 1.000000e+00
## GO:2001023  BP   115  0 1.000000e+00
## GO:0051209  BP   115  0 1.000000e+00
## GO:0008033  BP   115  0 1.000000e+00
## GO:0010927  BP   116  0 1.000000e+00
## GO:0046545  BP   116  0 1.000000e+00
## GO:0098739  BP   116  0 1.000000e+00
## GO:0061982  BP   116  0 1.000000e+00
## GO:0022037  BP   116  0 1.000000e+00
## GO:2000181  BP   116  0 1.000000e+00
## GO:1903828  BP   116  0 1.000000e+00
## GO:1903052  BP   116  0 1.000000e+00
## GO:0051261  BP   116  0 1.000000e+00
## GO:0051701  BP   117  0 1.000000e+00
## GO:0007498  BP   117  0 1.000000e+00
## GO:0043500  BP   117  0 1.000000e+00
## GO:0051283  BP   117  0 1.000000e+00
## GO:0014020  BP   117  0 1.000000e+00
## GO:0006282  BP   117  0 1.000000e+00
## GO:0060349  BP   118  0 1.000000e+00
## GO:0019751  BP   118  0 1.000000e+00
## GO:0006090  BP   118  0 1.000000e+00
## GO:0046620  BP   118  0 1.000000e+00
## GO:0060759  BP   118  0 1.000000e+00
## GO:0031929  BP   119  0 1.000000e+00
## GO:0050868  BP   119  0 1.000000e+00
## GO:0090090  BP   119  0 1.000000e+00
## GO:0043280  BP   119  0 1.000000e+00
## GO:2000278  BP   119  0 1.000000e+00
## GO:0051282  BP   119  0 1.000000e+00
## GO:0051963  BP   119  0 1.000000e+00
## GO:0003073  BP   119  0 1.000000e+00
## GO:0008584  BP   120  0 1.000000e+00
## GO:0031109  BP   120  0 1.000000e+00
## GO:0010508  BP   120  0 1.000000e+00
## GO:0090277  BP   120  0 1.000000e+00
## GO:0045727  BP   120  0 1.000000e+00
## GO:0051208  BP   120  0 1.000000e+00
## GO:0007030  BP   121  0 1.000000e+00
## GO:0031497  BP   121  0 1.000000e+00
## GO:0046546  BP   121  0 1.000000e+00
## GO:0048565  BP   121  0 1.000000e+00
## GO:0001889  BP   121  0 1.000000e+00
## GO:0009132  BP   121  0 1.000000e+00
## GO:0032411  BP   121  0 1.000000e+00
## GO:0006611  BP   121  0 1.000000e+00
## GO:0010906  BP   121  0 1.000000e+00
## GO:1900180  BP   121  0 1.000000e+00
## GO:0042542  BP   121  0 1.000000e+00
## GO:0006639  BP   122  0 1.000000e+00
## GO:0007098  BP   122  0 1.000000e+00
## GO:0060996  BP   122  0 1.000000e+00
## GO:0007586  BP   122  0 1.000000e+00
## GO:0006997  BP   122  0 1.000000e+00
## GO:0048284  BP   122  0 1.000000e+00
## GO:0018022  BP   122  0 1.000000e+00
## GO:0042752  BP   122  0 1.000000e+00
## GO:0061013  BP   122  0 1.000000e+00
## GO:0032434  BP   122  0 1.000000e+00
## GO:0006888  BP   123  0 1.000000e+00
## GO:0042157  BP   123  0 1.000000e+00
## GO:0010921  BP   123  0 1.000000e+00
## GO:0051153  BP   123  0 1.000000e+00
## GO:0006665  BP   123  0 1.000000e+00
## GO:0060048  BP   124  0 1.000000e+00
## GO:0007368  BP   124  0 1.000000e+00
## GO:0061008  BP   124  0 1.000000e+00
## GO:0014902  BP   124  0 1.000000e+00
## GO:0006638  BP   124  0 1.000000e+00
## GO:0033138  BP   124  0 1.000000e+00
## GO:0000723  BP   124  0 1.000000e+00
## GO:0007631  BP   125  0 1.000000e+00
## GO:0018107  BP   125  0 1.000000e+00
## GO:0032273  BP   125  0 1.000000e+00
## GO:0099175  BP   125  0 1.000000e+00
## GO:0010212  BP   125  0 1.000000e+00
## GO:0050852  BP   126  0 1.000000e+00
## GO:0034332  BP   126  0 1.000000e+00
## GO:0008203  BP   126  0 1.000000e+00
## GO:0009582  BP   126  0 1.000000e+00
## GO:0031623  BP   126  0 1.000000e+00
## GO:0032200  BP   126  0 1.000000e+00
## GO:0055076  BP   126  0 1.000000e+00
## GO:0044839  BP   127  0 1.000000e+00
## GO:0009581  BP   127  0 1.000000e+00
## GO:0000724  BP   127  0 1.000000e+00
## GO:0048640  BP   127  0 1.000000e+00
## GO:0014065  BP   127  0 1.000000e+00
## GO:0010811  BP   127  0 1.000000e+00
## GO:0000725  BP   127  0 1.000000e+00
## GO:0061387  BP   127  0 1.000000e+00
## GO:0043467  BP   127  0 1.000000e+00
## GO:0051592  BP   127  0 1.000000e+00
## GO:0003279  BP   128  0 1.000000e+00
## GO:0035195  BP   128  0 1.000000e+00
## GO:1901343  BP   128  0 1.000000e+00
## GO:1902806  BP   128  0 1.000000e+00
## GO:0050830  BP   129  0 1.000000e+00
## GO:0046488  BP   129  0 1.000000e+00
## GO:0051101  BP   129  0 1.000000e+00
## GO:0007189  BP   130  0 1.000000e+00
## GO:1902850  BP   130  0 1.000000e+00
## GO:0031023  BP   130  0 1.000000e+00
## GO:0007093  BP   130  0 1.000000e+00
## GO:0008277  BP   130  0 1.000000e+00
## GO:0015696  BP   131  0 1.000000e+00
## GO:0042633  BP   131  0 1.000000e+00
## GO:0042303  BP   131  0 1.000000e+00
## GO:1903038  BP   131  0 1.000000e+00
## GO:0090316  BP   131  0 1.000000e+00
## GO:0031341  BP   131  0 1.000000e+00
## GO:0010469  BP   131  0 1.000000e+00
## GO:1902652  BP   131  0 1.000000e+00
## GO:0001508  BP   132  0 1.000000e+00
## GO:0071887  BP   132  0 1.000000e+00
## GO:0001841  BP   132  0 1.000000e+00
## GO:0030177  BP   132  0 1.000000e+00
## GO:0016999  BP   133  0 1.000000e+00
## GO:1901655  BP   133  0 1.000000e+00
## GO:0050906  BP   133  0 1.000000e+00
## GO:0009855  BP   133  0 1.000000e+00
## GO:0061025  BP   133  0 1.000000e+00
## GO:0018210  BP   133  0 1.000000e+00
## GO:0046928  BP   133  0 1.000000e+00
## GO:0035966  BP   133  0 1.000000e+00
## GO:0007034  BP   133  0 1.000000e+00
## GO:0055123  BP   134  0 1.000000e+00
## GO:0002698  BP   134  0 1.000000e+00
## GO:0051928  BP   134  0 1.000000e+00
## GO:1903322  BP   134  0 1.000000e+00
## GO:0035194  BP   134  0 1.000000e+00
## GO:1904375  BP   134  0 1.000000e+00
## GO:0009799  BP   134  0 1.000000e+00
## GO:0006261  BP   135  0 1.000000e+00
## GO:0051168  BP   135  0 1.000000e+00
## GO:1903364  BP   135  0 1.000000e+00
## GO:0070646  BP   135  0 1.000000e+00
## GO:0035023  BP   135  0 1.000000e+00
## GO:0072331  BP   135  0 1.000000e+00
## GO:0016125  BP   135  0 1.000000e+00
## GO:0097553  BP   136  0 1.000000e+00
## GO:0043624  BP   136  0 1.000000e+00
## GO:0097306  BP   136  0 1.000000e+00
## GO:0017148  BP   136  0 1.000000e+00
## GO:0050905  BP   136  0 1.000000e+00
## GO:0009166  BP   136  0 1.000000e+00
## GO:2001056  BP   136  0 1.000000e+00
## GO:0009791  BP   136  0 1.000000e+00
## GO:0017158  BP   136  0 1.000000e+00
## GO:0010821  BP   136  0 1.000000e+00
## GO:0006754  BP   137  0 1.000000e+00
## GO:0048675  BP   137  0 1.000000e+00
## GO:0048593  BP   137  0 1.000000e+00
## GO:0034728  BP   137  0 1.000000e+00
## GO:0002221  BP   137  0 1.000000e+00
## GO:0016441  BP   137  0 1.000000e+00
## GO:0009411  BP   137  0 1.000000e+00
## GO:0034341  BP   137  0 1.000000e+00
## GO:0009451  BP   138  0 1.000000e+00
## GO:0007050  BP   138  0 1.000000e+00
## GO:0030010  BP   138  0 1.000000e+00
## GO:0016571  BP   138  0 1.000000e+00
## GO:0016079  BP   138  0 1.000000e+00
## GO:0048706  BP   139  0 1.000000e+00
## GO:0002758  BP   139  0 1.000000e+00
## GO:0015698  BP   139  0 1.000000e+00
## GO:0030216  BP   139  0 1.000000e+00
## GO:0043484  BP   139  0 1.000000e+00
## GO:0007338  BP   139  0 1.000000e+00
## GO:0071333  BP   140  0 1.000000e+00
## GO:0006338  BP   141  0 1.000000e+00
## GO:0045017  BP   141  0 1.000000e+00
## GO:0001909  BP   141  0 1.000000e+00
## GO:0055088  BP   141  0 1.000000e+00
## GO:0035637  BP   141  0 1.000000e+00
## GO:0016052  BP   142  0 1.000000e+00
## GO:0071331  BP   142  0 1.000000e+00
## GO:0106106  BP   142  0 1.000000e+00
## GO:0050680  BP   142  0 1.000000e+00
## GO:0120161  BP   142  0 1.000000e+00
## GO:0045667  BP   142  0 1.000000e+00
## GO:0055007  BP   143  0 1.000000e+00
## GO:0071326  BP   143  0 1.000000e+00
## GO:0009267  BP   143  0 1.000000e+00
## GO:0035113  BP   143  0 1.000000e+00
## GO:0030326  BP   143  0 1.000000e+00
## GO:0072073  BP   143  0 1.000000e+00
## GO:0090288  BP   143  0 1.000000e+00
## GO:1901991  BP   143  0 1.000000e+00
## GO:0031333  BP   143  0 1.000000e+00
## GO:0019233  BP   143  0 1.000000e+00
## GO:0007224  BP   143  0 1.000000e+00
## GO:0006333  BP   144  0 1.000000e+00
## GO:0002065  BP   144  0 1.000000e+00
## GO:0034250  BP   144  0 1.000000e+00
## GO:0050684  BP   144  0 1.000000e+00
## GO:0098693  BP   144  0 1.000000e+00
## GO:0045216  BP   145  0 1.000000e+00
## GO:0007292  BP   145  0 1.000000e+00
## GO:0031099  BP   145  0 1.000000e+00
## GO:1903900  BP   145  0 1.000000e+00
## GO:0000070  BP   146  0 1.000000e+00
## GO:2001251  BP   146  0 1.000000e+00
## GO:0072006  BP   146  0 1.000000e+00
## GO:0016482  BP   147  0 1.000000e+00
## GO:0046660  BP   147  0 1.000000e+00
## GO:1902904  BP   147  0 1.000000e+00
## GO:0009206  BP   147  0 1.000000e+00
## GO:0050658  BP   148  0 1.000000e+00
## GO:0003206  BP   148  0 1.000000e+00
## GO:0003231  BP   148  0 1.000000e+00
## GO:0055067  BP   148  0 1.000000e+00
## GO:0050657  BP   148  0 1.000000e+00
## GO:1901292  BP   148  0 1.000000e+00
## GO:0009145  BP   148  0 1.000000e+00
## GO:2000058  BP   148  0 1.000000e+00
## GO:0030183  BP   149  0 1.000000e+00
## GO:0001824  BP   149  0 1.000000e+00
## GO:0050728  BP   149  0 1.000000e+00
## GO:0071322  BP   150  0 1.000000e+00
## GO:0034614  BP   150  0 1.000000e+00
## GO:0022612  BP   150  0 1.000000e+00
## GO:0008360  BP   150  0 1.000000e+00
## GO:0009201  BP   150  0 1.000000e+00
## GO:0051236  BP   151  0 1.000000e+00
## GO:0030178  BP   151  0 1.000000e+00
## GO:0006910  BP   151  0 1.000000e+00
## GO:0006606  BP   151  0 1.000000e+00
## GO:0042737  BP   152  0 1.000000e+00
## GO:0046661  BP   152  0 1.000000e+00
## GO:0051250  BP   152  0 1.000000e+00
## GO:0010675  BP   152  0 1.000000e+00
## GO:0051053  BP   153  0 1.000000e+00
## GO:0010950  BP   153  0 1.000000e+00
## GO:0006457  BP   153  0 1.000000e+00
## GO:0071248  BP   154  0 1.000000e+00
## GO:0071478  BP   154  0 1.000000e+00
## GO:0001838  BP   154  0 1.000000e+00
## GO:0006937  BP   154  0 1.000000e+00
## GO:0007569  BP   155  0 1.000000e+00
## GO:0051170  BP   155  0 1.000000e+00
## GO:0051494  BP   155  0 1.000000e+00
## GO:0051896  BP   155  0 1.000000e+00
## GO:1990845  BP   156  0 1.000000e+00
## GO:0071383  BP   156  0 1.000000e+00
## GO:0034249  BP   156  0 1.000000e+00
## GO:0046631  BP   157  0 1.000000e+00
## GO:0060402  BP   157  0 1.000000e+00
## GO:0071466  BP   157  0 1.000000e+00
## GO:0000910  BP   157  0 1.000000e+00
## GO:0048015  BP   157  0 1.000000e+00
## GO:0033135  BP   157  0 1.000000e+00
## GO:0002244  BP   158  0 1.000000e+00
## GO:0009755  BP   158  0 1.000000e+00
## GO:0050777  BP   158  0 1.000000e+00
## GO:0046496  BP   158  0 1.000000e+00
## GO:0021543  BP   158  0 1.000000e+00
## GO:0008654  BP   158  0 1.000000e+00
## GO:0009127  BP   158  0 1.000000e+00
## GO:0009168  BP   158  0 1.000000e+00
## GO:0006941  BP   158  0 1.000000e+00
## GO:0007601  BP   158  0 1.000000e+00
## GO:0001678  BP   159  0 1.000000e+00
## GO:0099111  BP   159  0 1.000000e+00
## GO:0042552  BP   159  0 1.000000e+00
## GO:0030833  BP   159  0 1.000000e+00
## GO:0010970  BP   159  0 1.000000e+00
## GO:0007565  BP   160  0 1.000000e+00
## GO:0048017  BP   160  0 1.000000e+00
## GO:0035821  BP   160  0 1.000000e+00
## GO:0043433  BP   160  0 1.000000e+00
## GO:1901988  BP   160  0 1.000000e+00
## GO:0009142  BP   160  0 1.000000e+00
## GO:0051291  BP   160  0 1.000000e+00
## GO:0019362  BP   160  0 1.000000e+00
## GO:1903169  BP   160  0 1.000000e+00
## GO:0072175  BP   161  0 1.000000e+00
## GO:0051147  BP   161  0 1.000000e+00
## GO:0008366  BP   162  0 1.000000e+00
## GO:0071356  BP   162  0 1.000000e+00
## GO:0007272  BP   162  0 1.000000e+00
## GO:0031047  BP   162  0 1.000000e+00
## GO:0010952  BP   162  0 1.000000e+00
## GO:0009156  BP   162  0 1.000000e+00
## GO:0050953  BP   162  0 1.000000e+00
## GO:0007033  BP   162  0 1.000000e+00
## GO:0045333  BP   163  0 1.000000e+00
## GO:0030879  BP   163  0 1.000000e+00
## GO:1904064  BP   163  0 1.000000e+00
## GO:0048660  BP   163  0 1.000000e+00
## GO:0060041  BP   163  0 1.000000e+00
## GO:0002218  BP   164  0 1.000000e+00
## GO:0006643  BP   164  0 1.000000e+00
## GO:0046887  BP   164  0 1.000000e+00
## GO:0051017  BP   165  0 1.000000e+00
## GO:0006958  BP   165  0 1.000000e+00
## GO:0043901  BP   165  0 1.000000e+00
## GO:0072524  BP   165  0 1.000000e+00
## GO:0046425  BP   165  0 1.000000e+00
## GO:0007051  BP   165  0 1.000000e+00
## GO:0007179  BP   165  0 1.000000e+00
## GO:0042594  BP   166  0 1.000000e+00
## GO:0071897  BP   167  0 1.000000e+00
## GO:0035303  BP   167  0 1.000000e+00
## GO:0006399  BP   167  0 1.000000e+00
## GO:0030509  BP   168  0 1.000000e+00
## GO:0061572  BP   168  0 1.000000e+00
## GO:0097164  BP   168  0 1.000000e+00
## GO:0009124  BP   168  0 1.000000e+00
## GO:2001257  BP   168  0 1.000000e+00
## GO:0048659  BP   168  0 1.000000e+00
## GO:0006323  BP   169  0 1.000000e+00
## GO:0050821  BP   169  0 1.000000e+00
## GO:2001242  BP   169  0 1.000000e+00
## GO:0097237  BP   170  0 1.000000e+00
## GO:0060401  BP   170  0 1.000000e+00
## GO:0007369  BP   170  0 1.000000e+00
## GO:1904892  BP   170  0 1.000000e+00
## GO:0000082  BP   171  0 1.000000e+00
## GO:0030705  BP   171  0 1.000000e+00
## GO:0007612  BP   171  0 1.000000e+00
## GO:0006403  BP   172  0 1.000000e+00
## GO:0071230  BP   172  0 1.000000e+00
## GO:0034404  BP   172  0 1.000000e+00
## GO:0065004  BP   172  0 1.000000e+00
## GO:2000241  BP   172  0 1.000000e+00
## GO:1901654  BP   172  0 1.000000e+00
## GO:0051100  BP   173  0 1.000000e+00
## GO:0097746  BP   173  0 1.000000e+00
## GO:0050880  BP   173  0 1.000000e+00
## GO:0031644  BP   173  0 1.000000e+00
## GO:0035296  BP   173  0 1.000000e+00
## GO:0030041  BP   174  0 1.000000e+00
## GO:0006575  BP   174  0 1.000000e+00
## GO:0035150  BP   174  0 1.000000e+00
## GO:0035107  BP   175  0 1.000000e+00
## GO:0017156  BP   175  0 1.000000e+00
## GO:0035108  BP   175  0 1.000000e+00
## GO:0010977  BP   175  0 1.000000e+00
## GO:0043902  BP   175  0 1.000000e+00
## GO:0097480  BP   176  0 1.000000e+00
## GO:0048592  BP   176  0 1.000000e+00
## GO:0008213  BP   176  0 1.000000e+00
## GO:0006479  BP   176  0 1.000000e+00
## GO:0008064  BP   176  0 1.000000e+00
## GO:0016202  BP   176  0 1.000000e+00
## GO:0009612  BP   176  0 1.000000e+00
## GO:0048489  BP   176  0 1.000000e+00
## GO:0035148  BP   176  0 1.000000e+00
## GO:0006733  BP   177  0 1.000000e+00
## GO:0008016  BP   177  0 1.000000e+00
## GO:0000075  BP   178  0 1.000000e+00
## GO:0048813  BP   178  0 1.000000e+00
## GO:0010951  BP   178  0 1.000000e+00
## GO:0043524  BP   178  0 1.000000e+00
## GO:0051588  BP   178  0 1.000000e+00
## GO:0061136  BP   178  0 1.000000e+00
## GO:0019933  BP   179  0 1.000000e+00
## GO:0001906  BP   179  0 1.000000e+00
## GO:0071773  BP   179  0 1.000000e+00
## GO:0140013  BP   179  0 1.000000e+00
## GO:0006839  BP   179  0 1.000000e+00
## GO:0034767  BP   179  0 1.000000e+00
## GO:0030832  BP   179  0 1.000000e+00
## GO:1901861  BP   179  0 1.000000e+00
## GO:0071772  BP   179  0 1.000000e+00
## GO:0034612  BP   179  0 1.000000e+00
## GO:0002455  BP   180  0 1.000000e+00
## GO:0048634  BP   180  0 1.000000e+00
## GO:0000819  BP   180  0 1.000000e+00
## GO:0007416  BP   180  0 1.000000e+00
## GO:0050853  BP   181  0 1.000000e+00
## GO:0098656  BP   181  0 1.000000e+00
## GO:0015931  BP   181  0 1.000000e+00
## GO:0009749  BP   181  0 1.000000e+00
## GO:0007259  BP   182  0 1.000000e+00
## GO:0035051  BP   182  0 1.000000e+00
## GO:0016331  BP   182  0 1.000000e+00
## GO:0002695  BP   182  0 1.000000e+00
## GO:2001252  BP   182  0 1.000000e+00
## GO:0120032  BP   182  0 1.000000e+00
## GO:2001235  BP   183  0 1.000000e+00
## GO:0051262  BP   183  0 1.000000e+00
## GO:0050792  BP   183  0 1.000000e+00
## GO:0048754  BP   184  0 1.000000e+00
## GO:0060491  BP   184  0 1.000000e+00
## GO:0009746  BP   184  0 1.000000e+00
## GO:0044843  BP   185  0 1.000000e+00
## GO:0009566  BP   185  0 1.000000e+00
## GO:0051668  BP   185  0 1.000000e+00
## GO:0007269  BP   185  0 1.000000e+00
## GO:0010770  BP   185  0 1.000000e+00
## GO:0043200  BP   185  0 1.000000e+00
## GO:0034284  BP   185  0 1.000000e+00
## GO:0006109  BP   186  0 1.000000e+00
## GO:1905475  BP   186  0 1.000000e+00
## GO:0099643  BP   186  0 1.000000e+00
## GO:0097696  BP   187  0 1.000000e+00
## GO:0030534  BP   187  0 1.000000e+00
## GO:0022408  BP   187  0 1.000000e+00
## GO:0097479  BP   187  0 1.000000e+00
## GO:0071695  BP   190  0 1.000000e+00
## GO:0044706  BP   190  0 1.000000e+00
## GO:0071804  BP   191  0 1.000000e+00
## GO:0021915  BP   191  0 1.000000e+00
## GO:0071805  BP   191  0 1.000000e+00
## GO:0050773  BP   191  0 1.000000e+00
## GO:1901605  BP   193  0 1.000000e+00
## GO:0002285  BP   193  0 1.000000e+00
## GO:1990138  BP   193  0 1.000000e+00
## GO:0055002  BP   193  0 1.000000e+00
## GO:0048771  BP   193  0 1.000000e+00
## GO:0016051  BP   194  0 1.000000e+00
## GO:0031669  BP   194  0 1.000000e+00
## GO:0009108  BP   194  0 1.000000e+00
## GO:0006006  BP   194  0 1.000000e+00
## GO:0016236  BP   194  0 1.000000e+00
## GO:0030308  BP   194  0 1.000000e+00
## GO:0099173  BP   194  0 1.000000e+00
## GO:0000209  BP   194  0 1.000000e+00
## GO:0007266  BP   195  0 1.000000e+00
## GO:0003205  BP   195  0 1.000000e+00
## GO:0030307  BP   195  0 1.000000e+00
## GO:0050731  BP   195  0 1.000000e+00
## GO:1902905  BP   195  0 1.000000e+00
## GO:0043413  BP   196  0 1.000000e+00
## GO:0006486  BP   196  0 1.000000e+00
## GO:0007519  BP   197  0 1.000000e+00
## GO:1903046  BP   198  0 1.000000e+00
## GO:0006364  BP   198  0 1.000000e+00
## GO:0043903  BP   198  0 1.000000e+00
## GO:0044242  BP   199  0 1.000000e+00
## GO:0071236  BP   199  0 1.000000e+00
## GO:0030522  BP   199  0 1.000000e+00
## GO:0001649  BP   199  0 1.000000e+00
## GO:0070507  BP   199  0 1.000000e+00
## GO:0031396  BP   199  0 1.000000e+00
## GO:0019058  BP   199  0 1.000000e+00
## GO:0008154  BP   201  0 1.000000e+00
## GO:0048736  BP   201  0 1.000000e+00
## GO:0060173  BP   201  0 1.000000e+00
## GO:0043281  BP   201  0 1.000000e+00
## GO:0000302  BP   201  0 1.000000e+00
## GO:0098742  BP   202  0 1.000000e+00
## GO:0050866  BP   203  0 1.000000e+00
## GO:0003018  BP   203  0 1.000000e+00
## GO:0031032  BP   204  0 1.000000e+00
## GO:0007188  BP   204  0 1.000000e+00
## GO:0007160  BP   204  0 1.000000e+00
## GO:0071560  BP   204  0 1.000000e+00
## GO:0016197  BP   204  0 1.000000e+00
## GO:0031345  BP   205  0 1.000000e+00
## GO:0051099  BP   205  0 1.000000e+00
## GO:0043112  BP   205  0 1.000000e+00
## GO:0050770  BP   205  0 1.000000e+00
## GO:0034329  BP   206  0 1.000000e+00
## GO:1902115  BP   206  0 1.000000e+00
## GO:0060538  BP   206  0 1.000000e+00
## GO:0015893  BP   207  0 1.000000e+00
## GO:0006402  BP   207  0 1.000000e+00
## GO:0055001  BP   207  0 1.000000e+00
## GO:0007623  BP   208  0 1.000000e+00
## GO:1903050  BP   208  0 1.000000e+00
## GO:0071559  BP   208  0 1.000000e+00
## GO:0019722  BP   209  0 1.000000e+00
## GO:0017038  BP   209  0 1.000000e+00
## GO:0008361  BP   209  0 1.000000e+00
## GO:2001020  BP   209  0 1.000000e+00
## GO:0097305  BP   209  0 1.000000e+00
## GO:0071103  BP   210  0 1.000000e+00
## GO:0019935  BP   210  0 1.000000e+00
## GO:0070085  BP   210  0 1.000000e+00
## GO:0046434  BP   210  0 1.000000e+00
## GO:0033157  BP   210  0 1.000000e+00
## GO:0060047  BP   211  0 1.000000e+00
## GO:0010810  BP   211  0 1.000000e+00
## GO:0006814  BP   211  0 1.000000e+00
## GO:0035264  BP   212  0 1.000000e+00
## GO:0032984  BP   212  0 1.000000e+00
## GO:0046395  BP   213  0 1.000000e+00
## GO:0009913  BP   213  0 1.000000e+00
## GO:0016054  BP   213  0 1.000000e+00
## GO:0008406  BP   214  0 1.000000e+00
## GO:0048639  BP   214  0 1.000000e+00
## GO:0035265  BP   215  0 1.000000e+00
## GO:0050871  BP   215  0 1.000000e+00
## GO:0071824  BP   215  0 1.000000e+00
## GO:0032271  BP   215  0 1.000000e+00
## GO:0007163  BP   216  0 1.000000e+00
## GO:0048545  BP   216  0 1.000000e+00
## GO:0043547  BP   217  0 1.000000e+00
## GO:0045137  BP   218  0 1.000000e+00
## GO:0030258  BP   218  0 1.000000e+00
## GO:0051495  BP   218  0 1.000000e+00
## GO:0007286  BP   218  0 1.000000e+00
## GO:0030324  BP   219  0 1.000000e+00
## GO:0006302  BP   220  0 1.000000e+00
## GO:0031348  BP   220  0 1.000000e+00
## GO:0003015  BP   221  0 1.000000e+00
## GO:0061138  BP   221  0 1.000000e+00
## GO:0006898  BP   222  0 1.000000e+00
## GO:0030323  BP   222  0 1.000000e+00
## GO:0031668  BP   223  0 1.000000e+00
## GO:0090150  BP   223  0 1.000000e+00
## GO:0019318  BP   223  0 1.000000e+00
## GO:0009152  BP   223  0 1.000000e+00
## GO:0022618  BP   223  0 1.000000e+00
## GO:0099504  BP   223  0 1.000000e+00
## GO:0060828  BP   224  0 1.000000e+00
## GO:0071241  BP   225  0 1.000000e+00
## GO:0006650  BP   225  0 1.000000e+00
## GO:0010948  BP   226  0 1.000000e+00
## GO:2000116  BP   226  0 1.000000e+00
## GO:0048515  BP   227  0 1.000000e+00
## GO:0051606  BP   228  0 1.000000e+00
## GO:0046578  BP   228  0 1.000000e+00
## GO:0048863  BP   228  0 1.000000e+00
## GO:1903320  BP   229  0 1.000000e+00
## GO:0016072  BP   230  0 1.000000e+00
## GO:0009952  BP   231  0 1.000000e+00
## GO:0060348  BP   231  0 1.000000e+00
## GO:0045089  BP   232  0 1.000000e+00
## GO:0009410  BP   232  0 1.000000e+00
## GO:0009260  BP   232  0 1.000000e+00
## GO:0007187  BP   233  0 1.000000e+00
## GO:0045930  BP   233  0 1.000000e+00
## GO:0034764  BP   233  0 1.000000e+00
## GO:0090092  BP   233  0 1.000000e+00
## GO:0033002  BP   234  0 1.000000e+00
## GO:0006813  BP   234  0 1.000000e+00
## GO:0032886  BP   235  0 1.000000e+00
## GO:0071826  BP   236  0 1.000000e+00
## GO:0034976  BP   237  0 1.000000e+00
## GO:0006401  BP   238  0 1.000000e+00
## GO:0006470  BP   238  0 1.000000e+00
## GO:0015850  BP   239  0 1.000000e+00
## GO:1903522  BP   239  0 1.000000e+00
## GO:1903362  BP   239  0 1.000000e+00
## GO:0090257  BP   239  0 1.000000e+00
## GO:0046390  BP   239  0 1.000000e+00
## GO:0046777  BP   240  0 1.000000e+00
## GO:0006164  BP   240  0 1.000000e+00
## GO:0043393  BP   240  0 1.000000e+00
## GO:0007411  BP   245  0 1.000000e+00
## GO:0060291  BP   245  0 1.000000e+00
## GO:0072522  BP   245  0 1.000000e+00
## GO:0097485  BP   246  0 1.000000e+00
## GO:0031334  BP   246  0 1.000000e+00
## GO:0099003  BP   246  0 1.000000e+00
## GO:0046034  BP   247  0 1.000000e+00
## GO:0007568  BP   247  0 1.000000e+00
## GO:0010506  BP   247  0 1.000000e+00
## GO:0031503  BP   249  0 1.000000e+00
## GO:0021537  BP   249  0 1.000000e+00
## GO:0051188  BP   251  0 1.000000e+00
## GO:0060541  BP   251  0 1.000000e+00
## GO:0002377  BP   252  0 1.000000e+00
## GO:0005996  BP   253  0 1.000000e+00
## GO:1903311  BP   253  0 1.000000e+00
## GO:0015980  BP   254  0 1.000000e+00
## GO:0007626  BP   254  0 1.000000e+00
## GO:0032412  BP   254  0 1.000000e+00
## GO:0034330  BP   255  0 1.000000e+00
## GO:0110053  BP   255  0 1.000000e+00
## GO:0000375  BP   256  0 1.000000e+00
## GO:0000377  BP   256  0 1.000000e+00
## GO:0000398  BP   256  0 1.000000e+00
## GO:0006605  BP   256  0 1.000000e+00
## GO:0051650  BP   258  0 1.000000e+00
## GO:0045926  BP   258  0 1.000000e+00
## GO:0098813  BP   258  0 1.000000e+00
## GO:0016064  BP   259  0 1.000000e+00
## GO:1901990  BP   259  0 1.000000e+00
## GO:0051056  BP   259  0 1.000000e+00
## GO:0048738  BP   260  0 1.000000e+00
## GO:0048588  BP   260  0 1.000000e+00
## GO:0016458  BP   260  0 1.000000e+00
## GO:0006520  BP   261  0 1.000000e+00
## GO:0022898  BP   262  0 1.000000e+00
## GO:0048705  BP   262  0 1.000000e+00
## GO:0019724  BP   263  0 1.000000e+00
## GO:0048193  BP   263  0 1.000000e+00
## GO:0050730  BP   263  0 1.000000e+00
## GO:0050864  BP   264  0 1.000000e+00
## GO:0042593  BP   265  0 1.000000e+00
## GO:0033500  BP   266  0 1.000000e+00
## GO:0050807  BP   266  0 1.000000e+00
## GO:0007605  BP   266  0 1.000000e+00
## GO:0008037  BP   267  0 1.000000e+00
## GO:0034599  BP   268  0 1.000000e+00
## GO:0030336  BP   268  0 1.000000e+00
## GO:0010038  BP   269  0 1.000000e+00
## GO:0060560  BP   270  0 1.000000e+00
## GO:0030198  BP   271  0 1.000000e+00
## GO:0090287  BP   271  0 1.000000e+00
## GO:0034504  BP   272  0 1.000000e+00
## GO:0009167  BP   272  0 1.000000e+00
## GO:0009205  BP   272  0 1.000000e+00
## GO:0051924  BP   272  0 1.000000e+00
## GO:0032409  BP   272  0 1.000000e+00
## GO:0006790  BP   272  0 1.000000e+00
## GO:0009126  BP   273  0 1.000000e+00
## GO:0051258  BP   274  0 1.000000e+00
## GO:0007018  BP   275  0 1.000000e+00
## GO:0031647  BP   275  0 1.000000e+00
## GO:0050803  BP   276  0 1.000000e+00
## GO:0009161  BP   276  0 1.000000e+00
## GO:0009199  BP   276  0 1.000000e+00
## GO:0051648  BP   277  0 1.000000e+00
## GO:0071229  BP   278  0 1.000000e+00
## GO:0060070  BP   279  0 1.000000e+00
## GO:0072659  BP   279  0 1.000000e+00
## GO:0006310  BP   280  0 1.000000e+00
## GO:0070588  BP   280  0 1.000000e+00
## GO:0003007  BP   280  0 1.000000e+00
## GO:0001822  BP   281  0 1.000000e+00
## GO:2000146  BP   281  0 1.000000e+00
## GO:0009144  BP   281  0 1.000000e+00
## GO:0016032  BP   283  0 1.000000e+00
## GO:0044262  BP   284  0 1.000000e+00
## GO:0007162  BP   284  0 1.000000e+00
## GO:0040029  BP   284  0 1.000000e+00
## GO:0071496  BP   285  0 1.000000e+00
## GO:0009123  BP   285  0 1.000000e+00
## GO:0009165  BP   285  0 1.000000e+00
## GO:0043414  BP   286  0 1.000000e+00
## GO:0007548  BP   288  0 1.000000e+00
## GO:0006936  BP   289  0 1.000000e+00
## GO:0051169  BP   289  0 1.000000e+00
## GO:0006913  BP   289  0 1.000000e+00
## GO:0045088  BP   289  0 1.000000e+00
## GO:1901987  BP   290  0 1.000000e+00
## GO:0009416  BP   290  0 1.000000e+00
## GO:1901293  BP   291  0 1.000000e+00
## GO:0048511  BP   291  0 1.000000e+00
## GO:0071214  BP   292  0 1.000000e+00
## GO:0104004  BP   292  0 1.000000e+00
## GO:0097193  BP   292  0 1.000000e+00
## GO:0030111  BP   292  0 1.000000e+00
## GO:0043588  BP   293  0 1.000000e+00
## GO:0016358  BP   294  0 1.000000e+00
## GO:0042254  BP   294  0 1.000000e+00
## GO:0050851  BP   295  0 1.000000e+00
## GO:0043087  BP   295  0 1.000000e+00
## GO:0050954  BP   296  0 1.000000e+00
## GO:0006836  BP   297  0 1.000000e+00
## GO:1903829  BP   297  0 1.000000e+00
## GO:0009141  BP   298  0 1.000000e+00
## GO:0060271  BP   299  0 1.000000e+00
## GO:0072001  BP   302  0 1.000000e+00
## GO:0046677  BP   305  0 1.000000e+00
## GO:0045927  BP   308  0 1.000000e+00
## GO:1990830  BP   311  0 1.000000e+00
## GO:1990823  BP   311  0 1.000000e+00
## GO:0044282  BP   311  0 1.000000e+00
## GO:0051321  BP   314  0 1.000000e+00
## GO:0051271  BP   316  0 1.000000e+00
## GO:0051146  BP   316  0 1.000000e+00
## GO:0007059  BP   317  0 1.000000e+00
## GO:0018105  BP   318  0 1.000000e+00
## GO:0018108  BP   319  0 1.000000e+00
## GO:0018212  BP   322  0 1.000000e+00
## GO:0046486  BP   325  0 1.000000e+00
## GO:0002429  BP   326  0 1.000000e+00
## GO:0044782  BP   327  0 1.000000e+00
## GO:0008544  BP   329  0 1.000000e+00
## GO:0006732  BP   331  0 1.000000e+00
## GO:0040013  BP   332  0 1.000000e+00
## GO:0006417  BP   332  0 1.000000e+00
## GO:0052548  BP   337  0 1.000000e+00
## GO:0002768  BP   338  0 1.000000e+00
## GO:0032259  BP   338  0 1.000000e+00
## GO:0031589  BP   339  0 1.000000e+00
## GO:0007281  BP   339  0 1.000000e+00
## GO:0034470  BP   343  0 1.000000e+00
## GO:0018209  BP   343  0 1.000000e+00
## GO:0010769  BP   343  0 1.000000e+00
## GO:0044403  BP   343  0 1.000000e+00
## GO:1990778  BP   344  0 1.000000e+00
## GO:0032956  BP   344  0 1.000000e+00
## GO:0009636  BP   344  0 1.000000e+00
## GO:0043010  BP   348  0 1.000000e+00
## GO:0006644  BP   348  0 1.000000e+00
## GO:1902903  BP   348  0 1.000000e+00
## GO:1904062  BP   349  0 1.000000e+00
## GO:0050806  BP   350  0 1.000000e+00
## GO:0044772  BP   356  0 1.000000e+00
## GO:0022411  BP   357  0 1.000000e+00
## GO:0007178  BP   357  0 1.000000e+00
## GO:0048167  BP   361  0 1.000000e+00
## GO:0010976  BP   362  0 1.000000e+00
## GO:0008380  BP   364  0 1.000000e+00
## GO:0001101  BP   364  0 1.000000e+00
## GO:0016311  BP   366  0 1.000000e+00
## GO:0003002  BP   373  0 1.000000e+00
## GO:0072594  BP   374  0 1.000000e+00
## GO:0006091  BP   379  0 1.000000e+00
## GO:0060562  BP   380  0 1.000000e+00
## GO:0034248  BP   382  0 1.000000e+00
## GO:0051260  BP   383  0 1.000000e+00
## GO:0010256  BP   384  0 1.000000e+00
## GO:0006914  BP   386  0 1.000000e+00
## GO:0061919  BP   386  0 1.000000e+00
## GO:0003012  BP   392  0 1.000000e+00
## GO:0032970  BP   393  0 1.000000e+00
## GO:0044770  BP   394  0 1.000000e+00
## GO:0043161  BP   394  0 1.000000e+00
## GO:0042692  BP   395  0 1.000000e+00
## GO:0009314  BP   395  0 1.000000e+00
## GO:0001654  BP   397  0 1.000000e+00
## GO:0032535  BP   397  0 1.000000e+00
## GO:0007015  BP   400  0 1.000000e+00
## GO:0150063  BP   400  0 1.000000e+00
## GO:0048638  BP   401  0 1.000000e+00
## GO:0010639  BP   403  0 1.000000e+00
## GO:0051098  BP   403  0 1.000000e+00
## GO:0048880  BP   403  0 1.000000e+00
## GO:0042113  BP   405  0 1.000000e+00
## GO:0044419  BP   408  0 1.000000e+00
## GO:0007265  BP   414  0 1.000000e+00
## GO:0010959  BP   421  0 1.000000e+00
## GO:0006816  BP   423  0 1.000000e+00
## GO:0009150  BP   423  0 1.000000e+00
## GO:0007517  BP   424  0 1.000000e+00
## GO:0034655  BP   425  0 1.000000e+00
## GO:0019932  BP   427  0 1.000000e+00
## GO:0016055  BP   428  0 1.000000e+00
## GO:0042742  BP   428  0 1.000000e+00
## GO:0198738  BP   430  0 1.000000e+00
## GO:0001558  BP   431  0 1.000000e+00
## GO:0009259  BP   433  0 1.000000e+00
## GO:0022412  BP   436  0 1.000000e+00
## GO:0042391  BP   439  0 1.000000e+00
## GO:0022613  BP   439  0 1.000000e+00
## GO:0006163  BP   447  0 1.000000e+00
## GO:0006397  BP   448  0 1.000000e+00
## GO:0014706  BP   449  0 1.000000e+00
## GO:0002757  BP   450  0 1.000000e+00
## GO:0019693  BP   450  0 1.000000e+00
## GO:0043254  BP   451  0 1.000000e+00
## GO:0050808  BP   451  0 1.000000e+00
## GO:0045786  BP   452  0 1.000000e+00
## GO:0015672  BP   455  0 1.000000e+00
## GO:0007005  BP   459  0 1.000000e+00
## GO:0010498  BP   459  0 1.000000e+00
## GO:0044270  BP   463  0 1.000000e+00
## GO:0002764  BP   463  0 1.000000e+00
## GO:0006281  BP   464  0 1.000000e+00
## GO:0031346  BP   466  0 1.000000e+00
## GO:0034660  BP   467  0 1.000000e+00
## GO:0007389  BP   468  0 1.000000e+00
## GO:0046700  BP   469  0 1.000000e+00
## GO:0007409  BP   470  0 1.000000e+00
## GO:0070838  BP   472  0 1.000000e+00
## GO:0060537  BP   472  0 1.000000e+00
## GO:0072511  BP   475  0 1.000000e+00
## GO:0034765  BP   478  0 1.000000e+00
## GO:0019439  BP   483  0 1.000000e+00
## GO:0007264  BP   485  0 1.000000e+00
## GO:0120031  BP   488  0 1.000000e+00
## GO:0072521  BP   490  0 1.000000e+00
## GO:0010035  BP   493  0 1.000000e+00
## GO:0030031  BP   501  0 1.000000e+00
## GO:0090407  BP   503  0 1.000000e+00
## GO:0010608  BP   504  0 1.000000e+00
## GO:0061564  BP   506  0 1.000000e+00
## GO:0051186  BP   509  0 1.000000e+00
## GO:0051345  BP   510  0 1.000000e+00
## GO:0016049  BP   513  0 1.000000e+00
## GO:1901361  BP   513  0 1.000000e+00
## GO:1903827  BP   520  0 1.000000e+00
## GO:1905114  BP   521  0 1.000000e+00
## GO:0022604  BP   523  0 1.000000e+00
## GO:0044089  BP   534  0 1.000000e+00
## GO:0051493  BP   538  0 1.000000e+00
## GO:0072657  BP   543  0 1.000000e+00
## GO:0005975  BP   546  0 1.000000e+00
## GO:0002009  BP   553  0 1.000000e+00
## GO:0009117  BP   555  0 1.000000e+00
## GO:0090066  BP   561  0 1.000000e+00
## GO:0007283  BP   561  0 1.000000e+00
## GO:0006753  BP   564  0 1.000000e+00
## GO:0000226  BP   568  0 1.000000e+00
## GO:0016567  BP   568  0 1.000000e+00
## GO:0006511  BP   580  0 1.000000e+00
## GO:0048232  BP   581  0 1.000000e+00
## GO:0019941  BP   592  0 1.000000e+00
## GO:0071363  BP   602  0 1.000000e+00
## GO:0043632  BP   602  0 1.000000e+00
## GO:0010975  BP   603  0 1.000000e+00
## GO:0098662  BP   613  0 1.000000e+00
## GO:0006412  BP   614  0 1.000000e+00
## GO:0070848  BP   615  0 1.000000e+00
## GO:0051259  BP   617  0 1.000000e+00
## GO:0032446  BP   620  0 1.000000e+00
## GO:0048667  BP   628  0 1.000000e+00
## GO:0007507  BP   628  0 1.000000e+00
## GO:0055086  BP   630  0 1.000000e+00
## GO:0043043  BP   636  0 1.000000e+00
## GO:0016071  BP   637  0 1.000000e+00
## GO:0098660  BP   656  0 1.000000e+00
## GO:0030036  BP   663  0 1.000000e+00
## GO:0048812  BP   677  0 1.000000e+00
## GO:0048729  BP   677  0 1.000000e+00
## GO:0098655  BP   690  0 1.000000e+00
## GO:0120039  BP   691  0 1.000000e+00
## GO:0048858  BP   696  0 1.000000e+00
## GO:0061061  BP   701  0 1.000000e+00
## GO:0040008  BP   717  0 1.000000e+00
## GO:0032990  BP   718  0 1.000000e+00
## GO:0007276  BP   719  0 1.000000e+00
## GO:0006974  BP   740  0 1.000000e+00
## GO:0043604  BP   741  0 1.000000e+00
## GO:0070647  BP   741  0 1.000000e+00
## GO:0030029  BP   746  0 1.000000e+00
## GO:0007017  BP   759  0 1.000000e+00
## GO:0120035  BP   772  0 1.000000e+00
## GO:0033365  BP   774  0 1.000000e+00
## GO:0031344  BP   781  0 1.000000e+00
## GO:0048589  BP   787  0 1.000000e+00
## GO:0006518  BP   788  0 1.000000e+00
## GO:0000904  BP   804  0 1.000000e+00
## GO:0006396  BP   822  0 1.000000e+00
## GO:0030001  BP   839  0 1.000000e+00
## GO:0045087  BP   842  0 1.000000e+00
## GO:0048609  BP   858  0 1.000000e+00
## GO:0032504  BP   869  0 1.000000e+00
## GO:0055114  BP   872  0 1.000000e+00
## GO:0034220  BP   878  0 1.000000e+00
## GO:0006886  BP   882  0 1.000000e+00
## GO:0019953  BP   883  0 1.000000e+00
## GO:0044087  BP   948  0 1.000000e+00
## GO:0019637  BP   954  0 1.000000e+00
## GO:0034622  BP   996  0 1.000000e+00
## GO:0043603  BP  1008  0 1.000000e+00
## GO:0044703  BP  1028  0 1.000000e+00
## GO:0031175  BP  1083  0 1.000000e+00
## GO:0040007  BP  1097  0 1.000000e+00
## GO:0000902  BP  1100  0 1.000000e+00
## GO:0006812  BP  1101  0 1.000000e+00
## GO:0007608  BP  1138  0 1.000000e+00
## GO:0032989  BP  1211  0 1.000000e+00
## GO:0007606  BP  1236  0 1.000000e+00
## GO:0007010  BP  1305  0 1.000000e+00
## GO:0120036  BP  1526  0 1.000000e+00
## GO:0030030  BP  1572  0 1.000000e+00
## GO:0034613  BP  1676  0 1.000000e+00
## GO:0070727  BP  1686  0 1.000000e+00
## GO:0065003  BP  1729  0 1.000000e+00
## GO:0007600  BP  1791  0 1.000000e+00
## GO:0007186  BP  1921  0 1.000000e+00
## GO:0043933  BP  1956  0 1.000000e+00
## 
## [[1]][[12]]
##                                                                                                                                                           Term
## GO:0045659                                                                                                   negative regulation of neutrophil differentiation
## GO:0045645                                                                                                   positive regulation of eosinophil differentiation
## GO:1905704                                                                                                  positive regulation of inhibitory synapse assembly
## GO:0045643                                                                                                            regulation of eosinophil differentiation
## GO:0002250                                                                                                                            adaptive immune response
## GO:1904891                                                                                                  positive regulation of excitatory synapse assembly
## GO:1905702                                                                                                           regulation of inhibitory synapse assembly
## GO:0045658                                                                                                            regulation of neutrophil differentiation
## GO:0002376                                                                                                                               immune system process
## GO:0010977                                                                                                negative regulation of neuron projection development
## GO:0061136                                                                                                 regulation of proteasomal protein catabolic process
## GO:0030222                                                                                                                          eosinophil differentiation
## GO:0006955                                                                                                                                     immune response
## GO:0031345                                                                                                 negative regulation of cell projection organization
## GO:1903050                                                                            regulation of proteolysis involved in cellular protein catabolic process
## GO:0045596                                                                                                         negative regulation of cell differentiation
## GO:0046649                                                                                                                               lymphocyte activation
## GO:0031665                                                                                negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:1903362                                                                                                    regulation of cellular protein catabolic process
## GO:1904153                                                                                  negative regulation of retrograde protein transport, ER to cytosol
## GO:0030223                                                                                                                          neutrophil differentiation
## GO:0030853                                                                                                  negative regulation of granulocyte differentiation
## GO:0070862                                                                                      negative regulation of protein exit from endoplasmic reticulum
## GO:0030854                                                                                                  positive regulation of granulocyte differentiation
## GO:0045665                                                                                                       negative regulation of neuron differentiation
## GO:0014824                                                                                                                    artery smooth muscle contraction
## GO:0030206                                                                                                            chondroitin sulfate biosynthetic process
## GO:1904862                                                                                                                         inhibitory synapse assembly
## GO:0032464                                                                                                  positive regulation of protein homooligomerization
## GO:0009101                                                                                                                   glycoprotein biosynthetic process
## GO:1904152                                                                                           regulation of retrograde protein transport, ER to cytosol
## GO:0045321                                                                                                                                leukocyte activation
## GO:1904293                                                                                                                 negative regulation of ERAD pathway
## GO:0014820                                                                                                                     tonic smooth muscle contraction
## GO:0045651                                                                                                   positive regulation of macrophage differentiation
## GO:0051271                                                                                                  negative regulation of cellular component movement
## GO:0051093                                                                                                        negative regulation of developmental process
## GO:0045779                                                                                                              negative regulation of bone resorption
## GO:0060284                                                                                                                      regulation of cell development
## GO:0001775                                                                                                                                     cell activation
## GO:0040013                                                                                                                   negative regulation of locomotion
## GO:1904889                                                                                                           regulation of excitatory synapse assembly
## GO:0032102                                                                                                negative regulation of response to external stimulus
## GO:0050768                                                                                                                 negative regulation of neurogenesis
## GO:0009100                                                                                                                      glycoprotein metabolic process
## GO:0046851                                                                                                              negative regulation of bone remodeling
## GO:0050650                                                                                               chondroitin sulfate proteoglycan biosynthetic process
## GO:0030852                                                                                                           regulation of granulocyte differentiation
## GO:0031664                                                                                         regulation of lipopolysaccharide-mediated signaling pathway
## GO:0033194                                                                                                                           response to hydroperoxide
## GO:0048583                                                                                                                  regulation of response to stimulus
## GO:0051961                                                                                                   negative regulation of nervous system development
## GO:0018279                                                                                                       protein N-linked glycosylation via asparagine
## GO:0045649                                                                                                            regulation of macrophage differentiation
## GO:0018196                                                                                                                    peptidyl-asparagine modification
## GO:0042176                                                                                                             regulation of protein catabolic process
## GO:0045063                                                                                                                     T-helper 1 cell differentiation
## GO:0030204                                                                                                               chondroitin sulfate metabolic process
## GO:0014912                                                                                                 negative regulation of smooth muscle cell migration
## GO:0032462                                                                                                           regulation of protein homooligomerization
## GO:0010721                                                                                                             negative regulation of cell development
## GO:0032461                                                                                                      positive regulation of protein oligomerization
## GO:0043161                                                                                   proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0034104                                                                                                            negative regulation of tissue remodeling
## GO:0051443                                                                                       positive regulation of ubiquitin-protein transferase activity
## GO:0070861                                                                                               regulation of protein exit from endoplasmic reticulum
## GO:0007165                                                                                                                                 signal transduction
## GO:1903513                                                                                                          endoplasmic reticulum to cytosol transport
## GO:0048843                                                                                     negative regulation of axon extension involved in axon guidance
## GO:0030970                                                                                                         retrograde protein transport, ER to cytosol
## GO:0014829                                                                                                                  vascular smooth muscle contraction
## GO:1904861                                                                                                                         excitatory synapse assembly
## GO:1902668                                                                                                                negative regulation of axon guidance
## GO:0090200                                                                                    positive regulation of release of cytochrome c from mitochondria
## GO:1904292                                                                                                                          regulation of ERAD pathway
## GO:0001558                                                                                                                           regulation of cell growth
## GO:0051241                                                                                             negative regulation of multicellular organismal process
## GO:0050654                                                                                                  chondroitin sulfate proteoglycan metabolic process
## GO:0010498                                                                                                               proteasomal protein catabolic process
## GO:0048841                                                                                              regulation of axon extension involved in axon guidance
## GO:0060292                                                                                                                       long-term synaptic depression
## GO:0048846                                                                                                            axon extension involved in axon guidance
## GO:1902284                                                                                  neuron projection extension involved in neuron projection guidance
## GO:0030851                                                                                                                         granulocyte differentiation
## GO:0002682                                                                                                                 regulation of immune system process
## GO:0032879                                                                                                                          regulation of localization
## GO:0016049                                                                                                                                         cell growth
## GO:0030225                                                                                                                          macrophage differentiation
## GO:0023052                                                                                                                                           signaling
## GO:0002832                                                                                                  negative regulation of response to biotic stimulus
## GO:0032459                                                                                                               regulation of protein oligomerization
## GO:1903573                                                                                     negative regulation of response to endoplasmic reticulum stress
## GO:0007154                                                                                                                                  cell communication
## GO:0044089                                                                                                positive regulation of cellular component biogenesis
## GO:0006024                                                                                                              glycosaminoglycan biosynthetic process
## GO:0090317                                                                                              negative regulation of intracellular protein transport
## GO:0032527                                                                                                             protein exit from endoplasmic reticulum
## GO:0050919                                                                                                                                 negative chemotaxis
## GO:0030890                                                                                                         positive regulation of B cell proliferation
## GO:0032814                                                                                                        regulation of natural killer cell activation
## GO:0071526                                                                                                                 semaphorin-plexin signaling pathway
## GO:0051249                                                                                                                 regulation of lymphocyte activation
## GO:0048585                                                                                                         negative regulation of response to stimulus
## GO:0030517                                                                                                               negative regulation of axon extension
## GO:1902667                                                                                                                         regulation of axon guidance
## GO:0090066                                                                                                             regulation of anatomical structure size
## GO:0045907                                                                                                             positive regulation of vasoconstriction
## GO:0090199                                                                                             regulation of release of cytochrome c from mitochondria
## GO:0002521                                                                                                                           leukocyte differentiation
## GO:0042088                                                                                                                     T-helper 1 type immune response
## GO:0002762                                                                                            negative regulation of myeloid leukocyte differentiation
## GO:0051438                                                                                                regulation of ubiquitin-protein transferase activity
## GO:0006511                                                                                                       ubiquitin-dependent protein catabolic process
## GO:0031663                                                                                                       lipopolysaccharide-mediated signaling pathway
## GO:0045124                                                                                                                       regulation of bone resorption
## GO:0019941                                                                                                    modification-dependent protein catabolic process
## GO:0006023                                                                                                                    aminoglycan biosynthetic process
## GO:1901799                                                                                        negative regulation of proteasomal protein catabolic process
## GO:0048662                                                                                             negative regulation of smooth muscle cell proliferation
## GO:1901137                                                                                                        carbohydrate derivative biosynthetic process
## GO:0043632                                                                                              modification-dependent macromolecule catabolic process
## GO:0010975                                                                                                         regulation of neuron projection development
## GO:0050922                                                                                                                   negative regulation of chemotaxis
## GO:0030166                                                                                                                   proteoglycan biosynthetic process
## GO:1903510                                                                                                                mucopolysaccharide metabolic process
## GO:0001755                                                                                                                         neural crest cell migration
## GO:0050896                                                                                                                                response to stimulus
## GO:0046850                                                                                                                       regulation of bone remodeling
## GO:0001836                                                                                                           release of cytochrome c from mitochondria
## GO:0015031                                                                                                                                   protein transport
## GO:0002694                                                                                                                  regulation of leukocyte activation
## GO:0042093                                                                                                                       T-helper cell differentiation
## GO:0002294                                                                         CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:0002763                                                                                            positive regulation of myeloid leukocyte differentiation
## GO:0002293                                                                                       alpha-beta T cell differentiation involved in immune response
## GO:0030968                                                                                                     endoplasmic reticulum unfolded protein response
## GO:0006487                                                                                                                      protein N-linked glycosylation
## GO:0015833                                                                                                                                   peptide transport
## GO:0002287                                                                                            alpha-beta T cell activation involved in immune response
## GO:0050771                                                                                                                 negative regulation of axonogenesis
## GO:0042886                                                                                                                                     amide transport
## GO:0032387                                                                                                      negative regulation of intracellular transport
## GO:0030888                                                                                                                  regulation of B cell proliferation
## GO:0050865                                                                                                                       regulation of cell activation
## GO:0031329                                                                                                            regulation of cellular catabolic process
## GO:0051603                                                                                          proteolysis involved in cellular protein catabolic process
## GO:0002292                                                                                                  T cell differentiation involved in immune response
## GO:1903051                                                                   negative regulation of proteolysis involved in cellular protein catabolic process
## GO:0045184                                                                                                               establishment of protein localization
## GO:0051223                                                                                                                     regulation of protein transport
## GO:0045453                                                                                                                                     bone resorption
## GO:0010822                                                                                                   positive regulation of mitochondrion organization
## GO:0030162                                                                                                                           regulation of proteolysis
## GO:0040008                                                                                                                                regulation of growth
## GO:0030433                                                                                                                    ubiquitin-dependent ERAD pathway
## GO:0019229                                                                                                                      regulation of vasoconstriction
## GO:0051965                                                                                                             positive regulation of synapse assembly
## GO:1905897                                                                                              regulation of response to endoplasmic reticulum stress
## GO:0045595                                                                                                                  regulation of cell differentiation
## GO:0002260                                                                                                                              lymphocyte homeostasis
## GO:0044257                                                                                                                  cellular protein catabolic process
## GO:0070201                                                                                                 regulation of establishment of protein localization
## GO:0006029                                                                                                                      proteoglycan metabolic process
## GO:0044272                                                                                                                sulfur compound biosynthetic process
## GO:0051240                                                                                             positive regulation of multicellular organismal process
## GO:0050805                                                                                                        negative regulation of synaptic transmission
## GO:0090087                                                                                                                     regulation of peptide transport
## GO:0043367                                                                                                     CD4-positive, alpha-beta T cell differentiation
## GO:0051129                                                                                              negative regulation of cellular component organization
## GO:0034620                                                                                                               cellular response to unfolded protein
## GO:0032436                                                                    positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0030203                                                                                                                 glycosaminoglycan metabolic process
## GO:1903363                                                                                           negative regulation of cellular protein catabolic process
## GO:0034103                                                                                                                     regulation of tissue remodeling
## GO:0032101                                                                                                         regulation of response to external stimulus
## GO:0014032                                                                                                                       neural crest cell development
## GO:0014910                                                                                                          regulation of smooth muscle cell migration
## GO:0120035                                                                                  regulation of plasma membrane bounded cell projection organization
## GO:0045664                                                                                                                regulation of neuron differentiation
## GO:0031344                                                                                                          regulation of cell projection organization
## GO:0032024                                                                                                            positive regulation of insulin secretion
## GO:0014031                                                                                                                        mesenchymal cell development
## GO:1903524                                                                                                            positive regulation of blood circulation
## GO:0048864                                                                                                                               stem cell development
## GO:0006950                                                                                                                                  response to stress
## GO:0014033                                                                                                                   neural crest cell differentiation
## GO:0014909                                                                                                                        smooth muscle cell migration
## GO:2000060                                                                                positive regulation of ubiquitin-dependent protein catabolic process
## GO:0051716                                                                                                                       cellular response to stimulus
## GO:0009894                                                                                                                     regulation of catabolic process
## GO:0036503                                                                                                                                        ERAD pathway
## GO:0045638                                                                                                 negative regulation of myeloid cell differentiation
## GO:0010771                                                                               negative regulation of cell morphogenesis involved in differentiation
## GO:0045639                                                                                                 positive regulation of myeloid cell differentiation
## GO:0035710                                                                                                          CD4-positive, alpha-beta T cell activation
## GO:0006022                                                                                                                       aminoglycan metabolic process
## GO:0042310                                                                                                                                    vasoconstriction
## GO:0046849                                                                                                                                     bone remodeling
## GO:1902106                                                                                                    negative regulation of leukocyte differentiation
## GO:0035967                                                                                                cellular response to topologically incorrect protein
## GO:1901800                                                                                        positive regulation of proteasomal protein catabolic process
## GO:0071705                                                                                                                         nitrogen compound transport
## GO:0030101                                                                                                                      natural killer cell activation
## GO:0014812                                                                                                                               muscle cell migration
## GO:0097756                                                                                                        negative regulation of blood vessel diameter
## GO:0001776                                                                                                                               leukocyte homeostasis
## GO:0006986                                                                                                                        response to unfolded protein
## GO:2000026                                                                                                  regulation of multicellular organismal development
## GO:0008637                                                                                                                     apoptotic mitochondrial changes
## GO:0030334                                                                                                                        regulation of cell migration
## GO:0042100                                                                                                                                B cell proliferation
## GO:0046632                                                                                                                   alpha-beta T cell differentiation
## GO:0016525                                                                                                                 negative regulation of angiogenesis
## GO:0031398                                                                                                       positive regulation of protein ubiquitination
## GO:0030516                                                                                                                        regulation of axon extension
## GO:0006939                                                                                                                           smooth muscle contraction
## GO:0002286                                                                                                       T cell activation involved in immune response
## GO:0030163                                                                                                                           protein catabolic process
## GO:2000181                                                                                                   negative regulation of blood vessel morphogenesis
## GO:1903828                                                                                                negative regulation of cellular protein localization
## GO:1903052                                                                   positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0030097                                                                                                                                         hemopoiesis
## GO:0051963                                                                                                                      regulation of synapse assembly
## GO:0008584                                                                                                                              male gonad development
## GO:0090277                                                                                                    positive regulation of peptide hormone secretion
## GO:0046546                                                                                                  development of primary male sexual characteristics
## GO:0051172                                                                                          negative regulation of nitrogen compound metabolic process
## GO:0032434                                                                             regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0051179                                                                                                                                        localization
## GO:2000145                                                                                                                         regulation of cell motility
## GO:0050794                                                                                                                      regulation of cellular process
## GO:0002761                                                                                                     regulation of myeloid leukocyte differentiation
## GO:0044087                                                                                                         regulation of cellular component biogenesis
## GO:0048640                                                                                                         negative regulation of developmental growth
## GO:0061387                                                                                                                 regulation of extent of cell growth
## GO:0050767                                                                                                                          regulation of neurogenesis
## GO:1901343                                                                                                      negative regulation of vasculature development
## GO:0034645                                                                                                         cellular macromolecule biosynthetic process
## GO:0042177                                                                                                    negative regulation of protein catabolic process
## GO:0048534                                                                                                         hematopoietic or lymphoid organ development
## GO:0035966                                                                                                         response to topologically incorrect protein
## GO:1903322                                                                 positive regulation of protein modification by small protein conjugation or removal
## GO:1903364                                                                                           positive regulation of cellular protein catabolic process
## GO:0050671                                                                                                     positive regulation of lymphocyte proliferation
## GO:0010821                                                                                                            regulation of mitochondrion organization
## GO:0048675                                                                                                                                      axon extension
## GO:0032946                                                                                               positive regulation of mononuclear cell proliferation
## GO:0009059                                                                                                                  macromolecule biosynthetic process
## GO:1901135                                                                                                           carbohydrate derivative metabolic process
## GO:0032269                                                                                           negative regulation of cellular protein metabolic process
## GO:0042221                                                                                                                                response to chemical
## GO:0044265                                                                                                            cellular macromolecule catabolic process
## GO:0048468                                                                                                                                    cell development
## GO:0040012                                                                                                                            regulation of locomotion
## GO:0070665                                                                                                      positive regulation of leukocyte proliferation
## GO:0051270                                                                                                           regulation of cellular component movement
## GO:0002520                                                                                                                           immune system development
## GO:0002831                                                                                                           regulation of response to biotic stimulus
## GO:2000058                                                                                         regulation of ubiquitin-dependent protein catabolic process
## GO:0032880                                                                                                                  regulation of protein localization
## GO:0031324                                                                                                   negative regulation of cellular metabolic process
## GO:0008360                                                                                                                            regulation of cell shape
## GO:0046661                                                                                                                            male sex differentiation
## GO:0007166                                                                                                             cell surface receptor signaling pathway
## GO:0051248                                                                                                    negative regulation of protein metabolic process
## GO:0051960                                                                                                            regulation of nervous system development
## GO:0046631                                                                                                                        alpha-beta T cell activation
## GO:0010594                                                                                                            regulation of endothelial cell migration
## GO:0002684                                                                                                        positive regulation of immune system process
## GO:0071702                                                                                                                         organic substance transport
## GO:1903707                                                                                                                  negative regulation of hemopoiesis
## GO:0043433                                                                                    negative regulation of DNA-binding transcription factor activity
## GO:0031175                                                                                                                       neuron projection development
## GO:0048660                                                                                                      regulation of smooth muscle cell proliferation
## GO:0046887                                                                                                            positive regulation of hormone secretion
## GO:0040007                                                                                                                                              growth
## GO:0043901                                                                                                       negative regulation of multi-organism process
## GO:0051128                                                                                                       regulation of cellular component organization
## GO:1902107                                                                                                    positive regulation of leukocyte differentiation
## GO:0048659                                                                                                                    smooth muscle cell proliferation
## GO:0008104                                                                                                                                protein localization
## GO:0010605                                                                                              negative regulation of macromolecule metabolic process
## GO:0097746                                                                                                                 regulation of blood vessel diameter
## GO:0050880                                                                                                                     regulation of blood vessel size
## GO:0035296                                                                                                                         regulation of tube diameter
## GO:0035150                                                                                                                             regulation of tube size
## GO:1901565                                                                                                           organonitrogen compound catabolic process
## GO:0007416                                                                                                                                    synapse assembly
## GO:0050853                                                                                                                   B cell receptor signaling pathway
## GO:0050789                                                                                                                    regulation of biological process
## GO:2001235                                                                                                  positive regulation of apoptotic signaling pathway
## GO:0050796                                                                                                                     regulation of insulin secretion
## GO:0002285                                                                                                   lymphocyte activation involved in immune response
## GO:1990138                                                                                                                         neuron projection extension
## GO:0048771                                                                                                                                   tissue remodeling
## GO:0030308                                                                                                                  negative regulation of cell growth
## GO:0006469                                                                                                      negative regulation of protein kinase activity
## GO:0050793                                                                                                                 regulation of developmental process
## GO:0030307                                                                                                                  positive regulation of cell growth
## GO:0043413                                                                                                                         macromolecule glycosylation
## GO:0006486                                                                                                                               protein glycosylation
## GO:0043542                                                                                                                          endothelial cell migration
## GO:0009057                                                                                                                     macromolecule catabolic process
## GO:0031396                                                                                                                regulation of protein ubiquitination
## GO:0048666                                                                                                                                  neuron development
## GO:0007254                                                                                                                                         JNK cascade
## GO:0003018                                                                                                              vascular process in circulatory system
## GO:0051224                                                                                                            negative regulation of protein transport
## GO:0001666                                                                                                                                 response to hypoxia
## GO:0050770                                                                                                                          regulation of axonogenesis
## GO:1903708                                                                                                                  positive regulation of hemopoiesis
## GO:1904950                                                                                        negative regulation of establishment of protein localization
## GO:0008361                                                                                                                             regulation of cell size
## GO:0070085                                                                                                                                       glycosylation
## GO:0045732                                                                                                    positive regulation of protein catabolic process
## GO:0033157                                                                                                       regulation of intracellular protein transport
## GO:0048523                                                                                                             negative regulation of cellular process
## GO:0050920                                                                                                                            regulation of chemotaxis
## GO:0008406                                                                                                                                   gonad development
## GO:0033673                                                                                                              negative regulation of kinase activity
## GO:0050871                                                                                                            positive regulation of B cell activation
## GO:0045637                                                                                                          regulation of myeloid cell differentiation
## GO:0048762                                                                                                                    mesenchymal cell differentiation
## GO:0002573                                                                                                                   myeloid leukocyte differentiation
## GO:0009892                                                                                                            negative regulation of metabolic process
## GO:0045137                                                                                                       development of primary sexual characteristics
## GO:0048731                                                                                                                                  system development
## GO:0051130                                                                                              positive regulation of cellular component organization
## GO:0030073                                                                                                                                   insulin secretion
## GO:0010632                                                                                                             regulation of epithelial cell migration
## GO:0050670                                                                                                              regulation of lymphocyte proliferation
## GO:0010648                                                                                                           negative regulation of cell communication
## GO:0023057                                                                                                                    negative regulation of signaling
## GO:0032944                                                                                                        regulation of mononuclear cell proliferation
## GO:0090276                                                                                                             regulation of peptide hormone secretion
## GO:0048863                                                                                                                           stem cell differentiation
## GO:0033036                                                                                                                          macromolecule localization
## GO:1903320                                                                          regulation of protein modification by small protein conjugation or removal
## GO:0036293                                                                                                                 response to decreased oxygen levels
## GO:0001894                                                                                                                                  tissue homeostasis
## GO:0033002                                                                                                                           muscle cell proliferation
## GO:0034976                                                                                                            response to endoplasmic reticulum stress
## GO:0070663                                                                                                               regulation of leukocyte proliferation
## GO:1903522                                                                                                                     regulation of blood circulation
## GO:0007411                                                                                                                                       axon guidance
## GO:0065007                                                                                                                               biological regulation
## GO:0051348                                                                                                         negative regulation of transferase activity
## GO:0097485                                                                                                                          neuron projection guidance
## GO:0031334                                                                                                     positive regulation of protein complex assembly
## GO:0031330                                                                                                   negative regulation of cellular catabolic process
## GO:0044249                                                                                                                       cellular biosynthetic process
## GO:0051403                                                                                                                       stress-activated MAPK cascade
## GO:0045926                                                                                                                       negative regulation of growth
## GO:0048588                                                                                                                           developmental cell growth
## GO:0050864                                                                                                                     regulation of B cell activation
## GO:0010033                                                                                                                       response to organic substance
## GO:0050807                                                                                                                  regulation of synapse organization
## GO:1901576                                                                                                              organic substance biosynthetic process
## GO:0030336                                                                                                               negative regulation of cell migration
## GO:0030217                                                                                                                              T cell differentiation
## GO:0002366                                                                                                    leukocyte activation involved in immune response
## GO:0060560                                                                                                      developmental growth involved in morphogenesis
## GO:0016477                                                                                                                                      cell migration
## GO:0060485                                                                                                                              mesenchyme development
## GO:0006790                                                                                                                   sulfur compound metabolic process
## GO:0002263                                                                                                         cell activation involved in immune response
## GO:0050803                                                                                                         regulation of synapse structure or activity
## GO:0030072                                                                                                                           peptide hormone secretion
## GO:0010631                                                                                                                           epithelial cell migration
## GO:2000146                                                                                                                negative regulation of cell motility
## GO:0071222                                                                                                             cellular response to lipopolysaccharide
## GO:0090132                                                                                                                                epithelium migration
## GO:0070482                                                                                                                           response to oxygen levels
## GO:0009058                                                                                                                                biosynthetic process
## GO:0090130                                                                                                                                    tissue migration
## GO:0030182                                                                                                                              neuron differentiation
## GO:0007548                                                                                                                                 sex differentiation
## GO:0006936                                                                                                                                  muscle contraction
## GO:0071219                                                                                                   cellular response to molecule of bacterial origin
## GO:0031098                                                                                                   stress-activated protein kinase signaling cascade
## GO:0009895                                                                                                            negative regulation of catabolic process
## GO:1902105                                                                                                             regulation of leukocyte differentiation
## GO:0050851                                                                                                         antigen receptor-mediated signaling pathway
## GO:0043405                                                                                                                   regulation of MAP kinase activity
## GO:0042981                                                                                                                     regulation of apoptotic process
## GO:0120036                                                                                                plasma membrane bounded cell projection organization
## GO:0050714                                                                                                            positive regulation of protein secretion
## GO:0046883                                                                                                                     regulation of hormone secretion
## GO:0043067                                                                                                                 regulation of programmed cell death
## GO:0051094                                                                                                        positive regulation of developmental process
## GO:0051239                                                                                                      regulation of multicellular organismal process
## GO:0045765                                                                                                                          regulation of angiogenesis
## GO:0046651                                                                                                                            lymphocyte proliferation
## GO:0045927                                                                                                                       positive regulation of growth
## GO:0048519                                                                                                           negative regulation of biological process
## GO:0032943                                                                                                                      mononuclear cell proliferation
## GO:0071216                                                                                                                cellular response to biotic stimulus
## GO:0048872                                                                                                                      homeostasis of number of cells
## GO:0030030                                                                                                                        cell projection organization
## GO:1901700                                                                                                              response to oxygen-containing compound
## GO:0048870                                                                                                                                       cell motility
## GO:0051674                                                                                                                                localization of cell
## GO:1901566                                                                                                        organonitrogen compound biosynthetic process
## GO:0010646                                                                                                                    regulation of cell communication
## GO:0007275                                                                                                                  multicellular organism development
## GO:0002429                                                                                  immune response-activating cell surface receptor signaling pathway
## GO:0007204                                                                                          positive regulation of cytosolic calcium ion concentration
## GO:0045862                                                                                                                  positive regulation of proteolysis
## GO:0023051                                                                                                                             regulation of signaling
## GO:0070661                                                                                                                             leukocyte proliferation
## GO:0002793                                                                                                            positive regulation of peptide secretion
## GO:0002768                                                                                  immune response-regulating cell surface receptor signaling pathway
## GO:0009987                                                                                                                                    cellular process
## GO:1901342                                                                                                               regulation of vasculature development
## GO:0010769                                                                                        regulation of cell morphogenesis involved in differentiation
## GO:0042127                                                                                                                    regulation of cell proliferation
## GO:0006508                                                                                                                                         proteolysis
## GO:0048522                                                                                                             positive regulation of cellular process
## GO:0045861                                                                                                                  negative regulation of proteolysis
## GO:0048699                                                                                                                               generation of neurons
## GO:0031331                                                                                                   positive regulation of cellular catabolic process
## GO:0010941                                                                                                                            regulation of cell death
## GO:0032496                                                                                                                      response to lipopolysaccharide
## GO:0048167                                                                                                                   regulation of synaptic plasticity
## GO:0046879                                                                                                                                   hormone secretion
## GO:0048513                                                                                                                            animal organ development
## GO:0009914                                                                                                                                   hormone transport
## GO:0051480                                                                                                   regulation of cytosolic calcium ion concentration
## GO:0002237                                                                                                            response to molecule of bacterial origin
## GO:0051260                                                                                                                         protein homooligomerization
## GO:0033554                                                                                                                         cellular response to stress
## GO:0043900                                                                                                                regulation of multi-organism process
## GO:0060249                                                                                                                    anatomical structure homeostasis
## GO:0003012                                                                                                                               muscle system process
## GO:0022008                                                                                                                                        neurogenesis
## GO:0051251                                                                                                        positive regulation of lymphocyte activation
## GO:0030098                                                                                                                          lymphocyte differentiation
## GO:0051090                                                                                             regulation of DNA-binding transcription factor activity
## GO:0032535                                                                                                               regulation of cellular component size
## GO:0006979                                                                                                                        response to oxidative stress
## GO:0030099                                                                                                                        myeloid cell differentiation
## GO:0048638                                                                                                                  regulation of developmental growth
## GO:0042113                                                                                                                                   B cell activation
## GO:0001667                                                                                                                       ameboidal-type cell migration
## GO:1903706                                                                                                                           regulation of hemopoiesis
## GO:0040011                                                                                                                                          locomotion
## GO:0001933                                                                                                      negative regulation of protein phosphorylation
## GO:2001233                                                                                                           regulation of apoptotic signaling pathway
## GO:0009896                                                                                                            positive regulation of catabolic process
## GO:0010647                                                                                                           positive regulation of cell communication
## GO:1901575                                                                                                                 organic substance catabolic process
## GO:0023056                                                                                                                    positive regulation of signaling
## GO:0071900                                                                                              regulation of protein serine/threonine kinase activity
## GO:0006915                                                                                                                                   apoptotic process
## GO:0048856                                                                                                                    anatomical structure development
## GO:0051222                                                                                                            positive regulation of protein transport
## GO:0042592                                                                                                                                 homeostatic process
## GO:0032386                                                                                                               regulation of intracellular transport
## GO:0002460                           adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0012501                                                                                                                               programmed cell death
## GO:0002696                                                                                                         positive regulation of leukocyte activation
## GO:0048608                                                                                                                  reproductive structure development
## GO:0002757                                                                                                      immune response-activating signal transduction
## GO:0043254                                                                                                              regulation of protein complex assembly
## GO:0050808                                                                                                                                synapse organization
## GO:0042326                                                                                                              negative regulation of phosphorylation
## GO:0061458                                                                                                                     reproductive system development
## GO:1904951                                                                                        positive regulation of establishment of protein localization
## GO:0007005                                                                                                                          mitochondrion organization
## GO:0051049                                                                                                                             regulation of transport
## GO:0050867                                                                                                              positive regulation of cell activation
## GO:0002764                                                                                                        immune response-regulating signaling pathway
## GO:0007409                                                                                                                                        axonogenesis
## GO:1903532                                                                                                            positive regulation of secretion by cell
## GO:0006874                                                                                                                    cellular calcium ion homeostasis
## GO:0002683                                                                                                        negative regulation of immune system process
## GO:0008283                                                                                                                                  cell proliferation
## GO:0044248                                                                                                                          cellular catabolic process
## GO:0008015                                                                                                                                   blood circulation
## GO:0048871                                                                                                                multicellular organismal homeostasis
## GO:0006928                                                                                                           movement of cell or subcellular component
## GO:0055074                                                                                                                             calcium ion homeostasis
## GO:0050708                                                                                                                     regulation of protein secretion
## GO:0042110                                                                                                                                   T cell activation
## GO:0003013                                                                                                                          circulatory system process
## GO:0072503                                                                                                      cellular divalent inorganic cation homeostasis
## GO:0048518                                                                                                           positive regulation of biological process
## GO:0061564                                                                                                                                    axon development
## GO:0008219                                                                                                                                          cell death
## GO:0001525                                                                                                                                        angiogenesis
## GO:1903827                                                                                                         regulation of cellular protein localization
## GO:0072507                                                                                                               divalent inorganic cation homeostasis
## GO:0065008                                                                                                                    regulation of biological quality
## GO:0022604                                                                                                                    regulation of cell morphogenesis
## GO:0023061                                                                                                                                      signal release
## GO:0032502                                                                                                                               developmental process
## GO:0002253                                                                                                                       activation of immune response
## GO:0051047                                                                                                                    positive regulation of secretion
## GO:0002791                                                                                                                     regulation of peptide secretion
## GO:0030335                                                                                                               positive regulation of cell migration
## GO:0051051                                                                                                                    negative regulation of transport
## GO:0045936                                                                                                  negative regulation of phosphate metabolic process
## GO:0010563                                                                                                 negative regulation of phosphorus metabolic process
## GO:0051347                                                                                                         positive regulation of transferase activity
## GO:0010817                                                                                                                        regulation of hormone levels
## GO:2000147                                                                                                                positive regulation of cell motility
## GO:0007283                                                                                                                                     spermatogenesis
## GO:0031400                                                                                                 negative regulation of protein modification process
## GO:0016567                                                                                                                              protein ubiquitination
## GO:0030154                                                                                                                                cell differentiation
## GO:0051272                                                                                                  positive regulation of cellular component movement
## GO:0048232                                                                                                                              male gamete generation
## GO:0006875                                                                                                                      cellular metal ion homeostasis
## GO:0040017                                                                                                                   positive regulation of locomotion
## GO:0010638                                                                                                       positive regulation of organelle organization
## GO:0009056                                                                                                                                   catabolic process
## GO:0044057                                                                                                                        regulation of system process
## GO:0006935                                                                                                                                          chemotaxis
## GO:0042330                                                                                                                                               taxis
## GO:0097190                                                                                                                         apoptotic signaling pathway
## GO:0009306                                                                                                                                   protein secretion
## GO:0071396                                                                                                                          cellular response to lipid
## GO:0048584                                                                                                         positive regulation of response to stimulus
## GO:0051259                                                                                                                     protein complex oligomerization
## GO:0032446                                                                                                   protein modification by small protein conjugation
## GO:0048514                                                                                                                          blood vessel morphogenesis
## GO:0048667                                                                                               cell morphogenesis involved in neuron differentiation
## GO:0007399                                                                                                                          nervous system development
## GO:0043065                                                                                                            positive regulation of apoptotic process
## GO:0006810                                                                                                                                           transport
## GO:0043068                                                                                                        positive regulation of programmed cell death
## GO:0030003                                                                                                                         cellular cation homeostasis
## GO:0048869                                                                                                                      cellular developmental process
## GO:0051962                                                                                                   positive regulation of nervous system development
## GO:0002790                                                                                                                                   peptide secretion
## GO:0006873                                                                                                                            cellular ion homeostasis
## GO:0051704                                                                                                                              multi-organism process
## GO:0010720                                                                                                             positive regulation of cell development
## GO:0050804                                                                                                        modulation of chemical synaptic transmission
## GO:0045859                                                                                                               regulation of protein kinase activity
## GO:0099177                                                                                                              regulation of trans-synaptic signaling
## GO:0055065                                                                                                                               metal ion homeostasis
## GO:0080135                                                                                                           regulation of cellular response to stress
## GO:0048812                                                                                                                     neuron projection morphogenesis
## GO:0071310                                                                                                              cellular response to organic substance
## GO:0008285                                                                                                           negative regulation of cell proliferation
## GO:0043086                                                                                                           negative regulation of catalytic activity
## GO:0051234                                                                                                                       establishment of localization
## GO:0120039                                                                                               plasma membrane bounded cell projection morphogenesis
## GO:0010942                                                                                                                   positive regulation of cell death
## GO:0048858                                                                                                                       cell projection morphogenesis
## GO:0009725                                                                                                                                 response to hormone
## GO:0032268                                                                                                    regulation of cellular protein metabolic process
## GO:0032990                                                                                                                             cell part morphogenesis
## GO:0009605                                                                                                                       response to external stimulus
## GO:0001568                                                                                                                            blood vessel development
## GO:0007276                                                                                                                                   gamete generation
## GO:0043549                                                                                                                       regulation of kinase activity
## GO:0055080                                                                                                                                  cation homeostasis
## GO:0043408                                                                                                                          regulation of MAPK cascade
## GO:0070647                                                                                        protein modification by small protein conjugation or removal
## GO:0098771                                                                                                                           inorganic ion homeostasis
## GO:0050778                                                                                                              positive regulation of immune response
## GO:0001944                                                                                                                             vasculature development
## GO:0072358                                                                                                                   cardiovascular system development
## GO:0044260                                                                                                            cellular macromolecule metabolic process
## GO:0048589                                                                                                                                developmental growth
## GO:0003006                                                                                                      developmental process involved in reproduction
## GO:0000165                                                                                                                                        MAPK cascade
## GO:0051246                                                                                                             regulation of protein metabolic process
## GO:0000904                                                                                                      cell morphogenesis involved in differentiation
## GO:0055082                                                                                                                       cellular chemical homeostasis
## GO:0023014                                                                                                      signal transduction by protein phosphorylation
## GO:0050801                                                                                                                                     ion homeostasis
## GO:0033993                                                                                                                                   response to lipid
## GO:1903530                                                                                                                     regulation of secretion by cell
## GO:0051338                                                                                                                  regulation of transferase activity
## GO:0045087                                                                                                                              innate immune response
## GO:0009966                                                                                                                   regulation of signal transduction
## GO:0006355                                                                                                          regulation of transcription, DNA-templated
## GO:0098916                                                                                                                anterograde trans-synaptic signaling
## GO:0007268                                                                                                                      chemical synaptic transmission
## GO:1903506                                                                                                  regulation of nucleic acid-templated transcription
## GO:0048609                                                                                                       multicellular organismal reproductive process
## GO:2001141                                                                                                              regulation of RNA biosynthetic process
## GO:0099537                                                                                                                            trans-synaptic signaling
## GO:0022607                                                                                                                         cellular component assembly
## GO:0032504                                                                                                                 multicellular organism reproduction
## GO:0099536                                                                                                                                  synaptic signaling
## GO:0002252                                                                                                                             immune effector process
## GO:0006886                                                                                                                     intracellular protein transport
## GO:0010243                                                                                                                 response to organonitrogen compound
## GO:0019953                                                                                                                                 sexual reproduction
## GO:0042493                                                                                                                                    response to drug
## GO:0051171                                                                                                   regulation of nitrogen compound metabolic process
## GO:0006351                                                                                                                        transcription, DNA-templated
## GO:0050776                                                                                                                       regulation of immune response
## GO:0035239                                                                                                                                  tube morphogenesis
## GO:0097659                                                                                                                nucleic acid-templated transcription
## GO:0009617                                                                                                                               response to bacterium
## GO:0051046                                                                                                                             regulation of secretion
## GO:0032774                                                                                                                            RNA biosynthetic process
## GO:0043066                                                                                                            negative regulation of apoptotic process
## GO:0019725                                                                                                                                cellular homeostasis
## GO:0043069                                                                                                        negative regulation of programmed cell death
## GO:0043436                                                                                                                           oxoacid metabolic process
## GO:0080090                                                                                                             regulation of primary metabolic process
## GO:0060341                                                                                                                 regulation of cellular localization
## GO:0006082                                                                                                                      organic acid metabolic process
## GO:0008284                                                                                                           positive regulation of cell proliferation
## GO:0070887                                                                                                              cellular response to chemical stimulus
## GO:1901698                                                                                                                       response to nitrogen compound
## GO:0044085                                                                                                                       cellular component biogenesis
## GO:0051252                                                                                                                 regulation of RNA metabolic process
## GO:0019538                                                                                                                           protein metabolic process
## GO:0051173                                                                                          positive regulation of nitrogen compound metabolic process
## GO:0044092                                                                                                           negative regulation of molecular function
## GO:0031323                                                                                                            regulation of cellular metabolic process
## GO:0044703                                                                                                                 multi-organism reproductive process
## GO:0009628                                                                                                                        response to abiotic stimulus
## GO:0060548                                                                                                                   negative regulation of cell death
## GO:0043085                                                                                                           positive regulation of catalytic activity
## GO:0060255                                                                                                       regulation of macromolecule metabolic process
## GO:0032940                                                                                                                                   secretion by cell
## GO:0022603                                                                                                    regulation of anatomical structure morphogenesis
## GO:0031325                                                                                                   positive regulation of cellular metabolic process
## GO:0051050                                                                                                                    positive regulation of transport
## GO:0010604                                                                                              positive regulation of macromolecule metabolic process
## GO:2000112                                                                                           regulation of cellular macromolecule biosynthetic process
## GO:0045597                                                                                                         positive regulation of cell differentiation
## GO:0000902                                                                                                                                  cell morphogenesis
## GO:0035295                                                                                                                                    tube development
## GO:0018193                                                                                                                    peptidyl-amino acid modification
## GO:0034654                                                                                                 nucleobase-containing compound biosynthetic process
## GO:0010556                                                                                                    regulation of macromolecule biosynthetic process
## GO:0072359                                                                                                                      circulatory system development
## GO:0048646                                                                                            anatomical structure formation involved in morphogenesis
## GO:0019219                                                                                      regulation of nucleobase-containing compound metabolic process
## GO:0051707                                                                                                                          response to other organism
## GO:0043207                                                                                                                response to external biotic stimulus
## GO:0009968                                                                                                          negative regulation of signal transduction
## GO:0045892                                                                                                 negative regulation of transcription, DNA-templated
## GO:0018130                                                                                                                    heterocycle biosynthetic process
## GO:0032501                                                                                                                    multicellular organismal process
## GO:1903507                                                                                         negative regulation of nucleic acid-templated transcription
## GO:0048878                                                                                                                                chemical homeostasis
## GO:1902679                                                                                                     negative regulation of RNA biosynthetic process
## GO:0019438                                                                                                              aromatic compound biosynthetic process
## GO:1901701                                                                                                     cellular response to oxygen-containing compound
## GO:0009607                                                                                                                         response to biotic stimulus
## GO:0031401                                                                                                 positive regulation of protein modification process
## GO:0032989                                                                                                                    cellular component morphogenesis
## GO:0006464                                                                                                               cellular protein modification process
## GO:0036211                                                                                                                        protein modification process
## GO:0046903                                                                                                                                           secretion
## GO:0031326                                                                                                         regulation of cellular biosynthetic process
## GO:0033043                                                                                                                regulation of organelle organization
## GO:0009893                                                                                                            positive regulation of metabolic process
## GO:1901362                                                                                                        organic cyclic compound biosynthetic process
## GO:0055085                                                                                                                             transmembrane transport
## GO:0051253                                                                                                        negative regulation of RNA metabolic process
## GO:0019222                                                                                                                     regulation of metabolic process
## GO:0009889                                                                                                                  regulation of biosynthetic process
## GO:0043170                                                                                                                     macromolecule metabolic process
## GO:0043412                                                                                                                          macromolecule modification
## GO:0016043                                                                                                                     cellular component organization
## GO:0080134                                                                                                                    regulation of response to stress
## GO:2000113                                                                                  negative regulation of cellular macromolecule biosynthetic process
## GO:0045934                                                                             negative regulation of nucleobase-containing compound metabolic process
## GO:0009719                                                                                                                     response to endogenous stimulus
## GO:1901564                                                                                                           organonitrogen compound metabolic process
## GO:0016070                                                                                                                               RNA metabolic process
## GO:0001932                                                                                                               regulation of protein phosphorylation
## GO:0010558                                                                                           negative regulation of macromolecule biosynthetic process
## GO:0071840                                                                                                       cellular component organization or biogenesis
## GO:0044093                                                                                                           positive regulation of molecular function
## GO:0031327                                                                                                negative regulation of cellular biosynthetic process
## GO:0022414                                                                                                                                reproductive process
## GO:0010468                                                                                                                       regulation of gene expression
## GO:0000003                                                                                                                                        reproduction
## GO:0006807                                                                                                                 nitrogen compound metabolic process
## GO:0046907                                                                                                                             intracellular transport
## GO:0009967                                                                                                          positive regulation of signal transduction
## GO:0009890                                                                                                         negative regulation of biosynthetic process
## GO:0032270                                                                                           positive regulation of cellular protein metabolic process
## GO:0042325                                                                                                                       regulation of phosphorylation
## GO:0045893                                                                                                 positive regulation of transcription, DNA-templated
## GO:1903508                                                                                         positive regulation of nucleic acid-templated transcription
## GO:1902680                                                                                                     positive regulation of RNA biosynthetic process
## GO:0044271                                                                                                     cellular nitrogen compound biosynthetic process
## GO:0007267                                                                                                                                 cell-cell signaling
## GO:0006952                                                                                                                                    defense response
## GO:0051254                                                                                                        positive regulation of RNA metabolic process
## GO:0051247                                                                                                    positive regulation of protein metabolic process
## GO:0034613                                                                                                                       cellular protein localization
## GO:0070727                                                                                                                 cellular macromolecule localization
## GO:0019220                                                                                                           regulation of phosphate metabolic process
## GO:0051174                                                                                                          regulation of phosphorus metabolic process
## GO:0044237                                                                                                                          cellular metabolic process
## GO:1902531                                                                                                     regulation of intracellular signal transduction
## GO:0065003                                                                                                                 protein-containing complex assembly
## GO:0044238                                                                                                                           primary metabolic process
## GO:0090304                                                                                                                      nucleic acid metabolic process
## GO:0044281                                                                                                                    small molecule metabolic process
## GO:0031399                                                                                                          regulation of protein modification process
## GO:0010629                                                                                                              negative regulation of gene expression
## GO:0010557                                                                                           positive regulation of macromolecule biosynthetic process
## GO:0050790                                                                                                                    regulation of catalytic activity
## GO:0006468                                                                                                                             protein phosphorylation
## GO:0045935                                                                             positive regulation of nucleobase-containing compound metabolic process
## GO:0031328                                                                                                positive regulation of cellular biosynthetic process
## GO:0051649                                                                                                               establishment of localization in cell
## GO:0044267                                                                                                                  cellular protein metabolic process
## GO:0009891                                                                                                         positive regulation of biosynthetic process
## GO:0043933                                                                                                     protein-containing complex subunit organization
## GO:0009888                                                                                                                                  tissue development
## GO:0010628                                                                                                              positive regulation of gene expression
## GO:0071704                                                                                                                 organic substance metabolic process
## GO:0006139                                                                                                    nucleobase-containing compound metabolic process
## GO:0010467                                                                                                                                     gene expression
## GO:0016310                                                                                                                                     phosphorylation
## GO:0046483                                                                                                                       heterocycle metabolic process
## GO:0006725                                                                                                        cellular aromatic compound metabolic process
## GO:0008152                                                                                                                                   metabolic process
## GO:1901360                                                                                                           organic cyclic compound metabolic process
## GO:0065009                                                                                                                    regulation of molecular function
## GO:0051641                                                                                                                               cellular localization
## GO:0008150                                                                                                                                  biological_process
## GO:0035556                                                                                                                   intracellular signal transduction
## GO:0034641                                                                                                        cellular nitrogen compound metabolic process
## GO:0009653                                                                                                                  anatomical structure morphogenesis
## GO:0006796                                                                                                     phosphate-containing compound metabolic process
## GO:0003008                                                                                                                                      system process
## GO:0006793                                                                                                                        phosphorus metabolic process
## GO:0006996                                                                                                                              organelle organization
## GO:0044205                                                                                                                  'de novo' UMP biosynthetic process
## GO:0070060                                                                                                                 'de novo' actin filament nucleation
## GO:0006653                                                                                            1,2-diacyl-sn-glycero-3-phosphocholine metabolic process
## GO:0046360                                                                                                                  2-oxobutyrate biosynthetic process
## GO:0019606                                                                                                                     2-oxobutyrate catabolic process
## GO:0046963                                                                                                     3'-phosphoadenosine 5'-phosphosulfate transport
## GO:0006666                                                                                                                3-keto-sphinganine metabolic process
## GO:0019470                                                                                                                  4-hydroxyproline catabolic process
## GO:0042791                                                                                                   5S class rRNA transcription by RNA polymerase III
## GO:0036261                                                                                                              7-methylguanosine cap hypermethylation
## GO:0034463                                                                                                                            90S preribosome assembly
## GO:0046032                                                                                                                               ADP catabolic process
## GO:0006196                                                                                                                               AMP catabolic process
## GO:0044209                                                                                                                                         AMP salvage
## GO:0080121                                                                                                                                       AMP transport
## GO:0086072                                                                             AV node cell-bundle of His cell adhesion involved in cell communication
## GO:0097323                                                                                                                                     B cell adhesion
## GO:0035769                                                                                                    B cell chemotaxis across high endothelial venule
## GO:0002368                                                                                                                          B cell cytokine production
## GO:1990117                                                                                                         B cell receptor apoptotic signaling pathway
## GO:0002336                                                                                                                       B-1 B cell lineage commitment
## GO:0060803                                                                                BMP signaling pathway involved in mesodermal cell fate specification
## GO:0071893                                                                                            BMP signaling pathway involved in nephric duct formation
## GO:0061151                                                                                         BMP signaling pathway involved in renal system segmentation
## GO:0021919                                                                             BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## GO:0061149                                                                                              BMP signaling pathway involved in ureter morphogenesis
## GO:0038118                                                                                                       C-C chemokine receptor CCR7 signaling pathway
## GO:0038159                                                                                                    C-X-C chemokine receptor CXCR4 signaling pathway
## GO:0018166                                                                                                                   C-terminal protein-tyrosinylation
## GO:0008208                                                                                                               C21-steroid hormone catabolic process
## GO:0035724                                                                                                                           CD24 biosynthetic process
## GO:0045222                                                                                                                            CD4 biosynthetic process
## GO:0002298                                               CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:0043375                                                                                                  CD8-positive, alpha-beta T cell lineage commitment
## GO:0002300                                                                                     CD8-positive, alpha-beta intraepithelial T cell differentiation
## GO:0035780                                                                                                                           CD80 biosynthetic process
## GO:0046705                                                                                                                            CDP biosynthetic process
## GO:0046704                                                                                                                               CDP metabolic process
## GO:0061508                                                                                                                                 CDP phosphorylation
## GO:0006657                                                                                                                                 CDP-choline pathway
## GO:0016024                                                                                                             CDP-diacylglycerol biosynthetic process
## GO:0009224                                                                                                                            CMP biosynthetic process
## GO:0046035                                                                                                                               CMP metabolic process
## GO:0061566                                                                                                                                 CMP phosphorylation
## GO:0006238                                                                                                                                         CMP salvage
## GO:0006055                                                                                                        CMP-N-acetylneuraminate biosynthetic process
## GO:0015782                                                                                                     CMP-N-acetylneuraminate transmembrane transport
## GO:0038160                                                                                                            CXCL12-activated CXCR4 signaling pathway
## GO:0021870                                                                                                                  Cajal-Retzius cell differentiation
## GO:0055130                                                                                                                         D-alanine catabolic process
## GO:0046144                                                                                                       D-alanine family amino acid metabolic process
## GO:0046436                                                                                                                         D-alanine metabolic process
## GO:0042941                                                                                                                                 D-alanine transport
## GO:0046437                                                                                                                   D-amino acid biosynthetic process
## GO:0042840                                                                                                                     D-glucuronate catabolic process
## GO:0042839                                                                                                                     D-glucuronate metabolic process
## GO:0019303                                                                                                                          D-ribose catabolic process
## GO:0070179                                                                                                                       D-serine biosynthetic process
## GO:0036088                                                                                                                          D-serine catabolic process
## GO:0042843                                                                                                                          D-xylose catabolic process
## GO:1904155                                                                                                                       DN2 thymocyte differentiation
## GO:1904156                                                                                                                       DN3 thymocyte differentiation
## GO:0098503                                                                                                                            DNA 3' dephosphorylation
## GO:0098504                                                                                                     DNA 3' dephosphorylation involved in DNA repair
## GO:0098502                                                                                                                               DNA dephosphorylation
## GO:0051102                                                                                                          DNA ligation involved in DNA recombination
## GO:0032775                                                                                                                          DNA methylation on adenine
## GO:0006274                                                                                                                         DNA replication termination
## GO:1902296                                                                                        DNA strand elongation involved in cell cycle DNA replication
## GO:1902983                                                                                           DNA strand elongation involved in mitotic DNA replication
## GO:1902319                                                                                DNA strand elongation involved in nuclear cell cycle DNA replication
## GO:0001112                                                                                                DNA-templated transcriptional open complex formation
## GO:0001173                                                                                                  DNA-templated transcriptional start site selection
## GO:0039695                                                                                                                   DNA-templated viral transcription
## GO:0106101                                                                                                                ER-dependent peroxisome localization
## GO:0032581                                                                                                                ER-dependent peroxisome organization
## GO:0038133                                                                                                                       ERBB2-ERBB3 signaling pathway
## GO:0038130                                                                                                                             ERBB4 signaling pathway
## GO:0006747                                                                                                                            FAD biosynthetic process
## GO:0046443                                                                                                                               FAD metabolic process
## GO:0009398                                                                                                                            FMN biosynthetic process
## GO:0046444                                                                                                                               FMN metabolic process
## GO:0002542                                                                                                                               Factor XII activation
## GO:0002774                                                                                                   Fc receptor mediated inhibitory signaling pathway
## GO:0035589                                                                                  G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0051318                                                                                                                                            G1 phase
## GO:0021858                                                                                                   GABAergic neuron differentiation in basal ganglia
## GO:0046711                                                                                                                            GDP biosynthetic process
## GO:0046712                                                                                                                               GDP catabolic process
## GO:0061568                                                                                                                                 GDP phosphorylation
## GO:0042352                                                                                                                                GDP-L-fucose salvage
## GO:0036085                                                                                                                  GDP-fucose import into Golgi lumen
## GO:0015783                                                                                                                  GDP-fucose transmembrane transport
## GO:0032263                                                                                                                                         GMP salvage
## GO:0006507                                                                                                                                  GPI anchor release
## GO:0032468                                                                                                                       Golgi calcium ion homeostasis
## GO:0070846                                                                                                                                 Hsp90 deacetylation
## GO:0071612                                                                                                                                    IP-10 production
## GO:0006193                                                                                                                               ITP catabolic process
## GO:0019481                                                                                                      L-alanine catabolic process, by transamination
## GO:0019449                                                                                                         L-cysteine catabolic process to hypotaurine
## GO:1903185                                                                                                                         L-dopa biosynthetic process
## GO:1903184                                                                                                                            L-dopa metabolic process
## GO:1903803                                                                                                           L-glutamine import across plasma membrane
## GO:0089709                                                                                                                 L-histidine transmembrane transport
## GO:1903801                                                                                                             L-leucine import across plasma membrane
## GO:0019474                                                                                                            L-lysine catabolic process to acetyl-CoA
## GO:0033514                                                                                           L-lysine catabolic process to acetyl-CoA via L-pipecolate
## GO:0046491                                                                                                               L-methylmalonyl-CoA metabolic process
## GO:0097640                                                                                                           L-ornithine import across plasma membrane
## GO:1904556                                                                                                                L-tryptophan transmembrane transport
## GO:0051160                                                                                                                         L-xylitol catabolic process
## GO:0051164                                                                                                                         L-xylitol metabolic process
## GO:0002399                                                                                                               MHC class II protein complex assembly
## GO:0002398                                                                                                               MHC class Ib protein complex assembly
## GO:0035660                                                                                              MyD88-dependent toll-like receptor 4 signaling pathway
## GO:0006051                                                                                                               N-acetylmannosamine metabolic process
## GO:0046380                                                                                                            N-acetylneuraminate biosynthetic process
## GO:0036071                                                                                                                               N-glycan fucosylation
## GO:0016256                                                                                                                     N-glycan processing to lysosome
## GO:0018009                                                                                                     N-terminal peptidyl-L-cysteine N-palmitoylation
## GO:0018011                                                                                                             N-terminal peptidyl-alanine methylation
## GO:0018012                                                                                                          N-terminal peptidyl-alanine trimethylation
## GO:0017190                                                                                                       N-terminal peptidyl-aspartic acid acetylation
## GO:0018013                                                                                                             N-terminal peptidyl-glycine methylation
## GO:0018016                                                                                                           N-terminal peptidyl-proline dimethylation
## GO:0035568                                                                                                             N-terminal peptidyl-proline methylation
## GO:0035572                                                                                                            N-terminal peptidyl-serine dimethylation
## GO:0035570                                                                                                              N-terminal peptidyl-serine methylation
## GO:0035573                                                                                                           N-terminal peptidyl-serine trimethylation
## GO:0034355                                                                                                                                         NAD salvage
## GO:0043132                                                                                                                                       NAD transport
## GO:1904784                                                                                                                 NLRP1 inflammasome complex assembly
## GO:0003270                                                   Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:1903461                                                                                     Okazaki fragment processing involved in mitotic DNA replication
## GO:0003168                                                                                                                    Purkinje myocyte differentiation
## GO:0106005                                                                                                                 RNA 5'-cap (guanine-N7)-methylation
## GO:1990884                                                                                                                                     RNA acetylation
## GO:0000378                                                                                                                                   RNA exon ligation
## GO:0034337                                                                                                                                         RNA folding
## GO:1990280                                                                                                                       RNA localization to chromatin
## GO:1990114                                                                                                             RNA polymerase II core complex assembly
## GO:0015805                                                                                                                   S-adenosyl-L-methionine transport
## GO:0019510                                                                                                            S-adenosylhomocysteine catabolic process
## GO:0046499                                                                                                          S-adenosylmethioninamine metabolic process
## GO:0033477                                                                                                                S-methylmethionine metabolic process
## GO:0036316                                                                                               SREBP-SCAP complex retention in endoplasmic reticulum
## GO:0006617                                                            SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:1990751                                                                                                                             Schwann cell chemotaxis
## GO:0014011                                                                                            Schwann cell proliferation involved in axon regeneration
## GO:0061843                                                                                                                     Sertoli cell barrier remodeling
## GO:0060010                                                                                                                        Sertoli cell fate commitment
## GO:0060064                                                                             Spemann organizer formation at the anterior end of the primitive streak
## GO:0120117                                                                                                                         T cell meandering migration
## GO:0002419                                                                                     T cell mediated cytotoxicity directed against tumor cell target
## GO:0033371                                                                                                               T cell secretory granule organization
## GO:0035688                                                                                                                          T-helper 1 cell diapedesis
## GO:0035687                                                                                                                       T-helper 1 cell extravasation
## GO:0035705                                                                                                                         T-helper 17 cell chemotaxis
## GO:0036399                                                                                                                            TCR signalosome assembly
## GO:0061571                                                                                                                                 TDP phosphorylation
## GO:0035665                                                                                              TIRAP-dependent toll-like receptor 4 signaling pathway
## GO:0035664                                                                                                TIRAP-dependent toll-like receptor signaling pathway
## GO:0045553                                                                                                                          TRAIL biosynthetic process
## GO:0034474                                                                                                                          U2 snRNA 3'-end processing
## GO:0034477                                                                                                                          U6 snRNA 3'-end processing
## GO:0006225                                                                                                                            UDP biosynthetic process
## GO:0046048                                                                                                                               UDP metabolic process
## GO:0061569                                                                                                                                 UDP phosphorylation
## GO:0006049                                                                                                           UDP-N-acetylglucosamine catabolic process
## GO:0006258                                                                                                                       UDP-glucose catabolic process
## GO:0015786                                                                                                                 UDP-glucose transmembrane transport
## GO:0006065                                                                                                                UDP-glucuronate biosynthetic process
## GO:0015790                                                                                                                  UDP-xylose transmembrane transport
## GO:0044206                                                                                                                                         UMP salvage
## GO:1990731                                                                                                             UV-damage excision repair, DNA incision
## GO:1904210                                                                                                           VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:1902378                                                                               VEGF-activated neuropilin signaling pathway involved in axon guidance
## GO:0044333                                                                                     Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904887                                                                                                                            Wnt signalosome assembly
## GO:1904701                                                                                                                Wnt-Frizzled-LRP5/6 complex assembly
## GO:1901639                                                                                                                               XDP catabolic process
## GO:0009738                                                                                                           abscisic acid-activated signaling pathway
## GO:0046186                                                                                                                   acetaldehyde biosynthetic process
## GO:0006117                                                                                                                      acetaldehyde metabolic process
## GO:0043438                                                                                                                  acetoacetic acid metabolic process
## GO:0006581                                                                                                                     acetylcholine catabolic process
## GO:0003069                                                      acetylcholine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090425                                                                                                                         acinar cell differentiation
## GO:1990863                                                                                                                           acinar cell proliferation
## GO:0002077                                                                                                                           acrosome matrix dispersal
## GO:0061573                                                                                                          actin filament bundle retrograde transport
## GO:0031289                                                                                                                               actin phosphorylation
## GO:0007014                                                                                                                                actin ubiquitination
## GO:0002543                                                                                                activation of blood coagulation via clotting cascade
## GO:0043006                                                                               activation of phospholipase A2 activity by calcium-mediated signaling
## GO:0060520                                                                             activation of prostate induction by androgen receptor signaling pathway
## GO:0036155                                                                                                                  acylglycerol acyl-chain remodeling
## GO:0015853                                                                                                                                   adenine transport
## GO:0048855                                                                                                                       adenohypophysis morphogenesis
## GO:0071106                                                                                                adenosine 3',5'-bisphosphate transmembrane transport
## GO:0046086                                                                                                                      adenosine biosynthetic process
## GO:0086030                                            adenylate cyclase-activating adrenergic receptor signaling pathway involved in cardiac muscle relaxation
## GO:0007192                                                                                   adenylate cyclase-activating serotonin receptor signaling pathway
## GO:0086096                                                        adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:0120179                                                                                                                       adherens junction disassembly
## GO:0044651                                                                                                        adhesion of symbiont to host epithelial cell
## GO:0043390                                                                                                                      aflatoxin B1 metabolic process
## GO:0001315                                                                                                   age-dependent response to reactive oxygen species
## GO:0009820                                                                                                                          alkaloid metabolic process
## GO:0046305                                                                                                                alkanesulfonate biosynthetic process
## GO:0019428                                                                                                                      allantoin biosynthetic process
## GO:0000256                                                                                                                         allantoin catabolic process
## GO:0002299                                                                                                   alpha-beta intraepithelial T cell differentiation
## GO:0015742                                                                                                                       alpha-ketoglutarate transport
## GO:0061143                                                                                                                 alveolar primary septum development
## GO:0015898                                                                                                                                 amiloride transport
## GO:0043041                                                                                 amino acid activation for nonribosomal peptide biosynthetic process
## GO:0032973                                                                                                            amino acid export across plasma membrane
## GO:0006579                                                                                                                amino-acid betaine catabolic process
## GO:0106074                                                                                        aminoacyl-tRNA metabolism involved in translational fidelity
## GO:0021541                                                                                                                             ammon gyrus development
## GO:0097086                                                                                                                  amniotic stem cell differentiation
## GO:0010021                                                                                                                    amylopectin biosynthetic process
## GO:2000896                                                                                                                       amylopectin metabolic process
## GO:0055048                                                                                                                           anastral spindle assembly
## GO:0035935                                                                                                                                  androgen secretion
## GO:0035476                                                                                                                           angioblast cell migration
## GO:0010260                                                                                                                             animal organ senescence
## GO:0072165                                                                                                             anterior mesonephric tubule development
## GO:0060873                                                                                                             anterior semicircular canal development
## GO:0072099                                                                       anterior/posterior pattern specification involved in ureteric bud development
## GO:0099087                                                                                 anterograde axonal transport of messenger ribonucleoprotein complex
## GO:0098972                                                                                                    anterograde dendritic transport of mitochondrion
## GO:0043420                                                                                                                      anthranilate metabolic process
## GO:1990262                                                                                                            anti-Mullerian hormone signaling pathway
## GO:0002779                                                                                                                     antibacterial peptide secretion
## GO:0002406                                                                                   antigen sampling by M cells in mucosal-associated lymphoid tissue
## GO:0002404                                                                                              antigen sampling in mucosal-associated lymphoid tissue
## GO:0002412                                                                               antigen transcytosis by M cells in mucosal-associated lymphoid tissue
## GO:0002776                                                                                                                     antimicrobial peptide secretion
## GO:0042868                                                                                                                     antisense RNA metabolic process
## GO:0071041                                                                                                          antisense RNA transcript catabolic process
## GO:0060183                                                                                                                   apelin receptor signaling pathway
## GO:0019544                                                                                                             arginine catabolic process to glutamate
## GO:0019493                                                                                                               arginine catabolic process to proline
## GO:0010121                                                                                                 arginine catabolic process to proline via ornithine
## GO:0019546                                                                                                                          arginine deiminase pathway
## GO:0009095                                                                                 aromatic amino acid family biosynthetic process, prephenate pathway
## GO:1901684                                                                                                                arsenate ion transmembrane transport
## GO:0001984                                                 artery vasodilation involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0006529                                                                                                                     asparagine biosynthetic process
## GO:0006530                                                                                                                        asparagine catabolic process
## GO:0033345                                                                                                        asparagine catabolic process via L-aspartate
## GO:0006867                                                                                                                                asparagine transport
## GO:0061528                                                                                                                                 aspartate secretion
## GO:0006422                                                                                                                        aspartyl-tRNA aminoacylation
## GO:0030954                                                                                                                       astral microtubule nucleation
## GO:0036520                                                                                                             astrocyte-dopaminergic neuron signaling
## GO:0045167                                                                                 asymmetric protein localization involved in cell fate determination
## GO:0086044                                                                     atrial cardiac muscle cell to AV node cell communication by electrical coupling
## GO:0003167                                                                                                        atrioventricular bundle cell differentiation
## GO:1905222                                                                                                                atrioventricular canal morphogenesis
## GO:0060929                                                                                                          atrioventricular node cell fate commitment
## GO:0042668                                                                                                           auditory receptor cell fate determination
## GO:0061910                                                                                                                       autophagosome-endosome fusion
## GO:0061909                                                                                                                       autophagosome-lysosome fusion
## GO:0036331                                                                                                     avascular cornea development in camera-type eye
## GO:0048321                                                                                                               axial mesodermal cell differentiation
## GO:0048322                                                                                                               axial mesodermal cell fate commitment
## GO:0048327                                                                                                            axial mesodermal cell fate specification
## GO:0099088                                                                                             axonal transport of messenger ribonucleoprotein complex
## GO:0060404                                                                                                               axonemal microtubule depolymerization
## GO:0051638                                                                                                                 barbed-end actin filament uncapping
## GO:0045175                                                                                                                          basal protein localization
## GO:0097510                                                                                 base-excision repair, AP site formation via deaminated base removal
## GO:0006288                                                                                                                  base-excision repair, DNA ligation
## GO:0002575                                                                                                                                 basophil chemotaxis
## GO:0002561                                                                                                                              basophil degranulation
## GO:0030221                                                                                                                            basophil differentiation
## GO:1990960                                                                                                                                basophil homeostasis
## GO:0002560                                                                                                                          basophil mediated immunity
## GO:0051780                                                                                                                     behavioral response to nutrient
## GO:1901787                                                                                                                       benzoyl-CoA metabolic process
## GO:1901086                                                                                                                  benzylpenicillin metabolic process
## GO:0019483                                                                                                                   beta-alanine biosynthetic process
## GO:0033396                                                                                            beta-alanine biosynthetic process via 3-ureidopropionate
## GO:0019484                                                                                                                      beta-alanine catabolic process
## GO:0001762                                                                                                                              beta-alanine transport
## GO:1901810                                                                                                                     beta-carotene metabolic process
## GO:1904837                                                                                                                   beta-catenin-TCF complex assembly
## GO:1901805                                                                                                                    beta-glucoside catabolic process
## GO:1901804                                                                                                                    beta-glucoside metabolic process
## GO:0015759                                                                                                                            beta-glucoside transport
## GO:0030653                                                                                                            beta-lactam antibiotic metabolic process
## GO:0002152                                                                                                                               bile acid conjugation
## GO:0002812                                                                biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## GO:0002815                                                                biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0006768                                                                                                                            biotin metabolic process
## GO:0015878                                                                                                                                    biotin transport
## GO:0072377                                                                                                                   blood coagulation, common pathway
## GO:0097497                                                                                                          blood vessel endothelial cell delamination
## GO:0002044                                                                    blood vessel endothelial cell migration involved in intussusceptive angiogenesis
## GO:0046713                                                                                                                                    borate transport
## GO:0002936                                                                                                                     bradykinin biosynthetic process
## GO:0061114                                                                                                        branching involved in pancreas morphogenesis
## GO:0016132                                                                                                                brassinosteroid biosynthetic process
## GO:0016131                                                                                                                   brassinosteroid metabolic process
## GO:0060436                                                                                                                            bronchiole morphogenesis
## GO:0060503                                                                                                             bud dilation involved in lung branching
## GO:0086054                                                                         bundle of His cell to Purkinje myocyte communication by electrical coupling
## GO:0046359                                                                                                                          butyrate catabolic process
## GO:0019605                                                                                                                          butyrate metabolic process
## GO:0006198                                                                                                                              cAMP catabolic process
## GO:0010816                                                                                                                        calcitonin catabolic process
## GO:0036161                                                                                                                                calcitonin secretion
## GO:0090676                                                                           calcium ion transmembrane transport via low voltage-gated calcium channel
## GO:1903515                                                                                         calcium ion transport from cytosol to endoplasmic reticulum
## GO:0061310                                 canonical Wnt signaling pathway involved in cardiac neural crest cell differentiation involved in heart development
## GO:0044335                                                                       canonical Wnt signaling pathway involved in neural crest cell differentiation
## GO:0060823                                                       canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0044329                                                               canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## GO:0044328                                                       canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## GO:0044330                                                                    canonical Wnt signaling pathway involved in positive regulation of wound healing
## GO:1905474                                                                                 canonical Wnt signaling pathway involved in stem cell proliferation
## GO:0097310                                                                                                                               cap2 mRNA methylation
## GO:0070409                                                                                                            carbamoyl phosphate biosynthetic process
## GO:0070408                                                                                                               carbamoyl phosphate metabolic process
## GO:0033231                                                                                                                                 carbohydrate export
## GO:0098704                                                                                                          carbohydrate import across plasma membrane
## GO:0035378                                                                                                              carbon dioxide transmembrane transport
## GO:0003210                                                                                                                            cardiac atrium formation
## GO:0060945                                                                                                                      cardiac neuron differentiation
## GO:0060927                                                                                                              cardiac pacemaker cell fate commitment
## GO:0003259                                                                                                              cardioblast anterior-lateral migration
## GO:0042684                                                                                                                    cardioblast cell fate commitment
## GO:0042685                                                                                                                 cardioblast cell fate specification
## GO:0003260                                                                                                                               cardioblast migration
## GO:0060975                                                                              cardioblast migration to the midline involved in heart field formation
## GO:0003142                                                                                                                     cardiogenic plate morphogenesis
## GO:0042413                                                                                                                         carnitine catabolic process
## GO:1902603                                                                                                                   carnitine transmembrane transport
## GO:0035499                                                                                                                      carnosine biosynthetic process
## GO:0016117                                                                                                                     carotenoid biosynthetic process
## GO:0061103                                                                                                            carotid body glomus cell differentiation
## GO:0052353                                                                                                         catabolism by host of symbiont carbohydrate
## GO:0052356                                                                                                     catabolism by host of symbiont cell wall chitin
## GO:0052362                                                                                                              catabolism by host of symbiont protein
## GO:0052354                                                          catabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052342                                                      catabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052363                                                               catabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0061984                                                                                                                               catabolite repression
## GO:0090667                                                                                               cell chemotaxis to vascular endothelial growth factor
## GO:0035212                                                                                                        cell competition in a multicellular organism
## GO:1902294                                                                                                              cell cycle DNA replication termination
## GO:0033301                                                                                                   cell cycle comprising mitosis without cytokinesis
## GO:0043163                                                                                                                          cell envelope organization
## GO:0060582                                                                                           cell fate determination involved in pattern specification
## GO:0071976                                                                                                                                        cell gliding
## GO:0061381                                                                                                                      cell migration in diencephalon
## GO:0060981                                                                                                    cell migration involved in coronary angiogenesis
## GO:0060980                                                                                                  cell migration involved in coronary vasculogenesis
## GO:0090134                                                                                                    cell migration involved in mesendoderm migration
## GO:0003318                                                                                         cell migration to the midline involved in heart development
## GO:0097231                                                                                                            cell motility in response to calcium ion
## GO:0090247                                                                                               cell motility involved in somitogenic axis elongation
## GO:0090529                                                                                                                                cell septum assembly
## GO:0042546                                                                                                                                cell wall biogenesis
## GO:0006039                                                                                                                  cell wall chitin catabolic process
## GO:0006037                                                                                                                  cell wall chitin metabolic process
## GO:0031506                                                                                                         cell wall glycoprotein biosynthetic process
## GO:0044038                                                                                                        cell wall macromolecule biosynthetic process
## GO:0000032                                                                                                         cell wall mannoprotein biosynthetic process
## GO:0010383                                                                                                          cell wall polysaccharide metabolic process
## GO:0021813                                 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## GO:0060495                                                                                                    cell-cell signaling involved in lung development
## GO:0099156                                                                                                                     cell-cell signaling via exosome
## GO:0120180                                                                                                        cell-substrate adherens junction disassembly
## GO:0043449                                                                                                                   cellular alkene metabolic process
## GO:0097275                                                                                                                        cellular ammonia homeostasis
## GO:0006876                                                                                                                    cellular cadmium ion homeostasis
## GO:0070589                                                                                               cellular component macromolecule biosynthetic process
## GO:0097276                                                                                                                     cellular creatinine homeostasis
## GO:0140041                                                                                                            cellular detoxification of methylglyoxal
## GO:0030026                                                                                                                  cellular manganese ion homeostasis
## GO:0051692                                                                                                          cellular oligosaccharide catabolic process
## GO:0051691                                                                                                          cellular oligosaccharide metabolic process
## GO:0090346                                                                                                           cellular organofluorine metabolic process
## GO:0090345                                                                                                            cellular organohalogen metabolic process
## GO:1904566                                                                                               cellular response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1905243                                                                                                     cellular response to 3,3',5-triiodo-L-thyronine
## GO:1904682                                                                                                           cellular response to 3-methylcholanthrene
## GO:0071215                                                                                                         cellular response to abscisic acid stimulus
## GO:0071418                                                                                                                 cellular response to amine stimulus
## GO:1903718                                                                                                                        cellular response to ammonia
## GO:0072740                                                                                                                     cellular response to anisomycin
## GO:0071454                                                                                                                         cellular response to anoxia
## GO:0097185                                                                                                                          cellular response to azide
## GO:0072755                                                                                                                        cellular response to benomyl
## GO:0061433                                                                                                            cellular response to caloric restriction
## GO:0071244                                                                                                                 cellular response to carbon dioxide
## GO:1902350                                                                                                                    cellular response to chloroquine
## GO:0071247                                                                                                                       cellular response to chromate
## GO:0035874                                                                                                          cellular response to copper ion starvation
## GO:0071386                                                                                                        cellular response to corticosterone stimulus
## GO:0071387                                                                                                              cellular response to cortisol stimulus
## GO:0072749                                                                                                                 cellular response to cytochalasin B
## GO:0071324                                                                                                          cellular response to disaccharide stimulus
## GO:1904630                                                                                                                      cellular response to diterpene
## GO:0072721                                                                                                                 cellular response to dithiothreitol
## GO:1905396                                                                                                                      cellular response to flavonoid
## GO:1902618                                                                                                                       cellular response to fluoride
## GO:0071231                                                                                                                     cellular response to folic acid
## GO:0071240                                                                                                                           cellular response to food
## GO:0071497                                                                                                                       cellular response to freezing
## GO:1990792                                                                                         cellular response to glial cell derived neurotrophic factor
## GO:1904632                                                                                                                      cellular response to glucoside
## GO:1905631                                                                                                                 cellular response to glyceraldehyde
## GO:1905430                                                                                                                        cellular response to glycine
## GO:1904588                                                                                                                   cellular response to glycoprotein
## GO:0036471                                                                                                                        cellular response to glyoxal
## GO:0071486                                                                                                           cellular response to high light intensity
## GO:0071464                                                                                                           cellular response to hydrostatic pressure
## GO:0035903                                                                                                          cellular response to immobilization stress
## GO:0071348                                                                                                                 cellular response to interleukin-11
## GO:0097398                                                                                                                 cellular response to interleukin-17
## GO:0071282                                                                                                                   cellular response to iron(II) ion
## GO:0071284                                                                                                                       cellular response to lead ion
## GO:0071484                                                                                                                cellular response to light intensity
## GO:0071449                                                                                                            cellular response to lipid hydroperoxide
## GO:0071373                                                                                                   cellular response to luteinizing hormone stimulus
## GO:0072705                                                                                                                cellular response to mercaptoethanol
## GO:0072703                                                                                                        cellular response to methyl methanesulfonate
## GO:1904609                                                                                                         cellular response to monosodium L-glutamate
## GO:0035714                                                                                                               cellular response to nitrogen dioxide
## GO:0071471                                                                                                       cellular response to non-ionic osmotic stress
## GO:0071400                                                                                                                     cellular response to oleic acid
## GO:0071444                                                                                                                      cellular response to pheromone
## GO:1903166                                                                                                               cellular response to polycyclic arene
## GO:1904586                                                                                                                     cellular response to putrescine
## GO:1905835                                                                                                      cellular response to pyrimidine ribonucleotide
## GO:0097403                                                                                                                      cellular response to raffinose
## GO:0071489                                                                                                           cellular response to red or far red light
## GO:1904015                                                                                                                      cellular response to serotonin
## GO:0072709                                                                                                                       cellular response to sorbitol
## GO:0071329                                                                                                               cellular response to sucrose stimulus
## GO:1905229                                                                                                  cellular response to thyrotropin-releasing hormone
## GO:0071401                                                                                                                   cellular response to triglyceride
## GO:0071228                                                                                                                     cellular response to tumor cell
## GO:1904577                                                                                                                    cellular response to tunicamycin
## GO:0090731                                                                                 cellular response to very-low-density lipoprotein particle stimulus
## GO:1904568                                                                                                                     cellular response to wortmannin
## GO:1990451                                                                                                               cellular stress response to acidic pH
## GO:0097277                                                                                                                           cellular urea homeostasis
## GO:0007349                                                                                                                                     cellularization
## GO:0071529                                                                                                                             cementum mineralization
## GO:0002510                                                                                                                  central B cell tolerance induction
## GO:0021956                                                                                                     central nervous system interneuron axonogenesis
## GO:0002509                                                                                                         central tolerance induction to self antigen
## GO:1902389                                                                                                                      ceramide 1-phosphate transport
## GO:0099040                                                                                                                              ceramide translocation
## GO:0021686                                                                                                                cerebellar granular layer maturation
## GO:0021685                                                                                                   cerebellar granular layer structural organization
## GO:0021688                                                                                                                cerebellar molecular layer formation
## GO:0021588                                                                                                                                cerebellum formation
## GO:0061301                                                                                                                cerebellum vasculature morphogenesis
## GO:0051086                                                                                          chaperone mediated protein folding independent of cofactor
## GO:1904764                                                                                      chaperone-mediated autophagy translocation complex disassembly
## GO:0061741                                                                       chaperone-mediated protein transport involved in chaperone-mediated autophagy
## GO:0019988                                                                                                                charged-tRNA amino acid modification
## GO:0036516                                                                                                         chemoattraction of dopaminergic neuron axon
## GO:0036517                                                                                                         chemoattraction of serotonergic neuron axon
## GO:0071610                                                                                                           chemokine (C-C motif) ligand 1 production
## GO:0036392                                                                                                          chemokine (C-C motif) ligand 20 production
## GO:0071606                                                                                                           chemokine (C-C motif) ligand 4 production
## GO:0032600                                                                                                   chemokine receptor transport out of membrane raft
## GO:0033606                                                                                                   chemokine receptor transport within lipid bilayer
## GO:0042466                                                                                                                                        chemokinesis
## GO:0021793                                                                                                                chemorepulsion of branchiomotor axon
## GO:0034670                                                                                                                      chemotaxis to arachidonic acid
## GO:0042196                                                                                                           chlorinated hydrocarbon metabolic process
## GO:0033488                                                                                        cholesterol biosynthetic process via 24,25-dihydrolanosterol
## GO:0033490                                                                                                    cholesterol biosynthetic process via lathosterol
## GO:0010879                                                                                               cholesterol transport involved in cholesterol storage
## GO:0042426                                                                                                                           choline catabolic process
## GO:0030207                                                                                                               chondroitin sulfate catabolic process
## GO:0050653                                                    chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:1990141                                                                                               chromatin silencing at centromere outer repeat region
## GO:0031052                                                                                                                                 chromosome breakage
## GO:0035853                                                                                        chromosome passenger complex localization to spindle midzone
## GO:0001300                                                                                                                            chronological cell aging
## GO:1905349                                                                                                                    ciliary transition zone assembly
## GO:0061523                                                                                                                                  cilium disassembly
## GO:0003243                                                                                     circumferential growth involved in left ventricle morphogenesis
## GO:1990771                                                                                                clathrin-dependent extracellular exosome endocytosis
## GO:0009236                                                                                                                      cobalamin biosynthetic process
## GO:0042366                                                                                                                         cobalamin catabolic process
## GO:0015938                                                                                                                        coenzyme A catabolic process
## GO:0035349                                                                                                                  coenzyme A transmembrane transport
## GO:0015880                                                                                                                                coenzyme A transport
## GO:0048673                                                                                           collateral sprouting of intact axon in response to injury
## GO:0061580                                                                                                                     colon epithelial cell migration
## GO:0021528                                                                                                   commissural neuron differentiation in spinal cord
## GO:0038178                                                                                                          complement component C5a signaling pathway
## GO:0048058                                                                                                               compound eye corneal lens development
## GO:0072027                                                                                                                       connecting tubule development
## GO:0051089                                                                                                         constitutive protein ectodomain proteolysis
## GO:0090246                                                                                                      convergent extension involved in somitogenesis
## GO:0036404                                                                                                                  conversion of ds siRNA to ss siRNA
## GO:0033168                                                                                     conversion of ds siRNA to ss siRNA involved in RNA interference
## GO:0071951                                                                                             conversion of methionyl-tRNA to N-formyl-methionyl-tRNA
## GO:0046814                                                                                                  coreceptor-mediated virion attachment to host cell
## GO:0060365                                                                                                                        coronal suture morphogenesis
## GO:0003178                                                                                                                    coronary sinus valve development
## GO:0003182                                                                                                                  coronary sinus valve morphogenesis
## GO:0021972                                                                                              corticospinal neuron axon guidance through spinal cord
## GO:0097273                                                                                                                              creatinine homeostasis
## GO:0046449                                                                                                                        creatinine metabolic process
## GO:0006535                                                                                                           cysteine biosynthetic process from serine
## GO:1903712                                                                                                                    cysteine transmembrane transport
## GO:0018063                                                                                                                           cytochrome c-heme linkage
## GO:0009691                                                                                                                      cytokinin biosynthetic process
## GO:0009690                                                                                                                         cytokinin metabolic process
## GO:0051838                                                                                                                 cytolysis by host of symbiont cells
## GO:0051801                                                                                       cytolysis in other organism involved in symbiotic interaction
## GO:0071629                                                                                cytoplasm protein quality control by the ubiquitin-proteasome system
## GO:0071026                                                                                                                        cytoplasmic RNA surveillance
## GO:0010938                                                                                                            cytoplasmic microtubule depolymerization
## GO:0043004                                                                                                            cytoplasmic sequestering of CFTR protein
## GO:0048789                                                                                                     cytoskeletal matrix organization at active zone
## GO:0021808                                         cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## GO:0061725                                                                                                                                 cytosolic lipolysis
## GO:0046057                                                                                                                              dADP catabolic process
## GO:0006174                                                                                                                                dADP phosphorylation
## GO:0061565                                                                                                                                dAMP phosphorylation
## GO:0006175                                                                                                                           dATP biosynthetic process
## GO:0006240                                                                                                                           dCDP biosynthetic process
## GO:0046062                                                                                                                              dCDP metabolic process
## GO:0061570                                                                                                                                dCDP phosphorylation
## GO:0061567                                                                                                                                dCMP phosphorylation
## GO:0006253                                                                                                                              dCTP catabolic process
## GO:0046065                                                                                                                              dCTP metabolic process
## GO:0006185                                                                                                                           dGDP biosynthetic process
## GO:0046067                                                                                                                              dGDP catabolic process
## GO:0006186                                                                                                                                dGDP phosphorylation
## GO:0046054                                                                                                                              dGMP metabolic process
## GO:0035863                                                                                                                              dITP catabolic process
## GO:0035862                                                                                                                              dITP metabolic process
## GO:0046079                                                                                                                              dUMP catabolic process
## GO:0046081                                                                                                                              dUTP catabolic process
## GO:0046080                                                                                                                              dUTP metabolic process
## GO:0043215                                                                                                                              daunorubicin transport
## GO:1902426                                                                                                 deactivation of mitotic spindle assembly checkpoint
## GO:0009816                                                                                             defense response to bacterium, incompatible interaction
## GO:0009817                                                                                                defense response to fungus, incompatible interaction
## GO:0097188                                                                                                                               dentin mineralization
## GO:0006157                                                                                                                    deoxyadenosine catabolic process
## GO:0046090                                                                                                                    deoxyadenosine metabolic process
## GO:0006161                                                                                                                    deoxyguanosine catabolic process
## GO:0042453                                                                                                                    deoxyguanosine metabolic process
## GO:0006149                                                                                                                      deoxyinosine catabolic process
## GO:0046094                                                                                                                      deoxyinosine metabolic process
## GO:0009192                                                                                                   deoxyribonucleoside diphosphate catabolic process
## GO:0030209                                                                                                                  dermatan sulfate catabolic process
## GO:0035906                                                                                                                        descending aorta development
## GO:0072022                                                                                                                    descending thin limb development
## GO:0035921                                                                                                                               desmosome disassembly
## GO:0072421                                                                                  detection of DNA damage stimulus involved in DNA damage checkpoint
## GO:0009589                                                                                                                                     detection of UV
## GO:0060245                                                                                                                           detection of cell density
## GO:0060246                                                                                                       detection of cell density by contact stimulus
## GO:0060248                                                                        detection of cell density by contact stimulus involved in contact inhibition
## GO:0090429                                                                                                             detection of endogenous biotic stimulus
## GO:0016046                                                                                                                                 detection of fungus
## GO:0003029                                                                    detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## GO:0002007                                                                                 detection of hypoxic conditions in blood by chemoreceptor signaling
## GO:0070392                                                                                                                      detection of lipoteichoic acid
## GO:0032498                                                                                                                      detection of muramyl dipeptide
## GO:0070994                                                                                                                       detection of oxidative stress
## GO:0072394                                                                                             detection of stimulus involved in cell cycle checkpoint
## GO:0050960                                                                                         detection of temperature stimulus involved in thermoception
## GO:0002355                                                                                                                             detection of tumor cell
## GO:0014822                                                                                                                               detection of wounding
## GO:0001879                                                                                                                                  detection of yeast
## GO:0050894                                                                                                                             determination of affect
## GO:0071908                                                                                                     determination of intestine left/right asymmetry
## GO:0071909                                                                                                       determination of stomach left/right asymmetry
## GO:0048264                                                                                                                   determination of ventral identity
## GO:0071585                                                                                                                       detoxification of cadmium ion
## GO:0010312                                                                                                                          detoxification of zinc ion
## GO:0044111                                                                                                       development involved in symbiotic interaction
## GO:0044115                                                                                           development of symbiont involved in interaction with host
## GO:0015964                                                                                                          diadenosine triphosphate catabolic process
## GO:0015962                                                                                                          diadenosine triphosphate metabolic process
## GO:0060540                                                                                                                             diaphragm morphogenesis
## GO:0090472                                                                                                                          dibasic protein processing
## GO:0019341                                                                                                                  dibenzo-p-dioxin catabolic process
## GO:0018900                                                                                                                   dichloromethane metabolic process
## GO:0060678                                                                        dichotomous subdivision of terminal units involved in ureteric bud branching
## GO:0007502                                                                                                                digestive tract mesoderm development
## GO:0051066                                                                                                                  dihydrobiopterin metabolic process
## GO:0051068                                                                                                                  dihydrolipoamide metabolic process
## GO:0140206                                                                                                             dipeptide import across plasma membrane
## GO:0071544                                                                                                   diphosphoinositol polyphosphate catabolic process
## GO:0046352                                                                                                                      disaccharide catabolic process
## GO:0052338                                                                                                            disruption by host of symbiont cell wall
## GO:0052367                                                                                                   disruption by host of symbiont cellular component
## GO:0052339                                                             disruption by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052368                                                    disruption by organism of cellular component in other organism involved in symbiotic interaction
## GO:0014828                                                                                                            distal stomach smooth muscle contraction
## GO:0000917                                                                                                                            division septum assembly
## GO:0043048                                                                                                         dolichyl monophosphate biosynthetic process
## GO:0006585                                                                                                         dopamine biosynthetic process from tyrosine
## GO:1900753                                                                                                                               doxorubicin transport
## GO:1990962                                                                                                           drug transport across blood-brain barrier
## GO:0061772                                                                                                           drug transport across blood-nerve barrier
## GO:0036497                                                                             eIF2alpha dephosphorylation in response to endoplasmic reticulum stress
## GO:0007499                                                                                                                   ectoderm and mesoderm interaction
## GO:0001715                                                                                                                  ectodermal cell fate specification
## GO:0048567                                                                                                            ectodermal digestive tract morphogenesis
## GO:0048894                                                                                                   efferent axon development in a lateral line nerve
## GO:0048613                                                                                                  embryonic ectodermal digestive tract morphogenesis
## GO:0036306                                                                                                                     embryonic heart tube elongation
## GO:0003144                                                                                                                      embryonic heart tube formation
## GO:1990402                                                                                                                         embryonic liver development
## GO:0060957                                                                                                                    endocardial cell fate commitment
## GO:0061444                                                                                                                endocardial cushion cell development
## GO:0061445                                                                                                            endocardial cushion cell fate commitment
## GO:0038002                                                                                                                                 endocrine signaling
## GO:1905267                                                                                                endonucleolytic cleavage involved in tRNA processing
## GO:0000461                                                 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0000472                                                 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061163                                                                                                                  endoplasmic reticulum polarization
## GO:0071788                                                                                                   endoplasmic reticulum tubular network maintenance
## GO:0002264                                                                                             endothelial cell activation involved in immune response
## GO:0090668                                                                                   endothelial cell chemotaxis to vascular endothelial growth factor
## GO:0090674                                                                                                    endothelial cell-matrix adhesion via fibronectin
## GO:0097102                                                                                                             endothelial tip cell fate specification
## GO:0034959                                                                                                                               endothelin maturation
## GO:0061736                                                                                                               engulfment of target by autophagosome
## GO:0035645                                                                                                          enteric smooth muscle cell differentiation
## GO:0043354                                                                                                                    enucleate erythrocyte maturation
## GO:0090601                                                                                                                                         enucleation
## GO:0018323                                                                                           enzyme active site formation via L-cysteine sulfinic acid
## GO:0018192                                                                     enzyme active site formation via cysteine modification to L-cysteine persulfide
## GO:0000455                                                                                                        enzyme-directed rRNA pseudouridine synthesis
## GO:0072682                                                                                                                            eosinophil extravasation
## GO:1990959                                                                                                                              eosinophil homeostasis
## GO:0060802                                              epiblast cell-extraembryonic ectoderm cell signaling involved in anterior/posterior axis specification
## GO:0055113                                                                                          epiboly involved in gastrulation with mouth forming second
## GO:0007174                                                                                                           epidermal growth factor catabolic process
## GO:0038168                                                            epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## GO:0038167                               epidermal growth factor receptor signaling pathway via positive regulation of NF-kappaB transcription factor activity
## GO:1990134                                                                           epithelial cell apoptotic process involved in palatal shelf morphogenesis
## GO:0060691                                                                                   epithelial cell maturation involved in salivary gland development
## GO:0060517                                                                                  epithelial cell proliferation involved in prostatic bud elongation
## GO:0060940                                                                     epithelial to mesenchymal transition involved in cardiac fibroblast development
## GO:0070987                                                                                                                    error-free translesion synthesis
## GO:1902217                                                                                                                       erythrocyte apoptotic process
## GO:0034102                                                                                                                               erythrocyte clearance
## GO:0043131                                                                                                                             erythrocyte enucleation
## GO:0048773                                                                                                                        erythrophore differentiation
## GO:0051686                                                                                                                    establishment of ER localization
## GO:0048561                                                                                                           establishment of animal organ orientation
## GO:1990963                                                                                                              establishment of blood-retinal barrier
## GO:0071964                                                                                                establishment of cell polarity regulating cell shape
## GO:0099089                                                                                  establishment of endoplasmic reticulum localization to postsynapse
## GO:0071516                                                                                                    establishment of imprinting at mating-type locus
## GO:0075713                                                                                                        establishment of integrated proviral latency
## GO:0061966                                                                                                               establishment of left/right asymmetry
## GO:0051296                                                                                                        establishment of meiotic spindle orientation
## GO:0034640                                                                               establishment of mitochondrion localization by microtubule attachment
## GO:0072046                                                                                  establishment of planar polarity involved in nephron morphogenesis
## GO:0042247                                                                                           establishment of planar polarity of follicular epithelium
## GO:0035592                                                                                       establishment of protein localization to extracellular region
## GO:0071206                                                                               establishment of protein localization to juxtaparanode region of axon
## GO:0090152                                                   establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## GO:0032254                                                                                                     establishment of secretory granule localization
## GO:0016334                                                                                   establishment or maintenance of polarity of follicular epithelium
## GO:0035937                                                                                                                                  estrogen secretion
## GO:0060206                                                                                                                                 estrous cycle phase
## GO:0006580                                                                                                                      ethanolamine metabolic process
## GO:0030683                                                                                               evasion or tolerance by virus of host immune response
## GO:0051807                                                        evasion or tolerance of defense response of other organism involved in symbiotic interaction
## GO:0030682                                                                                                       evasion or tolerance of host defense response
## GO:0020012                                                                                                        evasion or tolerance of host immune response
## GO:0051805                                                         evasion or tolerance of immune response of other organism involved in symbiotic interaction
## GO:0098817                                                                                                            evoked excitatory postsynaptic potential
## GO:0061670                                                                                                                   evoked neurotransmitter secretion
## GO:1903259                                                                                                              exon-exon junction complex disassembly
## GO:0021816                                            extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## GO:0045229                                                                                                       external encapsulating structure organization
## GO:0072680                                                                                                  extracellular matrix-dependent thymocyte migration
## GO:0060082                                                                                                                                    eye blink reflex
## GO:0008057                                                                                                                    eye pigment granule organization
## GO:0042441                                                                                                                       eye pigment metabolic process
## GO:0098746                                                                                          fast, calcium ion-dependent exocytosis of neurotransmitter
## GO:0061040                                                                                                                          female gonad morphogenesis
## GO:0019101                                                                                                                    female somatic sex determination
## GO:0097707                                                                                                                                         ferroptosis
## GO:1903988                                                                                                          ferrous iron export across plasma membrane
## GO:1902178                                                                                       fibroblast growth factor receptor apoptotic signaling pathway
## GO:0035603                                                                         fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## GO:0035602                             fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## GO:0035604                            fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## GO:2000699                                                              fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905590                                                                                                                     fibronectin fibril organization
## GO:0072681                                                                                                           fibronectin-dependent thymocyte migration
## GO:1905285                                                                                                                 fibrous ring of heart morphogenesis
## GO:0036058                                                                                                                       filtration diaphragm assembly
## GO:0072388                                                                                                    flavin adenine dinucleotide biosynthetic process
## GO:0072389                                                                                                       flavin adenine dinucleotide catabolic process
## GO:0042728                                                                                                        flavin-containing compound catabolic process
## GO:0051552                                                                                                                           flavone metabolic process
## GO:0018917                                                                                                                          fluorene metabolic process
## GO:0120181                                                                                                                          focal adhesion disassembly
## GO:0002316                                                                                                                   follicular B cell differentiation
## GO:0021905                                                                                                               forebrain-midbrain boundary formation
## GO:0046293                                                                                                                   formaldehyde biosynthetic process
## GO:0043606                                                                                                                         formamide metabolic process
## GO:0015942                                                                                                                           formate metabolic process
## GO:0015724                                                                                                                                   formate transport
## GO:0010160                                                                                                                  formation of animal organ boundary
## GO:0048689                                                                                                            formation of growth cone in injured axon
## GO:0043056                                                                                                                                  forward locomotion
## GO:0050751                                                                                                                    fractalkine biosynthetic process
## GO:0050756                                                                                                                       fractalkine metabolic process
## GO:0032603                                                                                                                              fractalkine production
## GO:0032445                                                                                                                                     fructose import
## GO:1990539                                                                                                              fructose import across plasma membrane
## GO:0019402                                                                                                                        galactitol metabolic process
## GO:0015757                                                                                                                   galactose transmembrane transport
## GO:0051939                                                                                                                      gamma-aminobutyric acid import
## GO:0002365                                                                                                               gamma-delta T cell lineage commitment
## GO:0007402                                                                                                             ganglion mother cell fate determination
## GO:1905572                                                                                                               ganglioside GM1 transport to membrane
## GO:1901148                                                                                       gene expression involved in extracellular matrix organization
## GO:0051867                                                                                                     general adaptation syndrome, behavioral process
## GO:0071515                                                                                                             genetic imprinting at mating-type locus
## GO:0036321                                                                                                                                   ghrelin secretion
## GO:2000701                                                glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0001576                                                                                                                      globoside biosynthetic process
## GO:0072139                                                                                                 glomerular parietal epithelial cell differentiation
## GO:1903210                                                                                               glomerular visceral epithelial cell apoptotic process
## GO:0006042                                                                                                                    glucosamine biosynthetic process
## GO:1901073                                                                                                glucosamine-containing compound biosynthetic process
## GO:0042946                                                                                                                                 glucoside transport
## GO:0006064                                                                                                                       glucuronate catabolic process
## GO:0006539                                                                                                      glutamate catabolic process via 2-oxoglutarate
## GO:0006540                                                                                                              glutamate decarboxylation to succinate
## GO:1905962                                                                                                                glutamatergic neuron differentiation
## GO:0006542                                                                                                                      glutamine biosynthetic process
## GO:0010585                                                                                                                                 glutamine secretion
## GO:0036531                                                                                                                             glutathione deglycation
## GO:0015794                                                                                                        glycerol-3-phosphate transmembrane transport
## GO:0031456                                                                                                                glycine betaine biosynthetic process
## GO:0019285                                                                                                   glycine betaine biosynthetic process from choline
## GO:0031455                                                                                                                   glycine betaine metabolic process
## GO:0031460                                                                                                                           glycine betaine transport
## GO:1904983                                                                                                                   glycine import into mitochondrion
## GO:0072579                                                                                                                         glycine receptor clustering
## GO:0061536                                                                                                                                   glycine secretion
## GO:0061537                                                                                                                glycine secretion, neurotransmission
## GO:0060709                                                                            glycogen cell differentiation involved in embryonic placenta development
## GO:0046295                                                                                                                      glycolate biosynthetic process
## GO:0046296                                                                                                                         glycolate catabolic process
## GO:0034203                                                                                                                            glycolipid translocation
## GO:0093001                                                                                  glycolysis from storage polysaccharide through glucose-1-phosphate
## GO:0061619                                                                                        glycolytic process from mannose through fructose-6-phosphate
## GO:0006426                                                                                                                          glycyl-tRNA aminoacylation
## GO:1903189                                                                                                                           glyoxal metabolic process
## GO:0060016                                                                                                                          granulosa cell development
## GO:1990739                                                                                                                        granulosa cell proliferation
## GO:0035746                                                                                                                               granzyme A production
## GO:0033380                                                                                                 granzyme B localization to T cell secretory granule
## GO:0014843                                                                  growth factor dependent regulation of skeletal muscle satellite cell proliferation
## GO:0003421                                                                                                           growth plate cartilage axis specification
## GO:0046099                                                                                                                        guanine biosynthetic process
## GO:0006147                                                                                                                           guanine catabolic process
## GO:0106044                                                                                                                                 guanine deglycation
## GO:0106046                                                                                                                guanine deglycation, glyoxal removal
## GO:0106045                                                                                                          guanine deglycation, methylglyoxal removal
## GO:0006178                                                                                                                                     guanine salvage
## GO:0015854                                                                                                                                   guanine transport
## GO:0046115                                                                                                                         guanosine catabolic process
## GO:0008617                                                                                                                         guanosine metabolic process
## GO:0015971                                                                                                          guanosine tetraphosphate catabolic process
## GO:0015969                                                                                                          guanosine tetraphosphate metabolic process
## GO:0042197                                                                                                           halogenated hydrocarbon metabolic process
## GO:0035704                                                                                                                            helper T cell chemotaxis
## GO:0035397                                                                                               helper T cell enhancement of adaptive immune response
## GO:0060217                                                                                                                  hemangioblast cell differentiation
## GO:0097241                                                                                                    hematopoietic stem cell migration to bone marrow
## GO:0048034                                                                                                                         heme O biosynthetic process
## GO:0048033                                                                                                                            heme o metabolic process
## GO:0030211                                                                                                                           heparin catabolic process
## GO:0061011                                                                                                                            hepatic duct development
## GO:0002384                                                                                                                             hepatic immune response
## GO:1990922                                                                                                                 hepatic stellate cell proliferation
## GO:0002194                                                                                                                           hepatocyte cell migration
## GO:0048175                                                                                                       hepatocyte growth factor biosynthetic process
## GO:0032605                                                                                                                 hepatocyte growth factor production
## GO:1902605                                                                                                           heterotrimeric G-protein complex assembly
## GO:0046458                                                                                                                       hexadecanal metabolic process
## GO:0019406                                                                                                                        hexitol biosynthetic process
## GO:0019407                                                                                                                           hexitol catabolic process
## GO:0021576                                                                                                                                 hindbrain formation
## GO:0001695                                                                                                                         histamine catabolic process
## GO:0051615                                                                                                                                    histamine uptake
## GO:0001697                                                                                                            histamine-induced gastric acid secretion
## GO:0019556                                                                                              histidine catabolic process to glutamate and formamide
## GO:0036351                                                                                                                      histone H2A-K13 ubiquitination
## GO:0036352                                                                                                                      histone H2A-K15 ubiquitination
## GO:0043977                                                                                                                          histone H2A-K5 acetylation
## GO:0043990                                                                                                                      histone H2A-S1 phosphorylation
## GO:1990245                                                                                                                    histone H2A-T120 phosphorylation
## GO:0043980                                                                                                                         histone H2B-K12 acetylation
## GO:0043979                                                                                                                          histone H2B-K5 acetylation
## GO:0043972                                                                                                                          histone H3-K23 acetylation
## GO:0043973                                                                                                                           histone H3-K4 acetylation
## GO:0044648                                                                                                                         histone H3-K4 dimethylation
## GO:0097692                                                                                                                       histone H3-K4 monomethylation
## GO:0034972                                                                                                                          histone H3-R26 methylation
## GO:0035407                                                                                                                      histone H3-T11 phosphorylation
## GO:2000751                                                  histone H3-T3 phosphorylation involved in chromosome passenger complex localization to kinetochore
## GO:0035409                                                                                                                      histone H3-Y41 phosphorylation
## GO:1990679                                                                                                                        histone H4-K12 deacetylation
## GO:1990678                                                                                                                        histone H4-K16 deacetylation
## GO:0071110                                                                                                                               histone biotinylation
## GO:0001207                                                                                                                                histone displacement
## GO:0035406                                                                                                                    histone-tyrosine phosphorylation
## GO:0048877                                                                                                               homeostasis of number of retina cells
## GO:1902000                                                                                                                     homogentisate catabolic process
## GO:1901999                                                                                                                     homogentisate metabolic process
## GO:0051758                                                   homologous chromosome movement towards spindle pole involved in homologous chromosome segregation
## GO:0031619                                                                 homologous chromosome orientation involved in meiotic metaphase I plate congression
## GO:0035852                                                                                                                        horizontal cell localization
## GO:0034050                                                                                                      host programmed cell death induced by symbiont
## GO:0048874                                                                                       host-mediated regulation of intestinal microbiota composition
## GO:1990384                                                                                                                  hyaloid vascular plexus regression
## GO:0034589                                                                                                                            hydroxyproline transport
## GO:0002149                                                                                                              hypochlorous acid biosynthetic process
## GO:0002148                                                                                                                 hypochlorous acid metabolic process
## GO:0021566                                                                                                                       hypoglossal nerve development
## GO:0021618                                                                                                                     hypoglossal nerve morphogenesis
## GO:0009114                                                                                                                      hypoxanthine catabolic process
## GO:0006150                                                                                                                              hypoxanthine oxidation
## GO:0035344                                                                                                                              hypoxanthine transport
## GO:0020021                                                                                                                        immortalization of host cell
## GO:0097281                                                                                                                            immune complex formation
## GO:0002383                                                                                                          immune response in brain or nervous system
## GO:0002379                                                                                     immunoglobulin biosynthetic process involved in immune response
## GO:0071707                                                                                                      immunoglobulin heavy chain V-D-J recombination
## GO:0060820                                                                                            inactivation of X chromosome by heterochromatin assembly
## GO:0009682                                                                                                                         induced systemic resistance
## GO:0052251                                                       induction by organism of defense response of other organism involved in symbiotic interaction
## GO:0052263                                induction by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052558                                                        induction by organism of immune response of other organism involved in symbiotic interaction
## GO:0052063                                                                               induction by symbiont of defense-related host nitric oxide production
## GO:0052559                                                                                                       induction by symbiont of host immune response
## GO:0039520                                                                                                                induction by virus of host autophagy
## GO:0006948                                                                                                         induction by virus of host cell-cell fusion
## GO:0050929                                                                                                                    induction of negative chemotaxis
## GO:0031129                                                                                                                       inductive cell-cell signaling
## GO:1905317                                                                                                          inferior endocardial cushion morphogenesis
## GO:0055111                                                                                       ingression involved in gastrulation with mouth forming second
## GO:0021806                                                                     initiation of movement involved in cerebral cortex radial glia guided migration
## GO:0021993                                                                                                                   initiation of neural tube closure
## GO:0030505                                                                                                                     inorganic diphosphate transport
## GO:0006148                                                                                                                           inosine catabolic process
## GO:0006021                                                                                                                       inositol biosynthetic process
## GO:0019310                                                                                                                          inositol catabolic process
## GO:0017143                                                                                                                       insecticide metabolic process
## GO:0038016                                                                                                                    insulin receptor internalization
## GO:0038020                                                                                                                          insulin receptor recycling
## GO:0048219                                                                                                     inter-Golgi cisterna vesicle-mediated transport
## GO:0052213                                                                  interaction with symbiont via secreted substance involved in symbiotic interaction
## GO:0043063                                                                                                                   intercellular bridge organization
## GO:0050719                                                                                                            interleukin-1 alpha biosynthetic process
## GO:0035772                                                                                                           interleukin-13-mediated signaling pathway
## GO:0042235                                                                                                                 interleukin-17 biosynthetic process
## GO:0097400                                                                                                           interleukin-17-mediated signaling pathway
## GO:0072616                                                                                                                            interleukin-18 secretion
## GO:0038155                                                                                                           interleukin-23-mediated signaling pathway
## GO:0070106                                                                                                           interleukin-27-mediated signaling pathway
## GO:0038172                                                                                                           interleukin-33-mediated signaling pathway
## GO:0035708                                                                                           interleukin-4-dependent isotype switching to IgE isotypes
## GO:0042225                                                                                                                  interleukin-5 biosynthetic process
## GO:0038112                                                                                                            interleukin-8-mediated signaling pathway
## GO:0032638                                                                                                                            interleukin-9 production
## GO:0072607                                                                                                                             interleukin-9 secretion
## GO:0048391                                                                                                                     intermediate mesoderm formation
## GO:0048390                                                                                                                 intermediate mesoderm morphogenesis
## GO:0048392                                                                                                        intermediate mesodermal cell differentiation
## GO:0071831                                                                                                 intermediate-density lipoprotein particle clearance
## GO:0120012                                                                                                                 intermembrane sphingolipid transfer
## GO:0035260                                                                                                                    internal genitalia morphogenesis
## GO:0052097                                                                                                                         interspecies quorum sensing
## GO:0044258                                                                                                                  intestinal lipid catabolic process
## GO:0036335                                                                                                                    intestinal stem cell homeostasis
## GO:0038185                                                                                                  intracellular bile acid receptor signaling pathway
## GO:1990953                                                                                                                            intramanchette transport
## GO:1990127                                                           intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905877                                                                                                                               invadopodium assembly
## GO:1905878                                                                                                                            invadopodium disassembly
## GO:1904200                                                                                                                      iodide transmembrane transport
## GO:0033212                                                                                                                                   iron assimilation
## GO:1903414                                                                                                                                  iron cation export
## GO:0034231                                                                                                                islet amyloid polypeptide processing
## GO:0018153                                                                                            isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## GO:0018276                                                                                                     isopeptide cross-linking via N6-glycyl-L-lysine
## GO:0007630                                                                                                                                       jump response
## GO:0018146                                                                                                                keratan sulfate biosynthetic process
## GO:0042465                                                                                                                                             kinesis
## GO:1903457                                                                                                                           lactate catabolic process
## GO:0046722                                                                                                                               lactic acid secretion
## GO:0001572                                                                                                               lactosylceramide biosynthetic process
## GO:0060366                                                                                                                       lambdoid suture morphogenesis
## GO:0003363                                                                                         lamellipodium assembly involved in ameboidal cell migration
## GO:0042140                                                                                                          late meiotic recombination nodule assembly
## GO:0099607                                                                                   lateral attachment of mitotic spindle microtubules to kinetochore
## GO:0022018                                                                                                      lateral ganglionic eminence cell proliferation
## GO:0021771                                                                                                              lateral geniculate nucleus development
## GO:0048892                                                                                                                      lateral line nerve development
## GO:0048925                                                                                                                     lateral line system development
## GO:0031271                                                                                                                       lateral pseudopodium assembly
## GO:0060875                                                                                                              lateral semicircular canal development
## GO:0015692                                                                                                                                  lead ion transport
## GO:0098713                                                                                                               leucine import across plasma membrane
## GO:0002522                                                                                                     leukocyte migration involved in immune response
## GO:0061737                                                                                                                       leukotriene signaling pathway
## GO:0071716                                                                                                                               leukotriene transport
## GO:0060887                                                                                                                          limb epidermis development
## GO:0060007                                                                                                                       linear vestibuloocular reflex
## GO:1901373                                                                                                                       lipid hydroperoxide transport
## GO:0060989                                                                                                    lipid tube assembly involved in organelle fusion
## GO:0009107                                                                                                                        lipoate biosynthetic process
## GO:0009104                                                                                                                lipopolysaccharide catabolic process
## GO:0008653                                                                                                                lipopolysaccharide metabolic process
## GO:2001306                                                                                                                     lipoxin B4 biosynthetic process
## GO:2001304                                                                                                                        lipoxin B4 metabolic process
## GO:0021703                                                                                                                          locus ceruleus development
## GO:0036116                                                                                                         long-chain fatty-acyl-CoA catabolic process
## GO:0060427                                                                                                                  lung connective tissue development
## GO:0060464                                                                                                                                 lung lobe formation
## GO:0061100                                                                                                            lung neuroendocrine cell differentiation
## GO:0060432                                                                                                                  lung pattern specification process
## GO:0061115                                                                                                             lung proximal/distal axis specification
## GO:0035471                                                                      luteinizing hormone signaling pathway involved in ovarian follicle development
## GO:0003017                                                                                                                                   lymph circulation
## GO:1904977                                                                                                                lymphatic endothelial cell migration
## GO:0042109                                                                                                                  lymphotoxin A biosynthetic process
## GO:0032641                                                                                                                            lymphotoxin A production
## GO:0035752                                                                                                                        lysosomal lumen pH elevation
## GO:0006430                                                                                                                           lysyl-tRNA aminoacylation
## GO:0090625                                                                                                   mRNA cleavage involved in gene silencing by siRNA
## GO:0070054                                                                                            mRNA splicing, via endonucleolytic cleavage and ligation
## GO:0002472                                                                                                      macrophage antigen processing and presentation
## GO:0061519                                                                                                                              macrophage homeostasis
## GO:0010931                                                                                                                      macrophage tolerance induction
## GO:0072024                                                                                                                            macula densa development
## GO:0051685                                                                                                                          maintenance of ER location
## GO:0033382                                                                                      maintenance of granzyme B location in T cell secretory granule
## GO:0034090                                                                                                    maintenance of meiotic sister chromatid cohesion
## GO:0035875                                                                                       maintenance of meiotic sister chromatid cohesion, centromeric
## GO:0071960                                                                                       maintenance of mitotic sister chromatid cohesion, centromeric
## GO:0048790                                                                                                    maintenance of presynaptic active zone structure
## GO:0033379                                                                                        maintenance of protease location in T cell secretory granule
## GO:0033373                                                                                     maintenance of protease location in mast cell secretory granule
## GO:0033377                                                                                         maintenance of protein location in T cell secretory granule
## GO:0033370                                                                                      maintenance of protein location in mast cell secretory granule
## GO:0085018                                                                                                  maintenance of symbiont-containing vacuole by host
## GO:0001192                                                               maintenance of transcriptional fidelity during DNA-templated transcription elongation
## GO:0001193                               maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## GO:0036098                                                                                                     male germ-line stem cell population maintenance
## GO:0051308                                                                                                                  male meiosis chromosome separation
## GO:0007112                                                                                                                            male meiosis cytokinesis
## GO:0007065                                                                                                              male meiosis sister chromatid cohesion
## GO:0035039                                                                                                                            male pronucleus assembly
## GO:0019102                                                                                                                      male somatic sex determination
## GO:0090410                                                                                                                          malonate catabolic process
## GO:2001295                                                                                                                    malonyl-CoA biosynthetic process
## GO:2001294                                                                                                                       malonyl-CoA catabolic process
## GO:0060649                                                                                                                        mammary gland bud elongation
## GO:0060611                                                                                                                       mammary gland fat development
## GO:0002174                                                                                                                     mammary stem cell proliferation
## GO:0061374                                                                                                           mammillothalamic axonal tract development
## GO:0018924                                                                                                                         mandelate metabolic process
## GO:0061978                                                                                                  mandibular condyle articular cartilage development
## GO:0055071                                                                                                                           manganese ion homeostasis
## GO:0046355                                                                                                                            mannan catabolic process
## GO:0010412                                                                                                                            mannan metabolic process
## GO:0015797                                                                                                                                  mannitol transport
## GO:0006057                                                                                                                   mannoprotein biosynthetic process
## GO:0006056                                                                                                                      mannoprotein metabolic process
## GO:0006050                                                                                                                       mannosamine metabolic process
## GO:0019309                                                                                                                           mannose catabolic process
## GO:0061611                                                                                                   mannose to fructose-6-phosphate metabolic process
## GO:0048047                                                                                                                 mating behavior, sex discrimination
## GO:0000481                                                                                                                               maturation of 5S rRNA
## GO:0035782                                                                                                               mature natural killer cell chemotaxis
## GO:0036114                                                                                                       medium-chain fatty-acyl-CoA catabolic process
## GO:0021723                                                                                                           medullary reticular formation development
## GO:0010780                                                              meiotic DNA double-strand break formation involved in reciprocal meiotic recombination
## GO:0000707                                                                                                                    meiotic DNA recombinase assembly
## GO:0098768                                                                                                                              meiotic prometaphase I
## GO:0007146                                                                                                               meiotic recombination nodule assembly
## GO:0033316                                                                                                                 meiotic spindle assembly checkpoint
## GO:0044779                                                                                                                          meiotic spindle checkpoint
## GO:0051232                                                                                                                          meiotic spindle elongation
## GO:0051257                                                                                                                    meiotic spindle midzone assembly
## GO:0097326                                                                                                                                 melanocyte adhesion
## GO:1902362                                                                                                                        melanocyte apoptotic process
## GO:0086052                                                                                        membrane repolarization during SA node cell action potential
## GO:0086050                                                                                  membrane repolarization during bundle of His cell action potential
## GO:0022614                                                                                                                        membrane to membrane docking
## GO:0061485                                                                                                                         memory T cell proliferation
## GO:0009234                                                                                                                    menaquinone biosynthetic process
## GO:0042696                                                                                                                                            menarche
## GO:0042697                                                                                                                                           menopause
## GO:0015694                                                                                                                               mercury ion transport
## GO:1901146                                                                    mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:1901706                                                                                       mesenchymal cell differentiation involved in bone development
## GO:0060781                                                                               mesenchymal cell proliferation involved in prostate gland development
## GO:0060783                                                                     mesenchymal smoothened signaling pathway involved in prostate gland development
## GO:0061235                                                                     mesenchymal stem cell maintenance involved in mesonephric nephron morphogenesis
## GO:0072285                                                                mesenchymal to epithelial transition involved in metanephric renal vesicle formation
## GO:0072036                                                                            mesenchymal to epithelial transition involved in renal vesicle formation
## GO:0060496                                                                                  mesenchymal-epithelial cell signaling involved in lung development
## GO:0060739                                                                        mesenchymal-epithelial cell signaling involved in prostate gland development
## GO:0090131                                                                                                                                mesenchyme migration
## GO:0090133                                                                                                                               mesendoderm migration
## GO:0048338                                                                                                                    mesoderm structural organization
## GO:0007500                                                                                                                  mesodermal cell fate determination
## GO:0061215                                                                                                                     mesonephric nephron development
## GO:0061228                                                                                                                   mesonephric nephron morphogenesis
## GO:0061206                                                                                                                           mesonephros morphogenesis
## GO:0052406                                                                                                         metabolism by host of symbiont carbohydrate
## GO:0052410                                                                                                     metabolism by host of symbiont cell wall chitin
## GO:0052417                                                                                                              metabolism by host of symbiont protein
## GO:0052407                                                          metabolism by organism of carbohydrate in other organism involved in symbiotic interaction
## GO:0052411                                                      metabolism by organism of cell wall chitin in other organism involved in symbiotic interaction
## GO:0052418                                                               metabolism by organism of protein in other organism involved in symbiotic interaction
## GO:0042040                                                                                              metal incorporation into metallo-molybdopterin complex
## GO:0072213                                                                                                                     metanephric capsule development
## GO:0072266                                                                                                                       metanephric capsule formation
## GO:0072265                                                                                                                   metanephric capsule morphogenesis
## GO:0072267                                                                                                                   metanephric capsule specification
## GO:0072286                                                                                                           metanephric connecting tubule development
## GO:0072220                                                                                                        metanephric descending thin limb development
## GO:0072274                                                                                                metanephric glomerular basement membrane development
## GO:0072264                                                                                                      metanephric glomerular endothelium development
## GO:0072255                                                                                                   metanephric glomerular mesangial cell development
## GO:0072254                                                                                               metanephric glomerular mesangial cell differentiation
## GO:0072259                                                                                                     metanephric interstitial fibroblast development
## GO:0072258                                                                                                 metanephric interstitial fibroblast differentiation
## GO:0072206                                                                                                   metanephric juxtaglomerular apparatus development
## GO:0072227                                                                                                                metanephric macula densa development
## GO:0072209                                                                                                          metanephric mesangial cell differentiation
## GO:0072229                                                                                                  metanephric proximal convoluted tubule development
## GO:0072232                                                                                        metanephric proximal convoluted tubule segment 2 development
## GO:0072230                                                                                                    metanephric proximal straight tubule development
## GO:0072237                                                                                                             metanephric proximal tubule development
## GO:0072208                                                                                                        metanephric smooth muscle tissue development
## GO:1990949                                                                                                          metaphase/anaphase transition of meiosis I
## GO:0009087                                                                                                                        methionine catabolic process
## GO:0061715                                                                                                                              miRNA 2'-O-methylation
## GO:0090172                                                                 microtubule cytoskeleton organization involved in homologous chromosome segregation
## GO:0099606                                                                                          microtubule plus-end directed mitotic chromosome migration
## GO:0099098                                                                                                           microtubule polymerization based movement
## GO:1904693                                                                                                                              midbrain morphogenesis
## GO:0021547                                                                                                              midbrain-hindbrain boundary initiation
## GO:0021732                                                                                                              midbrain-hindbrain boundary maturation
## GO:0022004                                                                                     midbrain-hindbrain boundary maturation during brain development
## GO:0060156                                                                                                                                milk ejection reflex
## GO:0031959                                                                                                        mineralocorticoid receptor signaling pathway
## GO:0070843                                                                                                                         misfolded protein transport
## GO:0070716                                                       mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## GO:0072671                                                                               mitochondria-associated ubiquitin-dependent protein catabolic process
## GO:0033955                                                                                                                       mitochondrial DNA inheritance
## GO:2000827                                                                                                                      mitochondrial RNA surveillance
## GO:0070143                                                                                                            mitochondrial alanyl-tRNA aminoacylation
## GO:0070145                                                                                                       mitochondrial asparaginyl-tRNA aminoacylation
## GO:0006843                                                                                                       mitochondrial citrate transmembrane transport
## GO:0097551                                                                                                            mitochondrial double-strand break repair
## GO:0097552                                                                               mitochondrial double-strand break repair via homologous recombination
## GO:0070150                                                                                                            mitochondrial glycyl-tRNA aminoacylation
## GO:0090616                                                                                                                mitochondrial mRNA 3'-end processing
## GO:0097222                                                                                                                  mitochondrial mRNA polyadenylation
## GO:0035946                                                                                                                     mitochondrial mRNA surveillance
## GO:0045016                                                                                                 mitochondrial magnesium ion transmembrane transport
## GO:0035945                                                                                                                    mitochondrial ncRNA surveillance
## GO:0090144                                                                                                                 mitochondrial nucleoid organization
## GO:0072684                                                                                             mitochondrial tRNA 3'-trailer cleavage, endonucleolytic
## GO:0070899                                                                                                      mitochondrial tRNA wobble uridine modification
## GO:1990546                                                                                            mitochondrial tricarboxylic acid transmembrane transport
## GO:0070183                                                                                                      mitochondrial tryptophanyl-tRNA aminoacylation
## GO:0070184                                                                                                           mitochondrial tyrosyl-tRNA aminoacylation
## GO:0034642                                                                                                        mitochondrion migration along actin filament
## GO:0035695                                                                                                              mitophagy by induced vacuole formation
## GO:1902977                                                                                              mitotic DNA replication preinitiation complex assembly
## GO:1902979                                                                                                                 mitotic DNA replication termination
## GO:0000080                                                                                                                                    mitotic G1 phase
## GO:0000085                                                                                                                                    mitotic G2 phase
## GO:1903673                                                                                                                   mitotic cleavage furrow formation
## GO:1990386                                                                                                                  mitotic cleavage furrow ingression
## GO:0061780                                                                                                                             mitotic cohesin loading
## GO:1990758                                                                                                              mitotic sister chromatid biorientation
## GO:1990755                                                                                                        mitotic spindle microtubule depolymerization
## GO:1903087                                                                                                               mitotic spindle pole body duplication
## GO:0052336                                                                                                          modification by host of symbiont cell wall
## GO:0052187                                                                                                 modification by host of symbiont cellular component
## GO:0052183                                                                                                          modification by host of symbiont structure
## GO:0052333                                                           modification by organism of cell wall of other organism involved in symbiotic interaction
## GO:0052188                                                              modification of cellular component in other organism involved in symbiotic interaction
## GO:0052185                                                                       modification of structure of other organism involved in symbiotic interaction
## GO:0099564                                                                                modification of synaptic structure, modulating synaptic transmission
## GO:1990968                                                                                                          modulation by host of RNA binding by virus
## GO:1990969                                                                               modulation by host of viral RNA-binding transcription factor activity
## GO:0052255                                                      modulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052302                               modulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052552                                                       modulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052163                                                                              modulation by symbiont of defense-related host nitric oxide production
## GO:0085032                                                                                    modulation by symbiont of host I-kappaB kinase/NF-kappaB cascade
## GO:0052031                                                                                                     modulation by symbiont of host defense response
## GO:0052553                                                                                                      modulation by symbiont of host immune response
## GO:0052027                                                                                          modulation by symbiont of host signal transduction pathway
## GO:0044495                                                                                                      modulation of blood pressure in other organism
## GO:0044145                                                                             modulation of development of symbiont involved in interaction with host
## GO:0044501                                                                                                 modulation of signal transduction in other organism
## GO:0052250                                                               modulation of signal transduction in other organism involved in symbiotic interaction
## GO:0015689                                                                                                                             molybdate ion transport
## GO:0018315                                                                                      molybdenum incorporation into molybdenum-molybdopterin complex
## GO:0002280                                                                                                     monocyte activation involved in immune response
## GO:0016333                                                                                                              morphogenesis of follicular epithelium
## GO:0021837                                                                      motogenic signaling involved in postnatal olfactory bulb interneuron migration
## GO:0044041                                                                                                       multi-organism carbohydrate catabolic process
## GO:0044040                                                                                                       multi-organism carbohydrate metabolic process
## GO:0044037                                                                                            multi-organism cell wall macromolecule metabolic process
## GO:0150089                                                                                                                 multiple spine synapse organization
## GO:0150090                                                                                                multiple spine synapse organization, single dendrite
## GO:0042694                                                                                                                      muscle cell fate specification
## GO:0007518                                                                                                                         myoblast fate determination
## GO:0014844                                                                                     myoblast proliferation involved in skeletal muscle regeneration
## GO:0070246                                                                                                               natural killer cell apoptotic process
## GO:0110008                                                                                                                                 ncRNA deadenylation
## GO:0043630                                                                 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## GO:0044790                                                                                         negative regulation by host of viral release from host cell
## GO:0032013                                                                                              negative regulation of ARF protein signal transduction
## GO:2000984                                                                                                negative regulation of ATP citrate synthase activity
## GO:2000578                                                                 negative regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:1905290                                                                                                 negative regulation of CAMKK-AMPK signaling cascade
## GO:0045225                                                                                                     negative regulation of CD4 biosynthetic process
## GO:1900280                                                                                negative regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000565                                                                                negative regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1902163              negative regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0120154                                                                                                      negative regulation of ERBB4 signaling pathway
## GO:0070377                                                                                                                 negative regulation of ERK5 cascade
## GO:1902045                                                                                                        negative regulation of Fas signaling pathway
## GO:0045221                                                                                                    negative regulation of FasL biosynthetic process
## GO:0043105                                                                                                negative regulation of GTP cyclohydrolase I activity
## GO:0043002                                                                              negative regulation of Golgi to plasma membrane CFTR protein transport
## GO:1903720                                                                                                     negative regulation of I-kappaB phosphorylation
## GO:0034128                                                                       negative regulation of MyD88-independent toll-like receptor signaling pathway
## GO:0060262                                                                                            negative regulation of N-terminal protein palmitoylation
## GO:0051141                                                                                                      negative regulation of NK T cell proliferation
## GO:1905215                                                                                                                  negative regulation of RNA binding
## GO:0017055                                                             negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:1900260                                                                                   negative regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062026                                                              negative regulation of SCF-dependent proteasomal ubiquitin-dependent catabolic process
## GO:2000639                                                                                                      negative regulation of SREBP signaling pathway
## GO:1905045                                                                     negative regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002668                                                                                                                negative regulation of T cell anergy
## GO:0002626                                                                                   negative regulation of T cell antigen processing and presentation
## GO:2000524                                                                                                         negative regulation of T cell costimulation
## GO:2000408                                                                                                         negative regulation of T cell extravasation
## GO:0046014                                                                                             negative regulation of T cell homeostatic proliferation
## GO:0002853                                                              negative regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:0002841                                                                                negative regulation of T cell mediated immune response to tumor cell
## GO:0002665                                                                                                   negative regulation of T cell tolerance induction
## GO:2000518                                                                                                   negative regulation of T-helper 1 cell activation
## GO:1903940                                                                                                              negative regulation of TORC2 signaling
## GO:1903122                                                                                  negative regulation of TRAIL-activated apoptotic signaling pathway
## GO:1904240                                                                                    negative regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:0061358                                                                                                        negative regulation of Wnt protein secretion
## GO:2000057                                                              negative regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904723                                                                                         negative regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0014058                                                                                   negative regulation of acetylcholine secretion, neurotransmission
## GO:1901586                                                                                            negative regulation of acid-sensing ion channel activity
## GO:1902225                                                                                                            negative regulation of acrosome reaction
## GO:1904617                                                                                                                negative regulation of actin binding
## GO:1904530                                                                                                       negative regulation of actin filament binding
## GO:1904622                                                                                              negative regulation of actin-dependent ATPase activity
## GO:1905403                                                                  negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0002878                                                                        negative regulation of acute inflammatory response to non-antigenic stimulus
## GO:0060169                                                                                         negative regulation of adenosine receptor signaling pathway
## GO:0140194                                 negative regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904604                                                                             negative regulation of advanced glycation end-product receptor activity
## GO:1903631                                                                                               negative regulation of aminoacyl-tRNA ligase activity
## GO:2000798                                                                                           negative regulation of amniotic stem cell differentiation
## GO:2000180                                                                                                negative regulation of androgen biosynthetic process
## GO:1903743                                                                                       negative regulation of anterograde synaptic vesicle transport
## GO:1902613                                                                                     negative regulation of anti-Mullerian hormone signaling pathway
## GO:0002787                                                                                             negative regulation of antibacterial peptide production
## GO:1905035                                                                                            negative regulation of antifungal innate immune response
## GO:1904283                                            negative regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0008348                                                                                               negative regulation of antimicrobial humoral response
## GO:0002785                                                                                             negative regulation of antimicrobial peptide production
## GO:2000657                                                                                                       negative regulation of apolipoprotein binding
## GO:2000426                                                                                                     negative regulation of apoptotic cell clearance
## GO:1900082                                                                                                   negative regulation of arginine catabolic process
## GO:1905652                                                                                                         negative regulation of artery morphogenesis
## GO:0045769                                                                                                     negative regulation of asymmetric cell division
## GO:0048692                                                                                      negative regulation of axon extension involved in regeneration
## GO:2000986                                                                                                     negative regulation of behavioral fear response
## GO:1904864                                                                                            negative regulation of beta-catenin-TCF complex assembly
## GO:1903770                                                                                                  negative regulation of beta-galactosidase activity
## GO:1904171                                                                                                                negative regulation of bleb assembly
## GO:0110059                                                                                negative regulation of blood vessel endothelial cell differentiation
## GO:0031552                                                                negative regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0072096                                                                         negative regulation of branch elongation involved in ureteric bud branching
## GO:0072097                                                negative regulation of branch elongation involved in ureteric bud branching by BMP signaling pathway
## GO:0061048                                                                                     negative regulation of branching involved in lung morphogenesis
## GO:1903444                                                                                               negative regulation of brown fat cell differentiation
## GO:0070348                                                                                                 negative regulation of brown fat cell proliferation
## GO:1905913                                                                                    negative regulation of calcium ion export across plasma membrane
## GO:1903611                                                                                            negative regulation of calcium-dependent ATPase activity
## GO:0051042                                                                                       negative regulation of calcium-independent cell-cell adhesion
## GO:1903280                                                                                           negative regulation of calcium:sodium antiporter activity
## GO:1901296                                              negative regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000080                                 negative regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905067                                                                negative regulation of canonical Wnt signaling pathway involved in heart development
## GO:0060829                                negative regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905240                                                       negative regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:2000044                                                                                              negative regulation of cardiac cell fate specification
## GO:1901211                                                                                                    negative regulation of cardiac chamber formation
## GO:2000691                                                                                 negative regulation of cardiac muscle cell myoblast differentiation
## GO:1905305                                                                                                   negative regulation of cardiac myofibril assembly
## GO:2000723                                                                          negative regulation of cardiac vascular smooth muscle cell differentiation
## GO:1904413                                                                                                negative regulation of cardiac ventricle development
## GO:0009997                                                                                          negative regulation of cardioblast cell fate specification
## GO:0051945                                                                       negative regulation of catecholamine uptake involved in synaptic transmission
## GO:0106089                                                                             negative regulation of cell adhesion involved in sprouting angiogenesis
## GO:1904848                                                                                  negative regulation of cell chemotaxis to fibroblast growth factor
## GO:0060806                                                              negative regulation of cell differentiation involved in embryonic placenta development
## GO:1905934                                                                                                      negative regulation of cell fate determination
## GO:0060243                                                                                   negative regulation of cell growth involved in contact inhibition
## GO:0021822                                                       negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## GO:1903769                                                                                            negative regulation of cell proliferation in bone marrow
## GO:1904934                                                                                               negative regulation of cell proliferation in midbrain
## GO:2000607                                                                       negative regulation of cell proliferation involved in mesonephros development
## GO:1900387                                   negative regulation of cell-cell adhesion by negative regulation of transcription from RNA polymerase II promoter
## GO:0033242                                                                                             negative regulation of cellular amine catabolic process
## GO:2000283                                                                                     negative regulation of cellular amino acid biosynthetic process
## GO:2001030                                                                                                     negative regulation of cellular glucuronidation
## GO:0032848                                                                                                        negative regulation of cellular pH reduction
## GO:1900035                                                                                                    negative regulation of cellular response to heat
## GO:2001113                                                                       negative regulation of cellular response to hepatocyte growth factor stimulus
## GO:2000655                                                                                   negative regulation of cellular response to testosterone stimulus
## GO:1905892                                                                                            negative regulation of cellular response to thapsigargin
## GO:1905895                                                                                             negative regulation of cellular response to tunicamycin
## GO:1903723                                                                                                         negative regulation of centriole elongation
## GO:1903126                                                                                                 negative regulation of centriole-centriole cohesion
## GO:1903645                                                                                           negative regulation of chaperone-mediated protein folding
## GO:0071644                                                                                    negative regulation of chemokine (C-C motif) ligand 4 production
## GO:0090198                                                                                                          negative regulation of chemokine secretion
## GO:0060621                                                                                                           negative regulation of cholesterol import
## GO:0060695                                                                                             negative regulation of cholesterol transporter activity
## GO:0002875                                                                          negative regulation of chronic inflammatory response to antigenic stimulus
## GO:0002881                                                                      negative regulation of chronic inflammatory response to non-antigenic stimulus
## GO:1904326                                                                                      negative regulation of circadian sleep/wake cycle, wakefulness
## GO:1903249                                                                                              negative regulation of citrulline biosynthetic process
## GO:1905469                                                                                                 negative regulation of clathrin-coated pit assembly
## GO:0033342                                                                                                             negative regulation of collagen binding
## GO:0048698                                                                                    negative regulation of collateral sprouting in absence of injury
## GO:1903815                                                                                     negative regulation of collecting lymphatic vessel constriction
## GO:0045959                                                                                     negative regulation of complement activation, classical pathway
## GO:1904597                                                negative regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1903434                                                                                               negative regulation of constitutive secretory pathway
## GO:1901233                                                                             negative regulation of convergent extension involved in axis elongation
## GO:1904797                                                                                                        negative regulation of core promoter binding
## GO:0051460                                                                                                      negative regulation of corticotropin secretion
## GO:1900011                                                                            negative regulation of corticotropin-releasing hormone receptor activity
## GO:0051463                                                                                                           negative regulation of cortisol secretion
## GO:1904042                                                                                         negative regulation of cystathionine beta-synthase activity
## GO:0010607                                                                                    negative regulation of cytoplasmic mRNA processing body assembly
## GO:1900248                                                                                         negative regulation of cytoplasmic translational elongation
## GO:1904689                                                                                         negative regulation of cytoplasmic translational initiation
## GO:1903073                                                                                    negative regulation of death-inducing signaling complex assembly
## GO:2000509                                                                                                    negative regulation of dendritic cell chemotaxis
## GO:0002731                                                                                           negative regulation of dendritic cell cytokine production
## GO:2000706                                                                                                negative regulation of dense core granule biogenesis
## GO:1905414                                                                                                negative regulation of dense core granule exocytosis
## GO:0061185                                                                                                        negative regulation of dermatome development
## GO:2000971                                                                                                         negative regulation of detection of glucose
## GO:1905788                                                     negative regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:0044147                                                                    negative regulation of development of symbiont involved in interaction with host
## GO:0048086                                                                                                   negative regulation of developmental pigmentation
## GO:0051585                                                                            negative regulation of dopamine uptake involved in synaptic transmission
## GO:1901291                                                                       negative regulation of double-strand break repair via single-strand annealing
## GO:1905768                                                                                        negative regulation of double-stranded telomeric DNA binding
## GO:1904336                                                                                                    negative regulation of ductus arteriosus closure
## GO:0042666                                                                                           negative regulation of ectodermal cell fate specification
## GO:0051545                                                                                                 negative regulation of elastin biosynthetic process
## GO:0060311                                                                                                    negative regulation of elastin catabolic process
## GO:1904733                                                                                                   negative regulation of electron transfer activity
## GO:2001136                                                                                                          negative regulation of endocytic recycling
## GO:0032078                                                                                               negative regulation of endodeoxyribonuclease activity
## GO:1904979                                                                                                        negative regulation of endosome organization
## GO:1904988                                                                                                  negative regulation of endothelial cell activation
## GO:2000545                                                                      negative regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:1904905                                                                             negative regulation of endothelial cell-matrix adhesion via fibronectin
## GO:1904471                                                                                                         negative regulation of endothelin secretion
## GO:2000536                                                                                            negative regulation of entry of bacterium into host cell
## GO:0043310                                                                                                     negative regulation of eosinophil degranulation
## GO:2000420                                                                                                     negative regulation of eosinophil extravasation
## GO:2000795                                                                 negative regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:1905042                                                                                                      negative regulation of epithelium regeneration
## GO:0034119                                                                                                      negative regulation of erythrocyte aggregation
## GO:1902251                                                                                                negative regulation of erythrocyte apoptotic process
## GO:0034107                                                                                                        negative regulation of erythrocyte clearance
## GO:1904911                                                                                negative regulation of establishment of RNA localization to telomere
## GO:1904445                                                                                        negative regulation of establishment of Sertoli cell barrier
## GO:1903904                                                                                             negative regulation of establishment of T cell polarity
## GO:1904850                                                                            negative regulation of establishment of protein localization to telomere
## GO:0001100                                                                                                            negative regulation of exit from mitosis
## GO:1901202                                                                                                negative regulation of extracellular matrix assembly
## GO:0048074                                                                                                             negative regulation of eye pigmentation
## GO:1904736                                                                       negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:1903366                                                                                                                negative regulation of fear response
## GO:0110076                                                                                                                  negative regulation of ferroptosis
## GO:1904439                                                                                   negative regulation of ferrous iron import across plasma membrane
## GO:2000703                                       negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:1905943                                                                                     negative regulation of formation of growth cone in injured axon
## GO:1901194                                                                               negative regulation of formation of translation preinitiation complex
## GO:1903597                                                                                                        negative regulation of gap junction assembly
## GO:2000734                         negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:0003106                                                                                         negative regulation of glomerular filtration by angiotensin
## GO:2000212                                                                                                  negative regulation of glutamate metabolic process
## GO:2000486                                                                                                          negative regulation of glutamine transport
## GO:2000466                                                                                          negative regulation of glycogen (starch) synthase activity
## GO:1904227                                                                 negative regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0071656                                                                             negative regulation of granulocyte colony-stimulating factor production
## GO:0032685                                                                  negative regulation of granulocyte macrophage colony-stimulating factor production
## GO:0002632                                                                                                          negative regulation of granuloma formation
## GO:1904709                                                                                             negative regulation of granulosa cell apoptotic process
## GO:0061914                                                                             negative regulation of growth plate cartilage chondrocyte proliferation
## GO:0031283                                                                                                   negative regulation of guanylate cyclase activity
## GO:0061170                                                                                              negative regulation of hair follicle placode formation
## GO:1901320                                                                                                              negative regulation of heart induction
## GO:0003136                                                                           negative regulation of heart induction by canonical Wnt signaling pathway
## GO:1901208                                                                                                                negative regulation of heart looping
## GO:0001985                                   negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## GO:0031651                                                                                                              negative regulation of heat generation
## GO:0046986                                                                                              negative regulation of hemoglobin biosynthetic process
## GO:0061875                                                                                            negative regulation of hepatic stellate cell contraction
## GO:0070367                                                                                                   negative regulation of hepatocyte differentiation
## GO:0048178                                                                                negative regulation of hepatocyte growth factor biosynthetic process
## GO:0032686                                                                                          negative regulation of hepatocyte growth factor production
## GO:1902203                                                                          negative regulation of hepatocyte growth factor receptor signaling pathway
## GO:1990787                                                                                      negative regulation of hh target transcription factor activity
## GO:0010987                                                                                  negative regulation of high-density lipoprotein particle clearance
## GO:0071441                                                                                                   negative regulation of histone H3-K14 acetylation
## GO:1901675                                                                                                   negative regulation of histone H3-K27 acetylation
## GO:2001161                                                                                                   negative regulation of histone H3-K79 methylation
## GO:2000616                                                                                                    negative regulation of histone H3-K9 acetylation
## GO:2000296                                                                                          negative regulation of hydrogen peroxide catabolic process
## GO:0045355                                                                                        negative regulation of interferon-alpha biosynthetic process
## GO:0045083                                                                                          negative regulation of interleukin-12 biosynthetic process
## GO:1902206                                                                                     negative regulation of interleukin-2-mediated signaling pathway
## GO:0032712                                                                                                     negative regulation of interleukin-3 production
## GO:0045403                                                                                           negative regulation of interleukin-4 biosynthetic process
## GO:1902215                                                                                     negative regulation of interleukin-4-mediated signaling pathway
## GO:2000663                                                                                                      negative regulation of interleukin-5 secretion
## GO:1902939                                                                    negative regulation of intracellular calcium activated chloride channel activity
## GO:0032384                                                                                          negative regulation of intracellular cholesterol transport
## GO:0032378                                                                                                negative regulation of intracellular lipid transport
## GO:0032381                                                                                               negative regulation of intracellular sterol transport
## GO:1905366                                                                                               negative regulation of intralumenal vesicle formation
## GO:1902239                                    negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1904213                                                                                               negative regulation of iodide transmembrane transport
## GO:1904202                                                                                                             negative regulation of iodide transport
## GO:0045827                                                                                                 negative regulation of isoprenoid metabolic process
## GO:0048297                                                                                            negative regulation of isotype switching to IgA isotypes
## GO:2000357                                                                                    negative regulation of kidney smooth muscle cell differentiation
## GO:1903488                                                                                                                    negative regulation of lactation
## GO:1902823                                                                                          negative regulation of late endosome to lysosome transport
## GO:1902747                                                                                              negative regulation of lens fiber cell differentiation
## GO:1903634                                                                                                 negative regulation of leucine-tRNA ligase activity
## GO:1904998                                                                              negative regulation of leukocyte adhesion to arterial endothelial cell
## GO:0051352                                                                                                              negative regulation of ligase activity
## GO:1900131                                                                                                                negative regulation of lipid binding
## GO:0110114                                                                                                   negative regulation of lipid transporter activity
## GO:0060588                                                                                                  negative regulation of lipoprotein lipid oxidation
## GO:0034443                                                                                                        negative regulation of lipoprotein oxidation
## GO:1904060                                                                                                             negative regulation of locomotor rhythm
## GO:1905596                                                                            negative regulation of low-density lipoprotein particle receptor binding
## GO:1905598                                                                                    negative regulation of low-density lipoprotein receptor activity
## GO:0061767                                                                                                          negative regulation of lung blood pressure
## GO:0002912                                                                                                            negative regulation of lymphocyte anergy
## GO:1905672                                                                                                        negative regulation of lysosome organization
## GO:1904572                                                                                                                 negative regulation of mRNA binding
## GO:1904766                                                                                            negative regulation of macroautophagy by TORC1 signaling
## GO:0002617                                                                               negative regulation of macrophage antigen processing and presentation
## GO:1901257                                                                              negative regulation of macrophage colony-stimulating factor production
## GO:0034240                                                                                                            negative regulation of macrophage fusion
## GO:2000719                                                                negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905604                                                                           negative regulation of maintenance of permeability of blood-brain barrier
## GO:0060377                                                                                                    negative regulation of mast cell differentiation
## GO:1904145                                                                     negative regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1900826                                                          negative regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1902631                                                                                                   negative regulation of membrane hyperpolarization
## GO:1905032                                                          negative regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905025                                              negative regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1903526                                                                                                          negative regulation of membrane tubulation
## GO:0043381                                                                                                negative regulation of memory T cell differentiation
## GO:0061296                                             negative regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0072200                                                                negative regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000005                                                                                      negative regulation of metanephric S-shaped body morphogenesis
## GO:2000007                                                                                  negative regulation of metanephric comma-shaped body morphogenesis
## GO:0072302                                                                          negative regulation of metanephric glomerular mesangial cell proliferation
## GO:0072299                                                                                           negative regulation of metanephric glomerulus development
## GO:2000590                                                                                       negative regulation of metanephric mesenchymal cell migration
## GO:2000626                                                                                                      negative regulation of miRNA catabolic process
## GO:1904140                                                                                                    negative regulation of microglial cell migration
## GO:1903697                                                                                                         negative regulation of microvillus assembly
## GO:0061886                                                                                       negative regulation of mini excitatory postsynaptic potential
## GO:1905447                                                                       negative regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1902957                                                                         negative regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0070130                                                                                                    negative regulation of mitochondrial translation
## GO:1904924                                                                        negative regulation of mitophagy in response to mitochondrial depolarization
## GO:1904290                                                                                                negative regulation of mitotic DNA damage checkpoint
## GO:1903464                                                                                           negative regulation of mitotic cell cycle DNA replication
## GO:2000438                                                                                                       negative regulation of monocyte extravasation
## GO:1904113                                                                                                      negative regulation of muscle filament sliding
## GO:1905454                                                                                      negative regulation of myeloid progenitor cell differentiation
## GO:2000818                                                                                                       negative regulation of myoblast proliferation
## GO:2000502                                                                                               negative regulation of natural killer cell chemotaxis
## GO:0002728                                                                                      negative regulation of natural killer cell cytokine production
## GO:0043322                                                                                            negative regulation of natural killer cell degranulation
## GO:0072183                                                                               negative regulation of nephron tubule epithelial cell differentiation
## GO:0090301                                                                                                       negative regulation of neural crest formation
## GO:0061855                                                                                                         negative regulation of neuroblast migration
## GO:1902997                                                                                              negative regulation of neurofibrillary tangle assembly
## GO:1904800                                                                                                            negative regulation of neuron remodeling
## GO:0032900                                                                                                      negative regulation of neurotrophin production
## GO:2000429                                                                                                       negative regulation of neutrophil aggregation
## GO:1900124                                                                                              negative regulation of nodal receptor complex assembly
## GO:1903996                                                                       negative regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0051622                                                                                                        negative regulation of norepinephrine uptake
## GO:1902576                                                                                           negative regulation of nuclear cell cycle DNA replication
## GO:0070429                                                     negative regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0070446                                                                                     negative regulation of oligodendrocyte progenitor proliferation
## GO:0090291                                                                                                     negative regulation of osteoclast proliferation
## GO:0060280                                                                                                                    negative regulation of ovulation
## GO:1902277                                                                                                 negative regulation of pancreatic amylase secretion
## GO:2000230                                                                                       negative regulation of pancreatic stellate cell proliferation
## GO:1905090                                         negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0060407                                                                                                              negative regulation of penile erection
## GO:0120094                                                                                                negative regulation of peptidyl-lysine crotonylation
## GO:1900085                                                                                        negative regulation of peptidyl-tyrosine autophosphorylation
## GO:2001246                                                                                     negative regulation of phosphatidylcholine biosynthetic process
## GO:2001145                                                              negative regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1900737                                                      negative regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1904006                                                                                                     negative regulation of phospholipase D activity
## GO:2000151                                                 negative regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000162                                                  negative regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000160                                                                 negative regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000168                                                                 negative regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000164                                                         negative regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000166                                                           negative regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000149                                                    negative regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903889                                                                                         negative regulation of plant epidermal cell differentiation
## GO:1905422                                                                                                    negative regulation of plant organ morphogenesis
## GO:0071802                                                                                                            negative regulation of podosome assembly
## GO:1904246                                                                                  negative regulation of polynucleotide adenylyltransferase activity
## GO:0050928                                                                                                          negative regulation of positive chemotaxis
## GO:1902233                                                                                             negative regulation of positive thymic T cell selection
## GO:1905875                                                                                            negative regulation of postsynaptic density organization
## GO:1901627                                                                                           negative regulation of postsynaptic membrane organization
## GO:2000632                                                                                                         negative regulation of pre-miRNA processing
## GO:1905607                                                                                                          negative regulation of presynapse assembly
## GO:1901630                                                                                            negative regulation of presynaptic membrane organization
## GO:2000635                                                                                                     negative regulation of primary miRNA processing
## GO:1903704                                                                             negative regulation of production of siRNA involved in RNA interference
## GO:1902721                                                                                                          negative regulation of prolactin secretion
## GO:0061944                                                                                            negative regulation of protein K48-linked ubiquitination
## GO:0010734                                                                                                    negative regulation of protein glutathionylation
## GO:1903060                                                                                                           negative regulation of protein lipidation
## GO:1904777                                                                                          negative regulation of protein localization to cell cortex
## GO:1905872                                                                                    negative regulation of protein localization to cell leading edge
## GO:1903568                                                                                     negative regulation of protein localization to ciliary membrane
## GO:1905667                                                                                             negative regulation of protein localization to endosome
## GO:1905341                                                                                          negative regulation of protein localization to kinetochore
## GO:0150033                                                                                             negative regulation of protein localization to lysosome
## GO:1904750                                                                                            negative regulation of protein localization to nucleolus
## GO:1903217                                                            negative regulation of protein processing involved in protein targeting to mitochondrion
## GO:1905183                                                                                negative regulation of protein serine/threonine phosphatase activity
## GO:1904985                                                                                             negative regulation of quinolinate biosynthetic process
## GO:2000233                                                                                                              negative regulation of rRNA processing
## GO:1903910                                                                                                          negative regulation of receptor clustering
## GO:1902684                                                                                             negative regulation of receptor localization to synapse
## GO:1905601                                                              negative regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0003083                                                                                                  negative regulation of renal output by angiotensin
## GO:1903403                                                                                                    negative regulation of renal phosphate excretion
## GO:1900134                                                                                            negative regulation of renin secretion into blood stream
## GO:2001229                                                                                                  negative regulation of response to gamma radiation
## GO:0060226                                                                                            negative regulation of retinal cone cell fate commitment
## GO:0090260                                                                                          negative regulation of retinal ganglion cell axon guidance
## GO:1900053                                                                                           negative regulation of retinoic acid biosynthetic process
## GO:1905433                                                                          negative regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:1902891                                                                                                         negative regulation of root hair elongation
## GO:0060299                                                                                                       negative regulation of sarcomere organization
## GO:1904570                                                                                                 negative regulation of selenocysteine incorporation
## GO:1904574                                                                                    negative regulation of selenocysteine insertion sequence binding
## GO:0048174                                                                                      negative regulation of short-term neuronal synaptic plasticity
## GO:1905513                                                                                             negative regulation of short-term synaptic potentiation
## GO:1904394                                                                       negative regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:1904205                                                                                                  negative regulation of skeletal muscle hypertrophy
## GO:0043417                                                                                          negative regulation of skeletal muscle tissue regeneration
## GO:1905900                                                                                             negative regulation of smooth muscle tissue development
## GO:1903277                                                                                     negative regulation of sodium ion export across plasma membrane
## GO:2000119                                                                                         negative regulation of sodium-dependent phosphate transport
## GO:1903407                                                                                  negative regulation of sodium:potassium-exchanging ATPase activity
## GO:0090275                                                                                                       negative regulation of somatostatin secretion
## GO:1902491                                                                                                           negative regulation of sperm capacitation
## GO:2000910                                                                                                                negative regulation of sterol import
## GO:0061106                                                                                  negative regulation of stomach neuroendocrine cell differentiation
## GO:1901340                                                                                      negative regulation of store-operated calcium channel activity
## GO:0062030                                                                                                      negative regulation of stress granule assembly
## GO:0032223                                                                                           negative regulation of synaptic transmission, cholinergic
## GO:2000808                                                                                                  negative regulation of synaptic vesicle clustering
## GO:1900243                                                                                                 negative regulation of synaptic vesicle endocytosis
## GO:1905662                                                                                negative regulation of telomerase RNA reverse transcriptase activity
## GO:0032208                                                                                       negative regulation of telomere maintenance via recombination
## GO:1901581                                                                         negative regulation of telomeric RNA transcription from RNA pol II promoter
## GO:0061369                                                                                        negative regulation of testicular blood vessel morphogenesis
## GO:2000844                                                                                                       negative regulation of testosterone secretion
## GO:0098736                                                                                               negative regulation of the force of heart contraction
## GO:0003108                                                                            negative regulation of the force of heart contraction by chemical signal
## GO:0001986               negative regulation of the force of heart contraction involved in baroreceptor response to increased systemic arterial blood pressure
## GO:1903124                                                                                              negative regulation of thioredoxin peroxidase activity
## GO:1903125                                                        negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## GO:0050760                                                                                    negative regulation of thymidylate synthase biosynthetic process
## GO:2000399                                                                                                        negative regulation of thymocyte aggregation
## GO:1904442                                                                                  negative regulation of thyroid gland epithelial cell proliferation
## GO:0051796                                                                                                            negative regulation of timing of catagen
## GO:0034148                                                                                       negative regulation of toll-like receptor 5 signaling pathway
## GO:0061986                                                                                                     negative regulation of transcription by glucose
## GO:2001208                                                                                 negative regulation of transcription elongation by RNA polymerase I
## GO:0061987                                                                     negative regulation of transcription from RNA polymerase II promoter by glucose
## GO:0010768                                           negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:1901227                                                  negative regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0051038                                                                                 negative regulation of transcription involved in meiotic cell cycle
## GO:1904188                                                                                         negative regulation of transformation of host cell by virus
## GO:1901389                                                                                   negative regulation of transforming growth factor beta activation
## GO:0032913                                                                                  negative regulation of transforming growth factor beta3 production
## GO:0032938                                                                                  negative regulation of translation in response to oxidative stress
## GO:0010868                                                                                            negative regulation of triglyceride biosynthetic process
## GO:2000077                                                                                           negative regulation of type B pancreatic cell development
## GO:0001811                                                                                                      negative regulation of type I hypersensitivity
## GO:0051511                                                                                                   negative regulation of unidimensional cell growth
## GO:2000062                                                                                    negative regulation of ureter smooth muscle cell differentiation
## GO:1903336                                                                                                           negative regulation of vacuolar transport
## GO:0061044                                                                                                       negative regulation of vascular wound healing
## GO:1901609                                                                                          negative regulation of vesicle transport along microtubule
## GO:0070351                                                                                                 negative regulation of white fat cell proliferation
## GO:0071584                                                                                                negative regulation of zinc ion transmembrane import
## GO:0035849                                                                                                                             nephric duct elongation
## GO:0021682                                                                                                                                    nerve maturation
## GO:0014036                                                                                                                neural crest cell fate specification
## GO:0003147                                                                                             neural crest cell migration involved in heart formation
## GO:1903045                                                                      neural crest cell migration involved in sympathetic nervous system development
## GO:0021503                                                                                                                                 neural fold bending
## GO:0021990                                                                                                                              neural plate formation
## GO:0021998                                                                                                           neural plate mediolateral regionalization
## GO:0097115                                                                                       neurexin clustering involved in presynaptic membrane assembly
## GO:0060234                                                                                                                             neuroblast delamination
## GO:0014017                                                                                                                          neuroblast fate commitment
## GO:0007400                                                                                                                       neuroblast fate determination
## GO:0098529                                                                                           neuromuscular junction development, skeletal muscle fiber
## GO:0106028                                                                                                                        neuron projection retraction
## GO:0061837                                                                                                                             neuropeptide processing
## GO:0099627                                                                                                                     neurotransmitter receptor cycle
## GO:0019357                                                                                                          nicotinate nucleotide biosynthetic process
## GO:0046497                                                                                                             nicotinate nucleotide metabolic process
## GO:0019358                                                                                                                       nicotinate nucleotide salvage
## GO:2001142                                                                                                                                nicotinate transport
## GO:0060659                                                                                                                             nipple sheath formation
## GO:0042128                                                                                                                                nitrate assimilation
## GO:0043602                                                                                                                           nitrate catabolic process
## GO:0015706                                                                                                                                   nitrate transport
## GO:0046210                                                                                                                      nitric oxide catabolic process
## GO:0038060                                                                                                        nitric oxide-cGMP-mediated signaling pathway
## GO:0015707                                                                                                                                   nitrite transport
## GO:0090294                                                                                                     nitrogen catabolite activation of transcription
## GO:0001080                                                                     nitrogen catabolite activation of transcription from RNA polymerase II promoter
## GO:0090295                                                                                                     nitrogen catabolite repression of transcription
## GO:0001081                                                                     nitrogen catabolite repression of transcription from RNA polymerase II promoter
## GO:0038099                                                                                                                     nodal receptor complex assembly
## GO:1905438                                                        non-canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0098038                                                                                                         non-replicative transposition, DNA-mediated
## GO:0070651                                                                                                                            nonfunctional rRNA decay
## GO:0046204                                                                                                                    nor-spermidine metabolic process
## GO:0003359                                                                                                                noradrenergic neuron fate commitment
## GO:0060035                                                                                                                          notochord cell development
## GO:0060034                                                                                                                      notochord cell differentiation
## GO:1902317                                                                                                                 nuclear DNA replication termination
## GO:0030264                                                                                          nuclear fragmentation involved in apoptotic nuclear change
## GO:0071045                                                                                                              nuclear histone mRNA catabolic process
## GO:0071765                                                                                                                 nuclear inner membrane organization
## GO:0071039                                                                                             nuclear polyadenylation-dependent CUT catabolic process
## GO:0071040                                                                            nuclear polyadenylation-dependent antisense transcript catabolic process
## GO:0071037                                                                                           nuclear polyadenylation-dependent snRNA catabolic process
## GO:0071036                                                                                          nuclear polyadenylation-dependent snoRNA catabolic process
## GO:0070478                                                            nuclear-transcribed mRNA catabolic process, 3'-5' exonucleolytic nonsense-mediated decay
## GO:0070481                                                                                          nuclear-transcribed mRNA catabolic process, non-stop decay
## GO:0090143                                                                                                                               nucleoid organization
## GO:1990700                                                                                                                    nucleolar chromatin organization
## GO:0007576                                                                                                                             nucleolar fragmentation
## GO:0006294                                                                                            nucleotide-excision repair, preincision complex assembly
## GO:0021768                                                                                                                       nucleus accumbens development
## GO:0071678                                                                                                                        olfactory bulb axon guidance
## GO:0021627                                                                                                                       olfactory nerve morphogenesis
## GO:0021629                                                                                                             olfactory nerve structural organization
## GO:0140205                                                                                                          oligopeptide import across plasma membrane
## GO:0070267                                                                                                                                             oncosis
## GO:0036372                                                                                                                                     opsin transport
## GO:0061360                                                                                                                           optic chiasma development
## GO:0003408                                                                                         optic cup formation involved in camera-type eye development
## GO:0003409                                                                                                                   optic cup structural organization
## GO:0021634                                                                                                                               optic nerve formation
## GO:0101027                                                                                                                     optical nerve axon regeneration
## GO:0007634                                                                                                                                optokinetic behavior
## GO:0006592                                                                                                                      ornithine biosynthetic process
## GO:0006593                                                                                                                         ornithine catabolic process
## GO:0036179                                                                                                                               osteoclast maturation
## GO:1905040                                                                                                                            otic placode development
## GO:0072060                                                                                                         outer medullary collecting duct development
## GO:0033609                                                                                                                           oxalate metabolic process
## GO:0070407                                                                                                       oxidation-dependent protein catabolic process
## GO:0071615                                                                                                                              oxidative deethylation
## GO:0150024                                                                                                 oxidised low-density lipoprotein particle clearance
## GO:0022013                                                                                                             pallium cell proliferation in forebrain
## GO:0003322                                                                                                                       pancreatic A cell development
## GO:0003311                                                                                                                   pancreatic D cell differentiation
## GO:0090104                                                                                                             pancreatic epsilon cell differentiation
## GO:1990747                                                                                                                    pancreatic trypsinogen secretion
## GO:0015887                                                                                                                pantothenate transmembrane transport
## GO:1990227                                                                                                                      paranodal junction maintenance
## GO:0048352                                                                                                           paraxial mesoderm structural organization
## GO:0007225                                                                                                                           patched ligand maturation
## GO:0042316                                                                                                                        penicillin metabolic process
## GO:0019527                                                                                                                          pentitol catabolic process
## GO:0019519                                                                                                                          pentitol metabolic process
## GO:0001519                                                                                                                                   peptide amidation
## GO:0002503                                                                                          peptide antigen assembly with MHC class II protein complex
## GO:0050823                                                                                                                       peptide antigen stabilization
## GO:0046968                                                                                                                           peptide antigen transport
## GO:0050822                                                                                                                               peptide stabilization
## GO:0018194                                                                                                                       peptidyl-alanine modification
## GO:0036527                                                                                                                       peptidyl-arginine deglycation
## GO:0030961                                                                                                                     peptidyl-arginine hydroxylation
## GO:0019918                                                                                     peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## GO:0042265                                                                                                                   peptidyl-asparagine hydroxylation
## GO:1990938                                                                                                          peptidyl-aspartic acid autophosphorylation
## GO:0018217                                                                                                              peptidyl-aspartic acid phosphorylation
## GO:0036526                                                                                                                       peptidyl-cysteine deglycation
## GO:0098822                                                                                             peptidyl-cysteine modification to L-cysteine persulfide
## GO:0018424                                                                                                        peptidyl-glutamic acid poly-ADP-ribosylation
## GO:0035971                                                                                                                peptidyl-histidine dephosphorylation
## GO:0036138                                                                                                                    peptidyl-histidine hydroxylation
## GO:0018021                                                                                                                      peptidyl-histidine methylation
## GO:0140067                                                                                                                        peptidyl-lysine butyrylation
## GO:0036528                                                                                                                         peptidyl-lysine deglycation
## GO:0036047                                                                                                                      peptidyl-lysine demalonylation
## GO:0036049                                                                                                                     peptidyl-lysine desuccinylation
## GO:0018395                                                                                                 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## GO:0061921                                                                                                                      peptidyl-lysine propionylation
## GO:0018400                                                                                               peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## GO:0018160                                                                                                              peptidyl-pyrromethane cofactor linkage
## GO:0018191                                                                                                                       peptidyl-serine octanoylation
## GO:1990579                                                                                                           peptidyl-serine trans-autophosphorylation
## GO:0002451                                                                                                               peripheral B cell tolerance induction
## GO:0036250                                                                                                              peroxisome transport along microtubule
## GO:0090389                                                                                      phagosome-lysosome fusion involved in apoptotic cell clearance
## GO:0042443                                                                                                                  phenylethylamine metabolic process
## GO:0036148                                                                                                          phosphatidylglycerol acyl-chain remodeling
## GO:1904562                                                                                                  phosphatidylinositol 5-phosphate metabolic process
## GO:0036149                                                                                                          phosphatidylinositol acyl-chain remodeling
## GO:0097045                                                                                                       phosphatidylserine exposure on blood platelet
## GO:0035644                                                                                                                 phosphoanandamide dephosphorylation
## GO:0071882                                                                                    phospholipase C-activating adrenergic receptor signaling pathway
## GO:0030845                                                                             phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## GO:0071619                                                                            phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0071602                                                                                                               phytosphingosine biosynthetic process
## GO:0006671                                                                                                                  phytosphingosine metabolic process
## GO:0043480                                                                                                                     pigment accumulation in tissues
## GO:0043324                                                                                    pigment metabolic process involved in developmental pigmentation
## GO:0043474                                                                                                  pigment metabolic process involved in pigmentation
## GO:0090627                                                                                                                plant epidermal cell differentiation
## GO:0090558                                                                                                                         plant epidermis development
## GO:0099402                                                                                                                             plant organ development
## GO:1905392                                                                                                                           plant organ morphogenesis
## GO:0044858                                                                                                                   plasma membrane raft polarization
## GO:0002470                                                                                     plasmacytoid dendritic cell antigen processing and presentation
## GO:0036345                                                                                                                                 platelet maturation
## GO:0070462                                                                                                      plus-end specific microtubule depolymerization
## GO:0106047                                                                                                                             polyamine deacetylation
## GO:0098507                                                                                                                 polynucleotide 5' dephosphorylation
## GO:0015774                                                                                                                            polysaccharide transport
## GO:0070845                                                                                                       polyubiquitinated misfolded protein transport
## GO:0070844                                                                                                                 polyubiquitinated protein transport
## GO:0043947                                                                                          positive regulation by host of symbiont catalytic activity
## GO:0052510                                             positive regulation by organism of defense response of other organism involved in symbiotic interaction
## GO:0052345                      positive regulation by organism of defense-related nitric oxide production in other organism involved in symbiotic interaction
## GO:0052555                                              positive regulation by organism of immune response of other organism involved in symbiotic interaction
## GO:0052347                                                                     positive regulation by symbiont of defense-related host nitric oxide production
## GO:0052509                                                                                            positive regulation by symbiont of host defense response
## GO:0052556                                                                                             positive regulation by symbiont of host immune response
## GO:0043128                                                                                     positive regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061903                                                                                     positive regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090216                                                                         positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:1903893                                                                                      positive regulation of ATF6-mediated unfolded protein response
## GO:1903082                                                                                positive regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:1905291                                                                                                 positive regulation of CAMKK-AMPK signaling cascade
## GO:2000560                                                                                                    positive regulation of CD24 biosynthetic process
## GO:0032834                        positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1900281                                                                                positive regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000350                                                                                                       positive regulation of CD40 signaling pathway
## GO:2000454                                                                      positive regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1905920                                                                                                     positive regulation of CoA-transferase activity
## GO:1902546                                                                                                   positive regulation of DNA N-glycosylase activity
## GO:2000003                                                                                                        positive regulation of DNA damage checkpoint
## GO:1904877                                                                                                          positive regulation of DNA ligase activity
## GO:0060383                                                                                                        positive regulation of DNA strand elongation
## GO:0060566                                                                                     positive regulation of DNA-templated transcription, termination
## GO:1905580                                                                                                      positive regulation of ERBB3 signaling pathway
## GO:1904022                                                                                   positive regulation of G protein-coupled receptor internalization
## GO:1903452                                                                                                          positive regulation of G1 to G0 transition
## GO:0071660                                                                                                             positive regulation of IP-10 production
## GO:1905589                                                                                     positive regulation of L-arginine import across plasma membrane
## GO:1903197                                                                                                  positive regulation of L-dopa biosynthetic process
## GO:1903200                                                                                                positive regulation of L-dopa decarboxylase activity
## GO:1905010                                                                                       positive regulation of L-lysine import across plasma membrane
## GO:1903007                                                                                       positive regulation of Lys63-specific deubiquitinase activity
## GO:2000761                                                                                       positive regulation of N-terminal peptidyl-lysine acetylation
## GO:1902690                                                                                                        positive regulation of NAD metabolic process
## GO:1900370                                                                                                             positive regulation of RNA interference
## GO:1904477                                                                                                           positive regulation of Ras GTPase binding
## GO:2001108                                                                               positive regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0035543                                                                                                       positive regulation of SNARE complex assembly
## GO:2000640                                                                                                      positive regulation of SREBP signaling pathway
## GO:1903755                                                                                                    positive regulation of SUMO transferase activity
## GO:1904268                                                                                                      positive regulation of Schwann cell chemotaxis
## GO:0010625                                                                                                   positive regulation of Schwann cell proliferation
## GO:2001190                  positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0042103                                                                                             positive regulation of T cell homeostatic proliferation
## GO:2000330                                                                                          positive regulation of T-helper 17 cell lineage commitment
## GO:0045556                                                                                                   positive regulation of TRAIL biosynthetic process
## GO:0060804                                                                               positive regulation of Wnt signaling pathway by BMP signaling pathway
## GO:0009789                                                                                    positive regulation of abscisic acid-activated signaling pathway
## GO:1905923                                                                                           positive regulation of acetylcholine biosynthetic process
## GO:1904699                                                                                                    positive regulation of acinar cell proliferation
## GO:1904618                                                                                                                positive regulation of actin binding
## GO:1904531                                                                                                       positive regulation of actin filament binding
## GO:1903920                                                                                                      positive regulation of actin filament severing
## GO:1905404                                                                  positive regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:1905676                                                                                              positive regulation of adaptive immune memory response
## GO:0140196                                 positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904992                                                             positive regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900731                                                               positive regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1904605                                                                             positive regulation of advanced glycation end-product receptor activity
## GO:2001250                                                                                                   positive regulation of ammonia assimilation cycle
## GO:2000836                                                                                                           positive regulation of androgen secretion
## GO:0061881                                                                                positive regulation of anterograde axonal transport of mitochondrion
## GO:0006963                                                                                   positive regulation of antibacterial peptide biosynthetic process
## GO:0001815                                                                                     positive regulation of antibody-dependent cellular cytotoxicity
## GO:0002591                                                       positive regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002807                                                                                   positive regulation of antimicrobial peptide biosynthetic process
## GO:1904831                                                                                    positive regulation of aortic smooth muscle cell differentiation
## GO:0150072                                                                                                            positive regulation of arginase activity
## GO:1904450                                                                                                          positive regulation of aspartate secretion
## GO:0061890                                                                                                         positive regulation of astrocyte activation
## GO:2000464                                                                                                         positive regulation of astrocyte chemotaxis
## GO:0045770                                                                                                     positive regulation of asymmetric cell division
## GO:1903949                                                                                  positive regulation of atrial cardiac muscle cell action potential
## GO:1905128                                                                                              positive regulation of axo-dendritic protein transport
## GO:0006965                                         positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:0044497                                                                                             positive regulation of blood pressure in other organism
## GO:0070349                                                                                                 positive regulation of brown fat cell proliferation
## GO:1904364                                                                                                         positive regulation of calcitonin secretion
## GO:1902082                                                                               positive regulation of calcium ion import into sarcoplasmic reticulum
## GO:1903235                                                                         positive regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:0046587                                                                                         positive regulation of calcium-dependent cell-cell adhesion
## GO:0051041                                                                                       positive regulation of calcium-independent cell-cell adhesion
## GO:1901297                                              positive regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000081                                 positive regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905068                                                                positive regulation of canonical Wnt signaling pathway involved in heart development
## GO:1903676                                                                                       positive regulation of cap-dependent translational initiation
## GO:1903781                                                                                                           positive regulation of cardiac conduction
## GO:0062000                                                                                positive regulation of cardiac endothelial to mesenchymal transition
## GO:0055020                                                                                             positive regulation of cardiac muscle fiber development
## GO:1904414                                                                                                positive regulation of cardiac ventricle development
## GO:1905062                                                                                                    positive regulation of cardioblast proliferation
## GO:0043946                                                       positive regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0010650                                                                                    positive regulation of cell communication by electrical coupling
## GO:1905917                                                                        positive regulation of cell differentiation involved in phenotypic switching
## GO:1904935                                                                                               positive regulation of cell proliferation in midbrain
## GO:0003251                                                                     positive regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901964                                                                   positive regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0045795                                                                                                                  positive regulation of cell volume
## GO:2000284                                                                                     positive regulation of cellular amino acid biosynthetic process
## GO:2001031                                                                                                     positive regulation of cellular glucuronidation
## GO:1905959                                                                                                 positive regulation of cellular response to alcohol
## GO:1900036                                                                                                    positive regulation of cellular response to heat
## GO:0002897                                                                                           positive regulation of central B cell tolerance induction
## GO:0002648                                                                                                  positive regulation of central tolerance induction
## GO:1904716                                                                                                 positive regulation of chaperone-mediated autophagy
## GO:0071654                                                                                    positive regulation of chemokine (C-C motif) ligand 1 production
## GO:1903886                                                                                   positive regulation of chemokine (C-C motif) ligand 20 production
## GO:0070101                                                                                         positive regulation of chemokine-mediated signaling pathway
## GO:1904367                                                                                                                 positive regulation of chemokinesis
## GO:1904056                                                                                                  positive regulation of cholangiocyte proliferation
## GO:1902771                                                                                         positive regulation of choline O-acetyltransferase activity
## GO:0031940                                                                                              positive regulation of chromatin silencing at telomere
## GO:1904501                                                                              positive regulation of chromatin-mediated maintenance of transcription
## GO:0002882                                                                      positive regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090321                                                                                                positive regulation of chylomicron remnant clearance
## GO:0090319                                                                                                       positive regulation of chylomicron remodeling
## GO:0003353                                                                                                              positive regulation of cilium movement
## GO:1905309                                                                                                              positive regulation of cohesin loading
## GO:0033343                                                                                                             positive regulation of collagen binding
## GO:1903816                                                                                     positive regulation of collecting lymphatic vessel constriction
## GO:1903661                                                                                            positive regulation of complement-dependent cytotoxicity
## GO:1903435                                                                                               positive regulation of constitutive secretory pathway
## GO:2000066                                                                                                positive regulation of cortisol biosynthetic process
## GO:1902161                                                                                 positive regulation of cyclic nucleotide-gated ion channel activity
## GO:2001272                                                positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0060470                                                               positive regulation of cytosolic calcium ion concentration involved in egg activation
## GO:1903629                                                                                                  positive regulation of dUTP diphosphatase activity
## GO:1901835                                                              positive regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:2000549                                                                                             positive regulation of dendritic cell dendrite assembly
## GO:1905415                                                                                                positive regulation of dense core granule exocytosis
## GO:1902955                                                                               positive regulation of early endosome to recycling endosome transport
## GO:0140051                                                                                positive regulation of endocardial cushion to mesenchymal transition
## GO:2000802                                              positive regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903917                                                            positive regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1904980                                                                                                        positive regulation of endosome organization
## GO:1905751                                                                                positive regulation of endosome to plasma membrane protein transport
## GO:1904472                                                                                                         positive regulation of endothelin secretion
## GO:1905043                                                                                                      positive regulation of epithelium regeneration
## GO:0034120                                                                                                      positive regulation of erythrocyte aggregation
## GO:0061931                                                                                                      positive regulation of erythrocyte enucleation
## GO:2000784                                                                         positive regulation of establishment of cell polarity regulating cell shape
## GO:2000863                                                                                                           positive regulation of estrogen secretion
## GO:1905537                                                                 positive regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904651                                                                                                   positive regulation of fat cell apoptotic process
## GO:1904440                                                                                   positive regulation of ferrous iron import across plasma membrane
## GO:2000415                                                                                    positive regulation of fibronectin-dependent thymocyte migration
## GO:0120183                                                                                                   positive regulation of focal adhesion disassembly
## GO:2000979                                                                                             positive regulation of forebrain neuron differentiation
## GO:0050754                                                                                             positive regulation of fractalkine biosynthetic process
## GO:0032724                                                                                                       positive regulation of fractalkine production
## GO:0060550                                                                             positive regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060552                                                                                  positive regulation of fructose 1,6-bisphosphate metabolic process
## GO:0072303                                                                          positive regulation of glomerular metanephric mesangial cell proliferation
## GO:1904635                                                                        positive regulation of glomerular visceral epithelial cell apoptotic process
## GO:0031948                                                                                          positive regulation of glucocorticoid biosynthetic process
## GO:0031945                                                                                             positive regulation of glucocorticoid metabolic process
## GO:1904025                                                                            positive regulation of glucose catabolic process to lactate via pyruvate
## GO:2000753                                                                                           positive regulation of glucosylceramide catabolic process
## GO:2000213                                                                                                  positive regulation of glutamate metabolic process
## GO:0035229                                                                                           positive regulation of glutamate-cysteine ligase activity
## GO:0120008                                                                                         positive regulation of glutamatergic neuron differentiation
## GO:2000487                                                                                                          positive regulation of glutamine transport
## GO:1903284                                                                                              positive regulation of glutathione peroxidase activity
## GO:1900925                                                                                        positive regulation of glycine import across plasma membrane
## GO:2000526                                                positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## GO:1904710                                                                                             positive regulation of granulosa cell apoptotic process
## GO:1904197                                                                                                 positive regulation of granulosa cell proliferation
## GO:2000513                                                                                                        positive regulation of granzyme A production
## GO:1905099                                                                                   positive regulation of guanyl-nucleotide exchange factor activity
## GO:0071338                                                                                             positive regulation of hair follicle cell proliferation
## GO:0003065                                                                                                    positive regulation of heart rate by epinephrine
## GO:0001988                                   positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## GO:1902038                                                                                      positive regulation of hematopoietic stem cell differentiation
## GO:1905855                                                                                                      positive regulation of heparan sulfate binding
## GO:1905860                                                                                         positive regulation of heparan sulfate proteoglycan binding
## GO:0061874                                                                                            positive regulation of hepatic stellate cell contraction
## GO:1904899                                                                                          positive regulation of hepatic stellate cell proliferation
## GO:1902204                                                                          positive regulation of hepatocyte growth factor receptor signaling pathway
## GO:0110090                                                                                         positive regulation of hippocampal neuron apoptotic process
## GO:1901676                                                                                                   positive regulation of histone H3-K27 acetylation
## GO:2001255                                                                                                positive regulation of histone H3-K36 trimethylation
## GO:1905437                                                                                                 positive regulation of histone H3-K4 trimethylation
## GO:0070512                                                                                                   positive regulation of histone H4-K20 methylation
## GO:1903586                                                                                                     positive regulation of histone deubiquitination
## GO:0050668                                                                                               positive regulation of homocysteine metabolic process
## GO:1903387                                                                                                     positive regulation of homophilic cell adhesion
## GO:1903285                                                                                          positive regulation of hydrogen peroxide catabolic process
## GO:1904828                                                                                        positive regulation of hydrogen sulfide biosynthetic process
## GO:1902073                                                                            positive regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0002642                                                                                          positive regulation of immunoglobulin biosynthetic process
## GO:0045609                                                                             positive regulation of inner ear auditory receptor cell differentiation
## GO:2000982                                                                                      positive regulation of inner ear receptor cell differentiation
## GO:0010925                                                                                positive regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050726                                                                                     positive regulation of interleukin-1 alpha biosynthetic process
## GO:2000661                                                                                     positive regulation of interleukin-1-mediated signaling pathway
## GO:0032738                                                                                                    positive regulation of interleukin-15 production
## GO:0045380                                                                                          positive regulation of interleukin-17 biosynthetic process
## GO:1903883                                                                                    positive regulation of interleukin-17-mediated signaling pathway
## GO:2000494                                                                                    positive regulation of interleukin-18-mediated signaling pathway
## GO:2000572                                                                    positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045407                                                                                           positive regulation of interleukin-5 biosynthetic process
## GO:1904480                                                                                                        positive regulation of intestinal absorption
## GO:0045797                                                                                            positive regulation of intestinal cholesterol absorption
## GO:0060731                                                                                  positive regulation of intestinal epithelial structure maintenance
## GO:1904731                                                                                                  positive regulation of intestinal lipid absorption
## GO:1901254                                                                                    positive regulation of intracellular transport of viral material
## GO:1902220                                                          positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1905926                                                                                                        positive regulation of invadopodium assembly
## GO:1905929                                                                                                     positive regulation of invadopodium disassembly
## GO:1901980                                                                                  positive regulation of inward rectifier potassium channel activity
## GO:0034761                                                                                             positive regulation of iron ion transmembrane transport
## GO:0034758                                                                                                           positive regulation of iron ion transport
## GO:1905017                                                                                              positive regulation of isoleucine-tRNA ligase activity
## GO:0045828                                                                                                 positive regulation of isoprenoid metabolic process
## GO:2000358                                                                                    positive regulation of kidney smooth muscle cell differentiation
## GO:1902824                                                                                          positive regulation of late endosome to lysosome transport
## GO:1902078                                                                                        positive regulation of lateral motor column neuron migration
## GO:1902748                                                                                              positive regulation of lens fiber cell differentiation
## GO:1904999                                                                              positive regulation of leukocyte adhesion to arterial endothelial cell
## GO:0035491                                                                     positive regulation of leukotriene production involved in inflammatory response
## GO:1903002                                                                                   positive regulation of lipid transport across blood brain barrier
## GO:0110113                                                                                                   positive regulation of lipid transporter activity
## GO:0140077                                                                                                        positive regulation of lipoprotein transport
## GO:0090326                                                                                   positive regulation of locomotion involved in locomotory behavior
## GO:0140214                                                                                       positive regulation of long-chain fatty acid import into cell
## GO:1905597                                                                            positive regulation of low-density lipoprotein particle receptor binding
## GO:1905599                                                                                    positive regulation of low-density lipoprotein receptor activity
## GO:1901248                                                                                           positive regulation of lung ciliated cell differentiation
## GO:1905673                                                                                                        positive regulation of lysosome organization
## GO:1903839                                                                                                          positive regulation of mRNA 3'-UTR binding
## GO:1905612                                                                                                             positive regulation of mRNA cap binding
## GO:0031439                                                                                                                positive regulation of mRNA cleavage
## GO:0090366                                                                                                            positive regulation of mRNA modification
## GO:1902228                                                                       positive regulation of macrophage colony-stimulating factor signaling pathway
## GO:0010933                                                                                               positive regulation of macrophage tolerance induction
## GO:0034096                                                                             positive regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000711                                                                positive regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:1904840                                                                                 positive regulation of male germ-line stem cell asymmetric division
## GO:2000103                                                                                              positive regulation of mammary stem cell proliferation
## GO:0038097                                                                positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway
## GO:0060376                                                                                                    positive regulation of mast cell differentiation
## GO:1904303                                                                                     positive regulation of maternal process involved in parturition
## GO:1904466                                                                                            positive regulation of matrix metallopeptidase secretion
## GO:0045633                                                                                              positive regulation of mechanoreceptor differentiation
## GO:1903343                                                                                    positive regulation of meiotic DNA double-strand break formation
## GO:1905134                                                                                                positive regulation of meiotic chromosome separation
## GO:1902910                                                                                                         positive regulation of melanosome transport
## GO:1900827                                                          positive regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1905033                                                          positive regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1905026                                              positive regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905904                                                                                                           positive regulation of mesoderm formation
## GO:1905772                                                                                              positive regulation of mesodermal cell differentiation
## GO:0048337                                                                                           positive regulation of mesodermal cell fate specification
## GO:0090096                                                                               positive regulation of metanephric cap mesenchymal cell proliferation
## GO:2000478                                                                  positive regulation of metanephric glomerular visceral epithelial cell development
## GO:2001076                                                                                         positive regulation of metanephric ureteric bud development
## GO:1905188                                                                                   positive regulation of metaphase/anaphase transition of meiosis I
## GO:1902104                                                                          positive regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:1905020                                                                                              positive regulation of methionine-tRNA ligase activity
## GO:0014008                                                                                                    positive regulation of microglia differentiation
## GO:0090297                                                                                                positive regulation of mitochondrial DNA replication
## GO:1903465                                                                                           positive regulation of mitotic cell cycle DNA replication
## GO:1905406                                                                                                      positive regulation of mitotic cohesin loading
## GO:0045951                                                                                                        positive regulation of mitotic recombination
## GO:1902846                                                                                                   positive regulation of mitotic spindle elongation
## GO:0110028                                                                                                 positive regulation of mitotic spindle organization
## GO:0032773                                                                                            positive regulation of monophenol monooxygenase activity
## GO:1905485                                                                                                       positive regulation of motor neuron migration
## GO:0014739                                                                                                           positive regulation of muscle hyperplasia
## GO:1904330                                                                                                    positive regulation of myofibroblast contraction
## GO:1904762                                                                                                positive regulation of myofibroblast differentiation
## GO:0035505                                                                                           positive regulation of myosin light chain kinase activity
## GO:0035508                                                                                      positive regulation of myosin-light-chain-phosphatase activity
## GO:2000287                                                                                                          positive regulation of myotome development
## GO:0050924                                                                                                          positive regulation of negative chemotaxis
## GO:1902998                                                                                              positive regulation of neurofibrillary tangle assembly
## GO:1900075                                                                                          positive regulation of neuromuscular synaptic transmission
## GO:0045660                                                                                                   positive regulation of neutrophil differentiation
## GO:0070962                                                                                     positive regulation of neutrophil mediated killing of bacterium
## GO:0070963                                                                       positive regulation of neutrophil mediated killing of gram-negative bacterium
## GO:0045848                                                                                                         positive regulation of nitrogen utilization
## GO:1901231                                                                          positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:0032244                                                                                                         positive regulation of nucleoside transport
## GO:0070430                                                     positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:1901331                                                                                                  positive regulation of odontoblast differentiation
## GO:1900143                                                                                            positive regulation of oligodendrocyte apoptotic process
## GO:2000476                                                                                            positive regulation of opioid receptor signaling pathway
## GO:1903028                                                                                                                 positive regulation of opsonization
## GO:2000597                                                                                                        positive regulation of optic nerve formation
## GO:1905593                                                                                              positive regulation of optical nerve axon regeneration
## GO:1904120                                                                                                   positive regulation of otic vesicle morphogenesis
## GO:1902278                                                                                                 positive regulation of pancreatic amylase secretion
## GO:2000231                                                                                       positive regulation of pancreatic stellate cell proliferation
## GO:1904244                                                                                             positive regulation of pancreatic trypsinogen secretion
## GO:0002851                                                                                        positive regulation of peripheral T cell tolerance induction
## GO:2000470                                                                                                          positive regulation of peroxidase activity
## GO:2000187                                                                                            positive regulation of phosphate transmembrane transport
## GO:1905695                                                                                       positive regulation of phosphatidic acid biosynthetic process
## GO:1900163                                                                                             positive regulation of phospholipid scramblase activity
## GO:1901409                                                                       positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:2001165                                                     positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:0046534                                                                                           positive regulation of photoreceptor cell differentiation
## GO:1900100                                                                                                  positive regulation of plasma cell differentiation
## GO:1905221                                                                                                           positive regulation of platelet formation
## GO:1904247                                                                                  positive regulation of polynucleotide adenylyltransferase activity
## GO:1905698                                                                                                             positive regulation of polysome binding
## GO:0099588                                                                                 positive regulation of postsynaptic cytosolic calcium concentration
## GO:1904453                                                                                  positive regulation of potassium:proton exchanging ATPase activity
## GO:1905608                                                                                                          positive regulation of presynapse assembly
## GO:1905520                                                                                             positive regulation of presynaptic active zone assembly
## GO:1901631                                                                                            positive regulation of presynaptic membrane organization
## GO:2000975                                                                                                   positive regulation of pro-B cell differentiation
## GO:2000176                                                                                                   positive regulation of pro-T cell differentiation
## GO:2000184                                                                                            positive regulation of progesterone biosynthetic process
## GO:1902213                                                                                                  positive regulation of prolactin signaling pathway
## GO:0061078                                                                          positive regulation of prostaglandin secretion involved in immune response
## GO:2000363                                                                                            positive regulation of prostaglandin-E synthase activity
## GO:0090284                                                                                               positive regulation of protein glycosylation in Golgi
## GO:1903638                                                                             positive regulation of protein import into mitochondrial outer membrane
## GO:1903572                                                                                                   positive regulation of protein kinase D signaling
## GO:1904372                                                                                 positive regulation of protein localization to actin cortical patch
## GO:1904510                                                                          positive regulation of protein localization to basolateral plasma membrane
## GO:1905873                                                                                    positive regulation of protein localization to cell leading edge
## GO:0120187                                                                                            positive regulation of protein localization to chromatin
## GO:1903569                                                                                     positive regulation of protein localization to ciliary membrane
## GO:0150032                                                                                             positive regulation of protein localization to lysosome
## GO:1902365                                                                                    positive regulation of protein localization to spindle pole body
## GO:2000436                                                                                                          positive regulation of protein neddylation
## GO:1904808                                                                                                            positive regulation of protein oxidation
## GO:1904592                                                                                                            positive regulation of protein refolding
## GO:1905184                                                                                positive regulation of protein serine/threonine phosphatase activity
## GO:0150074                                                                         positive regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1905273                                                              positive regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0120072                                                                                     positive regulation of pyloric antrum smooth muscle contraction
## GO:1903168                                                                                   positive regulation of pyrroline-5-carboxylate reductase activity
## GO:1904199                                                            positive regulation of regulation of vascular smooth muscle cell membrane depolarization
## GO:1901899                                                                                                 positive regulation of relaxation of cardiac muscle
## GO:2000534                                                                                                     positive regulation of renal albumin absorption
## GO:2001153                                                                                                        positive regulation of renal water transport
## GO:1901421                                                                                                          positive regulation of response to alcohol
## GO:0046670                                                                                           positive regulation of retinal cell programmed cell death
## GO:1900054                                                                                           positive regulation of retinoic acid biosynthetic process
## GO:2001019                                                                                              positive regulation of retrograde axon cargo transport
## GO:1901956                                                                                      positive regulation of retrograde dense core granule transport
## GO:1905281                                                                                      positive regulation of retrograde transport, endosome to Golgi
## GO:2000199                                                                                       positive regulation of ribonucleoprotein complex localization
## GO:2000208                                                                                  positive regulation of ribosomal small subunit export from nucleus
## GO:2000202                                                                                        positive regulation of ribosomal subunit export from nucleus
## GO:0061189                                                                                                       positive regulation of sclerotome development
## GO:0090340                                                                                               positive regulation of secretion of lysosomal enzymes
## GO:1904411                                                                                               positive regulation of secretory granule organization
## GO:1904571                                                                                                 positive regulation of selenocysteine incorporation
## GO:2001262                                                                                          positive regulation of semaphorin-plexin signaling pathway
## GO:2000764                                                  positive regulation of semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0061090                                                                                                     positive regulation of sequestering of zinc ion
## GO:1904792                                                                                                   positive regulation of shelterin complex assembly
## GO:0060381                                                                                        positive regulation of single-stranded telomeric DNA binding
## GO:1905609                                                                                           positive regulation of smooth muscle cell-matrix adhesion
## GO:1904320                                                                            positive regulation of smooth muscle contraction involved in micturition
## GO:1905901                                                                                             positive regulation of smooth muscle tissue development
## GO:1901622                                               positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:1905382                                                                                     positive regulation of snRNA transcription by RNA polymerase II
## GO:1903408                                                                                  positive regulation of sodium:potassium-exchanging ATPase activity
## GO:1904677                                                                                                   positive regulation of somatic stem cell division
## GO:1901307                                                                                              positive regulation of spermidine biosynthetic process
## GO:1902070                                                                                      positive regulation of sphingolipid mediated signaling pathway
## GO:2000755                                                                                              positive regulation of sphingomyelin catabolic process
## GO:1904050                                                                                       positive regulation of spontaneous neurotransmitter secretion
## GO:0120069                                                                                     positive regulation of stomach fundus smooth muscle contraction
## GO:0098530                                                                                                              positive regulation of strand invasion
## GO:1904460                                                                                                        positive regulation of substance P secretion
## GO:1904496                                                                                     positive regulation of substance P secretion, neurotransmission
## GO:0031337                                                                                          positive regulation of sulfur amino acid metabolic process
## GO:1904034                                                                                                           positive regulation of t-SNARE clustering
## GO:1901582                                                                         positive regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905549                                                                                           positive regulation of telomeric heterochromatin assembly
## GO:1904535                                                                                                   positive regulation of telomeric loop disassembly
## GO:2001051                                                                                                  positive regulation of tendon cell differentiation
## GO:1904595                                                                               positive regulation of termination of RNA polymerase II transcription
## GO:2000806                                                              positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0003059                                                                                positive regulation of the force of heart contraction by epinephrine
## GO:0003061                                                                             positive regulation of the force of heart contraction by norepinephrine
## GO:1905023                                                                                               positive regulation of threonine-tRNA ligase activity
## GO:2000614                                                                                        positive regulation of thyroid-stimulating hormone secretion
## GO:0002651                                                                                          positive regulation of tolerance induction to self antigen
## GO:0002845                                                                                            positive regulation of tolerance induction to tumor cell
## GO:0034181                                                                                      positive regulation of toll-like receptor 13 signaling pathway
## GO:0000411                                                                                                   positive regulation of transcription by galactose
## GO:0061586                                                                           positive regulation of transcription by transcription factor localization
## GO:0000435                                                                   positive regulation of transcription from RNA polymerase II promoter by galactose
## GO:0061400                                                     positive regulation of transcription from RNA polymerase II promoter in response to calcium ion
## GO:2000763                                positive regulation of transcription from RNA polymerase II promoter involved in norepinephrine biosynthetic process
## GO:0090282                                                              positive regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0007072                                                                                  positive regulation of transcription involved in exit from mitosis
## GO:0051039                                                                                 positive regulation of transcription involved in meiotic cell cycle
## GO:1904300                                                                                                                 positive regulation of transcytosis
## GO:1903620                                                                                                         positive regulation of transdifferentiation
## GO:1901390                                                                                   positive regulation of transforming growth factor beta activation
## GO:1901394                                                                                  positive regulation of transforming growth factor beta1 activation
## GO:0036494                                                           positive regulation of translation initiation in response to endoplasmic reticulum stress
## GO:1904075                                                                                           positive regulation of trophectodermal cell proliferation
## GO:0090044                                                                                                        positive regulation of tubulin deacetylation
## GO:0034346                                                                                               positive regulation of type III interferon production
## GO:0001809                                                                                                     positive regulation of type IV hypersensitivity
## GO:1903178                                                                                            positive regulation of tyrosine 3-monooxygenase activity
## GO:2000158                                                                                         positive regulation of ubiquitin-specific protease activity
## GO:2000063                                                                                    positive regulation of ureter smooth muscle cell differentiation
## GO:0050677                                                                                                positive regulation of urothelial cell proliferation
## GO:1900721                                                                                             positive regulation of uterine smooth muscle relaxation
## GO:1903337                                                                                                           positive regulation of vacuolar transport
## GO:1905176                                                                                positive regulation of vascular smooth muscle cell dedifferentiation
## GO:1905932                                                 positive regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:1903947                                                                             positive regulation of ventricular cardiac muscle cell action potential
## GO:0010902                                                                             positive regulation of very-low-density lipoprotein particle remodeling
## GO:0106022                                                                                                              positive regulation of vesicle docking
## GO:1904973                                                                                                            positive regulation of viral translation
## GO:1903762         positive regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:1905152                                                                                        positive regulation of voltage-gated sodium channel activity
## GO:0040032                                                                                                                   post-embryonic body morphogenesis
## GO:0003247                                                                           post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## GO:0048621                                                                                                        post-embryonic digestive tract morphogenesis
## GO:0035128                                                                                                               post-embryonic forelimb morphogenesis
## GO:0035129                                                                                                               post-embryonic hindlimb morphogenesis
## GO:0007497                                                                                                                        posterior midgut development
## GO:0099630                                                                                                        postsynaptic neurotransmitter receptor cycle
## GO:1990261                                                                                                                          pre-mRNA catabolic process
## GO:0035281                                                                                                                       pre-miRNA export from nucleus
## GO:0021501                                                                                                                          prechordal plate formation
## GO:0099140                                                                                                         presynaptic actin cytoskeleton organization
## GO:0099187                                                                                                               presynaptic cytoskeleton organization
## GO:0003138                                                                                                                   primary heart field specification
## GO:1990744                                                                                                                           primary miRNA methylation
## GO:1990729                                                                                                                          primary miRNA modification
## GO:0007285                                                                                                                         primary spermatocyte growth
## GO:0060682                                                                                                                         primary ureteric bud growth
## GO:0003345                                                                                  proepicardium cell migration involved in pericardium morphogenesis
## GO:0006709                                                                                                                      progesterone catabolic process
## GO:0031049                                                                                                                          programmed DNA elimination
## GO:0039007                                                                                                                    pronephric nephron morphogenesis
## GO:0039008                                                                                                             pronephric nephron tubule morphogenesis
## GO:0015730                                                                                                                                propanoate transport
## GO:0019679                                                                                                   propionate metabolic process, methylcitrate cycle
## GO:1902860                                                                                                                  propionyl-CoA biosynthetic process
## GO:1902858                                                                                                                     propionyl-CoA metabolic process
## GO:0051355                                                                                                        proprioception involved in equilibrioception
## GO:0018964                                                                                                                         propylene metabolic process
## GO:1905344                                                                                                                     prostaglandin catabolic process
## GO:0002539                                                                                          prostaglandin production involved in inflammatory response
## GO:1990767                                                                                                              prostaglandin receptor internalization
## GO:0090323                                                                                                 prostaglandin secretion involved in immune response
## GO:0060515                                                                                                                        prostate field specification
## GO:0060514                                                                                                                                  prostate induction
## GO:0033375                                                                                                   protease localization to T cell secretory granule
## GO:0033368                                                                                                protease localization to mast cell secretory granule
## GO:0080129                                                                                                                    proteasome core complex assembly
## GO:0044726                                                                                                protection of DNA demethylation of female pronucleus
## GO:1990390                                                                                                                   protein K33-linked ubiquitination
## GO:0042543                                                                                                         protein N-linked glycosylation via arginine
## GO:0018032                                                                                                                                   protein amidation
## GO:0009305                                                                                                                               protein biotinylation
## GO:0035611                                                                                                             protein branching point deglutamylation
## GO:0140246                                                                                                                protein catabolic process at synapse
## GO:0099546                                                                                         protein catabolic process, modulating synaptic transmission
## GO:0061698                                                                                                                             protein deglutarylation
## GO:0036525                                                                                                                                 protein deglycation
## GO:0036529                                                                                                                protein deglycation, glyoxal removal
## GO:0036046                                                                                                                              protein demalonylation
## GO:1990697                                                                                                                          protein depalmitoleylation
## GO:0036048                                                                                                                             protein desuccinylation
## GO:0042125                                                                                                                             protein galactosylation
## GO:0033580                                                                                                             protein galactosylation at cell surface
## GO:0010731                                                                                                                           protein glutathionylation
## GO:0033575                                                                                                               protein glycosylation at cell surface
## GO:0044721                                                                                            protein import into peroxisome matrix, substrate release
## GO:0098737                                                                                                              protein insertion into plasma membrane
## GO:0042313                                                                                                                       protein kinase C deactivation
## GO:0090251                                                                                   protein localization involved in establishment of planar polarity
## GO:1904867                                                                                                                  protein localization to Cajal body
## GO:0036309                                                                                                                      protein localization to M-band
## GO:0033374                                                                                                    protein localization to T cell secretory granule
## GO:0036371                                                                                                                    protein localization to T-tubule
## GO:0044379                                                                                                        protein localization to actin cortical patch
## GO:1904327                                                                                                protein localization to cytosolic proteasome complex
## GO:1904379                                                                       protein localization to cytosolic proteasome complex involved in ERAD pathway
## GO:1903420                                                                                       protein localization to endoplasmic reticulum tubular network
## GO:0033367                                                                                                 protein localization to mast cell secretory granule
## GO:1905359                                                                                                             protein localization to meiotic spindle
## GO:1903096                                                                                                     protein localization to meiotic spindle midzone
## GO:1902480                                                                                                             protein localization to mitotic spindle
## GO:0035750                                                                                               protein localization to myelin sheath abaxonal region
## GO:1903405                                                                                                                protein localization to nuclear body
## GO:1903621                                                                                             protein localization to photoreceptor connecting cilium
## GO:1902889                                                                                                         protein localization to spindle microtubule
## GO:0071988                                                                                                           protein localization to spindle pole body
## GO:0015680                                                                                                           protein maturation by copper ion transfer
## GO:0018190                                                                                                                               protein octanoylation
## GO:0045234                                                                                                                            protein palmitoleylation
## GO:0044524                                                                                                                               protein sulfhydration
## GO:0044395                                                                                                              protein targeting to vacuolar membrane
## GO:0036290                                                                                                                   protein trans-autophosphorylation
## GO:0032599                                                                                                              protein transport out of membrane raft
## GO:0071693                                                                                                       protein transport within extracellular region
## GO:0018322                                                                                                                              protein tyrosinylation
## GO:0032447                                                                                                                                  protein urmylation
## GO:0001120                                                                                                                      protein-DNA complex remodeling
## GO:0018293                                                                                                                                 protein-FAD linkage
## GO:0090126                                                                                  protein-containing complex assembly involved in synapse maturation
## GO:0017003                                                                                                                                protein-heme linkage
## GO:0018352                                                                                                               protein-pyridoxal-5-phosphate linkage
## GO:0018272                                                                  protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## GO:0017006                                                                                                                        protein-tetrapyrrole linkage
## GO:0072019                                                                                                              proximal convoluted tubule development
## GO:0072032                                                                                                    proximal convoluted tubule segment 2 development
## GO:0014847                                                                                                          proximal stomach smooth muscle contraction
## GO:0072020                                                                                                                proximal straight tubule development
## GO:0031270                                                                                                                             pseudopodium retraction
## GO:0019889                                                                                                                         pteridine metabolic process
## GO:0061155                                                                                                     pulmonary artery endothelial tube morphogenesis
## GO:0009183                                                                                         purine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009184                                                                                            purine deoxyribonucleoside diphosphate catabolic process
## GO:0009170                                                                                          purine deoxyribonucleoside monophosphate metabolic process
## GO:0090480                                                                                                     purine nucleotide-sugar transmembrane transport
## GO:0034037                                                                                                purine ribonucleoside bisphosphate catabolic process
## GO:0009207                                                                                                purine ribonucleoside triphosphate catabolic process
## GO:0032920                                                                                                                              putrescine acetylation
## GO:0033388                                                                                                       putrescine biosynthetic process from arginine
## GO:0033389                                                                                     putrescine biosynthetic process from arginine, using agmatinase
## GO:0009447                                                                                                                        putrescine catabolic process
## GO:0015847                                                                                                                                putrescine transport
## GO:0120065                                                                                                            pyloric antrum smooth muscle contraction
## GO:0019365                                                                                                                         pyridine nucleotide salvage
## GO:0009443                                                                                                                      pyridoxal 5'-phosphate salvage
## GO:0032361                                                                                                               pyridoxal phosphate catabolic process
## GO:0008615                                                                                                                     pyridoxine biosynthetic process
## GO:0008614                                                                                                                        pyridoxine metabolic process
## GO:0046127                                                                                                    pyrimidine deoxyribonucleoside catabolic process
## GO:0009178                                                                                      pyrimidine deoxyribonucleoside monophosphate catabolic process
## GO:0009131                                                                                               pyrimidine nucleoside monophosphate catabolic process
## GO:0043097                                                                                                                       pyrimidine nucleoside salvage
## GO:0032262                                                                                                                       pyrimidine nucleotide salvage
## GO:0009194                                                                                          pyrimidine ribonucleoside diphosphate biosynthetic process
## GO:0009193                                                                                             pyrimidine ribonucleoside diphosphate metabolic process
## GO:0010138                                                                                                                   pyrimidine ribonucleotide salvage
## GO:0008655                                                                                                              pyrimidine-containing compound salvage
## GO:0009444                                                                                                                                  pyruvate oxidation
## GO:0034213                                                                                                                       quinolinate catabolic process
## GO:0009372                                                                                                                                      quorum sensing
## GO:0052106                                                                                                    quorum sensing involved in interaction with host
## GO:0070550                                                                                                                                   rDNA condensation
## GO:0000451                                                                                                                               rRNA 2'-O-methylation
## GO:0000967                                                                                                                              rRNA 5'-end processing
## GO:1990882                                                                                                                                    rRNA acetylation
## GO:1904812                                                                                                 rRNA acetylation involved in maturation of SSU-rRNA
## GO:0009956                                                                                                                            radial pattern formation
## GO:0036031                                                                          recruitment of mRNA capping enzyme to RNA polymerase II holoenzyme complex
## GO:0010017                                                                                                              red or far-red light signaling pathway
## GO:0009585                                                                                                                red, far-red light phototransduction
## GO:0043126                                                                                              regulation of 1-phosphatidylinositol 4-kinase activity
## GO:0061901                                                                                              regulation of 1-phosphatidylinositol-3-kinase activity
## GO:0090215                                                                                  regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## GO:2000983                                                                                                         regulation of ATP citrate synthase activity
## GO:2000577                                                                          regulation of ATP-dependent microtubule motor activity, minus-end-directed
## GO:0070926                                                                                                           regulation of ATP:ADP antiporter activity
## GO:1903080                                                                                         regulation of C-C chemokine receptor CCR7 signaling pathway
## GO:2000559                                                                                                             regulation of CD24 biosynthetic process
## GO:0045223                                                                                                              regulation of CD4 biosynthetic process
## GO:0032832                                 regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## GO:1905918                                                                                                              regulation of CoA-transferase activity
## GO:1900022                                                                                                 regulation of D-erythro-sphingosine kinase activity
## GO:1904875                                                                                                                   regulation of DNA ligase activity
## GO:0110026                                                                          regulation of DNA strand resection involved in replication fork processing
## GO:1905578                                                                                                               regulation of ERBB3 signaling pathway
## GO:1902044                                                                                                                 regulation of Fas signaling pathway
## GO:0045219                                                                                                             regulation of FasL biosynthetic process
## GO:1900128                                                                       regulation of G-protein activated inward rectifier potassium channel activity
## GO:1903450                                                                                                                   regulation of G1 to G0 transition
## GO:0043095                                                                                                         regulation of GTP cyclohydrolase I activity
## GO:0042999                                                                                       regulation of Golgi to plasma membrane CFTR protein transport
## GO:0071658                                                                                                                      regulation of IP-10 production
## GO:1905541                                                                                              regulation of L-arginine import across plasma membrane
## GO:1903195                                                                                                           regulation of L-dopa biosynthetic process
## GO:1903198                                                                                                         regulation of L-dopa decarboxylase activity
## GO:1905008                                                                                                regulation of L-lysine import across plasma membrane
## GO:0071701                                                                                                              regulation of MAPK export from nucleus
## GO:2000759                                                                                                regulation of N-terminal peptidyl-lysine acetylation
## GO:0060254                                                                                                     regulation of N-terminal protein palmitoylation
## GO:0098906                                                                                                     regulation of Purkinje myocyte action potential
## GO:1905255                                                                                             regulation of RNA binding transcription factor activity
## GO:1900259                                                                                            regulation of RNA-directed 5'-3' RNA polymerase activity
## GO:0062025                                                               regulation of SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1903182                                                                                                             regulation of SUMO transferase activity
## GO:1904266                                                                                                               regulation of Schwann cell chemotaxis
## GO:1905044                                                                              regulation of Schwann cell proliferation involved in axon regeneration
## GO:0002852                                                                       regulation of T cell mediated cytotoxicity directed against tumor cell target
## GO:2000517                                                                                                            regulation of T-helper 1 cell activation
## GO:0045554                                                                                                            regulation of TRAIL biosynthetic process
## GO:1904239                                                                                             regulation of VCP-NPL4-UFD1 AAA ATPase complex assembly
## GO:2000056                                                                       regulation of Wnt signaling pathway involved in digestive tract morphogenesis
## GO:1904711                                                                                                  regulation of Wnt-Frizzled-LRP5/6 complex assembly
## GO:0009787                                                                                             regulation of abscisic acid-activated signaling pathway
## GO:1905921                                                                                                    regulation of acetylcholine biosynthetic process
## GO:1903048                                                                                           regulation of acetylcholine-gated cation channel activity
## GO:1904697                                                                                                             regulation of acinar cell proliferation
## GO:0090138                                                                                 regulation of actin cytoskeleton organization by cell-cell adhesion
## GO:0043538                                                                                                                 regulation of actin phosphorylation
## GO:1904621                                                                                                       regulation of actin-dependent ATPase activity
## GO:0010578                                                   regulation of adenylate cyclase activity involved in G protein-coupled receptor signaling pathway
## GO:0071877                                                                    regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0140193                                          regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway involved in heart process
## GO:1904990                                                                      regulation of adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:1900729                                                                        regulation of adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:1905226                                                                                          regulation of adhesion of symbiont to host epithelial cell
## GO:1904603                                                                                      regulation of advanced glycation end-product receptor activity
## GO:0051941                                                                                   regulation of amino acid uptake involved in synaptic transmission
## GO:2001248                                                                                                            regulation of ammonia assimilation cycle
## GO:2000797                                                                                                    regulation of amniotic stem cell differentiation
## GO:2000834                                                                                                                    regulation of androgen secretion
## GO:0061880                                                                                         regulation of anterograde axonal transport of mitochondrion
## GO:1902612                                                                                              regulation of anti-Mullerian hormone signaling pathway
## GO:0002808                                                                                            regulation of antibacterial peptide biosynthetic process
## GO:0001813                                                                                              regulation of antibody-dependent cellular cytotoxicity
## GO:1905034                                                                                                     regulation of antifungal innate immune response
## GO:1904282                                                     regulation of antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0002805                                                                                            regulation of antimicrobial peptide biosynthetic process
## GO:1904829                                                                                             regulation of aortic smooth muscle cell differentiation
## GO:2000656                                                                                                                regulation of apolipoprotein binding
## GO:0060785                                                                                              regulation of apoptosis involved in tissue homeostasis
## GO:0150070                                                                                                                     regulation of arginase activity
## GO:1900081                                                                                                            regulation of arginine catabolic process
## GO:1904448                                                                                                                   regulation of aspartate secretion
## GO:0016243                                                                                                                    regulation of autophagosome size
## GO:1905126                                                                                                       regulation of axo-dendritic protein transport
## GO:1904863                                                                                                     regulation of beta-catenin-TCF complex assembly
## GO:0002816                                                  regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## GO:2000266                                                                                                  regulation of blood coagulation, intrinsic pathway
## GO:0110057                                                                                         regulation of blood vessel endothelial cell differentiation
## GO:0031551                                                                         regulation of brain-derived neurotrophic factor-activated receptor activity
## GO:0060683                                                regulation of branching involved in salivary gland morphogenesis by epithelial-mesenchymal signaling
## GO:0060668                                  regulation of branching involved in salivary gland morphogenesis by extracellular matrix-epithelial cell signaling
## GO:1904362                                                                                                                  regulation of calcitonin secretion
## GO:0110097                                                                                                 regulation of calcium import into the mitochondrion
## GO:1903610                                                                                                     regulation of calcium-dependent ATPase activity
## GO:0046586                                                                                                  regulation of calcium-dependent cell-cell adhesion
## GO:0060827                                         regulation of canonical Wnt signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1905239                                                                regulation of canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:1903674                                                                                                regulation of cap-dependent translational initiation
## GO:0032113                                                                                                     regulation of carbohydrate phosphatase activity
## GO:0043610                                                                                                              regulation of carbohydrate utilization
## GO:1901210                                                                                                             regulation of cardiac chamber formation
## GO:0061999                                                                                         regulation of cardiac endothelial to mesenchymal transition
## GO:2000690                                                                                          regulation of cardiac muscle cell myoblast differentiation
## GO:0055018                                                                                                      regulation of cardiac muscle fiber development
## GO:1905304                                                                                                            regulation of cardiac myofibril assembly
## GO:0042686                                                                                                   regulation of cardioblast cell fate specification
## GO:0106088                                                                                      regulation of cell adhesion involved in sprouting angiogenesis
## GO:0060305                                                                                                                         regulation of cell diameter
## GO:1905933                                                                                                               regulation of cell fate determination
## GO:0090249                                                                                 regulation of cell motility involved in somitogenic axis elongation
## GO:2000606                                                                                regulation of cell proliferation involved in mesonephros development
## GO:0060784                                                                                     regulation of cell proliferation involved in tissue homeostasis
## GO:0033241                                                                                                      regulation of cellular amine catabolic process
## GO:0072365                             regulation of cellular ketone metabolic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0072366                             regulation of cellular ketone metabolic process by positive regulation of transcription from RNA polymerase II promoter
## GO:2000683                                                                                                            regulation of cellular response to X-ray
## GO:1905957                                                                                                          regulation of cellular response to alcohol
## GO:1905843                                                                                                  regulation of cellular response to gamma radiation
## GO:2001112                                                                                regulation of cellular response to hepatocyte growth factor stimulus
## GO:1905802                                                                                                    regulation of cellular response to manganese ion
## GO:2000654                                                                                            regulation of cellular response to testosterone stimulus
## GO:1905891                                                                                                     regulation of cellular response to thapsigargin
## GO:1905894                                                                                                      regulation of cellular response to tunicamycin
## GO:1905890                                                                   regulation of cellular response to very-low-density lipoprotein particle stimulus
## GO:0002895                                                                                                    regulation of central B cell tolerance induction
## GO:0002646                                                                                                           regulation of central tolerance induction
## GO:0071652                                                                                             regulation of chemokine (C-C motif) ligand 1 production
## GO:1903884                                                                                            regulation of chemokine (C-C motif) ligand 20 production
## GO:0071643                                                                                             regulation of chemokine (C-C motif) ligand 4 production
## GO:1904365                                                                                                                          regulation of chemokinesis
## GO:1904054                                                                                                           regulation of cholangiocyte proliferation
## GO:0060694                                                                                                      regulation of cholesterol transporter activity
## GO:1902769                                                                                                  regulation of choline O-acetyltransferase activity
## GO:1904499                                                                                       regulation of chromatin-mediated maintenance of transcription
## GO:0090318                                                                                                                regulation of chylomicron remodeling
## GO:0044537                                                                                                         regulation of circulating fibrinogen levels
## GO:1903248                                                                                                       regulation of citrulline biosynthetic process
## GO:1905468                                                                                                          regulation of clathrin-coated pit assembly
## GO:0106064                                                                                                           regulation of cobalamin metabolic process
## GO:0048683                                                                             regulation of collateral sprouting of intact axon in response to injury
## GO:1904596                                                         regulation of connective tissue replacement involved in inflammatory response wound healing
## GO:1901232                                                                                      regulation of convergent extension involved in axis elongation
## GO:1902311                                                                                                    regulation of copper ion transmembrane transport
## GO:1900010                                                                                     regulation of corticotropin-releasing hormone receptor activity
## GO:1904041                                                                                                  regulation of cystathionine beta-synthase activity
## GO:1901494                                                                                                            regulation of cysteine metabolic process
## GO:2000431                                                                                     regulation of cytokinesis, actomyosin contractile ring assembly
## GO:0140018                                                                                                    regulation of cytoplasmic translational fidelity
## GO:1903627                                                                                                           regulation of dUTP diphosphatase activity
## GO:1901834                                                                       regulation of deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:1903072                                                                                             regulation of death-inducing signaling complex assembly
## GO:1902477                                                                               regulation of defense response to bacterium, incompatible interaction
## GO:0050690                                                                                                    regulation of defense response to virus by virus
## GO:1905413                                                                                                         regulation of dense core granule exocytosis
## GO:2000970                                                                                                                  regulation of detection of glucose
## GO:1905787                                                              regulation of detection of mechanical stimulus involved in sensory perception of touch
## GO:1905767                                                                                                 regulation of double-stranded telomeric DNA binding
## GO:1904335                                                                                                             regulation of ductus arteriosus closure
## GO:0060735                                                                                                   regulation of eIF2 alpha phosphorylation by dsRNA
## GO:0042665                                                                                                    regulation of ectodermal cell fate specification
## GO:0051543                                                                                                          regulation of elastin biosynthetic process
## GO:0060310                                                                                                             regulation of elastin catabolic process
## GO:0140049                                                                                         regulation of endocardial cushion to mesenchymal transition
## GO:2000800                                                       regulation of endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:1903916                                                                     regulation of endoplasmic reticulum stress-induced eIF2 alpha dephosphorylation
## GO:1905364                                                                                                              regulation of endosomal vesicle fusion
## GO:1904987                                                                                                           regulation of endothelial cell activation
## GO:1904904                                                                                      regulation of endothelial cell-matrix adhesion via fibronectin
## GO:2000419                                                                                                              regulation of eosinophil extravasation
## GO:1902250                                                                                                         regulation of erythrocyte apoptotic process
## GO:0034106                                                                                                                 regulation of erythrocyte clearance
## GO:0061930                                                                                                               regulation of erythrocyte enucleation
## GO:1904910                                                                                         regulation of establishment of RNA localization to telomere
## GO:2000782                                                                                  regulation of establishment of cell polarity regulating cell shape
## GO:2000861                                                                                                                    regulation of estrogen secretion
## GO:1904793                                                                                                                   regulation of euchromatin binding
## GO:1905535                                                                          regulation of eukaryotic translation initiation factor 4F complex assembly
## GO:1904735                                                                                regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0010722                                                                                                               regulation of ferrochelatase activity
## GO:0110075                                                                                                                           regulation of ferroptosis
## GO:2000702                                                regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## GO:2000413                                                                                             regulation of fibronectin-dependent thymocyte migration
## GO:0120182                                                                                                            regulation of focal adhesion disassembly
## GO:1905942                                                                                              regulation of formation of growth cone in injured axon
## GO:1901193                                                                                        regulation of formation of translation preinitiation complex
## GO:0050752                                                                                                      regulation of fractalkine biosynthetic process
## GO:0032644                                                                                                                regulation of fractalkine production
## GO:0060549                                                                                      regulation of fructose 1,6-bisphosphate 1-phosphatase activity
## GO:0060551                                                                                           regulation of fructose 1,6-bisphosphate metabolic process
## GO:2000733                                  regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## GO:1904633                                                                                 regulation of glomerular visceral epithelial cell apoptotic process
## GO:2000752                                                                                                    regulation of glucosylceramide catabolic process
## GO:0051946                                                                            regulation of glutamate uptake involved in transmission of nerve impulse
## GO:0035227                                                                                                    regulation of glutamate-cysteine ligase activity
## GO:0120006                                                                                                  regulation of glutamatergic neuron differentiation
## GO:1903282                                                                                                       regulation of glutathione peroxidase activity
## GO:1904226                                                                          regulation of glycogen synthase activity, transferring glucose-1-phosphate
## GO:0072362                                            regulation of glycolytic process by negative regulation of transcription from RNA polymerase II promoter
## GO:0002631                                                                                                                   regulation of granuloma formation
## GO:1904195                                                                                                          regulation of granulosa cell proliferation
## GO:2000511                                                                                                                 regulation of granzyme A production
## GO:0060901                                                                                         regulation of hair cycle by canonical Wnt signaling pathway
## GO:0061168                                                                                                       regulation of hair follicle placode formation
## GO:1901207                                                                                                                         regulation of heart looping
## GO:1905853                                                                                                               regulation of heparan sulfate binding
## GO:1905858                                                                                                  regulation of heparan sulfate proteoglycan binding
## GO:1904897                                                                                                   regulation of hepatic stellate cell proliferation
## GO:0048176                                                                                         regulation of hepatocyte growth factor biosynthetic process
## GO:0032646                                                                                                   regulation of hepatocyte growth factor production
## GO:2001173                                                                                regulation of histone H2B conserved C-terminal lysine ubiquitination
## GO:1905435                                                                                                          regulation of histone H3-K4 trimethylation
## GO:0070510                                                                                                            regulation of histone H4-K20 methylation
## GO:1903584                                                                                                              regulation of histone deubiquitination
## GO:0050666                                                                                                        regulation of homocysteine metabolic process
## GO:1904826                                                                                                 regulation of hydrogen sulfide biosynthetic process
## GO:0002640                                                                                                   regulation of immunoglobulin biosynthetic process
## GO:0042669                                                                                   regulation of inner ear auditory receptor cell fate specification
## GO:0010924                                                                                         regulation of inositol-polyphosphate 5-phosphatase activity
## GO:0050721                                                                                              regulation of interleukin-1 alpha biosynthetic process
## GO:0032658                                                                                                             regulation of interleukin-15 production
## GO:0045378                                                                                                   regulation of interleukin-17 biosynthetic process
## GO:1903881                                                                                             regulation of interleukin-17-mediated signaling pathway
## GO:2000492                                                                                             regulation of interleukin-18-mediated signaling pathway
## GO:1902205                                                                                              regulation of interleukin-2-mediated signaling pathway
## GO:2000571                                                                             regulation of interleukin-4-dependent isotype switching to IgE isotypes
## GO:0045405                                                                                                    regulation of interleukin-5 biosynthetic process
## GO:1905365                                                                                                        regulation of intralumenal vesicle formation
## GO:1902238                                             regulation of intrinsic apoptotic signaling pathway in response to osmotic stress by p53 class mediator
## GO:1905924                                                                                                                 regulation of invadopodium assembly
## GO:1905927                                                                                                              regulation of invadopodium disassembly
## GO:1904212                                                                                                        regulation of iodide transmembrane transport
## GO:1904201                                                                                                                      regulation of iodide transport
## GO:1905015                                                                                                       regulation of isoleucine-tRNA ligase activity
## GO:2000356                                                                                             regulation of kidney smooth muscle cell differentiation
## GO:1902076                                                                                                 regulation of lateral motor column neuron migration
## GO:0031275                                                                                                         regulation of lateral pseudopodium assembly
## GO:1903633                                                                                                          regulation of leucine-tRNA ligase activity
## GO:0035490                                                                              regulation of leukotriene production involved in inflammatory response
## GO:1900130                                                                                                                         regulation of lipid binding
## GO:1903000                                                                                            regulation of lipid transport across blood brain barrier
## GO:0140075                                                                                                                 regulation of lipoprotein transport
## GO:1901246                                                                                                    regulation of lung ciliated cell differentiation
## GO:1903837                                                                                                                   regulation of mRNA 3'-UTR binding
## GO:1905610                                                                                                                      regulation of mRNA cap binding
## GO:0031437                                                                                                                         regulation of mRNA cleavage
## GO:1902629                                                                                    regulation of mRNA stability involved in cellular response to UV
## GO:0002616                                                                                        regulation of macrophage antigen processing and presentation
## GO:0010932                                                                                                        regulation of macrophage tolerance induction
## GO:0034094                                                                                      regulation of maintenance of meiotic sister chromatid cohesion
## GO:2000709                                                                         regulation of maintenance of meiotic sister chromatid cohesion, centromeric
## GO:2000718                                                                         regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## GO:1905603                                                                                    regulation of maintenance of permeability of blood-brain barrier
## GO:1904838                                                                                          regulation of male germ-line stem cell asymmetric division
## GO:2000101                                                                                                       regulation of mammary stem cell proliferation
## GO:1904301                                                                                              regulation of maternal process involved in parturition
## GO:0031494                                                                                                                 regulation of mating type switching
## GO:1903341                                                                                             regulation of meiotic DNA double-strand break formation
## GO:1905000                                                            regulation of membrane repolarization during atrial cardiac muscle cell action potential
## GO:0061295                                                      regulation of mesenchymal cell apoptotic process involved in mesonephric nephron morphogenesis
## GO:0060782                                                                 regulation of mesenchymal cell proliferation involved in prostate gland development
## GO:2000004                                                                                               regulation of metanephric S-shaped body morphogenesis
## GO:0090095                                                                                        regulation of metanephric cap mesenchymal cell proliferation
## GO:2000006                                                                                           regulation of metanephric comma-shaped body morphogenesis
## GO:2000477                                                                           regulation of metanephric glomerular visceral epithelial cell development
## GO:2001074                                                                                                  regulation of metanephric ureteric bud development
## GO:1905186                                                                                            regulation of metaphase/anaphase transition of meiosis I
## GO:1905018                                                                                                       regulation of methionine-tRNA ligase activity
## GO:0014006                                                                                                             regulation of microglia differentiation
## GO:0090226                                                                             regulation of microtubule nucleation by Ran protein signal transduction
## GO:1905405                                                                                                               regulation of mitotic cohesin loading
## GO:0032888                                                                                                            regulation of mitotic spindle elongation
## GO:0032771                                                                                                     regulation of monophenol monooxygenase activity
## GO:1905483                                                                                                                regulation of motor neuron migration
## GO:0010797                                                                               regulation of multivesicular body size involved in endosome transport
## GO:0035504                                                                                                    regulation of myosin light chain kinase activity
## GO:2000290                                                                                                                   regulation of myotome development
## GO:0070247                                                                                                 regulation of natural killer cell apoptotic process
## GO:0051394                                                                                                 regulation of nerve growth factor receptor activity
## GO:0090299                                                                                                                regulation of neural crest formation
## GO:0061853                                                                                                                  regulation of neuroblast migration
## GO:1900073                                                                                                   regulation of neuromuscular synaptic transmission
## GO:1904799                                                                                                                     regulation of neuron remodeling
## GO:1902847                                                                                                          regulation of neuronal signal transduction
## GO:0099162                                                                                        regulation of neurotransmitter loading into synaptic vesicle
## GO:2000428                                                                                                                regulation of neutrophil aggregation
## GO:0080164                                                                                                        regulation of nitric oxide metabolic process
## GO:1903314                                                                                                      regulation of nitrogen cycle metabolic process
## GO:1900123                                                                                                       regulation of nodal receptor complex assembly
## GO:1901229                                                                                   regulation of non-canonical Wnt signaling pathway via JNK cascade
## GO:1902838                                                                                                   regulation of nuclear migration along microtubule
## GO:0032242                                                                                                                  regulation of nucleoside transport
## GO:0097298                                                                                                                          regulation of nucleus size
## GO:1903027                                                                                                                          regulation of opsonization
## GO:2000595                                                                                                                 regulation of optic nerve formation
## GO:1905591                                                                                                       regulation of optical nerve axon regeneration
## GO:1904118                                                                                                            regulation of otic vesicle morphogenesis
## GO:1904242                                                                                                      regulation of pancreatic trypsinogen secretion
## GO:1905089                                                  regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0120093                                                                                                         regulation of peptidyl-lysine crotonylation
## GO:0002849                                                                                                 regulation of peripheral T cell tolerance induction
## GO:1905162                                                                                                                  regulation of phagosome maturation
## GO:2000185                                                                                                     regulation of phosphate transmembrane transport
## GO:1905693                                                                                                regulation of phosphatidic acid biosynthetic process
## GO:2001144                                                                       regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## GO:1904005                                                                                                              regulation of phospholipase D activity
## GO:1900161                                                                                                      regulation of phospholipid scramblase activity
## GO:2001163                                                              regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## GO:2000150                                                          regulation of planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:2000161                                                           regulation of planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:2000159                                                                          regulation of planar cell polarity pathway involved in heart morphogenesis
## GO:2000167                                                                          regulation of planar cell polarity pathway involved in neural tube closure
## GO:2000163                                                                  regulation of planar cell polarity pathway involved in outflow tract morphogenesis
## GO:2000165                                                                    regulation of planar cell polarity pathway involved in pericardium morphogenesis
## GO:2000148                                                             regulation of planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:1903888                                                                                                  regulation of plant epidermal cell differentiation
## GO:1905421                                                                                                             regulation of plant organ morphogenesis
## GO:1900098                                                                                                           regulation of plasma cell differentiation
## GO:1903906                                                                                                     regulation of plasma membrane raft polarization
## GO:0097036                                                                                                   regulation of plasma membrane sterol distribution
## GO:1905219                                                                                                                    regulation of platelet formation
## GO:0010967                                                                                                        regulation of polyamine biosynthetic process
## GO:1904451                                                                                           regulation of potassium:proton exchanging ATPase activity
## GO:2000631                                                                                                                  regulation of pre-miRNA processing
## GO:1905518                                                                                                      regulation of presynaptic active zone assembly
## GO:0099161                                                                                             regulation of presynaptic dense core granule exocytosis
## GO:2000634                                                                                                              regulation of primary miRNA processing
## GO:2000174                                                                                                            regulation of pro-T cell differentiation
## GO:1902211                                                                                                           regulation of prolactin signaling pathway
## GO:0070881                                                                                                                     regulation of proline transport
## GO:0035565                                                                                                                       regulation of pronephros size
## GO:2000361                                                                                                     regulation of prostaglandin-E synthase activity
## GO:0010732                                                                                                             regulation of protein glutathionylation
## GO:1903636                                                                                      regulation of protein import into mitochondrial outer membrane
## GO:1903570                                                                                                            regulation of protein kinase D signaling
## GO:1904370                                                                                          regulation of protein localization to actin cortical patch
## GO:1904508                                                                                   regulation of protein localization to basolateral plasma membrane
## GO:1902363                                                                                             regulation of protein localization to spindle pole body
## GO:1904806                                                                                                                     regulation of protein oxidation
## GO:1903216                                                                     regulation of protein processing involved in protein targeting to mitochondrion
## GO:0080163                                                                                         regulation of protein serine/threonine phosphatase activity
## GO:1900483                                                                                                regulation of protein targeting to vacuolar membrane
## GO:0150073                                                                                  regulation of protein-glutamine gamma-glutamyltransferase activity
## GO:1900276                                                                                                regulation of proteinase activated receptor activity
## GO:1905271                                                                       regulation of proton-transporting ATP synthase activity, rotational mechanism
## GO:0010849                                                                             regulation of proton-transporting ATPase activity, rotational mechanism
## GO:0120071                                                                                              regulation of pyloric antrum smooth muscle contraction
## GO:1903167                                                                                            regulation of pyrroline-5-carboxylate reductase activity
## GO:1903302                                                                                                              regulation of pyruvate kinase activity
## GO:1904984                                                                                                      regulation of quinolinate biosynthetic process
## GO:0099158                                                                                    regulation of recycling endosome localization within postsynapse
## GO:2000532                                                                                                              regulation of renal albumin absorption
## GO:1903402                                                                                                             regulation of renal phosphate excretion
## GO:2001151                                                                                                                 regulation of renal water transport
## GO:1900062                                                                                                                regulation of replicative cell aging
## GO:1902153                                                                                           regulation of response to DNA damage checkpoint signaling
## GO:1902151                                                                                        regulation of response to DNA integrity checkpoint signaling
## GO:1901419                                                                                                                   regulation of response to alcohol
## GO:1902145                                                                                           regulation of response to cell cycle checkpoint signaling
## GO:0060222                                                                                                     regulation of retinal cone cell fate commitment
## GO:2001017                                                                                                       regulation of retrograde axon cargo transport
## GO:1901954                                                                                               regulation of retrograde dense core granule transport
## GO:1905432                                                                                   regulation of retrograde trans-synaptic signaling by neuropeptide
## GO:2000206                                                                                           regulation of ribosomal small subunit export from nucleus
## GO:2000200                                                                                                 regulation of ribosomal subunit export from nucleus
## GO:2000280                                                                                                                      regulation of root development
## GO:1902890                                                                                                                  regulation of root hair elongation
## GO:2000067                                                                                                                    regulation of root morphogenesis
## GO:0061190                                                                                                                regulation of sclerotome development
## GO:1904409                                                                                                        regulation of secretory granule organization
## GO:1904573                                                                                             regulation of selenocysteine insertion sequence binding
## GO:1904790                                                                                                            regulation of shelterin complex assembly
## GO:1905512                                                                                                      regulation of short-term synaptic potentiation
## GO:0038009                                                                                       regulation of signal transduction by receptor internalization
## GO:1902504                                                                      regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0060380                                                                                                 regulation of single-stranded telomeric DNA binding
## GO:0014861                                                                        regulation of skeletal muscle contraction via regulation of action potential
## GO:1904318                                                                                     regulation of smooth muscle contraction involved in micturition
## GO:1905899                                                                                                      regulation of smooth muscle tissue development
## GO:1905380                                                                                              regulation of snRNA transcription by RNA polymerase II
## GO:1904675                                                                                                            regulation of somatic stem cell division
## GO:1901304                                                                                                       regulation of spermidine biosynthetic process
## GO:2000754                                                                                                       regulation of sphingomyelin catabolic process
## GO:0032887                                                                                                                    regulation of spindle elongation
## GO:0120068                                                                                              regulation of stomach fundus smooth muscle contraction
## GO:0061105                                                                                           regulation of stomach neuroendocrine cell differentiation
## GO:0060542                                                                                                                       regulation of strand invasion
## GO:1904458                                                                                                                 regulation of substance P secretion
## GO:1904494                                                                                              regulation of substance P secretion, neurotransmission
## GO:1900383                                                                               regulation of synaptic plasticity by receptor localization to synapse
## GO:0060092                                                                                                    regulation of synaptic transmission, glycinergic
## GO:0098694                                                                     regulation of synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0003068                                                                                     regulation of systemic arterial blood pressure by acetylcholine
## GO:0003026                                                                 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## GO:0003027                                                              regulation of systemic arterial blood pressure by carotid body chemoreceptor signaling
## GO:0001979                                                                           regulation of systemic arterial blood pressure by chemoreceptor signaling
## GO:0003070                                                                                  regulation of systemic arterial blood pressure by neurotransmitter
## GO:1904032                                                                                                                    regulation of t-SNARE clustering
## GO:0032207                                                                                                regulation of telomere maintenance via recombination
## GO:1901580                                                                                  regulation of telomeric RNA transcription from RNA pol II promoter
## GO:1905547                                                                                                    regulation of telomeric heterochromatin assembly
## GO:2001049                                                                                                           regulation of tendon cell differentiation
## GO:2000730                                                                                         regulation of termination of RNA polymerase I transcription
## GO:0090067                                                                                                                         regulation of thalamus size
## GO:1903123                                                                                                       regulation of thioredoxin peroxidase activity
## GO:1905021                                                                                                        regulation of threonine-tRNA ligase activity
## GO:0050758                                                                                             regulation of thymidylate synthase biosynthetic process
## GO:2000398                                                                                                                 regulation of thymocyte aggregation
## GO:1904441                                                                                           regulation of thyroid gland epithelial cell proliferation
## GO:0060165                                                                                           regulation of timing of subpallium neuron differentiation
## GO:0002843                                                                                                     regulation of tolerance induction to tumor cell
## GO:0034179                                                                                               regulation of toll-like receptor 13 signaling pathway
## GO:0034147                                                                                                regulation of toll-like receptor 5 signaling pathway
## GO:0000409                                                                                                            regulation of transcription by galactose
## GO:2001207                                                                               regulation of transcription elongation from RNA polymerase I promoter
## GO:0000431                                                                            regulation of transcription from RNA polymerase II promoter by galactose
## GO:0060807                               regulation of transcription from RNA polymerase II promoter involved in definitive endodermal cell fate specification
## GO:0061216                                                     regulation of transcription from RNA polymerase II promoter involved in mesonephros development
## GO:0021918                                        regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## GO:1902064                                                             regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## GO:0021920                                regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## GO:0044324                                                                       regulation of transcription involved in anterior/posterior axis specification
## GO:1904298                                                                                                                          regulation of transcytosis
## GO:1903618                                                                                                                  regulation of transdifferentiation
## GO:1904187                                                                                                  regulation of transformation of host cell by virus
## GO:1901392                                                                                           regulation of transforming growth factor beta1 activation
## GO:1901398                                                                                           regulation of transforming growth factor beta3 activation
## GO:0043143                                                                                                 regulation of translation by machinery localization
## GO:0043556                                                                                           regulation of translation in response to oxidative stress
## GO:1904803                                                                                       regulation of translation involved in cellular response to UV
## GO:0036496                                                                              regulation of translational initiation by eIF2 alpha dephosphorylation
## GO:1904073                                                                                                    regulation of trophectodermal cell proliferation
## GO:0034344                                                                                                        regulation of type III interferon production
## GO:1903176                                                                                                     regulation of tyrosine 3-monooxygenase activity
## GO:0051510                                                                                                            regulation of unidimensional cell growth
## GO:0034255                                                                                                                regulation of urea metabolic process
## GO:2000061                                                                                             regulation of ureter smooth muscle cell differentiation
## GO:0050675                                                                                                         regulation of urothelial cell proliferation
## GO:1900719                                                                                                      regulation of uterine smooth muscle relaxation
## GO:0032889                                                                                                        regulation of vacuole fusion, non-autophagic
## GO:1990736                                                                                   regulation of vascular smooth muscle cell membrane depolarization
## GO:0003117                                                                                        regulation of vasoconstriction by circulating norepinephrine
## GO:0003116                                                                                                    regulation of vasoconstriction by norepinephrine
## GO:1904971                                                                                                                     regulation of viral translation
## GO:0071581                                                                                                         regulation of zinc ion transmembrane import
## GO:0032976                                                                                                         release of matrix enzymes from mitochondria
## GO:0000735                                                                                                                       removal of nonhomologous ends
## GO:0097018                                                                                                                            renal albumin absorption
## GO:0061441                                                                                                                          renal artery morphogenesis
## GO:0072127                                                                                                                           renal capsule development
## GO:0072129                                                                                                                             renal capsule formation
## GO:0072128                                                                                                                         renal capsule morphogenesis
## GO:0072130                                                                                                                         renal capsule specification
## GO:0072055                                                                                                                            renal cortex development
## GO:0035623                                                                                                                            renal glucose absorption
## GO:0044722                                                                                                                           renal phosphate excretion
## GO:0097291                                                                                                                      renal phosphate ion absorption
## GO:0061150                                                                                                                           renal system segmentation
## GO:0072184                                                                                                       renal vesicle progenitor cell differentiation
## GO:0071932                                                                                                                           replication fork reversal
## GO:1990636                                                                                                                             reproductive senescence
## GO:1902691                                                                                                              respiratory basal cell differentiation
## GO:1904565                                                                                                        response to 1-oleoyl-sn-glycerol 3-phosphate
## GO:1903496                                                                                                                  response to 11-deoxycorticosterone
## GO:1905242                                                                                                              response to 3,3',5-triiodo-L-thyronine
## GO:1904681                                                                                                                    response to 3-methylcholanthrene
## GO:0036275                                                                                                                          response to 5-fluorouracil
## GO:1904386                                                                                                              response to L-phenylalanine derivative
## GO:0061481                                                                                                                             response to TNF agonist
## GO:0009737                                                                                                                           response to abscisic acid
## GO:1903717                                                                                                                                 response to ammonia
## GO:1904550                                                                                                                        response to arachidonic acid
## GO:1905217                                                                                                                             response to astaxanthin
## GO:0097184                                                                                                                                   response to azide
## GO:1901561                                                                                                                                 response to benomyl
## GO:0070781                                                                                                                                  response to biotin
## GO:1901594                                                                                                                             response to capsazepine
## GO:0034465                                                                                                                         response to carbon monoxide
## GO:0106096                                                                                                                                response to ceramide
## GO:0010157                                                                                                                                response to chlorate
## GO:0046687                                                                                                                                response to chromate
## GO:0120126                                                                                                                   response to copper ion starvation
## GO:0051414                                                                                                                                response to cortisol
## GO:0046898                                                                                                                           response to cycloheximide
## GO:1901328                                                                                                                          response to cytochalasin B
## GO:0052567                                                                                 response to defense-related host reactive oxygen species production
## GO:0052550                                  response to defense-related reactive oxygen species production by other organism involved in symbiotic interaction
## GO:1903494                                                                                                                  response to dehydroepiandrosterone
## GO:1904629                                                                                                                               response to diterpene
## GO:0090648                                                                                                                response to environmental enrichment
## GO:1901557                                                                                                                             response to fenofibrate
## GO:1905395                                                                                                                               response to flavonoid
## GO:0050826                                                                                                                                response to freezing
## GO:1990790                                                                                                  response to glial cell derived neurotrophic factor
## GO:1904631                                                                                                                               response to glucoside
## GO:1905630                                                                                                                          response to glyceraldehyde
## GO:0014876                                                                                      response to injury involved in regulation of muscle adaptation
## GO:1990418                                                                                                     response to insulin-like growth factor stimulus
## GO:0097396                                                                                                                          response to interleukin-17
## GO:0070543                                                                                                                           response to linoleic acid
## GO:0072704                                                                                                                         response to mercaptoethanol
## GO:0031427                                                                                                                            response to methotrexate
## GO:0072702                                                                                                                 response to methyl methanesulfonate
## GO:1904608                                                                                                                  response to monosodium L-glutamate
## GO:0035713                                                                                                                        response to nitrogen dioxide
## GO:0010335                                                                                                                response to non-ionic osmotic stress
## GO:1990834                                                                                                                                 response to odorant
## GO:0010193                                                                                                                                   response to ozone
## GO:1905711                                                                                                                response to phosphatidylethanolamine
## GO:1903165                                                                                                                        response to polycyclic arene
## GO:1904585                                                                                                                              response to putrescine
## GO:1905834                                                                                                               response to pyrimidine ribonucleotide
## GO:1901545                                                                                                                               response to raffinose
## GO:0009639                                                                                                                    response to red or far red light
## GO:1904014                                                                                                                               response to serotonin
## GO:0010272                                                                                                                              response to silver ion
## GO:0000304                                                                                                                          response to singlet oxygen
## GO:1904383                                                                                                                        response to sodium phosphate
## GO:1905225                                                                                                           response to thyrotropin-releasing hormone
## GO:0097068                                                                                                                               response to thyroxine
## GO:1990267                                                                                                           response to transition metal nanoparticle
## GO:0034014                                                                                                                            response to triglyceride
## GO:1904576                                                                                                                             response to tunicamycin
## GO:0034342                                                                                                                     response to type III interferon
## GO:0034516                                                                                                                              response to vitamin B6
## GO:1990785                                                                                                        response to water-immersion restraint stress
## GO:1904567                                                                                                                              response to wortmannin
## GO:0097601                                                                                                                     retina blood vessel maintenance
## GO:0046551                                                                                                                   retinal cone cell fate commitment
## GO:0097473                                                                                                                  retinal rod cell apoptotic process
## GO:0060223                                                                                                                    retinal rod cell fate commitment
## GO:0090242                                                                                  retinoic acid receptor signaling pathway involved in somitogenesis
## GO:0098958                                                                                                        retrograde axonal transport of mitochondrion
## GO:0099083                                                               retrograde trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0098925                                                               retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0000301                                                                                                retrograde transport, vesicle recycling within Golgi
## GO:0061451                                                                                                                  retrotrapezoid nucleus development
## GO:0061452                                                                                                       retrotrapezoid nucleus neuron differentiation
## GO:0046154                                                                                                                         rhodopsin metabolic process
## GO:0021660                                                                                                                              rhombomere 3 formation
## GO:0021666                                                                                                                              rhombomere 5 formation
## GO:0021664                                                                                                                          rhombomere 5 morphogenesis
## GO:0021572                                                                                                                            rhombomere 6 development
## GO:0021594                                                                                                                                rhombomere formation
## GO:0009231                                                                                                                     riboflavin biosynthetic process
## GO:0006771                                                                                                                        riboflavin metabolic process
## GO:0060461                                                                                                                            right lung morphogenesis
## GO:0003226                                                                                                  right ventricular compact myocardium morphogenesis
## GO:0021509                                                                                                                                roof plate formation
## GO:0048364                                                                                                                                    root development
## GO:0010053                                                                                                                 root epidermal cell differentiation
## GO:0080147                                                                                                                          root hair cell development
## GO:0048765                                                                                                                      root hair cell differentiation
## GO:0048767                                                                                                                                root hair elongation
## GO:0010015                                                                                                                                  root morphogenesis
## GO:0022622                                                                                                                             root system development
## GO:0060367                                                                                                                       sagittal suture morphogenesis
## GO:1901053                                                                                                                         sarcosine catabolic process
## GO:1990654                                                                                                                  sebum secreting cell proliferation
## GO:0016261                                                                                                                    selenocysteine catabolic process
## GO:0097056                                                                                                      selenocysteinyl-tRNA(Sec) biosynthetic process
## GO:0071527                                                                         semaphorin-plexin signaling pathway involved in outflow tract morphogenesis
## GO:0060879                                                                                                                           semicircular canal fusion
## GO:0070684                                                                                                                           seminal clot liquefaction
## GO:0061108                                                                                                              seminal vesicle epithelium development
## GO:0061682                                                                                                                       seminal vesicle morphogenesis
## GO:0035986                                                                                                senescence-associated heterochromatin focus assembly
## GO:1904937                                                                                                                            sensory neuron migration
## GO:0008052                                                                                                                sensory organ boundary specification
## GO:0038098                                                                                                   sequestering of BMP from receptor via BMP binding
## GO:0042137                                                                                                                    sequestering of neurotransmitter
## GO:0038101                                                                                               sequestering of nodal from receptor via nodal binding
## GO:0002552                                                                                                                    serotonin secretion by mast cell
## GO:0060096                                                                                                              serotonin secretion, neurotransmission
## GO:0071573                                                                                                                          shelterin complex assembly
## GO:0015913                                                                                                                       short-chain fatty acid import
## GO:0015912                                                                                                                    short-chain fatty acid transport
## GO:0019290                                                                                                                    siderophore biosynthetic process
## GO:0009237                                                                                                                       siderophore metabolic process
## GO:1990256                                                                                                                                   signal clustering
## GO:0035638                                                                                                                                   signal maturation
## GO:0072428                                                                                       signal transduction involved in intra-S DNA damage checkpoint
## GO:1903759                                                                                   signal transduction involved in regulation of aerobic respiration
## GO:0003172                                                                                                                        sinoatrial valve development
## GO:0003185                                                                                                                      sinoatrial valve morphogenesis
## GO:0003235                                                                                                                           sinus venosus development
## GO:0003236                                                                                                                         sinus venosus morphogenesis
## GO:0071170                                                                                                           site-specific DNA replication termination
## GO:0071171                                                                                           site-specific DNA replication termination at RTS1 barrier
## GO:0014813                                                                                                           skeletal muscle satellite cell commitment
## GO:0036060                                                                                                                             slit diaphragm assembly
## GO:1990832                                                                                                                               slow axonal transport
## GO:0032458                                                                                                                            slow endocytic recycling
## GO:0034462                                                                                                                   small-subunit processome assembly
## GO:0014806                                                                                                                           smooth muscle hyperplasia
## GO:0014895                                                                                                                           smooth muscle hypertrophy
## GO:0003271                                              smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## GO:0120049                                                                                                                      snRNA (adenine-N6)-methylation
## GO:0016076                                                                                                                             snRNA catabolic process
## GO:0006408                                                                                                                           snRNA export from nucleus
## GO:0043251                                                                                                            sodium-dependent organic anion transport
## GO:0070715                                                                                                           sodium-dependent organic cation transport
## GO:1990091                                                                                                                   sodium-dependent self proteolysis
## GO:0071720                                                                                                          sodium-independent prostaglandin transport
## GO:0021917                                                                                                                somatic motor neuron fate commitment
## GO:0006061                                                                                                                       sorbitol biosynthetic process
## GO:0006062                                                                                                                          sorbitol catabolic process
## GO:0072168                                                                                               specification of anterior mesonephric tubule identity
## GO:0072167                                                                                                        specification of mesonephric tubule identity
## GO:0072169                                                                                              specification of posterior mesonephric tubule identity
## GO:0072100                                                                                           specification of ureteric bud anterior/posterior symmetry
## GO:0072101                                                                  specification of ureteric bud anterior/posterior symmetry by BMP signaling pathway
## GO:0046692                                                                                                                                   sperm competition
## GO:0007321                                                                                                                                  sperm displacement
## GO:0035037                                                                                                                                         sperm entry
## GO:0007291                                                                                                                             sperm individualization
## GO:0048137                                                                                                                               spermatocyte division
## GO:0106048                                                                                                                            spermidine deacetylation
## GO:0032919                                                                                                                                spermine acetylation
## GO:0006669                                                                                                        sphinganine-1-phosphate biosynthetic process
## GO:0021512                                                                                                           spinal cord anterior/posterior patterning
## GO:0021519                                                                                                        spinal cord association neuron specification
## GO:1905355                                                                                                                            spine apparatus assembly
## GO:0060345                                                                                                                          spleen trabecula formation
## GO:0000388                                                                         spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## GO:0048792                                                                                                          spontaneous exocytosis of neurotransmitter
## GO:0120045                                                                                                                            stereocilium maintenance
## GO:0006463                                                                                                           steroid hormone receptor complex assembly
## GO:0046272                                                                                                                          stilbene catabolic process
## GO:0009810                                                                                                                          stilbene metabolic process
## GO:0014825                                                                                                            stomach fundus smooth muscle contraction
## GO:0120064                                                                                                           stomach pylorus smooth muscle contraction
## GO:0000732                                                                                                                                 strand displacement
## GO:1990170                                                                                                                      stress response to cadmium ion
## GO:1990359                                                                                                                         stress response to zinc ion
## GO:1990046                                                                                                                 stress-induced mitochondrial fusion
## GO:0044345                                                                            stromal-epithelial cell signaling involved in prostate gland development
## GO:0060661                                                                                                              submandibular salivary gland formation
## GO:0022012                                                                                                          subpallium cell proliferation in forebrain
## GO:0010814                                                                                                                       substance P catabolic process
## GO:1990772                                                                                                                               substance P secretion
## GO:1990793                                                                                                            substance P secretion, neurotransmission
## GO:1903701                                                                                                            substantia propria of cornea development
## GO:0061753                                                                                                             substrate localization to autophagosome
## GO:0021763                                                                                                                     subthalamic nucleus development
## GO:1902358                                                                                                                     sulfate transmembrane transport
## GO:0019418                                                                                                                                   sulfide oxidation
## GO:0070221                                                                                             sulfide oxidation, using sulfide:quinone oxidoreductase
## GO:0019417                                                                                                                                    sulfur oxidation
## GO:0071109                                                                                                                 superior temporal gyrus development
## GO:0060578                                                                                                                    superior vena cava morphogenesis
## GO:0039521                                                                                                              suppression by virus of host autophagy
## GO:0036268                                                                                                                                            swimming
## GO:0098725                                                                                                                             symmetric cell division
## GO:0060386                                                                                                            synapse assembly involved in innervation
## GO:0008039                                                                                                                         synaptic target recognition
## GO:0071911                                                                                                              synchronous neurotransmitter secretion
## GO:1990656                                                                                                                                  t-SNARE clustering
## GO:0001680                                                                                                                       tRNA 3'-terminal CCA addition
## GO:0034414                                                                                                           tRNA 3'-trailer cleavage, endonucleolytic
## GO:0002939                                                                                                                         tRNA N1-guanine methylation
## GO:1990983                                                                                                                                  tRNA demethylation
## GO:0002943                                                                                                                       tRNA dihydrouridine synthesis
## GO:0000968                                                                                                                                  tRNA exon ligation
## GO:0000971                                                       tRNA exon ligation utilizing 2',3' cyclic phosphate of 5'-exon as source of linkage phosphate
## GO:0035600                                                                                                                               tRNA methylthiolation
## GO:0071528                                                                                                                         tRNA re-export from nucleus
## GO:0009304                                                                                                                                  tRNA transcription
## GO:0042797                                                                                                            tRNA transcription by RNA polymerase III
## GO:0002926                                                                                        tRNA wobble base 5-methoxycarbonylmethyl-2-thiouridinylation
## GO:0002127                                                                                                               tRNA wobble base cytosine methylation
## GO:0042412                                                                                                                        taurine biosynthetic process
## GO:0070075                                                                                                                                      tear secretion
## GO:0032203                                                                                                                   telomere formation via telomerase
## GO:0097698                                                                                                       telomere maintenance via base-excision repair
## GO:0097393                                                                                                       telomeric repeat-containing RNA transcription
## GO:0097394                                                                                  telomeric repeat-containing RNA transcription by RNA polymerase II
## GO:0061976                                                                                             temporomandibular joint articular cartilage development
## GO:0002932                                                                                                                           tendon sheath development
## GO:0038032                                                                                         termination of G protein-coupled receptor signaling pathway
## GO:0006386                                                                                                     termination of RNA polymerase III transcription
## GO:0046901                                                                                                   tetrahydrofolylpolyglutamate biosynthetic process
## GO:0016109                                                                                                                 tetraterpenoid biosynthetic process
## GO:0040040                                                                                                                              thermosensory behavior
## GO:0009229                                                                                                           thiamine diphosphate biosynthetic process
## GO:0009088                                                                                                                      threonine biosynthetic process
## GO:0015826                                                                                                                                 threonine transport
## GO:0006214                                                                                                                         thymidine catabolic process
## GO:0050757                                                                                                           thymidylate synthase biosynthetic process
## GO:0035364                                                                                                                                   thymine transport
## GO:1990789                                                                                                         thyroid gland epithelial cell proliferation
## GO:0038194                                                                                                       thyroid-stimulating hormone signaling pathway
## GO:0002255                                                                                                                     tissue kallikrein-kinin cascade
## GO:0002462                                                                                                              tolerance induction to nonself antigen
## GO:0002413                                                                                                                   tolerance induction to tumor cell
## GO:0034130                                                                                                              toll-like receptor 1 signaling pathway
## GO:0034150                                                                                                              toll-like receptor 6 signaling pathway
## GO:0034158                                                                                                              toll-like receptor 8 signaling pathway
## GO:1905327                                                                                                                  tracheoesophageal septum formation
## GO:0098629                                                                                                           trans-Golgi network membrane organization
## GO:0006392                                                                                                transcription elongation from mitochondrial promoter
## GO:0001172                                                                                                                        transcription, RNA-templated
## GO:0001113                                                                                transcriptional open complex formation at RNA polymerase II promoter
## GO:0001174                                                                                  transcriptional start site selection at RNA polymerase II promoter
## GO:1905313                                                            transforming growth factor beta receptor signaling pathway involved in heart development
## GO:0090010                                                   transforming growth factor beta receptor signaling pathway involved in primitive streak formation
## GO:0036366                                                                                                         transforming growth factor beta3 activation
## GO:0002333                                                                                                       transitional one stage B cell differentiation
## GO:0002332                                                                                                           transitional stage B cell differentiation
## GO:0009386                                                                                                                           translational attenuation
## GO:0042000                                                                                                     translocation of peptides or proteins into host
## GO:0044053                                                                                      translocation of peptides or proteins into host cell cytoplasm
## GO:0051808                                                         translocation of peptides or proteins into other organism involved in symbiotic interaction
## GO:0007185                                                                               transmembrane receptor protein tyrosine phosphatase signaling pathway
## GO:0006313                                                                                                                         transposition, DNA-mediated
## GO:0005993                                                                                                                         trehalose catabolic process
## GO:0070413                                                                                                          trehalose metabolism in response to stress
## GO:0035674                                                                                                          tricarboxylic acid transmembrane transport
## GO:1904274                                                                                                                 tricellular tight junction assembly
## GO:0018979                                                                                                                 trichloroethylene metabolic process
## GO:0010054                                                                                                                         trichoblast differentiation
## GO:0048764                                                                                                                              trichoblast maturation
## GO:0036153                                                                                                                  triglyceride acyl-chain remodeling
## GO:0036510                                                                                                            trimming of terminal mannose on C branch
## GO:0021642                                                                                                                           trochlear nerve formation
## GO:0021639                                                                                                                       trochlear nerve morphogenesis
## GO:0032023                                                                                                                              trypsinogen activation
## GO:0003327                                                                                                              type B pancreatic cell fate commitment
## GO:0072560                                                                                                                   type B pancreatic cell maturation
## GO:0034343                                                                                                                      type III interferon production
## GO:0006571                                                                                                                       tyrosine biosynthetic process
## GO:0032194                                                                              ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## GO:1901006                                                                                                                   ubiquinone-6 biosynthetic process
## GO:1901004                                                                                                                      ubiquinone-6 metabolic process
## GO:0019628                                                                                                                             urate catabolic process
## GO:1903118                                                                                                                                   urate homeostasis
## GO:0072192                                                                                                              ureter epithelial cell differentiation
## GO:0014849                                                                                                                    ureter smooth muscle contraction
## GO:0072105                                                                                                                                ureteric peristalsis
## GO:0006218                                                                                                                           uridine catabolic process
## GO:0046108                                                                                                                           uridine metabolic process
## GO:0006780                                                                                                           uroporphyrinogen III biosynthetic process
## GO:0050674                                                                                                                       urothelial cell proliferation
## GO:1903709                                                                                                                           uterine gland development
## GO:0044558                                                                                                                    uterine smooth muscle relaxation
## GO:0043181                                                                                                                               vacuolar sequestering
## GO:0015676                                                                                                                              vanadium ion transport
## GO:0097699                                                                                            vascular endothelial cell response to fluid shear stress
## GO:0036323                                                                                     vascular endothelial growth factor receptor-1 signaling pathway
## GO:0010232                                                                                                                                  vascular transport
## GO:0001987                                        vasoconstriction of artery involved in baroreceptor response to lowering of systemic arterial blood pressure
## GO:0002014                                            vasoconstriction of artery involved in ischemic response to lowering of systemic arterial blood pressure
## GO:1990029                                                                                                                                          vasomotion
## GO:0060843                                                                                                             venous endothelial cell differentiation
## GO:0007371                                                                                                                       ventral midline determination
## GO:0060580                                                                                                  ventral spinal cord interneuron fate determination
## GO:0036113                                                                                                    very long-chain fatty-acyl-CoA catabolic process
## GO:0061782                                                                                                                         vesicle fusion with vesicle
## GO:0099050                                                                                                                                    vesicle scission
## GO:0097712                                                                                  vesicle targeting, trans-Golgi to periciliary membrane compartment
## GO:0090522                                                                                                            vesicle tethering involved in exocytosis
## GO:0090119                                                                                                              vesicle-mediated cholesterol transport
## GO:0110077                                                                                                            vesicle-mediated intercellular transport
## GO:0060116                                                                                                              vestibular receptor cell morphogenesis
## GO:0046745                                                                                                                  viral capsid secondary envelopment
## GO:0046786                                                                                                 viral replication complex formation and maintenance
## GO:0007495                                                                               visceral mesoderm-endoderm interaction involved in midgut development
## GO:0007522                                                                                                                         visceral muscle development
## GO:0042820                                                                                                                        vitamin B6 catabolic process
## GO:0010189                                                                                                                      vitamin E biosynthetic process
## GO:0030704                                                                                                                        vitelline membrane formation
## GO:0046111                                                                                                                       xanthine biosynthetic process
## GO:0016123                                                                                                                    xanthophyll biosynthetic process
## GO:1901827                                                                                                                     zeaxanthin biosynthetic process
## GO:1901825                                                                                                                        zeaxanthin metabolic process
## GO:0022006                                                                                                              zona limitans intrathalamica formation
## GO:0042351                                                                                                         'de novo' GDP-L-fucose biosynthetic process
## GO:0009257                                                                                                      10-formyltetrahydrofolate biosynthetic process
## GO:0009258                                                                                                         10-formyltetrahydrofolate catabolic process
## GO:0046361                                                                                                                     2-oxobutyrate metabolic process
## GO:0050428                                                                                          3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## GO:0018960                                                                                                                     4-nitrophenol metabolic process
## GO:0015866                                                                                                                                       ADP transport
## GO:0006756                                                                                                                                 AMP phosphorylation
## GO:0002358                                                                                                                    B cell homeostatic proliferation
## GO:0002352                                                                                                                           B cell negative selection
## GO:0080120                                                                                                                         CAAX-box protein maturation
## GO:0071586                                                                                                                         CAAX-box protein processing
## GO:0002362                                                                        CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## GO:0002302                                                                         CD8-positive, alpha-beta T cell differentiation involved in immune response
## GO:0035698                                                                                             CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:0002305                                                                                    CD8-positive, gamma-delta intraepithelial T cell differentiation
## GO:0035781                                                                                                                           CD86 biosynthetic process
## GO:0046341                                                                                                                CDP-diacylglycerol metabolic process
## GO:0046381                                                                                                           CMP-N-acetylneuraminate metabolic process
## GO:0019478                                                                                                                      D-amino acid catabolic process
## GO:0046177                                                                                                                       D-gluconate catabolic process
## GO:0019521                                                                                                                       D-gluconate metabolic process
## GO:0070178                                                                                                                          D-serine metabolic process
## GO:0090618                                                                                                                                 DNA clamp unloading
## GO:0044727                                                                                                                DNA demethylation of male pronucleus
## GO:0044028                                                                                                                                 DNA hypomethylation
## GO:0042262                                                                                                                                      DNA protection
## GO:0071163                                                                                                      DNA replication preinitiation complex assembly
## GO:0045004                                                                                                                        DNA replication proofreading
## GO:0036292                                                                                                                                       DNA rewinding
## GO:1904161                                                                                                 DNA synthesis involved in UV-damage excision repair
## GO:0038129                                                                                                                             ERBB3 signaling pathway
## GO:0045210                                                                                                                           FasL biosynthetic process
## GO:1990172                                                                                                        G protein-coupled receptor catabolic process
## GO:0070315                                                                                                G1 to G0 transition involved in cell differentiation
## GO:0051319                                                                                                                                            G2 phase
## GO:0046710                                                                                                                               GDP metabolic process
## GO:0046038                                                                                                                               GMP catabolic process
## GO:0032472                                                                                                                         Golgi calcium ion transport
## GO:0055107                                                                                                                Golgi to secretory granule transport
## GO:0055108                                                                                                                Golgi to transport vesicle transport
## GO:0048211                                                                                                                               Golgi vesicle docking
## GO:0048213                                                                                                       Golgi vesicle prefusion complex stabilization
## GO:0060932                                                                                                            His-Purkinje system cell differentiation
## GO:0046709                                                                                                                               IDP catabolic process
## GO:0046707                                                                                                                               IDP metabolic process
## GO:0002192                                                                                              IRES-dependent translational initiation of linear mRNA
## GO:0046041                                                                                                                               ITP metabolic process
## GO:0042853                                                                                                                         L-alanine catabolic process
## GO:0046373                                                                                                                       L-arabinose metabolic process
## GO:0015882                                                                                                             L-ascorbic acid transmembrane transport
## GO:0140009                                                                                                           L-aspartate import across plasma membrane
## GO:0070778                                                                                                                 L-aspartate transmembrane transport
## GO:0019452                                                                                                             L-cysteine catabolic process to taurine
## GO:0015811                                                                                                                                 L-cystine transport
## GO:0097052                                                                                                                      L-kynurenine metabolic process
## GO:0019477                                                                                                                          L-lysine catabolic process
## GO:0097639                                                                                                              L-lysine import across plasma membrane
## GO:0046440                                                                                                                          L-lysine metabolic process
## GO:0045204                                                                                                                            MAPK export from nucleus
## GO:0002397                                                                                                                MHC class I protein complex assembly
## GO:0018008                                                                                                        N-terminal peptidyl-glycine N-myristoylation
## GO:0017198                                                                                                              N-terminal peptidyl-serine acetylation
## GO:0006480                                                                                                           N-terminal protein amino acid methylation
## GO:0006500                                                                                                                   N-terminal protein palmitoylation
## GO:0006740                                                                                                                                  NADPH regeneration
## GO:0060853                                                                       Notch signaling pathway involved in arterial endothelial cell fate commitment
## GO:1902359                                                                                                   Notch signaling pathway involved in somitogenesis
## GO:0016267                                                                                                                         O-glycan processing, core 1
## GO:0030719                                                                                                                              P granule organization
## GO:0003165                                                                                                                        Purkinje myocyte development
## GO:0001188                                                                                                     RNA polymerase I preinitiation complex assembly
## GO:0042245                                                                                                                                          RNA repair
## GO:0010265                                                                                                                                SCF complex assembly
## GO:0035712                                                                                                                          T-helper 2 cell activation
## GO:0032639                                                                                                                                    TRAIL production
## GO:1903241                                                                                                                     U2-type prespliceosome assembly
## GO:1990569                                                                                                     UDP-N-acetylglucosamine transmembrane transport
## GO:0072334                                                                                                               UDP-galactose transmembrane transport
## GO:0006011                                                                                                                       UDP-glucose metabolic process
## GO:0046398                                                                                                                   UDP-glucuronate metabolic process
## GO:0038190                                                                                                         VEGF-activated neuropilin signaling pathway
## GO:0038018                                                                                                                      Wnt receptor catabolic process
## GO:0044332                                                                                 Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:0021874                                                                                     Wnt signaling pathway involved in forebrain neuroblast division
## GO:0061289                                                                                                Wnt signaling pathway involved in kidney development
## GO:0021560                                                                                                                          abducens nerve development
## GO:0021599                                                                                                                            abducens nerve formation
## GO:0021598                                                                                                                        abducens nerve morphogenesis
## GO:0033277                                                                                                                         abortive mitotic cell cycle
## GO:0019413                                                                                                                        acetate biosynthetic process
## GO:0019427                                                                                                        acetyl-CoA biosynthetic process from acetate
## GO:0046356                                                                                                                        acetyl-CoA catabolic process
## GO:0070650                                                                                                                  actin filament bundle distribution
## GO:0071846                                                                                                                          actin filament debranching
## GO:0051695                                                                                                                            actin filament uncapping
## GO:0031247                                                                                                                                  actin rod assembly
## GO:1905397                                                                                         activated CD8-positive, alpha-beta T cell apoptotic process
## GO:0060466                                                                                                    activation of meiosis involved in egg activation
## GO:0032431                                                                                                             activation of phospholipase A2 activity
## GO:0002541                                                                               activation of plasma proteins involved in acute inflammatory response
## GO:1990051                                                                                                             activation of protein kinase C activity
## GO:0016062                                                                                                          adaptation of rhodopsin mediated signaling
## GO:0009955                                                                                                               adaxial/abaxial pattern specification
## GO:0006168                                                                                                                                     adenine salvage
## GO:0006154                                                                                                                         adenosine catabolic process
## GO:0071881                                                                                  adenylate cyclase-inhibiting adrenergic receptor signaling pathway
## GO:0061104                                                                                                             adrenal chromaffin cell differentiation
## GO:0035801                                                                                                                          adrenal cortex development
## GO:0035802                                                                                                                            adrenal cortex formation
## GO:0007527                                                                                                                    adult somatic muscle development
## GO:0046223                                                                                                                         aflatoxin catabolic process
## GO:0046176                                                                                                                      aldonic acid catabolic process
## GO:0019520                                                                                                                      aldonic acid metabolic process
## GO:0000255                                                                                                                         allantoin metabolic process
## GO:1905069                                                                                                                               allantois development
## GO:0071929                                                                                                                           alpha-tubulin acetylation
## GO:0036305                                                                                                                          ameloblast differentiation
## GO:0097272                                                                                                                                 ammonia homeostasis
## GO:0120077                                                                                                                            angiogenic sprout fusion
## GO:0086098                                                                                   angiotensin-activated signaling pathway involved in heart process
## GO:0002033                                                        angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0021506                                                                                                                          anterior neuropore closure
## GO:0072098                                                                             anterior/posterior pattern specification involved in kidney development
## GO:0098964                                                                              anterograde dendritic transport of messenger ribonucleoprotein complex
## GO:0061760                                                                                                                   antifungal innate immune response
## GO:0002488                                                   antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway
## GO:0002489                                    antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## GO:0002479                                                     antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0048006                                                                      antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## GO:1900204                                                                               apoptotic process involved in metanephric collecting duct development
## GO:1900205                                                                                apoptotic process involved in metanephric nephron tubule development
## GO:0019566                                                                                                                         arabinose metabolic process
## GO:0042450                                                                                                         arginine biosynthetic process via ornithine
## GO:0019547                                                                                                             arginine catabolic process to ornithine
## GO:0018872                                                                                                                     arsonoacetate metabolic process
## GO:0060844                                                                                                           arterial endothelial cell fate commitment
## GO:0072021                                                                                                                     ascending thin limb development
## GO:0035700                                                                                                                                astrocyte chemotaxis
## GO:0090164                                                                                                                   asymmetric Golgi ribbon formation
## GO:0003290                                                                                                                atrial septum secundum morphogenesis
## GO:0003294                                                                                                              atrial ventricular junction remodeling
## GO:0060928                                                                                                              atrioventricular node cell development
## GO:0060922                                                                                                          atrioventricular node cell differentiation
## GO:0051455                                                     attachment of spindle microtubules to kinetochore involved in homologous chromosome segregation
## GO:0051316                                                        attachment of spindle microtubules to kinetochore involved in meiotic chromosome segregation
## GO:0042667                                                                                                           auditory receptor cell fate specification
## GO:0001982                                                                                 baroreceptor response to decreased systemic arterial blood pressure
## GO:0042595                                                                                                                   behavioral response to starvation
## GO:0030573                                                                                                                         bile acid catabolic process
## GO:0038183                                                                                                                         bile acid signaling pathway
## GO:0042710                                                                                                                                   biofilm formation
## GO:0070980                                                                                                                          biphenyl catabolic process
## GO:0072564                                                                                                                       blood microparticle formation
## GO:0060846                                                                                                       blood vessel endothelial cell fate commitment
## GO:0097101                                                                                                    blood vessel endothelial cell fate specification
## GO:0072554                                                                                                                           blood vessel lumenization
## GO:0031989                                                                                                                 bombesin receptor signaling pathway
## GO:0000494                                                                                                                    box C/D snoRNA 3'-end processing
## GO:0033967                                                                                                                    box C/D snoRNA metabolic process
## GO:0034963                                                                                                                           box C/D snoRNA processing
## GO:0000495                                                                                                                  box H/ACA snoRNA 3'-end processing
## GO:0033979                                                                                                                  box H/ACA snoRNA metabolic process
## GO:0034964                                                                                                                         box H/ACA snoRNA processing
## GO:0000493                                                                                                                           box H/ACA snoRNP assembly
## GO:0060667                                                                                          branch elongation involved in salivary gland morphogenesis
## GO:0009082                                                                                                      branched-chain amino acid biosynthetic process
## GO:0060854                                                                                                    branching involved in lymph vessel morphogenesis
## GO:0060532                                                                                                                      bronchus cartilage development
## GO:0060434                                                                                                                              bronchus morphogenesis
## GO:0070342                                                                                                                        brown fat cell proliferation
## GO:0055073                                                                                                                             cadmium ion homeostasis
## GO:1990408                                                                                          calcitonin gene-related peptide receptor signaling pathway
## GO:0099093                                                                                                               calcium export from the mitochondrion
## GO:1990927                                                                                                           calcium ion regulated lysosome exocytosis
## GO:0016340                                                                                                              calcium-dependent cell-matrix adhesion
## GO:1990092                                                                                                                  calcium-dependent self proteolysis
## GO:0035585                                                                                       calcium-mediated signaling using extracellular calcium source
## GO:0060220                                                                                                  camera-type eye photoreceptor cell fate commitment
## GO:0044338                                                                   canonical Wnt signaling pathway involved in mesenchymal stem cell differentiation
## GO:0061290                                                                          canonical Wnt signaling pathway involved in metanephric kidney development
## GO:0044337                                                                canonical Wnt signaling pathway involved in positive regulation of apoptotic process
## GO:0061324                                         canonical Wnt signaling pathway involved in positive regulation of cardiac outflow tract cell proliferation
## GO:0044334                                             canonical Wnt signaling pathway involved in positive regulation of epithelial to mesenchymal transition
## GO:0044343                                                      canonical Wnt signaling pathway involved in regulation of type B pancreatic cell proliferation
## GO:0036451                                                                                                                                cap mRNA methylation
## GO:0002191                                                                                                              cap-dependent translational initiation
## GO:0110017                                                                                             cap-independent translational initiation of linear mRNA
## GO:0097309                                                                                                                               cap1 mRNA methylation
## GO:0009758                                                                                                                            carbohydrate utilization
## GO:0140074                                                                                                       cardiac endothelial to mesenchymal transition
## GO:0060936                                                                                                                 cardiac fibroblast cell development
## GO:0060935                                                                                                             cardiac fibroblast cell differentiation
## GO:0003218                                                                                                                    cardiac left ventricle formation
## GO:0003245                                                                                        cardiac muscle tissue growth involved in heart morphogenesis
## GO:0003292                                                                                                                 cardiac septum cell differentiation
## GO:0035498                                                                                                                         carnosine metabolic process
## GO:0016121                                                                                                                          carotene catabolic process
## GO:0016119                                                                                                                          carotene metabolic process
## GO:1990079                                                                                                                               cartilage homeostasis
## GO:0052364                                                                                                         catabolism by host of substance in symbiont
## GO:0052360                                                                                                        catabolism by host of symbiont macromolecule
## GO:0052361                                                         catabolism by organism of macromolecule in other organism involved in symbiotic interaction
## GO:0052227                                                                         catabolism of substance in other organism involved in symbiotic interaction
## GO:0120078                                                                                                    cell adhesion involved in sprouting angiogenesis
## GO:1902298                                                                                                  cell cycle DNA replication maintenance of fidelity
## GO:0090678                                                                                             cell dedifferentiation involved in phenotypic switching
## GO:0060974                                                                                                          cell migration involved in heart formation
## GO:0140039                                                                                            cell-cell adhesion in response to extracellular stimulus
## GO:0045168                                                                                                cell-cell signaling involved in cell fate commitment
## GO:0060995                                                                                                  cell-cell signaling involved in kidney development
## GO:0060764                                                                                           cell-cell signaling involved in mammary gland development
## GO:0072204                                                                                             cell-cell signaling involved in metanephros development
## GO:0003366                                                                                           cell-matrix adhesion involved in ameboidal cell migration
## GO:0043605                                                                                                                    cellular amide catabolic process
## GO:0071477                                                                                                                cellular hypotonic salinity response
## GO:0072338                                                                                                                   cellular lactam metabolic process
## GO:1904613                                                                                              cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903577                                                                                                                     cellular response to L-arginine
## GO:0071469                                                                                                                    cellular response to alkaline pH
## GO:1903413                                                                                                                      cellular response to bile acid
## GO:1904976                                                                                                                      cellular response to bleomycin
## GO:0071460                                                                                                           cellular response to cell-matrix adhesion
## GO:0071279                                                                                                                     cellular response to cobalt ion
## GO:0072738                                                                                                                        cellular response to diamide
## GO:1990786                                                                                                                          cellular response to dsDNA
## GO:1990859                                                                                                                     cellular response to endothelin
## GO:0036018                                                                                                                 cellular response to erythropoietin
## GO:0071412                                                                                                                      cellular response to genistein
## GO:0071377                                                                                                              cellular response to glucagon stimulus
## GO:0071403                                                                                     cellular response to high density lipoprotein particle stimulus
## GO:0071413                                                                                                              cellular response to hydroxyisoflavone
## GO:0071352                                                                                                                  cellular response to interleukin-2
## GO:0098759                                                                                                                  cellular response to interleukin-8
## GO:0071283                                                                                                                  cellular response to iron(III) ion
## GO:0071395                                                                                                         cellular response to jasmonic acid stimulus
## GO:0072750                                                                                                                   cellular response to leptomycin B
## GO:0036245                                                                                                                      cellular response to menadione
## GO:0097238                                                                                                                  cellular response to methylglyoxal
## GO:0071389                                                                                                     cellular response to mineralocorticoid stimulus
## GO:0071226                                                                                                      cellular response to molecule of fungal origin
## GO:1904009                                                                                                           cellular response to monosodium glutamate
## GO:0071315                                                                                                                       cellular response to morphine
## GO:0071506                                                                                                              cellular response to mycophenolic acid
## GO:0071874                                                                                                        cellular response to norepinephrine stimulus
## GO:1905546                                                                                                                cellular response to phenylpropanoid
## GO:0016036                                                                                                           cellular response to phosphate starvation
## GO:0071393                                                                                                          cellular response to progesterone stimulus
## GO:0072752                                                                                                                      cellular response to rapamycin
## GO:0071461                                                                                                                    cellular response to redox state
## GO:1904482                                                                                                               cellular response to tetrahydrofolate
## GO:1904117                                                                                                                    cellular response to vasopressin
## GO:0071307                                                                                                                      cellular response to vitamin K
## GO:0042631                                                                                                              cellular response to water deprivation
## GO:0034224                                                                                                            cellular response to zinc ion starvation
## GO:0097533                                                                                                           cellular stress response to acid chemical
## GO:0021551                                                                                                                central nervous system morphogenesis
## GO:0002508                                                                                                                         central tolerance induction
## GO:0090222                                                                                                         centrosome-templated microtubule nucleation
## GO:1905373                                                                                                   ceramide phosphoethanolamine biosynthetic process
## GO:1905371                                                                                                      ceramide phosphoethanolamine metabolic process
## GO:0021691                                                                                                           cerebellar Purkinje cell layer maturation
## GO:0021693                                                                                              cerebellar Purkinje cell layer structural organization
## GO:0021935                                                                                              cerebellar granule cell precursor tangential migration
## GO:0021687                                                                                                            cerebellar molecular layer morphogenesis
## GO:0021589                                                                                                                  cerebellum structural organization
## GO:0061300                                                                                                                  cerebellum vasculature development
## GO:0021893                                                                                               cerebral cortex GABAergic interneuron fate commitment
## GO:0060067                                                                                                                                  cervix development
## GO:0071954                                                                                                          chemokine (C-C motif) ligand 11 production
## GO:0038116                                                                                                   chemokine (C-C motif) ligand 21 signaling pathway
## GO:0021842                                                                  chemorepulsion involved in interneuron migration from the subpallium to the cortex
## GO:0021836                                                                           chemorepulsion involved in postnatal olfactory bulb interneuron migration
## GO:0036518                                                                                                          chemorepulsion of dopaminergic neuron axon
## GO:0038188                                                                                                                   cholecystokinin signaling pathway
## GO:0072356                                                                                            chromosome passenger complex localization to kinetochore
## GO:0002545                                                                                             chronic inflammatory response to non-antigenic stimulus
## GO:0034378                                                                                                                                chylomicron assembly
## GO:0036090                                                                                                                          cleavage furrow ingression
## GO:0060197                                                                                                                                   cloacal septation
## GO:0061386                                                                                                                            closure of optic fissure
## GO:0048674                                                                                                                collateral sprouting of injured axon
## GO:1990192                                                                                                            collecting lymphatic vessel constriction
## GO:1990765                                                                                                                     colon smooth muscle contraction
## GO:0048749                                                                                                                            compound eye development
## GO:1990708                                                                                                                        conditioned place preference
## GO:0032601                                                                                                          connective tissue growth factor production
## GO:0098705                                                                                                            copper ion import across plasma membrane
## GO:0003335                                                                                                                              corneocyte development
## GO:0003169                                                                                                                         coronary vein morphogenesis
## GO:0061378                                                                                                                    corpora quadrigemina development
## GO:0021966                                                                                                                  corticospinal neuron axon guidance
## GO:0046226                                                                                                                          coumarin catabolic process
## GO:0006601                                                                                                                       creatine biosynthetic process
## GO:0006600                                                                                                                          creatine metabolic process
## GO:0015881                                                                                                                    creatine transmembrane transport
## GO:0038041                                                                             cross-receptor inhibition within G protein-coupled receptor heterodimer
## GO:0042335                                                                                                                                 cuticle development
## GO:0019343                                                                                                     cysteine biosynthetic process via cystathionine
## GO:0042883                                                                                                                                  cysteine transport
## GO:0006423                                                                                                                       cysteinyl-tRNA aminoacylation
## GO:0060327                                                                                       cytoplasmic actin-based contraction involved in cell motility
## GO:0019858                                                                                                                          cytosine metabolic process
## GO:0046967                                                                                                                             cytosol to ER transport
## GO:0043316                                                                                                                      cytotoxic T cell degranulation
## GO:0046056                                                                                                                              dADP metabolic process
## GO:0006233                                                                                                                           dTDP biosynthetic process
## GO:0046072                                                                                                                              dTDP metabolic process
## GO:0071550                                                                                                           death-inducing signaling complex assembly
## GO:0009814                                                                                                          defense response, incompatible interaction
## GO:0060232                                                                                                                                        delamination
## GO:0044565                                                                                                                        dendritic cell proliferation
## GO:0098939                                                                                                                dendritic transport of mitochondrion
## GO:0046092                                                                                                                     deoxycytidine metabolic process
## GO:0009159                                                                                                 deoxyribonucleoside monophosphate catabolic process
## GO:0002032                                                                         desensitization of G protein-coupled receptor signaling pathway by arrestin
## GO:0050911                                                                              detection of chemical stimulus involved in sensory perception of smell
## GO:0001581                                                                         detection of chemical stimulus involved in sensory perception of sour taste
## GO:0001582                                                                        detection of chemical stimulus involved in sensory perception of sweet taste
## GO:0042496                                                                                                           detection of diacyl bacterial lipopeptide
## GO:0009590                                                                                                                                detection of gravity
## GO:0070483                                                                                                                                detection of hypoxia
## GO:0050973                                                                                      detection of mechanical stimulus involved in equilibrioception
## GO:0003127                                                                                                                             detection of nodal flow
## GO:0032499                                                                                                                          detection of peptidoglycan
## GO:0042495                                                                                                          detection of triacyl bacterial lipopeptide
## GO:0035545                                                                                             determination of left/right asymmetry in nervous system
## GO:0050787                                                                                                                       detoxification of mercury ion
## GO:0018894                                                                                                                  dibenzo-p-dioxin metabolic process
## GO:0060598                                                              dichotomous subdivision of terminal units involved in mammary gland duct morphogenesis
## GO:0046452                                                                                                                     dihydrofolate metabolic process
## GO:0021840                                                        directional guidance of interneurons involved in migration from the subpallium to the cortex
## GO:0072156                                                                                                                         distal tubule morphogenesis
## GO:0070839                                                                                                                           divalent metal ion export
## GO:0019408                                                                                                                       dolichol biosynthetic process
## GO:1904835                                                                                                                  dorsal root ganglion morphogenesis
## GO:0097681                                                                                double-strand break repair via alternative nonhomologous end joining
## GO:0019085                                                                                                                           early viral transcription
## GO:0007439                                                                                                              ectodermal digestive tract development
## GO:0035803                                                                                                                                  egg coat formation
## GO:0051542                                                                                                                        elastin biosynthetic process
## GO:0048611                                                                                                    embryonic ectodermal digestive tract development
## GO:1990401                                                                                                                          embryonic lung development
## GO:0021831                                                                                            embryonic olfactory bulb interneuron precursor migration
## GO:0061443                                                                                                            endocardial cushion cell differentiation
## GO:0020028                                                                                                                         endocytic hemoglobin import
## GO:0007493                                                                                                                  endodermal cell fate determination
## GO:0007113                                                                                                                              endomitotic cell cycle
## GO:0016320                                                                                                               endoplasmic reticulum membrane fusion
## GO:0061857                                                                                    endoplasmic reticulum stress-induced pre-emptive quality control
## GO:0097111                                                                                   endoplasmic reticulum-Golgi intermediate compartment organization
## GO:0048388                                                                                                                       endosomal lumen acidification
## GO:0097750                                                                                                                        endosome membrane tubulation
## GO:0097498                                                                                                                    endothelial tube lumen extension
## GO:0086100                                                                                                               endothelin receptor signaling pathway
## GO:1990775                                                                                                                                endothelin secretion
## GO:0034230                                                                                                                               enkephalin processing
## GO:0075506                                                                   entry of viral genome into host nucleus through nuclear pore complex via importin
## GO:0018307                                                                                                                        enzyme active site formation
## GO:0035854                                                                                                                          eosinophil fate commitment
## GO:1905223                                                                                                                            epicardium morphogenesis
## GO:0003349                                                                                         epicardium-derived cardiac endothelial cell differentiation
## GO:0060939                                                                                              epicardium-derived cardiac fibroblast cell development
## GO:0060938                                                                                          epicardium-derived cardiac fibroblast cell differentiation
## GO:0060983                                                                              epicardium-derived cardiac vascular smooth muscle cell differentiation
## GO:0036334                                                                                                                     epidermal stem cell homeostasis
## GO:0042418                                                                                                                    epinephrine biosynthetic process
## GO:0060690                                                                              epithelial cell differentiation involved in salivary gland development
## GO:0060738                                                                             epithelial-mesenchymal signaling involved in prostate gland development
## GO:0006696                                                                                                                     ergosterol biosynthetic process
## GO:0008204                                                                                                                        ergosterol metabolic process
## GO:0042275                                                                                                               error-free postreplication DNA repair
## GO:0034117                                                                                                                             erythrocyte aggregation
## GO:0038162                                                                                                           erythropoietin-mediated signaling pathway
## GO:0014846                                                                                                                 esophagus smooth muscle contraction
## GO:0048560                                                                                                   establishment of anatomical structure orientation
## GO:0006343                                                                                                                establishment of chromatin silencing
## GO:0060857                                                                                                          establishment of glial blood-brain barrier
## GO:0034087                                                                                                  establishment of mitotic sister chromatid cohesion
## GO:0019043                                                                                                                      establishment of viral latency
## GO:0016332                                                                                    establishment or maintenance of polarity of embryonic epithelium
## GO:0006711                                                                                                                          estrogen catabolic process
## GO:0001927                                                                                                                                    exocyst assembly
## GO:0035261                                                                                                                    external genitalia morphogenesis
## GO:0021754                                                                                                                          facial nucleus development
## GO:0016488                                                                                                                          farnesol catabolic process
## GO:0016487                                                                                                                          farnesol metabolic process
## GO:0010142                                                                                       farnesyl diphosphate biosynthetic process, mevalonate pathway
## GO:0097156                                                                                                                  fasciculation of motor neuron axon
## GO:1904606                                                                                                                          fat cell apoptotic process
## GO:0010430                                                                                                                          fatty acid omega-oxidation
## GO:1903173                                                                                                                     fatty alcohol metabolic process
## GO:0036115                                                                                                                    fatty-acyl-CoA catabolic process
## GO:0007147                                                                                                                                   female meiosis II
## GO:0035038                                                                                                                          female pronucleus assembly
## GO:0030237                                                                                                                            female sex determination
## GO:0070627                                                                                                                                 ferrous iron import
## GO:0098707                                                                                                          ferrous iron import across plasma membrane
## GO:0060595                                                         fibroblast growth factor receptor signaling pathway involved in mammary gland specification
## GO:0035607                                                    fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## GO:0072387                                                                                                       flavin adenine dinucleotide metabolic process
## GO:0042727                                                                                                     flavin-containing compound biosynthetic process
## GO:0021508                                                                                                                               floor plate formation
## GO:0009397                                                                                                    folic acid-containing compound catabolic process
## GO:0002266                                                                                                                follicular dendritic cell activation
## GO:0002268                                                                                                           follicular dendritic cell differentiation
## GO:0035922                                                                                                                               foramen ovale closure
## GO:0021897                                                                                                                     forebrain astrocyte development
## GO:0021896                                                                                                                 forebrain astrocyte differentiation
## GO:0021592                                                                                                                        fourth ventricle development
## GO:0060364                                                                                                                        frontal suture morphogenesis
## GO:0030389                                                                                                                      fructosamine metabolic process
## GO:0046370                                                                                                                       fructose biosynthetic process
## GO:0006683                                                                                                                galactosylceramide catabolic process
## GO:0090663                                                                                                                 galanin-activated signaling pathway
## GO:0009450                                                                                                           gamma-aminobutyric acid catabolic process
## GO:0061534                                                                                                gamma-aminobutyric acid secretion, neurotransmission
## GO:0002304                                                                                                  gamma-delta intraepithelial T cell differentiation
## GO:0061552                                                                                                                              ganglion morphogenesis
## GO:0010706                                                                                               ganglioside biosynthetic process via lactosylceramide
## GO:0051866                                                                                                                         general adaptation syndrome
## GO:0000349                                                                              generation of catalytic spliceosome for first transesterification step
## GO:0000350                                                                             generation of catalytic spliceosome for second transesterification step
## GO:0106091                                                                                                                    glial cell projection elongation
## GO:0044467                                                                                                    glial cell-derived neurotrophic factor secretion
## GO:0001575                                                                                                                         globoside metabolic process
## GO:0021759                                                                                                                         globus pallidus development
## GO:0072011                                                                                                                  glomerular endothelium development
## GO:0006713                                                                                                                    glucocorticoid catabolic process
## GO:0006043                                                                                                                       glucosamine catabolic process
## GO:0019255                                                                                                               glucose 1-phosphate metabolic process
## GO:0044381                                                                                                      glucose import in response to insulin stimulus
## GO:0006679                                                                                                               glucosylceramide biosynthetic process
## GO:0019391                                                                                                                     glucuronoside catabolic process
## GO:0019551                                                                                                       glutamate catabolic process to 2-oxoglutarate
## GO:0019550                                                                                                            glutamate catabolic process to aspartate
## GO:0006425                                                                                                                      glutaminyl-tRNA aminoacylation
## GO:0006424                                                                                                                        glutamyl-tRNA aminoacylation
## GO:0034775                                                                                                                 glutathione transmembrane transport
## GO:0046166                                                                                                     glyceraldehyde-3-phosphate biosynthetic process
## GO:0046327                                                                                                         glycerol biosynthetic process from pyruvate
## GO:0019563                                                                                                                          glycerol catabolic process
## GO:0006127                                                                                                                            glycerophosphate shuttle
## GO:0019264                                                                                                            glycine biosynthetic process from serine
## GO:0019265                                                                                       glycine biosynthetic process, by transamination of glyoxylate
## GO:0009441                                                                                                                         glycolate metabolic process
## GO:0046836                                                                                                                                glycolipid transport
## GO:0061723                                                                                                                                          glycophagy
## GO:0006097                                                                                                                                    glyoxylate cycle
## GO:0038158                                                                                             granulocyte colony-stimulating factor signaling pathway
## GO:0060014                                                                                                                      granulosa cell differentiation
## GO:0003430                                                                                                           growth plate cartilage chondrocyte growth
## GO:0097117                                                                                                      guanylate kinase-associated protein clustering
## GO:1905748                                                                                                                           hard palate morphogenesis
## GO:0006784                                                                                                                         heme a biosynthetic process
## GO:0046160                                                                                                                            heme a metabolic process
## GO:0006788                                                                                                                                      heme oxidation
## GO:0061872                                                                                                                   hepatic stellate cell contraction
## GO:0061868                                                                                                                     hepatic stellate cell migration
## GO:0061017                                                                                                                         hepatoblast differentiation
## GO:0036333                                                                                                                              hepatocyte homeostasis
## GO:0070869                                                                                            heterochromatin assembly involved in chromatin silencing
## GO:0070829                                                                                                                         heterochromatin maintenance
## GO:0021577                                                                                                                   hindbrain structural organization
## GO:0001694                                                                                                                      histamine biosynthetic process
## GO:0000105                                                                                                                      histidine biosynthetic process
## GO:0015817                                                                                                                                 histidine transport
## GO:0006427                                                                                                                        histidyl-tRNA aminoacylation
## GO:0071894                                                                                              histone H2B conserved C-terminal lysine ubiquitination
## GO:0097676                                                                                                                        histone H3-K36 dimethylation
## GO:0034971                                                                                                                          histone H3-R17 methylation
## GO:0034970                                                                                                                           histone H3-R2 methylation
## GO:0036413                                                                                                                       histone H3-R26 citrullination
## GO:2000775                                                                                  histone H3-S10 phosphorylation involved in chromosome condensation
## GO:0072355                                                                                                                       histone H3-T3 phosphorylation
## GO:0035408                                                                                                                       histone H3-T6 phosphorylation
## GO:0035574                                                                                                                        histone H4-K20 demethylation
## GO:1990258                                                                                                                       histone glutamine methylation
## GO:0043418                                                                                                                      homocysteine catabolic process
## GO:0042309                                                                                                                                        homoiothermy
## GO:0044029                                                                                                                       hypomethylation of CpG island
## GO:0042539                                                                                                                         hypotonic salinity response
## GO:0043103                                                                                                                                hypoxanthine salvage
## GO:0002436                                                                                               immune complex clearance by monocytes and macrophages
## GO:0002380                                                                                                immunoglobulin secretion involved in immune response
## GO:0002415                                                       immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## GO:0051389                                                                                                                      inactivation of MAPKK activity
## GO:0060821                                                                                                     inactivation of X chromosome by DNA methylation
## GO:0060817                                                                                                               inactivation of paternal X chromosome
## GO:0061379                                                                                                                     inferior colliculus development
## GO:0001544                                                                                                    initiation of primordial ovarian follicle growth
## GO:0098582                                                                                                                        innate vocalization behavior
## GO:0052746                                                                                                                            inositol phosphorylation
## GO:1901143                                                                                                                           insulin catabolic process
## GO:0052047                                                            interaction with other organism via secreted substance involved in symbiotic interaction
## GO:0035722                                                                                                           interleukin-12-mediated signaling pathway
## GO:0032618                                                                                                                           interleukin-15 production
## GO:0038110                                                                                                            interleukin-2-mediated signaling pathway
## GO:0032625                                                                                                                           interleukin-21 production
## GO:0072619                                                                                                                            interleukin-21 secretion
## GO:0045105                                                                                            intermediate filament polymerization or depolymerization
## GO:0048389                                                                                                                   intermediate mesoderm development
## GO:0090675                                                                                                                           intermicrovillar adhesion
## GO:0060574                                                                                                               intestinal epithelial cell maturation
## GO:0061582                                                                                                                intestinal epithelial cell migration
## GO:0120054                                                                                                                                 intestinal motility
## GO:0060752                                                                                                                   intestinal phytosterol absorption
## GO:0002041                                                                                                                        intussusceptive angiogenesis
## GO:0015688                                                                                                                              iron chelate transport
## GO:0048250                                                                                                                  iron import into the mitochondrion
## GO:0018283                                                                                                      iron incorporation into metallo-sulfur cluster
## GO:0006550                                                                                                                        isoleucine catabolic process
## GO:0006549                                                                                                                        isoleucine metabolic process
## GO:0006428                                                                                                                       isoleucyl-tRNA aminoacylation
## GO:0018262                                                                                                                            isopeptide cross-linking
## GO:1902767                                                                                                      isoprenoid biosynthetic process via mevalonate
## GO:0042339                                                                                                                   keratan sulfate metabolic process
## GO:0072004                                                                                                                          kidney field specification
## GO:0072071                                                                                                      kidney interstitial fibroblast differentiation
## GO:0072135                                                                                                               kidney mesenchymal cell proliferation
## GO:0072195                                                                                                           kidney smooth muscle cell differentiation
## GO:0034276                                                                                                                 kynurenic acid biosynthetic process
## GO:0034275                                                                                                                    kynurenic acid metabolic process
## GO:0019516                                                                                                                                   lactate oxidation
## GO:0005989                                                                                                                        lactose biosynthetic process
## GO:0005988                                                                                                                           lactose metabolic process
## GO:0046478                                                                                                                  lactosylceramide metabolic process
## GO:0051878                                                                                                                            lateral element assembly
## GO:0046331                                                                                                                                  lateral inhibition
## GO:0048372                                                                                                             lateral mesodermal cell fate commitment
## GO:0048377                                                                                                          lateral mesodermal cell fate specification
## GO:0060490                                                                                                    lateral sprouting involved in lung morphogenesis
## GO:0060599                                                                                      lateral sprouting involved in mammary gland duct morphogenesis
## GO:0035026                                                                                                                   leading edge cell differentiation
## GO:0098583                                                                                                                       learned vocalization behavior
## GO:0097166                                                                                                                  lens epithelial cell proliferation
## GO:0009098                                                                                                                        leucine biosynthetic process
## GO:0006429                                                                                                                          leucyl-tRNA aminoacylation
## GO:0061757                                                                                                     leukocyte adhesion to arterial endothelial cell
## GO:0050902                                                                                                                       leukocyte adhesive activation
## GO:1901750                                                                                                                 leukotriene D4 biosynthetic process
## GO:1901748                                                                                                                    leukotriene D4 metabolic process
## GO:0036367                                                                                                                                      light adaption
## GO:1990379                                                                                                          lipid transport across blood brain barrier
## GO:0010877                                                                                                           lipid transport involved in lipid storage
## GO:0009106                                                                                                                           lipoate metabolic process
## GO:0015920                                                                                                                        lipopolysaccharide transport
## GO:0034439                                                                                                                         lipoprotein lipid oxidation
## GO:0042160                                                                                                                            lipoprotein modification
## GO:0042161                                                                                                                               lipoprotein oxidation
## GO:2001303                                                                                                                     lipoxin A4 biosynthetic process
## GO:2001302                                                                                                                        lipoxin A4 metabolic process
## GO:2001301                                                                                                                        lipoxin biosynthetic process
## GO:2001300                                                                                                                           lipoxin metabolic process
## GO:0061141                                                                                                                  lung ciliated cell differentiation
## GO:0061145                                                                                                                      lung smooth muscle development
## GO:1990183                                                                                                    lymphatic vascular process in circulatory system
## GO:0002518                                                                                                lymphocyte chemotaxis across high endothelial venule
## GO:0097022                                                                                                                lymphocyte migration into lymph node
## GO:0097534                                                                                                                     lymphoid lineage cell migration
## GO:0097535                                                                                                         lymphoid lineage cell migration into thymus
## GO:0009085                                                                                                                         lysine biosynthetic process
## GO:0019878                                                                                                    lysine biosynthetic process via aminoadipic acid
## GO:0006554                                                                                                                            lysine catabolic process
## GO:0015819                                                                                                                                    lysine transport
## GO:2001311                                                                                                          lysobisphosphatidic acid metabolic process
## GO:0051977                                                                                                                          lysophospholipid transport
## GO:0000389                                                                                                                     mRNA 3'-splice site recognition
## GO:0031990                                                                                                 mRNA export from nucleus in response to heat stress
## GO:0010609                                                                    mRNA localization resulting in posttranscriptional regulation of gene expression
## GO:1903830                                                                                                               magnesium ion transmembrane transport
## GO:0051659                                                                                                               maintenance of mitochondrion location
## GO:0099403                                                                                         maintenance of mitotic sister chromatid cohesion, telomeric
## GO:0072658                                                                                                         maintenance of protein location in membrane
## GO:0072660                                                                                                  maintenance of protein location in plasma membrane
## GO:0043007                                                                                                                                 maintenance of rDNA
## GO:1990145                                                                                                               maintenance of translational fidelity
## GO:0019100                                                                                                                    male germ-line sex determination
## GO:2001293                                                                                                                       malonyl-CoA metabolic process
## GO:0060615                                                                                                                         mammary gland bud formation
## GO:0061373                                                                                                               mammillary axonal complex development
## GO:0021767                                                                                                                         mammillary body development
## GO:0033364                                                                                                            mast cell secretory granule organization
## GO:0071626                                                                                                                                         mastication
## GO:0008358                                                                                           maternal determination of anterior/posterior axis, embryo
## GO:0021526                                                                                                          medial motor column neuron differentiation
## GO:0036034                                                                                                                           mediator complex assembly
## GO:0060031                                                                                                                          mediolateral intercalation
## GO:0001579                                                                                                                   medium-chain fatty acid transport
## GO:0010705                                                             meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## GO:0044778                                                                                                                    meiotic DNA integrity checkpoint
## GO:0043060                                                                                                               meiotic metaphase I plate congression
## GO:0010789                                                                                             meiotic sister chromatid cohesion involved in meiosis I
## GO:0006583                                                                                                          melanin biosynthetic process from tyrosine
## GO:0097324                                                                                                                                melanocyte migration
## GO:0030187                                                                                                                      melatonin biosynthetic process
## GO:0030186                                                                                                                         melatonin metabolic process
## GO:0097753                                                                                                                                    membrane bending
## GO:1904211                                                                membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## GO:0001766                                                                                                                          membrane raft polarization
## GO:0042361                                                                                                                       menaquinone catabolic process
## GO:0022601                                                                                                                               menstrual cycle phase
## GO:1901147                                                                    mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:0060915                                                                                       mesenchymal cell differentiation involved in lung development
## GO:0007509                                                                                                         mesoderm migration involved in gastrulation
## GO:0060809                                                                                       mesodermal to mesenchymal transition involved in gastrulation
## GO:0072181                                                                                                                          mesonephric duct formation
## GO:0052419                                                                                                         metabolism by host of substance in symbiont
## GO:0052416                                                                                                        metabolism by host of symbiont macromolecule
## GO:0052229                                                                     metabolism of macromolecule in other organism involved in symbiotic interaction
## GO:0052214                                                                         metabolism of substance in other organism involved in symbiotic interaction
## GO:0018282                                                                                                     metal incorporation into metallo-sulfur cluster
## GO:0072218                                                                                                         metanephric ascending thin limb development
## GO:0072185                                                                                                                         metanephric cap development
## GO:0090094                                                                  metanephric cap mesenchymal cell proliferation involved in metanephros development
## GO:0072186                                                                                                                       metanephric cap morphogenesis
## GO:0072278                                                                                                         metanephric comma-shaped body morphogenesis
## GO:0072313                                                                                                  metanephric glomerular epithelial cell development
## GO:0072312                                                                                              metanephric glomerular epithelial cell differentiation
## GO:0072249                                                                                         metanephric glomerular visceral epithelial cell development
## GO:0072248                                                                                     metanephric glomerular visceral epithelial cell differentiation
## GO:0072136                                                                      metanephric mesenchymal cell proliferation involved in metanephros development
## GO:0035502                                                                                                        metanephric part of ureteric bud development
## GO:0072233                                                                                                        metanephric thick ascending limb development
## GO:0051323                                                                                                                                           metaphase
## GO:0006431                                                                                                                       methionyl-tRNA aminoacylation
## GO:0051958                                                                                                                              methotrexate transport
## GO:0097089                                                                                                        methyl-branched fatty acid metabolic process
## GO:0019242                                                                                                                  methylglyoxal biosynthetic process
## GO:1990428                                                                                                                                     miRNA transport
## GO:0090634                                                                                                               microglial cell mediated cytotoxicity
## GO:0060152                                                                                                           microtubule-based peroxisome localization
## GO:0072382                                                                                              minus-end-directed vesicle transport along microtubule
## GO:0031930                                                                                                              mitochondria-nucleus signaling pathway
## GO:0090615                                                                                                                       mitochondrial mRNA processing
## GO:0090149                                                                                                                      mitochondrial membrane fission
## GO:1990613                                                                                                                       mitochondrial membrane fusion
## GO:0070096                                                                                           mitochondrial outer membrane translocase complex assembly
## GO:0006850                                                                                                      mitochondrial pyruvate transmembrane transport
## GO:0070901                                                                                                                      mitochondrial tRNA methylation
## GO:0070124                                                                                                              mitochondrial translational initiation
## GO:1990456                                                                                              mitochondrion-endoplasmic reticulum membrane tethering
## GO:1990505                                                                                                     mitotic DNA replication maintenance of fidelity
## GO:0000087                                                                                                                                     mitotic M phase
## GO:0007079                                                                                                    mitotic chromosome movement towards spindle pole
## GO:0051329                                                                                                                                  mitotic interphase
## GO:0000089                                                                                                                                   mitotic metaphase
## GO:1990426                                                                                         mitotic recombination-dependent replication fork processing
## GO:0099404                                                                                                        mitotic sister chromatid cohesion, telomeric
## GO:0051228                                                                                                                         mitotic spindle disassembly
## GO:0098886                                                                                                                     modification of dendritic spine
## GO:0044867                                                                                                      modulation by host of viral catalytic activity
## GO:0044866                                                                                            modulation by host of viral exo-alpha-sialidase activity
## GO:0044870                                                                                          modulation by host of viral glycoprotein metabolic process
## GO:0039526                                                                                                       modulation by virus of host apoptotic process
## GO:0039519                                                                                                               modulation by virus of host autophagy
## GO:0016098                                                                                                                     monoterpenoid metabolic process
## GO:0044035                                                                                                                    multi-organism catabolic process
## GO:1902581                                                                                                                multi-organism cellular localization
## GO:1902583                                                                                                              multi-organism intracellular transport
## GO:0044033                                                                                                                    multi-organism metabolic process
## GO:1902594                                                                                                                       multi-organism nuclear import
## GO:1990967                                                                                                                      multi-organism toxin transport
## GO:0061763                                                                                                                 multivesicular body-lysosome fusion
## GO:0007521                                                                                                                      muscle cell fate determination
## GO:0043387                                                                                                                         mycotoxin catabolic process
## GO:0048627                                                                                                                                myoblast development
## GO:1990764                                                                                                                           myofibroblast contraction
## GO:0031038                                                                                                                     myosin II filament organization
## GO:0018931                                                                                                                       naphthalene metabolic process
## GO:0090420                                                                                                   naphthalene-containing compound metabolic process
## GO:0002769                                                                                                    natural killer cell inhibitory signaling pathway
## GO:0002519                                                                                                             natural killer cell tolerance induction
## GO:0043629                                                                                                                               ncRNA polyadenylation
## GO:0052403                                                                                          negative regulation by host of symbiont catalytic activity
## GO:0044869                                                                                   negative regulation by host of viral exo-alpha-sialidase activity
## GO:0044871                                                                                 negative regulation by host of viral glycoprotein metabolic process
## GO:0046725                                                                                   negative regulation by virus of viral protein levels in host cell
## GO:1903892                                                                                      negative regulation of ATF6-mediated unfolded protein response
## GO:2000349                                                                                                       negative regulation of CD40 signaling pathway
## GO:0043377                                                                              negative regulation of CD8-positive, alpha-beta T cell differentiation
## GO:1905775                                                                                                        negative regulation of DNA helicase activity
## GO:1905642                                                                                                              negative regulation of DNA methylation
## GO:1905450                                                                 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1904021                                                                                   negative regulation of G protein-coupled receptor internalization
## GO:1900477                negative regulation of G1/S transition of mitotic cell cycle by negative regulation of transcription from RNA polymerase II promoter
## GO:1903895                                                                                      negative regulation of IRE1-mediated unfolded protein response
## GO:1900235                                                                                                        negative regulation of Kit signaling pathway
## GO:0002037                                                                                    negative regulation of L-glutamate import across plasma membrane
## GO:0034125                                                                         negative regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1902689                                                                                                        negative regulation of NAD metabolic process
## GO:0051134                                                                                                         negative regulation of NK T cell activation
## GO:1904782                                                                                             negative regulation of NMDA glutamate receptor activity
## GO:1902367                                                                            negative regulation of Notch signaling pathway involved in somitogenesis
## GO:0046832                                                                                                      negative regulation of RNA export from nucleus
## GO:1900369                                                                                                             negative regulation of RNA interference
## GO:1904476                                                                                                           negative regulation of Ras GTPase binding
## GO:2001107                                                                               negative regulation of Rho guanyl-nucleotide exchange factor activity
## GO:1900148                                                                                                       negative regulation of Schwann cell migration
## GO:2001189                  negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0045751                                                                                                       negative regulation of Toll signaling pathway
## GO:2000054                                                          negative regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1903919                                                                                                      negative regulation of actin filament severing
## GO:1902569                                                                                          negative regulation of activation of Janus kinase activity
## GO:0001971                                                                                        negative regulation of activation of membrane attack complex
## GO:1905675                                                                                              negative regulation of adaptive immune memory response
## GO:1902870                                                                                                negative regulation of amacrine cell differentiation
## GO:0002590                                                       negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:0002587                                                      negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1900215                                                        negative regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900218                                                         negative regulation of apoptotic process involved in metanephric nephron tubule development
## GO:1902257                                                                    negative regulation of apoptotic process involved in outflow tract morphogenesis
## GO:1900139                                                                                                   negative regulation of arachidonic acid secretion
## GO:1902960                                 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:1905246                                                                                             negative regulation of aspartic-type peptidase activity
## GO:0061889                                                                                                         negative regulation of astrocyte activation
## GO:1904093                                                                                                        negative regulation of autophagic cell death
## GO:2000813                                                                                            negative regulation of barbed-end actin filament capping
## GO:0060313                                                                                                      negative regulation of blood vessel remodeling
## GO:1900155                                                                                                     negative regulation of bone trabecula formation
## GO:0031549                                                                 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0090191                                                                             negative regulation of branching involved in ureteric bud morphogenesis
## GO:1904878                                                   negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901220                                                                                                negative regulation of cardiac chamber morphogenesis
## GO:0062044                                                                                 negative regulation of cardiac epithelial to mesenchymal transition
## GO:0106135                                                                                              negative regulation of cardiac muscle cell contraction
## GO:1905179                                                                                           negative regulation of cardiac muscle tissue regeneration
## GO:0051892                                                                                                  negative regulation of cardioblast differentiation
## GO:1901303                                                                                      negative regulation of cargo loading into COPII-coated vesicle
## GO:0052199                                                       negative regulation of catalytic activity in other organism involved in symbiotic interaction
## GO:2001287                                                                                                negative regulation of caveolin-mediated endocytosis
## GO:0060354                                                                                            negative regulation of cell adhesion molecule production
## GO:1905916                                                                        negative regulation of cell differentiation involved in phenotypic switching
## GO:0003252                                                                     negative regulation of cell proliferation involved in heart valve morphogenesis
## GO:0033633                                                                                      negative regulation of cell-cell adhesion mediated by integrin
## GO:0045763                                                                                        negative regulation of cellular amino acid metabolic process
## GO:1903973                                                           negative regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0021941                                                                              negative regulation of cerebellar granule cell precursor proliferation
## GO:1904715                                                                                                 negative regulation of chaperone-mediated autophagy
## GO:2000342                                                                                  negative regulation of chemokine (C-X-C motif) ligand 2 production
## GO:2001226                                                                                                           negative regulation of chloride transport
## GO:1901383                                                                                     negative regulation of chorionic trophoblast cell proliferation
## GO:0061188                                                                                                  negative regulation of chromatin silencing at rDNA
## GO:1902340                                                                                                      negative regulation of chromosome condensation
## GO:0042323                                                                                    negative regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1904027                                                                                                 negative regulation of collagen fibril organization
## GO:0045957                                                                                   negative regulation of complement activation, alternative pathway
## GO:0001869                                                                                        negative regulation of complement activation, lectin pathway
## GO:1905204                                                                                                negative regulation of connective tissue replacement
## GO:1905408                                                                                  negative regulation of creatine transmembrane transporter activity
## GO:0060302                                                                                                            negative regulation of cytokine activity
## GO:1903650                                                                                                        negative regulation of cytoplasmic transport
## GO:0150066                                                                                                         negative regulation of deacetylase activity
## GO:2000293                                                                                                                   negative regulation of defecation
## GO:0032076                                                                                                   negative regulation of deoxyribonuclease activity
## GO:2000642                                                                                    negative regulation of early endosome to late endosome transport
## GO:0042664                                                                                           negative regulation of endodermal cell fate specification
## GO:1903382                                            negative regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0060702                                                                                                    negative regulation of endoribonuclease activity
## GO:1901551                                                                                                 negative regulation of endothelial cell development
## GO:1902567                                                                                                        negative regulation of eosinophil activation
## GO:2000417                                                                                                         negative regulation of eosinophil migration
## GO:1905006                                               negative regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1905277                                                                                                    negative regulation of epithelial tube formation
## GO:0090212                                                                                         negative regulation of establishment of blood-brain barrier
## GO:1903141                                                                                         negative regulation of establishment of endothelial barrier
## GO:1903016                                                                                                 negative regulation of exo-alpha-sialidase activity
## GO:1905778                                                                                                         negative regulation of exonuclease activity
## GO:0010716                                                                                             negative regulation of extracellular matrix disassembly
## GO:0042480                                                                                           negative regulation of eye photoreceptor cell development
## GO:2000314            negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1901318                                                                                                   negative regulation of flagellated sperm motility
## GO:0120061                                                                                                             negative regulation of gastric emptying
## GO:1903640                                                                                       negative regulation of gastrin-induced gastric acid secretion
## GO:1904305                                                                           negative regulation of gastro-intestinal system smooth muscle contraction
## GO:0002635                                                                                                    negative regulation of germinal center formation
## GO:1900170                                                                                    negative regulation of glucocorticoid mediated signaling pathway
## GO:1904024                                                                            negative regulation of glucose catabolic process to lactate via pyruvate
## GO:1900924                                                                                        negative regulation of glycine import across plasma membrane
## GO:0045818                                                                                                   negative regulation of glycogen catabolic process
## GO:0071623                                                                                                       negative regulation of granulocyte chemotaxis
## GO:0060400                                                                                    negative regulation of growth hormone receptor signaling pathway
## GO:2000490                                                                                             negative regulation of hepatic stellate cell activation
## GO:0110091                                                                                         negative regulation of hippocampal neuron apoptotic process
## GO:1901315                                                                                        negative regulation of histone H2A K63-linked ubiquitination
## GO:0000415                                                                                                   negative regulation of histone H3-K36 methylation
## GO:1900110                                                                                                  negative regulation of histone H3-K9 dimethylation
## GO:1901726                                                                                                 negative regulation of histone deacetylase activity
## GO:0033183                                                                                                       negative regulation of histone ubiquitination
## GO:1903384                                                       negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:1902072                                                                            negative regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:2000521                                                                                              negative regulation of immunological synapse formation
## GO:1903796                                                                                      negative regulation of inorganic anion transmembrane transport
## GO:0010920                                                                                      negative regulation of inositol phosphate biosynthetic process
## GO:0033624                                                                                                          negative regulation of integrin activation
## GO:0045720                                                                                                negative regulation of integrin biosynthetic process
## GO:2001045                                                                                          negative regulation of integrin-mediated signaling pathway
## GO:0045077                                                                                        negative regulation of interferon-gamma biosynthetic process
## GO:0050712                                                                                                negative regulation of interleukin-1 alpha secretion
## GO:0045081                                                                                          negative regulation of interleukin-10 biosynthetic process
## GO:0032701                                                                                                    negative regulation of interleukin-18 production
## GO:0032707                                                                                                    negative regulation of interleukin-23 production
## GO:0070104                                                                                     negative regulation of interleukin-6-mediated signaling pathway
## GO:0045796                                                                                            negative regulation of intestinal cholesterol absorption
## GO:1904730                                                                                                  negative regulation of intestinal lipid absorption
## GO:0010949                                                                                            negative regulation of intestinal phytosterol absorption
## GO:1901253                                                                                    negative regulation of intracellular transport of viral material
## GO:1903609                                                                                  negative regulation of inward rectifier potassium channel activity
## GO:1902173                                                                                               negative regulation of keratinocyte apoptotic process
## GO:0051548                                                                                                       negative regulation of keratinocyte migration
## GO:2000393                                                                                                  negative regulation of lamellipodium morphogenesis
## GO:0032804                                                                  negative regulation of low-density lipoprotein particle receptor catabolic process
## GO:1901250                                                                                             negative regulation of lung goblet cell differentiation
## GO:1901624                                                                                                        negative regulation of lymphocyte chemotaxis
## GO:0090367                                                                                                            negative regulation of mRNA modification
## GO:1902227                                                                       negative regulation of macrophage colony-stimulating factor signaling pathway
## GO:1904908                                                                  negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:1902436                                                                                                         negative regulation of male mating behavior
## GO:0032764                                                                                                negative regulation of mast cell cytokine production
## GO:0070667                                                                                                      negative regulation of mast cell proliferation
## GO:1904465                                                                                            negative regulation of matrix metallopeptidase secretion
## GO:0072305                                             negative regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000791                                                                  negative regulation of mesenchymal cell proliferation involved in lung development
## GO:2000740                                                                                        negative regulation of mesenchymal stem cell differentiation
## GO:1902963                                        negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000629                                                                                                      negative regulation of miRNA metabolic process
## GO:1904527                                                                                                          negative regulation of microtubule binding
## GO:2000575                                                                                                   negative regulation of microtubule motor activity
## GO:0090298                                                                                                negative regulation of mitochondrial DNA replication
## GO:0000961                                                                                          negative regulation of mitochondrial RNA catabolic process
## GO:0045976                                                                                                negative regulation of mitotic cell cycle, embryonic
## GO:0070256                                                                                                              negative regulation of mucus secretion
## GO:0014736                                                                                                               negative regulation of muscle atrophy
## GO:0014740                                                                                                           negative regulation of muscle hyperplasia
## GO:0050925                                                                                                          negative regulation of negative chemotaxis
## GO:0061076                                                                                                    negative regulation of neural retina development
## GO:1904397                                                                                           negative regulation of neuromuscular junction development
## GO:1904456                                                                                                    negative regulation of neuronal action potential
## GO:0090024                                                                                                        negative regulation of neutrophil chemotaxis
## GO:0043314                                                                                                     negative regulation of neutrophil degranulation
## GO:1905259                                                             negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:1900176                                   negative regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900146                                                    negative regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:0032240                                                                                     negative regulation of nucleobase-containing compound transport
## GO:0042489                                                                                     negative regulation of odontogenesis of dentin-containing tooth
## GO:1900142                                                                                            negative regulation of oligodendrocyte apoptotic process
## GO:2000355                                                                                                 negative regulation of ovarian follicle development
## GO:2000276                                                                                 negative regulation of oxidative phosphorylation uncoupler activity
## GO:2000227                                                                                            negative regulation of pancreatic A cell differentiation
## GO:0033140                                                                              negative regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2000469                                                                                                          negative regulation of peroxidase activity
## GO:0060101                                                                                                     negative regulation of phagocytosis, engulfment
## GO:1900240                                                                                                         negative regulation of phenotypic switching
## GO:0010512                                                                                    negative regulation of phosphatidylinositol biosynthetic process
## GO:1900138                                                                                                    negative regulation of phospholipase A2 activity
## GO:0034445                                                                                                 negative regulation of plasma lipoprotein oxidation
## GO:2000584                                                              negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902283                                                                                               negative regulation of primary amine oxidase activity
## GO:0031393                                                                                           negative regulation of prostaglandin biosynthetic process
## GO:0032307                                                                                                      negative regulation of prostaglandin secretion
## GO:1903094                                                                                          negative regulation of protein K48-linked deubiquitination
## GO:1905524                                                                                                   negative regulation of protein autoubiquitination
## GO:0090285                                                                                               negative regulation of protein glycosylation in Golgi
## GO:1901094                                                                                                  negative regulation of protein homotetramerization
## GO:1904815                                                                         negative regulation of protein localization to chromosome, telomeric region
## GO:1903565                                                                                               negative regulation of protein localization to cilium
## GO:1901091                                                                                                      negative regulation of protein tetramerization
## GO:1903614                                                                                        negative regulation of protein tyrosine phosphatase activity
## GO:1901898                                                                                                 negative regulation of relaxation of cardiac muscle
## GO:1903970                                                                             negative regulation of response to macrophage colony-stimulating factor
## GO:1902867                                                                                        negative regulation of retina development in camera-type eye
## GO:0046671                                                                                           negative regulation of retinal cell programmed cell death
## GO:0060701                                                                                                        negative regulation of ribonuclease activity
## GO:1902443                                                                         negative regulation of ripoptosome assembly involved in necroptotic process
## GO:1905747                                                                                                             negative regulation of saliva secretion
## GO:0090341                                                                                               negative regulation of secretion of lysosomal enzymes
## GO:1900191                                                                                             negative regulation of single-species biofilm formation
## GO:1900229                                                                      negative regulation of single-species biofilm formation in or on host organism
## GO:0048632                                                                                                negative regulation of skeletal muscle tissue growth
## GO:1904348                                                                                    negative regulation of small intestine smooth muscle contraction
## GO:2000098                                                                                           negative regulation of smooth muscle cell-matrix adhesion
## GO:0032416                                                                                            negative regulation of sodium:proton antiporter activity
## GO:0090233                                                                                                           negative regulation of spindle checkpoint
## GO:1904049                                                                                       negative regulation of spontaneous neurotransmitter secretion
## GO:0048688                                                                                                    negative regulation of sprouting of injured axon
## GO:1905839                                                                                                 negative regulation of telomeric D-loop disassembly
## GO:1904743                                                                                                        negative regulation of telomeric DNA binding
## GO:1904534                                                                                                   negative regulation of telomeric loop disassembly
## GO:0120191                                                                               negative regulation of termination of RNA polymerase II transcription
## GO:2000805                                                              negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000225                                                                                            negative regulation of testosterone biosynthetic process
## GO:0051886                                                                                                             negative regulation of timing of anagen
## GO:0002644                                                                                                          negative regulation of tolerance induction
## GO:0070171                                                                                                         negative regulation of tooth mineralization
## GO:0032912                                                                                  negative regulation of transforming growth factor beta2 production
## GO:2001202                                                                                    negative regulation of transforming growth factor-beta secretion
## GO:1902010                                                                      negative regulation of translation in response to endoplasmic reticulum stress
## GO:0032057                                                                               negative regulation of translational initiation in response to stress
## GO:0070895                                                                                                       negative regulation of transposon integration
## GO:1904691                                                                                         negative regulation of type B pancreatic cell proliferation
## GO:0001808                                                                                                     negative regulation of type IV hypersensitivity
## GO:2000157                                                                                         negative regulation of ubiquitin-specific protease activity
## GO:0070473                                                                                            negative regulation of uterine smooth muscle contraction
## GO:1904046                                                                                negative regulation of vascular endothelial growth factor production
## GO:1905931                                                 negative regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:2001213                                                                                                               negative regulation of vasculogenesis
## GO:1903946                                                                             negative regulation of ventricular cardiac muscle cell action potential
## GO:0010903                                                                             negative regulation of very-low-density lipoprotein particle remodeling
## GO:0070563                                                                                         negative regulation of vitamin D receptor signaling pathway
## GO:0071583                                                                                             negative regulation of zinc ion transmembrane transport
## GO:0071582                                                                                                           negative regulation of zinc ion transport
## GO:0072134                                                                                                                nephrogenic mesenchyme morphogenesis
## GO:0032902                                                                                                                      nerve growth factor production
## GO:0014034                                                                                                                   neural crest cell fate commitment
## GO:0021997                                                                                                                     neural plate axis specification
## GO:1902988                                                                                                                     neurofibrillary tangle assembly
## GO:0021985                                                                                                                         neurohypophysis development
## GO:0036483                                                            neuron intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:0036482                                                                       neuron intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0021812                                                                 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## GO:0010813                                                                                                                      neuropeptide catabolic process
## GO:0021995                                                                                                                                   neuropore closure
## GO:0045212                                                                                                      neurotransmitter receptor biosynthetic process
## GO:0098968                                                                               neurotransmitter receptor transport postsynaptic membrane to endosome
## GO:0070946                                                                                              neutrophil mediated killing of gram-positive bacterium
## GO:0015675                                                                                                                             nickel cation transport
## GO:0060658                                                                                                                                nipple morphogenesis
## GO:0033484                                                                                                                            nitric oxide homeostasis
## GO:0002537                                                                                           nitric oxide production involved in inflammatory response
## GO:0030185                                                                                                                              nitric oxide transport
## GO:0090293                                                                                                     nitrogen catabolite regulation of transcription
## GO:0001079                                                                     nitrogen catabolite regulation of transcription from RNA polymerase II promoter
## GO:0051620                                                                                                                               norepinephrine uptake
## GO:0043585                                                                                                                                  nose morphogenesis
## GO:0060032                                                                                                                                notochord regression
## GO:0071031                                                                                                 nuclear mRNA surveillance of mRNA 3'-end processing
## GO:0071030                                                                                         nuclear mRNA surveillance of spliceosomal pre-mRNA splicing
## GO:0031022                                                                                                               nuclear migration along microfilament
## GO:0031081                                                                                                                           nuclear pore distribution
## GO:0051664                                                                                                                           nuclear pore localization
## GO:0071049                                                                    nuclear retention of pre-mRNA with aberrant 3'-ends at the site of transcription
## GO:0071048                                                                                nuclear retention of unspliced pre-mRNA at the site of transcription
## GO:0000294                                                                nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## GO:0015949                                                                                                nucleobase-containing small molecule interconversion
## GO:0017126                                                                                                                                     nucleologenesis
## GO:0046940                                                                                                            nucleoside monophosphate phosphorylation
## GO:0042766                                                                                                                             nucleosome mobilization
## GO:1901255                                                                                nucleotide-excision repair involved in interstrand cross-link repair
## GO:0000717                                                                                                    nucleotide-excision repair, DNA duplex unwinding
## GO:0009227                                                                                                                  nucleotide-sugar catabolic process
## GO:0021623                                                                                                                          oculomotor nerve formation
## GO:0021622                                                                                                                      oculomotor nerve morphogenesis
## GO:1900673                                                                                                                            olefin metabolic process
## GO:0007314                                                                                                        oocyte anterior/posterior axis specification
## GO:0007309                                                                                                                           oocyte axis specification
## GO:0007308                                                                                                                                 oocyte construction
## GO:0001555                                                                                                                                       oocyte growth
## GO:0021633                                                                                                                 optic nerve structural organization
## GO:0001743                                                                                                                             optic placode formation
## GO:0046619                                                                                       optic placode formation involved in camera-type eye formation
## GO:0003404                                                                                                                         optic vesicle morphogenesis
## GO:0021769                                                                                                                    orbitofrontal cortex development
## GO:1901377                                                                                                organic heteropentacyclic compound catabolic process
## GO:0060488                                                       orthogonal dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0007231                                                                                                                       osmosensory signaling pathway
## GO:0043932                                                                                                            ossification involved in bone remodeling
## GO:0001552                                                                                                                            ovarian follicle atresia
## GO:0035846                                                                                                                      oviduct epithelium development
## GO:0046724                                                                                                                               oxalic acid secretion
## GO:0035552                                                                                                         oxidative single-stranded DNA demethylation
## GO:0003326                                                                                                                   pancreatic A cell fate commitment
## GO:0003312                                                                                                                  pancreatic PP cell differentiation
## GO:0003329                                                                                                                  pancreatic PP cell fate commitment
## GO:0036395                                                                                                                        pancreatic amylase secretion
## GO:0072343                                                                                                              pancreatic stellate cell proliferation
## GO:0015939                                                                                                                      pantothenate metabolic process
## GO:0048342                                                                                                            paraxial mesodermal cell differentiation
## GO:0048343                                                                                                            paraxial mesodermal cell fate commitment
## GO:0009405                                                                                                                                        pathogenesis
## GO:0061227                                                                                           pattern specification involved in mesonephros development
## GO:0039017                                                                                            pattern specification involved in pronephros development
## GO:0019322                                                                                                                        pentose biosynthetic process
## GO:0002502                                                                                           peptide antigen assembly with MHC class I protein complex
## GO:0031179                                                                                                                                peptide modification
## GO:0042264                                                                                                                peptidyl-aspartic acid hydroxylation
## GO:0035606                                                                                                             peptidyl-cysteine S-trans-nitrosylation
## GO:0018003                                                                                                                      peptidyl-lysine N6-acetylation
## GO:0140066                                                                                                                       peptidyl-lysine crotonylation
## GO:0008612                                                                                                   peptidyl-lysine modification to peptidyl-hypusine
## GO:0017186                                                          peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## GO:0030920                                                                                                                         peptidyl-serine acetylation
## GO:1990443                                                                                                              peptidyl-threonine autophosphorylation
## GO:0006478                                                                                                                         peptidyl-tyrosine sulfation
## GO:0002458                                                                                                               peripheral T cell tolerance induction
## GO:0015910                                                                                                            peroxisomal long-chain fatty acid import
## GO:0060151                                                                                                                             peroxisome localization
## GO:0090387                                                                                         phagolysosome assembly involved in apoptotic cell clearance
## GO:0090386                                                                                           phagosome maturation involved in apoptotic cell clearance
## GO:0060465                                                                                                                                 pharynx development
## GO:0046271                                                                                                                   phenylpropanoid catabolic process
## GO:0046338                                                                                                          phosphatidylethanolamine catabolic process
## GO:0006660                                                                                                                phosphatidylserine catabolic process
## GO:0086097                                                                                  phospholipase C-activating angiotensin-activated signaling pathway
## GO:0031583                                                                             phospholipase D-activating G protein-coupled receptor signaling pathway
## GO:0006649                                                                                                                   phospholipid transfer to membrane
## GO:0033306                                                                                                                            phytol metabolic process
## GO:0061350                                                                        planar cell polarity pathway involved in cardiac muscle tissue morphogenesis
## GO:0061349                                                                         planar cell polarity pathway involved in cardiac right atrium morphogenesis
## GO:0060775                                                                        planar cell polarity pathway involved in gastrula mediolateral intercalation
## GO:0061347                                                                                planar cell polarity pathway involved in outflow tract morphogenesis
## GO:0061354                                                                                  planar cell polarity pathway involved in pericardium morphogenesis
## GO:0061348                                                                           planar cell polarity pathway involved in ventricular septum morphogenesis
## GO:0060489                                                           planar dichotomous subdivision of terminal units involved in lung branching morphogenesis
## GO:0002353                                                                                                                     plasma kallikrein-kinin cascade
## GO:0015679                                                                                                                plasma membrane copper ion transport
## GO:0044855                                                                                                                   plasma membrane raft distribution
## GO:0044856                                                                                                                   plasma membrane raft localization
## GO:0002270                                                                                                              plasmacytoid dendritic cell activation
## GO:0009949                                                                                                   polarity specification of anterior/posterior axis
## GO:0010085                                                                                                      polarity specification of proximal/distal axis
## GO:0007315                                                                                                                                 pole plasm assembly
## GO:0098501                                                                                                                    polynucleotide dephosphorylation
## GO:0033037                                                                                                                         polysaccharide localization
## GO:1990074                                                                                                    polyuridylation-dependent mRNA catabolic process
## GO:0035915                                                                                                        pore formation in membrane of other organism
## GO:0032014                                                                                              positive regulation of ARF protein signal transduction
## GO:2000538                                                                                                            positive regulation of B cell chemotaxis
## GO:0002663                                                                                                   positive regulation of B cell tolerance induction
## GO:2000451                                                                                positive regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1902164              positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:1905464                                                                                                         positive regulation of DNA duplex unwinding
## GO:0032877                                                                                                        positive regulation of DNA endoreduplication
## GO:1905776                                                                                                        positive regulation of DNA helicase activity
## GO:0032298                                                                                     positive regulation of DNA-dependent DNA replication initiation
## GO:0071848                                                                         positive regulation of ERK1 and ERK2 cascade via TNFSF11-mediated signaling
## GO:0070378                                                                                                                 positive regulation of ERK5 cascade
## GO:1903896                                                                                      positive regulation of IRE1-mediated unfolded protein response
## GO:0002038                                                                                    positive regulation of L-glutamate import across plasma membrane
## GO:1905636                                                            positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0002842                                                                                positive regulation of T cell mediated immune response to tumor cell
## GO:2000570                                                                                                   positive regulation of T-helper 2 cell activation
## GO:1904515                                                                                                              positive regulation of TORC2 signaling
## GO:0032759                                                                                                             positive regulation of TRAIL production
## GO:1905426                                                                    positive regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:0060409                                                                                              positive regulation of acetylcholine metabolic process
## GO:2000368                                                                                                 positive regulation of acrosomal vesicle exocytosis
## GO:0001970                                                                                        positive regulation of activation of membrane attack complex
## GO:0070237                                                                                     positive regulation of activation-induced cell death of T cells
## GO:0002879                                                                        positive regulation of acute inflammatory response to non-antigenic stimulus
## GO:0071879                                                           positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070165                                                                                                        positive regulation of adiponectin secretion
## GO:1902871                                                                                                positive regulation of amacrine cell differentiation
## GO:1903632                                                                                               positive regulation of aminoacyl-tRNA ligase activity
## GO:1905908                                                                                                     positive regulation of amyloid fibril formation
## GO:2000744                                                                                                    positive regulation of anterior head development
## GO:1903744                                                                                       positive regulation of anterograde synaptic vesicle transport
## GO:0002588                                                      positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:0002582                                    positive regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:2000388                                                                                               positive regulation of antral ovarian follicle growth
## GO:1902425                                                                    positive regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:2000814                                                                                            positive regulation of barbed-end actin filament capping
## GO:1905053                                                                                                         positive regulation of base-excision repair
## GO:1904172                                                                                                                positive regulation of bleb assembly
## GO:2000334                                                                                                positive regulation of blood microparticle formation
## GO:1900159                                                                              positive regulation of bone mineralization involved in bone maturation
## GO:1905492                                                                                           positive regulation of branching morphogenesis of a nerve
## GO:1903281                                                                                           positive regulation of calcium:sodium antiporter activity
## GO:0010615                                                                                                    positive regulation of cardiac muscle adaptation
## GO:1903244                                                                             positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000724                                                                          positive regulation of cardiac vascular smooth muscle cell differentiation
## GO:1900210                                                                                                positive regulation of cardiolipin metabolic process
## GO:0010652                                                                                      positive regulation of cell communication by chemical coupling
## GO:1900039                                                                                                 positive regulation of cellular response to hypoxia
## GO:0090035                                                                                  positive regulation of chaperone-mediated protein complex assembly
## GO:1903646                                                                                           positive regulation of chaperone-mediated protein folding
## GO:2000340                                                                                  positive regulation of chemokine (C-X-C motif) ligand 1 production
## GO:0002876                                                                          positive regulation of chronic inflammatory response to antigenic stimulus
## GO:0120158                                                                                                   positive regulation of collagen catabolic process
## GO:1904028                                                                                                 positive regulation of collagen fibril organization
## GO:0048697                                                                                    positive regulation of collateral sprouting in absence of injury
## GO:0048694                                                                                         positive regulation of collateral sprouting of injured axon
## GO:1904343                                                                                              positive regulation of colon smooth muscle contraction
## GO:0032723                                                                                   positive regulation of connective tissue growth factor production
## GO:2000854                                                                                                     positive regulation of corticosterone secretion
## GO:1903852                                                                                                            positive regulation of cristae formation
## GO:0051343                                                                                 positive regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2000707                                                                                                positive regulation of dense core granule biogenesis
## GO:2001150                                                                                            positive regulation of dipeptide transmembrane transport
## GO:2000880                                                                                                          positive regulation of dipeptide transport
## GO:0032470                                                                              positive regulation of endoplasmic reticulum calcium ion concentration
## GO:1905956                                                                                               positive regulation of endothelial tube morphogenesis
## GO:1901076                                                                                                 positive regulation of engulfment of apoptotic cell
## GO:1902568                                                                                                        positive regulation of eosinophil activation
## GO:2000424                                                                                                        positive regulation of eosinophil chemotaxis
## GO:0043311                                                                                                     positive regulation of eosinophil degranulation
## GO:1901189                                                                                            positive regulation of ephrin receptor signaling pathway
## GO:0032812                                                                                                        positive regulation of epinephrine secretion
## GO:1904446                                                                                        positive regulation of establishment of Sertoli cell barrier
## GO:1903905                                                                                             positive regulation of establishment of T cell polarity
## GO:2000771                                                          positive regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:2000866                                                                                                          positive regulation of estradiol secretion
## GO:1904434                                                                                                         positive regulation of ferrous iron binding
## GO:0071812                                                           positive regulation of fever generation by positive regulation of prostaglandin secretion
## GO:1905938                                                                                                      positive regulation of germ cell proliferation
## GO:1900168                                                                             positive regulation of glial cell-derived neurotrophic factor secretion
## GO:0061646                                                  positive regulation of glutamate neurotransmitter secretion in response to membrane depolarization
## GO:1903788                                                                                             positive regulation of glutathione biosynthetic process
## GO:0045819                                                                                                   positive regulation of glycogen catabolic process
## GO:1902728                                                         positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## GO:0090082                                                    positive regulation of heart induction by negative regulation of canonical Wnt signaling pathway
## GO:2000473                                                                                            positive regulation of hematopoietic stem cell migration
## GO:0061870                                                                                              positive regulation of hepatic stellate cell migration
## GO:0031453                                                                                                     positive regulation of heterochromatin assembly
## GO:0090108                                                                                   positive regulation of high-density lipoprotein particle assembly
## GO:0010983                                                                                  positive regulation of high-density lipoprotein particle clearance
## GO:0060450                                                                                                          positive regulation of hindgut contraction
## GO:0035332                                                                                                              positive regulation of hippo signaling
## GO:1902466                                                                                                positive regulation of histone H3-K27 trimethylation
## GO:0000416                                                                                                   positive regulation of histone H3-K36 methylation
## GO:2001162                                                                                                   positive regulation of histone H3-K79 methylation
## GO:1900111                                                                                                  positive regulation of histone H3-K9 dimethylation
## GO:2000620                                                                                                   positive regulation of histone H4-K16 acetylation
## GO:0090265                                                                        positive regulation of immune complex clearance by monocytes and macrophages
## GO:2000558                                                                                  positive regulation of immunoglobulin production in mucosal tissue
## GO:2000522                                                                                              positive regulation of immunological synapse formation
## GO:1904325                                                                        positive regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0033626                                                      positive regulation of integrin activation by cell surface receptor linked signal transduction
## GO:0045368                                                                                          positive regulation of interleukin-13 biosynthetic process
## GO:1902216                                                                                     positive regulation of interleukin-4-mediated signaling pathway
## GO:0070105                                                                                     positive regulation of interleukin-6-mediated signaling pathway
## GO:2001111                                                                                           positive regulation of lens epithelial cell proliferation
## GO:1905581                                                                                   positive regulation of low-density lipoprotein particle clearance
## GO:0045716                                                               positive regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:0032805                                                                  positive regulation of low-density lipoprotein particle receptor catabolic process
## GO:1905458                                                                                     positive regulation of lymphoid progenitor cell differentiation
## GO:0097214                                                                                              positive regulation of lysosomal membrane permeability
## GO:1905167                                                                                          positive regulation of lysosomal protein catabolic process
## GO:0071642                                                                           positive regulation of macrophage inflammatory protein 1 alpha production
## GO:2000448                                                                     positive regulation of macrophage migration inhibitory factor signaling pathway
## GO:1905303                                                                                                             positive regulation of macropinocytosis
## GO:2000256                                                                                                 positive regulation of male germ cell proliferation
## GO:1902437                                                                                                         positive regulation of male mating behavior
## GO:0032765                                                                                                positive regulation of mast cell cytokine production
## GO:2001178                                                                                                    positive regulation of mediator complex assembly
## GO:2000568                                                                                                     positive regulation of memory T cell activation
## GO:1902462                                                                                          positive regulation of mesenchymal stem cell proliferation
## GO:1904685                                                                                                positive regulation of metalloendopeptidase activity
## GO:2000594                                                                                         positive regulation of metanephric DCT cell differentiation
## GO:2000627                                                                                                      positive regulation of miRNA catabolic process
## GO:1905618                                                                                     positive regulation of miRNA mediated inhibition of translation
## GO:1904151                                                                                        positive regulation of microglial cell mediated cytotoxicity
## GO:1903033                                                                                                 positive regulation of microtubule plus-end binding
## GO:0032425                                                                                                              positive regulation of mismatch repair
## GO:1901860                                                                                          positive regulation of mitochondrial DNA metabolic process
## GO:0000962                                                                                          positive regulation of mitochondrial RNA catabolic process
## GO:0045977                                                                                                positive regulation of mitotic cell cycle, embryonic
## GO:1903490                                                                                                          positive regulation of mitotic cytokinesis
## GO:1903438                                                                                                  positive regulation of mitotic cytokinetic process
## GO:1905505                                                                                                       positive regulation of motile cilium assembly
## GO:0030887                                                                                            positive regulation of myeloid dendritic cell activation
## GO:0060545                                                                                                          positive regulation of necroptotic process
## GO:2000768                                                                               positive regulation of nephron tubule epithelial cell differentiation
## GO:0061075                                                                                                    positive regulation of neural retina development
## GO:1902913                                                                                         positive regulation of neuroepithelial cell differentiation
## GO:0032901                                                                                                      positive regulation of neurotrophin production
## GO:0070965                                                                                        positive regulation of neutrophil mediated killing of fungus
## GO:1900224                                   positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1903997                                                                       positive regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070434                                                     positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070426                                                       positive regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:2000878                                                                                                       positive regulation of oligopeptide transport
## GO:1900195                                                                                                            positive regulation of oocyte maturation
## GO:2000277                                                                                 positive regulation of oxidative phosphorylation uncoupler activity
## GO:2000376                                                                                                     positive regulation of oxygen metabolic process
## GO:2000830                                                                                                positive regulation of parathyroid hormone secretion
## GO:2000170                                                                                            positive regulation of peptidyl-cysteine S-nitrosylation
## GO:1902310                                                                                            positive regulation of peptidyl-serine dephosphorylation
## GO:0002660                                                                                               positive regulation of peripheral tolerance induction
## GO:1900241                                                                                                         positive regulation of phenotypic switching
## GO:0060697                                                                                               positive regulation of phospholipid catabolic process
## GO:0010747                                                                              positive regulation of plasma membrane long-chain fatty acid transport
## GO:1901731                                                                                                         positive regulation of platelet aggregation
## GO:0090362                                                                                    positive regulation of platelet-derived growth factor production
## GO:0030862                                                                                    positive regulation of polarized epithelial cell differentiation
## GO:1902269                                                                                            positive regulation of polyamine transmembrane transport
## GO:2000872                                                                                                       positive regulation of progesterone secretion
## GO:2000777                           positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## GO:1902524                                                                                            positive regulation of protein K48-linked ubiquitination
## GO:1903006                                                                                          positive regulation of protein K63-linked deubiquitination
## GO:1902499                                                                                                   positive regulation of protein autoubiquitination
## GO:2000541                                                                                                  positive regulation of protein geranylgeranylation
## GO:1902530                                                                                            positive regulation of protein linear polyubiquitination
## GO:1905552                                                                                positive regulation of protein localization to endoplasmic reticulum
## GO:1905171                                                                                   positive regulation of protein localization to phagocytic vesicle
## GO:1903923                                                                                     positive regulation of protein processing in phagocytic vesicle
## GO:1903615                                                                                        positive regulation of protein tyrosine phosphatase activity
## GO:1905602                                                              positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0010845                                                                                             positive regulation of reciprocal meiotic recombination
## GO:1901082                                                                                                  positive regulation of relaxation of smooth muscle
## GO:0060265                                                                          positive regulation of respiratory burst involved in inflammatory response
## GO:1902868                                                                                        positive regulation of retina development in camera-type eye
## GO:0045872                                                                                                    positive regulation of rhodopsin gene expression
## GO:0014718                                                           positive regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:1903518                                                                                                   positive regulation of single strand break repair
## GO:0045870                                                   positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:1904206                                                                                                  positive regulation of skeletal muscle hypertrophy
## GO:1902724                                                                                 positive regulation of skeletal muscle satellite cell proliferation
## GO:0120058                                                                                                     positive regulation of small intestinal transit
## GO:1904674                                                                                     positive regulation of somatic stem cell population maintenance
## GO:0062029                                                                                                      positive regulation of stress granule assembly
## GO:1904237                                                             positive regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904231                                                                                             positive regulation of succinate dehydrogenase activity
## GO:0045887                                                                                    positive regulation of synaptic growth at neuromuscular junction
## GO:0010808                                                                                                     positive regulation of synaptic vesicle priming
## GO:1905663                                                                                positive regulation of telomerase RNA reverse transcriptase activity
## GO:1904884                                                                                   positive regulation of telomerase catalytic core complex assembly
## GO:1904744                                                                                                        positive regulation of telomeric DNA binding
## GO:2000845                                                                                                       positive regulation of testosterone secretion
## GO:0051885                                                                                                             positive regulation of timing of anagen
## GO:0002654                                                                           positive regulation of tolerance induction dependent upon immune response
## GO:2001037                                                                                           positive regulation of tongue muscle cell differentiation
## GO:0061402                                                       positive regulation of transcription from RNA polymerase II promoter in response to acidic pH
## GO:0071931                                                              positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:1904437                                                                                                 positive regulation of transferrin receptor binding
## GO:0032915                                                                                  positive regulation of transforming growth factor beta2 production
## GO:0032916                                                                                  positive regulation of transforming growth factor beta3 production
## GO:2001203                                                                                    positive regulation of transforming growth factor-beta secretion
## GO:0045994                                                                                             positive regulation of translational initiation by iron
## GO:0071264                                                                           positive regulation of translational initiation in response to starvation
## GO:2000309                                                              positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:2000078                                                                                           positive regulation of type B pancreatic cell development
## GO:1904692                                                                                         positive regulation of type B pancreatic cell proliferation
## GO:2000397                                                                                              positive regulation of ubiquitin-dependent endocytosis
## GO:1904695                                                                                           positive regulation of vascular smooth muscle contraction
## GO:0070564                                                                                         positive regulation of vitamin D receptor signaling pathway
## GO:1902943                                                                                      positive regulation of voltage-gated chloride channel activity
## GO:0070352                                                                                                 positive regulation of white fat cell proliferation
## GO:1903691                                                                                  positive regulation of wound healing, spreading of epidermal cells
## GO:0035120                                                                                                              post-embryonic appendage morphogenesis
## GO:0035127                                                                                                                   post-embryonic limb morphogenesis
## GO:0072166                                                                                                            posterior mesonephric tubule development
## GO:0021784                                                                                                    postganglionic parasympathetic fiber development
## GO:0030328                                                                                                                    prenylcysteine catabolic process
## GO:0030329                                                                                                                    prenylcysteine metabolic process
## GO:0048160                                                                                                                              primary follicle stage
## GO:0060516                                                                                                                    primary prostatic bud elongation
## GO:0007538                                                                                                                           primary sex determination
## GO:0007542                                                                                                                primary sex determination, germ-line
## GO:0021740                                                                                           principal sensory nucleus of trigeminal nerve development
## GO:0003342                                                                                                                           proepicardium development
## GO:0038161                                                                                                                         prolactin signaling pathway
## GO:0006433                                                                                                                          prolyl-tRNA aminoacylation
## GO:0039003                                                                                                                      pronephric field specification
## GO:0039020                                                                                                               pronephric nephron tubule development
## GO:0072114                                                                                                                            pronephros morphogenesis
## GO:0019542                                                                                                                     propionate biosynthetic process
## GO:0019543                                                                                                                        propionate catabolic process
## GO:0018117                                                                                                                               protein adenylylation
## GO:0016598                                                                                                                                protein arginylation
## GO:0033577                                                                                                      protein glycosylation in endoplasmic reticulum
## GO:1990179                                                                                                 protein localization to actomyosin contractile ring
## GO:0072741                                                                                                          protein localization to cell division site
## GO:0097355                                                                                                             protein localization to heterochromatin
## GO:1904106                                                                                                                 protein localization to microvillus
## GO:1904498                                                                                         protein localization to mitotic actomyosin contractile ring
## GO:0036228                                                                                                      protein localization to nuclear inner membrane
## GO:1905793                                                                                                     protein localization to pericentriolar material
## GO:1905719                                                                                             protein localization to perinuclear region of cytoplasm
## GO:1905161                                                                                                          protein localization to phagocytic vesicle
## GO:1903778                                                                                                           protein localization to vacuolar membrane
## GO:0018175                                                                                                                            protein nucleotidylation
## GO:1900756                                                                                                            protein processing in phagocytic vesicle
## GO:0070560                                                                                                                       protein secretion by platelet
## GO:0061740                                                                              protein targeting to lysosome involved in chaperone-mediated autophagy
## GO:0044861                                                                                                         protein transport into plasma membrane raft
## GO:0006782                                                                                                          protoporphyrinogen IX biosynthetic process
## GO:0072272                                                                       proximal/distal pattern formation involved in metanephric nephron development
## GO:0042560                                                                                                     pteridine-containing compound catabolic process
## GO:0003193                                                                                                                           pulmonary valve formation
## GO:0060577                                                                                                                        pulmonary vein morphogenesis
## GO:0046124                                                                                                        purine deoxyribonucleoside catabolic process
## GO:0009216                                                                                        purine deoxyribonucleoside triphosphate biosynthetic process
## GO:0009153                                                                                                     purine deoxyribonucleotide biosynthetic process
## GO:0006863                                                                                                                         purine nucleobase transport
## GO:0015860                                                                                                           purine nucleoside transmembrane transport
## GO:0015950                                                                                                                   purine nucleotide interconversion
## GO:0034036                                                                                             purine ribonucleoside bisphosphate biosynthetic process
## GO:0015951                                                                                                               purine ribonucleotide interconversion
## GO:0021852                                                                                                                          pyramidal neuron migration
## GO:0042823                                                                                                            pyridoxal phosphate biosynthetic process
## GO:0009213                                                                                       pyrimidine deoxyribonucleoside triphosphate catabolic process
## GO:0009149                                                                                                pyrimidine nucleoside triphosphate catabolic process
## GO:1990519                                                                                                     pyrimidine nucleotide import into mitochondrion
## GO:0006864                                                                                                                     pyrimidine nucleotide transport
## GO:0070476                                                                                                                       rRNA (guanine-N7)-methylation
## GO:0006407                                                                                                                            rRNA export from nucleus
## GO:0021933                                                                                             radial glia guided migration of cerebellar granule cell
## GO:0060816                                                                                                                 random inactivation of X chromosome
## GO:0036298                                                                                                       recombinational interstrand cross-link repair
## GO:0034402                                                                    recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## GO:0071955                                                                                                               recycling endosome to Golgi transport
## GO:2000537                                                                                                                     regulation of B cell chemotaxis
## GO:0002661                                                                                                            regulation of B cell tolerance induction
## GO:1900279                                                                                         regulation of CD4-positive, alpha-beta T cell costimulation
## GO:2000452                                                                               regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## GO:1902544                                                                                                            regulation of DNA N-glycosylase activity
## GO:1903775                                                                                                    regulation of DNA double-strand break processing
## GO:1902595                                                                                                        regulation of DNA replication origin binding
## GO:0060382                                                                                                                 regulation of DNA strand elongation
## GO:1900234                                                                                                                 regulation of Kit signaling pathway
## GO:0034127                                                                                regulation of MyD88-independent toll-like receptor signaling pathway
## GO:1902366                                                                                     regulation of Notch signaling pathway involved in somitogenesis
## GO:0098907                                                                                                         regulation of SA node cell action potential
## GO:2000638                                                                                                               regulation of SREBP signaling pathway
## GO:0002625                                                                                            regulation of T cell antigen processing and presentation
## GO:2000569                                                                                                            regulation of T-helper 2 cell activation
## GO:0032679                                                                                                                      regulation of TRAIL production
## GO:2000053                                                                   regulation of Wnt signaling pathway involved in dorsal/ventral axis specification
## GO:1905424                                                                             regulation of Wnt-mediated midbrain dopaminergic neuron differentiation
## GO:1901585                                                                                                     regulation of acid-sensing ion channel activity
## GO:1904529                                                                                                                regulation of actin filament binding
## GO:1903918                                                                                                               regulation of actin filament severing
## GO:1905402                                                                           regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## GO:2000011                                                                                                     regulation of adaxial/abaxial pattern formation
## GO:0110061                                                                                               regulation of angiotensin-activated signaling pathway
## GO:2000742                                                                                                             regulation of anterior head development
## GO:2000387                                                                                                        regulation of antral ovarian follicle growth
## GO:1900214                                                                 regulation of apoptotic process involved in metanephric collecting duct development
## GO:1900217                                                                  regulation of apoptotic process involved in metanephric nephron tubule development
## GO:2000458                                                                                                                  regulation of astrocyte chemotaxis
## GO:1902423                                                                             regulation of attachment of mitotic spindle microtubules to kinetochore
## GO:1904092                                                                                                                 regulation of autophagic cell death
## GO:1905051                                                                                                                  regulation of base-excision repair
## GO:2000332                                                                                                         regulation of blood microparticle formation
## GO:1900154                                                                                                              regulation of bone trabecula formation
## GO:0031548                                                                          regulation of brain-derived neurotrophic factor receptor signaling pathway
## GO:0070347                                                                                                          regulation of brown fat cell proliferation
## GO:0098905                                                                                                   regulation of bundle of His cell action potential
## GO:1905912                                                                                             regulation of calcium ion export across plasma membrane
## GO:0051040                                                                                                regulation of calcium-independent cell-cell adhesion
## GO:1901295                                                       regulation of canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:2000079                                          regulation of canonical Wnt signaling pathway involved in controlling type B pancreatic cell proliferation
## GO:1905066                                                                         regulation of canonical Wnt signaling pathway involved in heart development
## GO:2000043                                                                                                       regulation of cardiac cell fate specification
## GO:1901219                                                                                                         regulation of cardiac chamber morphogenesis
## GO:1905178                                                                                                    regulation of cardiac muscle tissue regeneration
## GO:1904412                                                                                                         regulation of cardiac ventricle development
## GO:1900208                                                                                                         regulation of cardiolipin metabolic process
## GO:0061344                                                                                         regulation of cell adhesion involved in heart morphogenesis
## GO:0010645                                                                                               regulation of cell communication by chemical coupling
## GO:1904933                                                                                                        regulation of cell proliferation in midbrain
## GO:0060723                                                                         regulation of cell proliferation involved in embryonic placenta development
## GO:2000282                                                                                              regulation of cellular amino acid biosynthetic process
## GO:2001029                                                                                                              regulation of cellular glucuronidation
## GO:0072364                                      regulation of cellular ketone metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0090034                                                                                           regulation of chaperone-mediated protein complex assembly
## GO:0010848                                                                                                                 regulation of chromatin disassembly
## GO:0031938                                                                                                       regulation of chromatin silencing at telomere
## GO:0002880                                                                               regulation of chronic inflammatory response to non-antigenic stimulus
## GO:0090320                                                                                                         regulation of chylomicron remnant clearance
## GO:0033341                                                                                                                      regulation of collagen binding
## GO:0048693                                                                                                  regulation of collateral sprouting of injured axon
## GO:1903814                                                                                              regulation of collecting lymphatic vessel constriction
## GO:1904341                                                                                                       regulation of colon smooth muscle contraction
## GO:0030451                                                                                            regulation of complement activation, alternative pathway
## GO:0030450                                                                                              regulation of complement activation, classical pathway
## GO:0001868                                                                                                 regulation of complement activation, lectin pathway
## GO:0032643                                                                                            regulation of connective tissue growth factor production
## GO:1903433                                                                                                        regulation of constitutive secretory pathway
## GO:1905407                                                                                           regulation of creatine transmembrane transporter activity
## GO:1903850                                                                                                                     regulation of cristae formation
## GO:1902159                                                                                          regulation of cyclic nucleotide-gated ion channel activity
## GO:2000292                                                                                                                            regulation of defecation
## GO:2000547                                                                                                      regulation of dendritic cell dendrite assembly
## GO:2001148                                                                                                     regulation of dipeptide transmembrane transport
## GO:0090089                                                                                                                   regulation of dipeptide transport
## GO:0060733                                                                                   regulation of eIF2 alpha phosphorylation by amino acid starvation
## GO:1902954                                                                                        regulation of early endosome to recycling endosome transport
## GO:2000124                                                                                                     regulation of endocannabinoid signaling pathway
## GO:0060734                                                                       regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:1903381                                                     regulation of endoplasmic reticulum stress-induced neuron intrinsic apoptotic signaling pathway
## GO:1904978                                                                                                                 regulation of endosome organization
## GO:1904470                                                                                                                  regulation of endothelin secretion
## GO:2000422                                                                                                                 regulation of eosinophil chemotaxis
## GO:0034118                                                                                                               regulation of erythrocyte aggregation
## GO:2000769                                                                   regulation of establishment or maintenance of cell polarity regulating cell shape
## GO:0014853                                                    regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## GO:1903015                                                                                                          regulation of exo-alpha-sialidase activity
## GO:0001928                                                                                                                      regulation of exocyst assembly
## GO:1905777                                                                                                                  regulation of exonuclease activity
## GO:0033082                                                                                                    regulation of extrathymic T cell differentiation
## GO:0042478                                                                                                    regulation of eye photoreceptor cell development
## GO:0048073                                                                                                                      regulation of eye pigmentation
## GO:1904649                                                                                                            regulation of fat cell apoptotic process
## GO:1904432                                                                                                                  regulation of ferrous iron binding
## GO:1904438                                                                                            regulation of ferrous iron import across plasma membrane
## GO:0120060                                                                                                                      regulation of gastric emptying
## GO:1903639                                                                                                regulation of gastrin-induced gastric acid secretion
## GO:1900166                                                                                      regulation of glial cell-derived neurotrophic factor secretion
## GO:1905123                                                                                                           regulation of glucosylceramidase activity
## GO:2000485                                                                                                                   regulation of glutamine transport
## GO:0072363                                            regulation of glycolytic process by positive regulation of transcription from RNA polymerase II promoter
## GO:1903547                                                                                                               regulation of growth hormone activity
## GO:0071336                                                                                                      regulation of hair follicle cell proliferation
## GO:2000471                                                                                                     regulation of hematopoietic stem cell migration
## GO:0070453                                                                                                             regulation of heme biosynthetic process
## GO:0061873                                                                                                     regulation of hepatic stellate cell contraction
## GO:0061869                                                                                                       regulation of hepatic stellate cell migration
## GO:0031445                                                                                                              regulation of heterochromatin assembly
## GO:1901314                                                                                                 regulation of histone H2A K63-linked ubiquitination
## GO:1902464                                                                                                         regulation of histone H3-K27 trimethylation
## GO:2001253                                                                                                         regulation of histone H3-K36 trimethylation
## GO:1904173                                                                                         regulation of histone demethylase activity (H3-K4 specific)
## GO:0060629                                                                                                     regulation of homologous chromosome segregation
## GO:1903385                                                                                                              regulation of homophilic cell adhesion
## GO:2000295                                                                                                   regulation of hydrogen peroxide catabolic process
## GO:1903383                                                                regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## GO:0090264                                                                                 regulation of immune complex clearance by monocytes and macrophages
## GO:2000557                                                                                           regulation of immunoglobulin production in mucosal tissue
## GO:1904323                                                                                 regulation of inhibitory G protein-coupled receptor phosphorylation
## GO:0045366                                                                                                   regulation of interleukin-13 biosynthetic process
## GO:0060730                                                                                           regulation of intestinal epithelial structure maintenance
## GO:1905799                                                                                                     regulation of intraciliary retrograde transport
## GO:1900390                                                                                                                       regulation of iron ion import
## GO:1902822                                                                                                   regulation of late endosome to lysosome transport
## GO:0048378                                                                                            regulation of lateral mesodermal cell fate specification
## GO:2001109                                                                                                    regulation of lens epithelial cell proliferation
## GO:1904997                                                                                       regulation of leukocyte adhesion to arterial endothelial cell
## GO:0072368                                               regulation of lipid transport by negative regulation of transcription from RNA polymerase II promoter
## GO:0072369                                               regulation of lipid transport by positive regulation of transcription from RNA polymerase II promoter
## GO:0110112                                                                                                            regulation of lipid transporter activity
## GO:0060587                                                                                                           regulation of lipoprotein lipid oxidation
## GO:0034442                                                                                                                 regulation of lipoprotein oxidation
## GO:0050828                                                                                                                regulation of liquid surface tension
## GO:0140212                                                                                                regulation of long-chain fatty acid import into cell
## GO:1905595                                                                                     regulation of low-density lipoprotein particle receptor binding
## GO:1901249                                                                                                      regulation of lung goblet cell differentiation
## GO:1990186                                                                                                                 regulation of lymphatic vessel size
## GO:2000815                                                                               regulation of mRNA stability involved in response to oxidative stress
## GO:1905301                                                                                                                      regulation of macropinocytosis
## GO:1904907                                                                           regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## GO:2001176                                                                                                             regulation of mediator complex assembly
## GO:1903056                                                                                                               regulation of melanosome organization
## GO:1902908                                                                                                                  regulation of melanosome transport
## GO:2000567                                                                                                              regulation of memory T cell activation
## GO:0072304                                                      regulation of mesenchymal cell apoptotic process involved in metanephric nephron morphogenesis
## GO:2000790                                                                           regulation of mesenchymal cell proliferation involved in lung development
## GO:1902460                                                                                                   regulation of mesenchymal stem cell proliferation
## GO:1902962                                                 regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## GO:2000592                                                                                                  regulation of metanephric DCT cell differentiation
## GO:0072301                                                                                   regulation of metanephric glomerular mesangial cell proliferation
## GO:0035566                                                                                                                      regulation of metanephros size
## GO:1905616                                                                                              regulation of miRNA mediated inhibition of translation
## GO:1904149                                                                                                 regulation of microglial cell mediated cytotoxicity
## GO:1903031                                                                                                          regulation of microtubule plus-end binding
## GO:1905706                                                                                  regulation of mitochondrial ATP synthesis coupled proton transport
## GO:1904289                                                                                                         regulation of mitotic DNA damage checkpoint
## GO:1903436                                                                                                           regulation of mitotic cytokinetic process
## GO:0040030                                                                                                        regulation of molecular function, epigenetic
## GO:1905503                                                                                                                regulation of motile cilium assembly
## GO:0032972                                                                                                         regulation of muscle filament sliding speed
## GO:1905453                                                                                               regulation of myeloid progenitor cell differentiation
## GO:1904328                                                                                                             regulation of myofibroblast contraction
## GO:0043519                                                                                                       regulation of myosin II filament organization
## GO:1902996                                                                                                       regulation of neurofibrillary tangle assembly
## GO:0070950                                                                                              regulation of neutrophil mediated killing of bacterium
## GO:0070953                                                                                                 regulation of neutrophil mediated killing of fungus
## GO:0070951                                                                                regulation of neutrophil mediated killing of gram-negative bacterium
## GO:1905258                                                                      regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## GO:0051621                                                                                                                 regulation of norepinephrine uptake
## GO:1903353                                                                                                                  regulation of nucleus organization
## GO:1901329                                                                                                           regulation of odontoblast differentiation
## GO:0090088                                                                                                                regulation of oligopeptide transport
## GO:2000226                                                                                                     regulation of pancreatic A cell differentiation
## GO:1902276                                                                                                          regulation of pancreatic amylase secretion
## GO:2000229                                                                                                regulation of pancreatic stellate cell proliferation
## GO:0002658                                                                                                        regulation of peripheral tolerance induction
## GO:1900063                                                                                                               regulation of peroxisome organization
## GO:0010899                                                                                                 regulation of phosphatidylcholine catabolic process
## GO:1901407                                                                                regulation of phosphorylation of RNA polymerase II C-terminal domain
## GO:0034444                                                                                                          regulation of plasma lipoprotein oxidation
## GO:1904245                                                                                           regulation of polynucleotide adenylyltransferase activity
## GO:1905696                                                                                                                      regulation of polysome binding
## GO:1902232                                                                                                      regulation of positive thymic T cell selection
## GO:0090065                                                                                      regulation of production of siRNA involved in RNA interference
## GO:1903004                                                                                                   regulation of protein K63-linked deubiquitination
## GO:2000539                                                                                                           regulation of protein geranylgeranylation
## GO:1901093                                                                                                           regulation of protein homotetramerization
## GO:1902528                                                                                                     regulation of protein linear polyubiquitination
## GO:1905871                                                                                             regulation of protein localization to cell leading edge
## GO:1903567                                                                                              regulation of protein localization to ciliary membrane
## GO:1905550                                                                                         regulation of protein localization to endoplasmic reticulum
## GO:0150031                                                                                                      regulation of protein localization to lysosome
## GO:1905169                                                                                            regulation of protein localization to phagocytic vesicle
## GO:1903921                                                                                              regulation of protein processing in phagocytic vesicle
## GO:1901090                                                                                                               regulation of protein tetramerization
## GO:0010520                                                                                                      regulation of reciprocal meiotic recombination
## GO:1901080                                                                                                           regulation of relaxation of smooth muscle
## GO:2001228                                                                                                           regulation of response to gamma radiation
## GO:1900052                                                                                                    regulation of retinoic acid biosynthetic process
## GO:2000156                                                                                    regulation of retrograde vesicle-mediated transport, Golgi to ER
## GO:0022400                                                                                                  regulation of rhodopsin mediated signaling pathway
## GO:1902442                                                                                  regulation of ripoptosome assembly involved in necroptotic process
## GO:1904569                                                                                                          regulation of selenocysteine incorporation
## GO:1905627                                                                                                        regulation of serotonin biosynthetic process
## GO:1903516                                                                                                            regulation of single strand break repair
## GO:1900190                                                                                                      regulation of single-species biofilm formation
## GO:1900228                                                                               regulation of single-species biofilm formation in or on host organism
## GO:0100001                                                                                       regulation of skeletal muscle contraction by action potential
## GO:0014862                                                                     regulation of skeletal muscle contraction by chemo-mechanical energy conversion
## GO:0014852                                                          regulation of skeletal muscle contraction by neural stimulation via neuromuscular junction
## GO:0014809                                                       regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## GO:0031449                                                                                         regulation of slow-twitch skeletal muscle fiber contraction
## GO:0120057                                                                                                              regulation of small intestinal transit
## GO:1903406                                                                                           regulation of sodium:potassium-exchanging ATPase activity
## GO:1902490                                                                                                                    regulation of sperm capacitation
## GO:1902068                                                                                               regulation of sphingolipid mediated signaling pathway
## GO:0060721                                                                                                 regulation of spongiotrophoblast cell proliferation
## GO:1904235                                                                      regulation of substrate-dependent cell migration, cell attachment to substrate
## GO:1904229                                                                                                      regulation of succinate dehydrogenase activity
## GO:0099148                                                                                                              regulation of synaptic vesicle docking
## GO:0003050                                                                        regulation of systemic arterial blood pressure by atrial natriuretic peptide
## GO:0001980                                                                               regulation of systemic arterial blood pressure by ischemic conditions
## GO:1904882                                                                                            regulation of telomerase catalytic core complex assembly
## GO:1905838                                                                                                          regulation of telomeric D-loop disassembly
## GO:1901463                                                                                                     regulation of tetrapyrrole biosynthetic process
## GO:0086092                                                                                  regulation of the force of heart contraction by cardiac conduction
## GO:0014728                                                                                              regulation of the force of skeletal muscle contraction
## GO:2000612                                                                                                 regulation of thyroid-stimulating hormone secretion
## GO:0002649                                                                                                   regulation of tolerance induction to self antigen
## GO:2001035                                                                                                    regulation of tongue muscle cell differentiation
## GO:0010767                                                    regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## GO:0061396                                                               regulation of transcription from RNA polymerase II promoter in response to copper ion
## GO:0060994                                                          regulation of transcription from RNA polymerase II promoter involved in kidney development
## GO:0000117                                                                       regulation of transcription involved in G2/M transition of mitotic cell cycle
## GO:0060849                                                                  regulation of transcription involved in lymphatic endothelial cell fate commitment
## GO:0051037                                                                                          regulation of transcription involved in meiotic cell cycle
## GO:0060796                                                                     regulation of transcription involved in primary germ layer cell fate commitment
## GO:1904435                                                                                                          regulation of transferrin receptor binding
## GO:0140244                                                                                                             regulation of translation at presynapse
## GO:0099577                                                                           regulation of translation at presynapse, modulating synaptic transmission
## GO:0006447                                                                                                      regulation of translational initiation by iron
## GO:0071262                                                                                    regulation of translational initiation in response to starvation
## GO:0070894                                                                                                                regulation of transposon integration
## GO:2000307                                                                       regulation of tumor necrosis factor (ligand) superfamily member 11 production
## GO:0010795                                                                                                       regulation of ubiquinone biosynthetic process
## GO:2000395                                                                                                       regulation of ubiquitin-dependent endocytosis
## GO:1905174                                                                                         regulation of vascular smooth muscle cell dedifferentiation
## GO:1901738                                                                                                           regulation of vitamin A metabolic process
## GO:1902941                                                                                               regulation of voltage-gated chloride channel activity
## GO:1903760                  regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## GO:0071580                                                                                                      regulation of zinc ion transmembrane transport
## GO:0090076                                                                                                                       relaxation of skeletal muscle
## GO:0072141                                                                                                           renal interstitial fibroblast development
## GO:0072054                                                                                                                     renal outer medulla development
## GO:0036359                                                                                                                           renal potassium excretion
## GO:0097017                                                                                                                            renal protein absorption
## GO:0097254                                                                                                                             renal tubular secretion
## GO:0071140                                                                                                   resolution of mitotic recombination intermediates
## GO:0071139                                                                                                           resolution of recombination intermediates
## GO:0045728                                                                                                                respiratory burst after phagocytosis
## GO:1904612                                                                                                       response to 2,3,7,8-tetrachlorodibenzodioxine
## GO:1903576                                                                                                                              response to L-arginine
## GO:0010044                                                                                                                            response to aluminum ion
## GO:0072739                                                                                                                              response to anisomycin
## GO:0034059                                                                                                                                  response to anoxia
## GO:1903412                                                                                                                               response to bile acid
## GO:1904975                                                                                                                               response to bleomycin
## GO:0010037                                                                                                                          response to carbon dioxide
## GO:0052565                                                                                            response to defense-related host nitric oxide production
## GO:0052551                                             response to defense-related nitric oxide production by other organism involved in symbiotic interaction
## GO:0072737                                                                                                                                 response to diamide
## GO:0034285                                                                                                                            response to disaccharide
## GO:0072720                                                                                                                          response to dithiothreitol
## GO:1990784                                                                                                                                   response to dsDNA
## GO:0036017                                                                                                                          response to erythropoietin
## GO:1902617                                                                                                                                response to fluoride
## GO:0033595                                                                                                                               response to genistein
## GO:1905429                                                                                                                                 response to glycine
## GO:1903416                                                                                                                               response to glycoside
## GO:0009644                                                                                                                    response to high light intensity
## GO:0033594                                                                                                                       response to hydroxyisoflavone
## GO:0071105                                                                                                                          response to interleukin-11
## GO:0098758                                                                                                                           response to interleukin-8
## GO:0071104                                                                                                                           response to interleukin-9
## GO:1990641                                                                                                                     response to iron ion starvation
## GO:0010041                                                                                                                           response to iron(III) ion
## GO:0009753                                                                                                                           response to jasmonic acid
## GO:1901344                                                                                                                            response to leptomycin B
## GO:0006982                                                                                                                     response to lipid hydroperoxide
## GO:0034699                                                                                                                     response to luteinizing hormone
## GO:0051597                                                                                                                           response to methylmercury
## GO:1904008                                                                                                                    response to monosodium glutamate
## GO:0071505                                                                                                                       response to mycophenolic acid
## GO:0010045                                                                                                                           response to nickel cation
## GO:0034201                                                                                                                              response to oleic acid
## GO:0080184                                                                                                                         response to phenylpropanoid
## GO:1990911                                                                                                                     response to psychosocial stress
## GO:0009744                                                                                                                                 response to sucrose
## GO:0009608                                                                                                                                response to symbiont
## GO:0009609                                                                                                                     response to symbiotic bacterium
## GO:1904772                                                                                                                      response to tetrachloromethane
## GO:1904481                                                                                                                        response to tetrahydrofolate
## GO:1904116                                                                                                                             response to vasopressin
## GO:0033189                                                                                                                               response to vitamin A
## GO:0033197                                                                                                                               response to vitamin E
## GO:0120127                                                                                                                     response to zinc ion starvation
## GO:0097474                                                                                                                 retinal cone cell apoptotic process
## GO:0099642                                                                                                                 retrograde axonal protein transport
## GO:0099082                                                                                                 retrograde trans-synaptic signaling by neuropeptide
## GO:0098924                                                                                                 retrograde trans-synaptic signaling by nitric oxide
## GO:0098923                                                                                                  retrograde trans-synaptic signaling by soluble gas
## GO:0035526                                                                                                      retrograde transport, plasma membrane to Golgi
## GO:0021568                                                                                                                            rhombomere 2 development
## GO:0021658                                                                                                                          rhombomere 3 morphogenesis
## GO:0043179                                                                                                                                 rhythmic excitation
## GO:0032218                                                                                                                                riboflavin transport
## GO:0009203                                                                                                       ribonucleoside triphosphate catabolic process
## GO:1990116                                                                                   ribosome-associated ubiquitin-dependent protein catabolic process
## GO:0060458                                                                                                                              right lung development
## GO:1901052                                                                                                                         sarcosine metabolic process
## GO:0001949                                                                                                                sebaceous gland cell differentiation
## GO:0016260                                                                                                                 selenocysteine biosynthetic process
## GO:1900220                                                                        semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## GO:0060876                                                                                                                        semicircular canal formation
## GO:0061107                                                                                                                         seminal vesicle development
## GO:0050893                                                                                                                                  sensory processing
## GO:0032185                                                                                                                    septin cytoskeleton organization
## GO:0031106                                                                                                                            septin ring organization
## GO:0003343                                                                                                                      septum transversum development
## GO:0006587                                                                                                      serotonin biosynthetic process from tryptophan
## GO:0006434                                                                                                                           seryl-tRNA aminoacylation
## GO:0016107                                                                                                                   sesquiterpenoid catabolic process
## GO:0015891                                                                                                                               siderophore transport
## GO:0007172                                                                                                                             signal complex assembly
## GO:0072434                                                                                    signal transduction involved in mitotic G2 DNA damage checkpoint
## GO:0044010                                                                                                                    single-species biofilm formation
## GO:0044407                                                                                             single-species biofilm formation in or on host organism
## GO:0014732                                                                                                                             skeletal muscle atrophy
## GO:0120055                                                                                                                            small intestinal transit
## GO:0051563                                                                                                smooth endoplasmic reticulum calcium ion homeostasis
## GO:0014805                                                                                                                            smooth muscle adaptation
## GO:0061015                                                                                                                           snRNA import into nucleus
## GO:0071050                                                                                                                              snoRNA polyadenylation
## GO:0034247                                                                                                                                     snoRNA splicing
## GO:0071718                                                                                                              sodium-independent icosanoid transport
## GO:0018993                                                                                                                           somatic sex determination
## GO:0060133                                                                                                             somatotropin secreting cell development
## GO:0006060                                                                                                                          sorbitol metabolic process
## GO:0046203                                                                                                                        spermidine catabolic process
## GO:0046511                                                                                                                    sphinganine biosynthetic process
## GO:0006668                                                                                                           sphinganine-1-phosphate metabolic process
## GO:0099039                                                                                                                          sphingolipid translocation
## GO:0007057                                                                                                       spindle assembly involved in female meiosis I
## GO:0051230                                                                                                                                 spindle disassembly
## GO:0030474                                                                                                                       spindle pole body duplication
## GO:0051300                                                                                                                      spindle pole body organization
## GO:0000390                                                                                                                    spliceosomal complex disassembly
## GO:0060529                                                   squamous basal epithelial stem cell differentiation involved in prostate gland acinus development
## GO:0048867                                                                                                                        stem cell fate determination
## GO:0002223                                                                                                stimulatory C-type lectin receptor signaling pathway
## GO:0061102                                                                                                         stomach neuroendocrine cell differentiation
## GO:0120063                                                                                                                   stomach smooth muscle contraction
## GO:0097532                                                                                                                    stress response to acid chemical
## GO:0060163                                                                                                                   subpallium neuron fate commitment
## GO:0021762                                                                                                                        substantia nigra development
## GO:0021539                                                                                                                             subthalamus development
## GO:0005986                                                                                                                        sucrose biosynthetic process
## GO:0005985                                                                                                                           sucrose metabolic process
## GO:0021718                                                                                                                superior olivary nucleus development
## GO:0021722                                                                                                                 superior olivary nucleus maturation
## GO:0019050                                                                                                      suppression by virus of host apoptotic process
## GO:0060370                                                                                                      susceptibility to T cell mediated cytotoxicity
## GO:0036269                                                                                                                                   swimming behavior
## GO:0097401                                                                                                                synaptic vesicle lumen acidification
## GO:0070194                                                                                                                    synaptonemal complex disassembly
## GO:0060715                                                                 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## GO:0002940                                                                                                                         tRNA N2-guanine methylation
## GO:0016031                                                                                                                      tRNA import into mitochondrion
## GO:0070329                                                                                                                            tRNA seleno-modification
## GO:0002100                                                                                                            tRNA wobble adenosine to inosine editing
## GO:0002101                                                                                                                   tRNA wobble cytosine modification
## GO:1903699                                                                                                                            tarsal gland development
## GO:0061193                                                                                                                               taste bud development
## GO:1904868                                                                                                          telomerase catalytic core complex assembly
## GO:0031627                                                                                                                            telomeric loop formation
## GO:0046247                                                                                                                           terpene catabolic process
## GO:0042214                                                                                                                           terpene metabolic process
## GO:0002124                                                                                                                     territorial aggressive behavior
## GO:0046900                                                                                                      tetrahydrofolylpolyglutamate metabolic process
## GO:0042357                                                                                                              thiamine diphosphate metabolic process
## GO:0030974                                                                                                      thiamine pyrophosphate transmembrane transport
## GO:0071934                                                                                                                    thiamine transmembrane transport
## GO:0072023                                                                                                                    thick ascending limb development
## GO:0071594                                                                                                                               thymocyte aggregation
## GO:0097536                                                                                                                     thymus epithelium morphogenesis
## GO:0042404                                                                                                                   thyroid hormone catabolic process
## GO:0072573                                                                                                           tolerance induction to lipopolysaccharide
## GO:0034178                                                                                                             toll-like receptor 13 signaling pathway
## GO:0034146                                                                                                              toll-like receptor 5 signaling pathway
## GO:0035981                                                                                                                  tongue muscle cell differentiation
## GO:0099551                                                                          trans-synaptic signaling by neuropeptide, modulating synaptic transmission
## GO:0099555                                                                          trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## GO:0099554                                                                           trans-synaptic signaling by soluble gas, modulating synaptic transmission
## GO:0099557                                                                trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## GO:0070904                                                                                                           transepithelial L-ascorbic acid transport
## GO:0035377                                                                                                                     transepithelial water transport
## GO:0036364                                                                                                         transforming growth factor beta1 activation
## GO:0014886                                                                                                              transition between slow and fast fiber
## GO:0006452                                                                                                                         translational frameshifting
## GO:0070893                                                                                                                              transposon integration
## GO:0005991                                                                                                                         trehalose metabolic process
## GO:0021730                                                                                                              trigeminal sensory nucleus development
## GO:0036509                                                                                                            trimming of terminal mannose on B branch
## GO:0035443                                                                                                                  tripeptide transmembrane transport
## GO:0001830                                                                                                                trophectodermal cell fate commitment
## GO:0019442                                                                                                          tryptophan catabolic process to acetyl-CoA
## GO:0006436                                                                                                                    tryptophanyl-tRNA aminoacylation
## GO:0072535                                                                                     tumor necrosis factor (ligand) superfamily member 11 production
## GO:0006437                                                                                                                         tyrosyl-tRNA aminoacylation
## GO:0007624                                                                                                                                    ultradian rhythm
## GO:0061027                                                                                                                          umbilical cord development
## GO:0036304                                                                                                                        umbilical cord morphogenesis
## GO:0006212                                                                                                                            uracil catabolic process
## GO:0034418                                                                                                                          urate biosynthetic process
## GO:0097274                                                                                                                                    urea homeostasis
## GO:0015862                                                                                                                                   uridine transport
## GO:0038195                                                                                                   urokinase plasminogen activator signaling pathway
## GO:0032796                                                                                                                                 uropod organization
## GO:0046502                                                                                                              uroporphyrinogen III metabolic process
## GO:0035847                                                                                                                      uterine epithelium development
## GO:0097576                                                                                                                                      vacuole fusion
## GO:0042144                                                                                                                      vacuole fusion, non-autophagic
## GO:0021644                                                                                                                           vagus nerve morphogenesis
## GO:0009099                                                                                                                         valine biosynthetic process
## GO:0006574                                                                                                                            valine catabolic process
## GO:0006438                                                                                                                           valyl-tRNA aminoacylation
## GO:0036324                                                                                     vascular endothelial growth factor receptor-2 signaling pathway
## GO:1990936                                                                                                       vascular smooth muscle cell dedifferentiation
## GO:0030103                                                                                                                               vasopressin secretion
## GO:0150064                                                                                                                  vertebrate eye-specific patterning
## GO:0036111                                                                                                    very long-chain fatty-acyl-CoA metabolic process
## GO:0048203                                                                                                          vesicle targeting, trans-Golgi to endosome
## GO:0099044                                                                                                          vesicle tethering to endoplasmic reticulum
## GO:0021750                                                                                                                      vestibular nucleus development
## GO:0060118                                                                                                                vestibular receptor cell development
## GO:0060114                                                                                                            vestibular receptor cell differentiation
## GO:0021649                                                                                                     vestibulocochlear nerve structural organization
## GO:0019074                                                                                                                          viral RNA genome packaging
## GO:0019072                                                                                                                              viral genome packaging
## GO:0075732                                                                                                                 viral penetration into host nucleus
## GO:0019075                                                                                                                                    virus maturation
## GO:0042819                                                                                                                     vitamin B6 biosynthetic process
## GO:0042369                                                                                                                         vitamin D catabolic process
## GO:0042371                                                                                                                      vitamin K biosynthetic process
## GO:0042377                                                                                                                         vitamin K catabolic process
## GO:0042365                                                                                                             water-soluble vitamin catabolic process
## GO:0016122                                                                                                                       xanthophyll metabolic process
## GO:0099180                                                                                                               zinc ion import into synaptic vesicle
## GO:0045186                                                                                                                            zonula adherens assembly
## GO:0010070                                                                                                                     zygote asymmetric cell division
## GO:0007352                                                                                                        zygotic specification of dorsal/ventral axis
## GO:0070625                                                                                                                          zymogen granule exocytosis
## GO:0044208                                                                                                                  'de novo' AMP biosynthetic process
## GO:0034627                                                                                                                  'de novo' NAD biosynthetic process
## GO:0034354                                                                                                  'de novo' NAD biosynthetic process from tryptophan
## GO:0006211                                                                                                                  5-methylcytosine catabolic process
## GO:0019857                                                                                                                  5-methylcytosine metabolic process
## GO:0006172                                                                                                                            ADP biosynthetic process
## GO:0036500                                                                                                             ATF6-mediated unfolded protein response
## GO:0086053                                                                             AV node cell to bundle of His cell communication by electrical coupling
## GO:0002344                                                                                                                          B cell affinity maturation
## GO:0002514                                                                                                                          B cell tolerance induction
## GO:0002337                                                                                                                         B-1a B cell differentiation
## GO:0003130                                                                                                   BMP signaling pathway involved in heart induction
## GO:0090116                                                                                                                         C-5 methylation of cytosine
## GO:0035609                                                                                                                  C-terminal protein deglutamylation
## GO:0006481                                                                                                                      C-terminal protein methylation
## GO:0035783                                                                                                       CD4-positive, alpha-beta T cell costimulation
## GO:0046416                                                                                                                      D-amino acid metabolic process
## GO:0006014                                                                                                                          D-ribose metabolic process
## GO:0042942                                                                                                                                  D-serine transport
## GO:0042732                                                                                                                          D-xylose metabolic process
## GO:0072069                                                                                                                            DCT cell differentiation
## GO:0030592                                                                                                                                DNA ADP-ribosylation
## GO:0070383                                                                                                                            DNA cytosine deamination
## GO:0010424                                                                                                    DNA methylation on cytosine within a CG sequence
## GO:0000733                                                                                                                             DNA strand renaturation
## GO:0110025                                                                                        DNA strand resection involved in replication fork processing
## GO:0038128                                                                                                                             ERBB2 signaling pathway
## GO:0036337                                                                                                                               Fas signaling pathway
## GO:0008315                                                                                                              G2/MI transition of meiotic cell cycle
## GO:0042350                                                                                                                   GDP-L-fucose biosynthetic process
## GO:0009298                                                                                                                    GDP-mannose biosynthetic process
## GO:0043000                                                                                                     Golgi to plasma membrane CFTR protein transport
## GO:0048210                                                                                                             Golgi vesicle fusion to target membrane
## GO:0042851                                                                                                                         L-alanine metabolic process
## GO:0019448                                                                                                                        L-cysteine catabolic process
## GO:1903401                                                                                                                    L-lysine transmembrane transport
## GO:1902022                                                                                                                                  L-lysine transport
## GO:0015825                                                                                                                                  L-serine transport
## GO:0006046                                                                                                               N-acetylglucosamine catabolic process
## GO:0018002                                                                                                       N-terminal peptidyl-glutamic acid acetylation
## GO:0019677                                                                                                                               NAD catabolic process
## GO:0051088                                                                                               PMA-inducible membrane protein ectodomain proteolysis
## GO:0061146                                                                                                                         Peyer's patch morphogenesis
## GO:0006404                                                                                                                             RNA import into nucleus
## GO:0031291                                                                                                                     Ran protein signal transduction
## GO:0035494                                                                                                                           SNARE complex disassembly
## GO:0070489                                                                                                                                  T cell aggregation
## GO:0035669                                                                                               TRAM-dependent toll-like receptor 4 signaling pathway
## GO:0035668                                                                                                 TRAM-dependent toll-like receptor signaling pathway
## GO:0034473                                                                                                                          U1 snRNA 3'-end processing
## GO:0034476                                                                                                                          U5 snRNA 3'-end processing
## GO:0006222                                                                                                                            UMP biosynthetic process
## GO:0046049                                                                                                                               UMP metabolic process
## GO:0038086                                                                            VEGF-activated platelet-derived growth factor receptor signaling pathway
## GO:0044571                                                                                                                           [2Fe-2S] cluster assembly
## GO:0097296                                                          activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0034199                                                                                                             activation of protein kinase A activity
## GO:0090716                                                                                                                     adaptive immune memory response
## GO:0046084                                                                                                                        adenine biosynthetic process
## GO:0046083                                                                                                                           adenine metabolic process
## GO:0031635                                                                                      adenylate cyclase-inhibiting opioid receptor signaling pathway
## GO:0046222                                                                                                                         aflatoxin metabolic process
## GO:0007571                                                                                                             age-dependent general metabolic decline
## GO:0001306                                                                                                          age-dependent response to oxidative stress
## GO:0006524                                                                                                                           alanine catabolic process
## GO:0006419                                                                                                                          alanyl-tRNA aminoacylation
## GO:0019405                                                                                                                           alditol catabolic process
## GO:0061144                                                                                                               alveolar secondary septum development
## GO:0051933                                                                                                                amino acid neurotransmitter reuptake
## GO:0019676                                                                                                                          ammonia assimilation cycle
## GO:0036394                                                                                                                                   amylase secretion
## GO:0003051                                                                                                              angiotensin-mediated drinking behavior
## GO:0061713                                                                                                                        anterior neural tube closure
## GO:0098971                                                                                anterograde dendritic transport of neurotransmitter receptor complex
## GO:0002780                                                                                                          antibacterial peptide biosynthetic process
## GO:0002485                                     antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-dependent
## GO:0002481                                                    antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## GO:0002777                                                                                                          antimicrobial peptide biosynthetic process
## GO:0035887                                                                                                           aortic smooth muscle cell differentiation
## GO:1902263                                                                                         apoptotic process involved in embryonic digit morphogenesis
## GO:0003275                                                                                           apoptotic process involved in outflow tract morphogenesis
## GO:0000053                                                                                                                 argininosuccinate metabolic process
## GO:0006420                                                                                                                         arginyl-tRNA aminoacylation
## GO:0009073                                                                                                     aromatic amino acid family biosynthetic process
## GO:0061975                                                                                                                     articular cartilage development
## GO:0006421                                                                                                                     asparaginyl-tRNA aminoacylation
## GO:0006532                                                                                                                      aspartate biosynthetic process
## GO:0006533                                                                                                                         aspartate catabolic process
## GO:0055014                                                                                                              atrial cardiac muscle cell development
## GO:0055011                                                                                                          atrial cardiac muscle cell differentiation
## GO:0003162                                                                                                                   atrioventricular node development
## GO:0009852                                                                                                                             auxin catabolic process
## GO:0009850                                                                                                                             auxin metabolic process
## GO:0051832                                                                           avoidance of defenses of other organism involved in symbiotic interaction
## GO:0044413                                                                                                                          avoidance of host defenses
## GO:0048320                                                                                                                            axial mesoderm formation
## GO:1904158                                                                                                                 axonemal central apparatus assembly
## GO:0001983                                                                                 baroreceptor response to increased systemic arterial blood pressure
## GO:0150020                                                                                                                         basal dendrite arborization
## GO:0150018                                                                                                                          basal dendrite development
## GO:0150019                                                                                                                        basal dendrite morphogenesis
## GO:0034769                                                                                                                       basement membrane disassembly
## GO:0002276                                                                                                     basophil activation involved in immune response
## GO:0061366                                                                                                                behavioral response to chemical pain
## GO:0061368                                                                                                        behavioral response to formalin induced pain
## GO:0043366                                                                                                                                      beta selection
## GO:0018879                                                                                                                          biphenyl metabolic process
## GO:0007597                                                                                                                blood coagulation, intrinsic pathway
## GO:1990523                                                                                                                                   bone regeneration
## GO:0035284                                                                                                                                  brain segmentation
## GO:0003360                                                                                                                               brainstem development
## GO:0015803                                                                                                                 branched-chain amino acid transport
## GO:0014707                                                                                                           branchiomeric skeletal muscle development
## GO:0060435                                                                                                                              bronchiole development
## GO:0036378                                                                                                        calcitriol biosynthetic process from calciol
## GO:0007161                                                                                                            calcium-independent cell-matrix adhesion
## GO:0061317                                                                     canonical Wnt signaling pathway involved in cardiac muscle cell fate commitment
## GO:1904954                                                            canonical Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:0044339                                                                              canonical Wnt signaling pathway involved in osteoblast differentiation
## GO:0060912                                                                                                                     cardiac cell fate specification
## GO:0110021                                                                                                               cardiac muscle myoblast proliferation
## GO:0071691                                                                                                               cardiac muscle thin filament assembly
## GO:0003213                                                                                                                  cardiac right atrium morphogenesis
## GO:0045329                                                                                                                      carnitine biosynthetic process
## GO:0019254                                                                                                             carnitine metabolic process, CoA-linked
## GO:0016116                                                                                                                        carotenoid metabolic process
## GO:0010643                                                                                                             cell communication by chemical coupling
## GO:0060184                                                                                                                                cell cycle switching
## GO:0051728                                                                                                 cell cycle switching, mitotic to meiotic cell cycle
## GO:0090679                                                                                               cell differentiation involved in phenotypic switching
## GO:0060722                                                                                       cell proliferation involved in embryonic placenta development
## GO:0003249                                                                                            cell proliferation involved in heart valve morphogenesis
## GO:0002752                                                                                         cell surface pattern recognition receptor signaling pathway
## GO:0070458                                                                                                        cellular detoxification of nitrogen compound
## GO:0070370                                                                                                                           cellular heat acclimation
## GO:0060154                                                                                    cellular process regulating host cell cycle in response to virus
## GO:1904017                                                                                                 cellular response to Thyroglobulin triiodothyronine
## GO:0071492                                                                                                                           cellular response to UV-A
## GO:0072717                                                                                                                  cellular response to actinomycin D
## GO:1903843                                                                                                                   cellular response to arsenite ion
## GO:0071314                                                                                                                        cellular response to cocaine
## GO:0071332                                                                                                              cellular response to fructose stimulus
## GO:1904881                                                                                                               cellular response to hydrogen sulfide
## GO:0035963                                                                                                                 cellular response to interleukin-13
## GO:0071317                                                                                                          cellular response to isoquinoline alkaloid
## GO:0071288                                                                                                                    cellular response to mercury ion
## GO:0071799                                                                                                       cellular response to prostaglandin D stimulus
## GO:0072734                                                                                                                  cellular response to staurosporine
## GO:1904579                                                                                                                   cellular response to thapsigargin
## GO:0071727                                                                                                  cellular response to triacyl bacterial lipopeptide
## GO:0071462                                                                                                                 cellular response to water stimulus
## GO:0032289                                                                                                             central nervous system myelin formation
## GO:0035283                                                                                                                 central nervous system segmentation
## GO:0021699                                                                                                                        cerebellar cortex maturation
## GO:0021679                                                                                                              cerebellar molecular layer development
## GO:0021824                                                                                   cerebral cortex tangential migration using cell-axon interactions
## GO:0021823                                                                                   cerebral cortex tangential migration using cell-cell interactions
## GO:0072566                                                                                                         chemokine (C-X-C motif) ligand 1 production
## GO:1902488                                                                                                                     cholangiocyte apoptotic process
## GO:1990705                                                                                                                         cholangiocyte proliferation
## GO:0044725                                                                                                               chromatin reprogramming in the zygote
## GO:0030702                                                                                                                   chromatin silencing at centromere
## GO:0031048                                                                                                                    chromatin silencing by small RNA
## GO:0034371                                                                                                                              chylomicron remodeling
## GO:0060086                                                                                                                   circadian temperature homeostasis
## GO:1905224                                                                                                                        clathrin-coated pit assembly
## GO:0000448                                     cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035844                                                                                                                                  cloaca development
## GO:0045163                                                                                                      clustering of voltage-gated potassium channels
## GO:0043686                                                                                                               co-translational protein modification
## GO:0009631                                                                                                                                    cold acclimation
## GO:0021898                                                                               commitment of multipotent stem cells to neuronal lineage in forebrain
## GO:0150062                                                                                                                 complement-mediated synapse pruning
## GO:0045054                                                                                                                      constitutive secretory pathway
## GO:0060003                                                                                                                                   copper ion export
## GO:0070268                                                                                                                                       cornification
## GO:0060128                                                                                                corticotropin hormone secreting cell differentiation
## GO:0019371                                                                                                                              cyclooxygenase pathway
## GO:0019344                                                                                                                       cysteine biosynthetic process
## GO:0009093                                                                                                                          cysteine catabolic process
## GO:0002184                                                                                                               cytoplasmic translational termination
## GO:0046061                                                                                                                              dATP catabolic process
## GO:0046066                                                                                                                              dGDP metabolic process
## GO:0006235                                                                                                                           dTTP biosynthetic process
## GO:0046075                                                                                                                              dTTP metabolic process
## GO:0006227                                                                                                                           dUDP biosynthetic process
## GO:0046077                                                                                                                              dUDP metabolic process
## GO:0006226                                                                                                                           dUMP biosynthetic process
## GO:0030421                                                                                                                                          defecation
## GO:0002357                                                                                                                      defense response to tumor cell
## GO:0035993                                                                                                                      deltoid tuberosity development
## GO:0031104                                                                                                                               dendrite regeneration
## GO:0097026                                                                                                                    dendritic cell dendrite assembly
## GO:0036145                                                                                                                          dendritic cell homeostasis
## GO:1990502                                                                                                                       dense core granule maturation
## GO:0030208                                                                                                               dermatan sulfate biosynthetic process
## GO:0070340                                                                                                                  detection of bacterial lipopeptide
## GO:0009730                                                                                                                  detection of carbohydrate stimulus
## GO:0050968                                                                               detection of chemical stimulus involved in sensory perception of pain
## GO:0009726                                                                                                                    detection of endogenous stimulus
## GO:0051594                                                                                                                                detection of glucose
## GO:0009732                                                                                                                        detection of hexose stimulus
## GO:0050976                                                                            detection of mechanical stimulus involved in sensory perception of touch
## GO:0034287                                                                                                                detection of monosaccharide stimulus
## GO:0003032                                                                                                                                 detection of oxygen
## GO:0051410                                                                                                                 detoxification of nitrogen compound
## GO:0046544                                                                                                development of secondary male sexual characteristics
## GO:0015960                                                                                                      diadenosine polyphosphate biosynthetic process
## GO:0015966                                                                                                     diadenosine tetraphosphate biosynthetic process
## GO:0015965                                                                                                        diadenosine tetraphosphate metabolic process
## GO:0002086                                                                                                                               diaphragm contraction
## GO:0060448                                                                                dichotomous subdivision of terminal units involved in lung branching
## GO:0035442                                                                                                                   dipeptide transmembrane transport
## GO:0033058                                                                                                                              directional locomotion
## GO:0015766                                                                                                                              disaccharide transport
## GO:0006489                                                                                                           dolichyl diphosphate biosynthetic process
## GO:0046465                                                                                                              dolichyl diphosphate metabolic process
## GO:0061502                                                                                                      early endosome to recycling endosome transport
## GO:0060309                                                                                                                           elastin catabolic process
## GO:0035054                                                                                       embryonic heart tube anterior/posterior pattern specification
## GO:0035880                                                                                                                  embryonic nail plate morphogenesis
## GO:0036023                                                                                                         embryonic skeletal limb joint morphogenesis
## GO:0003133                                                                                                                endodermal-mesodermal cell signaling
## GO:0003134                                                                                    endodermal-mesodermal cell signaling involved in heart induction
## GO:1904380                                                                                                              endoplasmic reticulum mannose trimming
## GO:0060847                                                                                                                 endothelial cell fate specification
## GO:0071603                                                                                                                      endothelial cell-cell adhesion
## GO:0090673                                                                                                                    endothelial cell-matrix adhesion
## GO:0048822                                                                                                                   enucleate erythrocyte development
## GO:0003347                                                                                                      epicardial cell to mesenchymal cell transition
## GO:0010481                                                                                                                             epidermal cell division
## GO:0021538                                                                                                                             epithalamus development
## GO:0060671                                                                          epithelial cell differentiation involved in embryonic placenta development
## GO:0060672                                                                                       epithelial cell morphogenesis involved in placental branching
## GO:1990399                                                                                                                             epithelium regeneration
## GO:0097176                                                                                                                           epoxide metabolic process
## GO:0097694                                                                                                       establishment of RNA localization to telomere
## GO:0003365                                                                                 establishment of cell polarity involved in ameboidal cell migration
## GO:0045200                                                                                                                establishment of neuroblast polarity
## GO:0097051                                                                             establishment of protein localization to endoplasmic reticulum membrane
## GO:0007529                                                                                     establishment of synaptic specificity at neuromuscular junction
## GO:0045196                                                                                                 establishment or maintenance of neuroblast polarity
## GO:0010248                                                                              establishment or maintenance of transmembrane electrochemical gradient
## GO:0035938                                                                                                                                 estradiol secretion
## GO:0097010                                                                                        eukaryotic translation initiation factor 4F complex assembly
## GO:0051834                                                                evasion or tolerance of defenses of other organism involved in symbiotic interaction
## GO:0044415                                                                                                               evasion or tolerance of host defenses
## GO:0019049                                                                                                      evasion or tolerance of host defenses by virus
## GO:0098976                                                                                                           excitatory chemical synaptic transmission
## GO:0045226                                                                                                   extracellular polysaccharide biosynthetic process
## GO:0046379                                                                                                      extracellular polysaccharide metabolic process
## GO:0006858                                                                                                                             extracellular transport
## GO:0002074                                                                                                             extraocular skeletal muscle development
## GO:0045062                                                                                                                        extrathymic T cell selection
## GO:0042706                                                                                                              eye photoreceptor cell fate commitment
## GO:1903375                                                                                                                  facioacoustic ganglion development
## GO:0045337                                                                                                           farnesyl diphosphate biosynthetic process
## GO:0097155                                                                                                                fasciculation of sensory neuron axon
## GO:0008050                                                                                                                           female courtship behavior
## GO:0048807                                                                                                                      female genitalia morphogenesis
## GO:0007066                                                                                                            female meiosis sister chromatid cohesion
## GO:0033216                                                                                                                                  ferric iron import
## GO:0098706                                                                                                       ferric iron import across cell outer membrane
## GO:1903874                                                                                                                ferrous iron transmembrane transport
## GO:0015684                                                                                                                              ferrous iron transport
## GO:0060825                                   fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:0042726                                                                                                        flavin-containing compound metabolic process
## GO:0033505                                                                                                                           floor plate morphogenesis
## GO:0060423                                                                                                                             foregut regionalization
## GO:0046294                                                                                                                      formaldehyde catabolic process
## GO:0070649                                                                                                               formin-nucleated actin cable assembly
## GO:0110009                                                                                                           formin-nucleated actin cable organization
## GO:0006001                                                                                                                          fructose catabolic process
## GO:0061624                                                               fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## GO:0006106                                                                                                                          fumarate metabolic process
## GO:0048165                                                                                                                                  fused antrum stage
## GO:0019064                                                                                                  fusion of virus membrane with host plasma membrane
## GO:0019376                                                                                                                      galactolipid catabolic process
## GO:0061010                                                                                                                            gall bladder development
## GO:0009449                                                                                                        gamma-aminobutyric acid biosynthetic process
## GO:0033566                                                                                                                  gamma-tubulin complex localization
## GO:1990768                                                                                                                   gastric mucosal blood circulation
## GO:0001698                                                                                                              gastrin-induced gastric acid secretion
## GO:0035822                                                                                                                                     gene conversion
## GO:0060112                                                                                                                generation of ovulation cycle rhythm
## GO:0097116                                                                                       gephyrin clustering involved in postsynaptic density assembly
## GO:0018992                                                                                                                         germ-line sex determination
## GO:0002314                                                                                                              germinal center B cell differentiation
## GO:0051729                                                                                        germline cell cycle switching, mitotic to meiotic cell cycle
## GO:0002071                                                                                                                glandular epithelial cell maturation
## GO:0007403                                                                                                                       glial cell fate determination
## GO:0006680                                                                                                                  glucosylceramide catabolic process
## GO:0019389                                                                                                                     glucuronoside metabolic process
## GO:0090461                                                                                                                               glutamate homeostasis
## GO:0051935                                                                                                                                  glutamate reuptake
## GO:0006543                                                                                                                         glutamine catabolic process
## GO:0070681                                                                                                  glutaminyl-tRNAGln biosynthesis via transamidation
## GO:0046168                                                                                                              glycerol-3-phosphate catabolic process
## GO:0006546                                                                                                                           glycine catabolic process
## GO:0019464                                                                                                 glycine decarboxylation via glycine cleavage system
## GO:0061623                                                                                                                   glycolytic process from galactose
## GO:0061625                                                                                                     glycolytic process through fructose-1-phosphate
## GO:1901656                                                                                                                                 glycoside transport
## GO:0009436                                                                                                                        glyoxylate catabolic process
## GO:0035262                                                                                                                                 gonad morphogenesis
## GO:0021828                                                                              gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## GO:0002432                                                                                                                                 granuloma formation
## GO:1904700                                                                                                                    granulosa cell apoptotic process
## GO:0071613                                                                                                                               granzyme B production
## GO:0046098                                                                                                                           guanine metabolic process
## GO:0021986                                                                                                                                habenula development
## GO:0071335                                                                                                                    hair follicle cell proliferation
## GO:0035685                                                                                                                            helper T cell diapedesis
## GO:0097037                                                                                                                                         heme export
## GO:0030200                                                                                                      heparan sulfate proteoglycan catabolic process
## GO:0030210                                                                                                                        heparin biosynthetic process
## GO:0006059                                                                                                                           hexitol metabolic process
## GO:0021934                                                                                                                 hindbrain tangential cell migration
## GO:0043133                                                                                                                                 hindgut contraction
## GO:0110088                                                                                                                hippocampal neuron apoptotic process
## GO:1990164                                                                                                                         histone H2A phosphorylation
## GO:0043969                                                                                                                             histone H2B acetylation
## GO:0043974                                                                                                                          histone H3-K27 acetylation
## GO:0097198                                                                                                                       histone H3-K36 trimethylation
## GO:0043988                                                                                                                      histone H3-S28 phosphorylation
## GO:0043985                                                                                                                           histone H4-R3 methylation
## GO:0008628                                                                                                        hormone-mediated apoptotic signaling pathway
## GO:0036118                                                                                                                           hyaluranon cable assembly
## GO:0046947                                                                                                                  hydroxylysine biosynthetic process
## GO:0046946                                                                                                                     hydroxylysine metabolic process
## GO:0048850                                                                                                                            hypophysis morphogenesis
## GO:0021856                                                                                      hypothalamic tangential migration using cell-axon interactions
## GO:0046101                                                                                                                   hypoxanthine biosynthetic process
## GO:0002386                                                                                               immune response in mucosal-associated lymphoid tissue
## GO:0002414                                                                                                     immunoglobulin transcytosis in epithelial cells
## GO:0002030                                                                                               inhibitory G protein-coupled receptor phosphorylation
## GO:0001827                                                                                                                inner cell mass cell fate commitment
## GO:0001828                                                                                                              inner cell mass cellular morphogenesis
## GO:0072061                                                                                                         inner medullary collecting duct development
## GO:0046103                                                                                                                        inosine biosynthetic process
## GO:0030070                                                                                                                                  insulin processing
## GO:0038028                                                                                insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## GO:0016539                                                                                                                    intein-mediated protein splicing
## GO:0002121                                                                                                                      inter-male aggressive behavior
## GO:0042231                                                                                                                 interleukin-13 biosynthetic process
## GO:0042223                                                                                                                  interleukin-3 biosynthetic process
## GO:0051325                                                                                                                                          interphase
## GO:0001951                                                                                                                     intestinal D-glucose absorption
## GO:0106001                                                                                                                        intestinal hexose absorption
## GO:0070676                                                                                                                      intralumenal vesicle formation
## GO:1990442                                                                             intrinsic apoptotic signaling pathway in response to nitrosative stress
## GO:1905863                                                                                                                           invadopodium organization
## GO:0098711                                                                                                              iron ion import across plasma membrane
## GO:0019287                                                                                    isopentenyl diphosphate biosynthetic process, mevalonate pathway
## GO:0046864                                                                                                                                isoprenoid transport
## GO:0046951                                                                                                                    ketone body biosynthetic process
## GO:0072003                                                                                                                           kidney rudiment formation
## GO:0072194                                                                                                             kidney smooth muscle tissue development
## GO:0002254                                                                                                                                       kinin cascade
## GO:0061738                                                                                                                       late endosomal microautophagy
## GO:0034499                                                                                                                    late endosome to Golgi transport
## GO:0044805                                                                                                                                    late nucleophagy
## GO:0019086                                                                                                                            late viral transcription
## GO:0019045                                                                                                                            latent virus replication
## GO:0048370                                                                                                                          lateral mesoderm formation
## GO:0048369                                                                                                                      lateral mesoderm morphogenesis
## GO:0048371                                                                                                             lateral mesodermal cell differentiation
## GO:0097477                                                                                                               lateral motor column neuron migration
## GO:0060460                                                                                                                             left lung morphogenesis
## GO:0003220                                                                                                left ventricular cardiac muscle tissue morphogenesis
## GO:0015820                                                                                                                                   leucine transport
## GO:0036101                                                                                                                    leukotriene B4 catabolic process
## GO:0036102                                                                                                                    leukotriene B4 metabolic process
## GO:0036100                                                                                                                       leukotriene catabolic process
## GO:0002540                                                                                            leukotriene production involved in inflammatory response
## GO:0036022                                                                                                                            limb joint morphogenesis
## GO:0140042                                                                                                                             lipid droplet formation
## GO:0002933                                                                                                                                 lipid hydroxylation
## GO:0055095                                                                                                             lipoprotein particle mediated signaling
## GO:0055096                                                                                                 low-density lipoprotein particle mediated signaling
## GO:0060424                                                                                                                            lung field specification
## GO:0060492                                                                                                                                      lung induction
## GO:0042700                                                                                                               luteinizing hormone signaling pathway
## GO:0060838                                                                                                          lymphatic endothelial cell fate commitment
## GO:0097021                                                                                                           lymphocyte migration into lymphoid organs
## GO:0006553                                                                                                                            lysine metabolic process
## GO:0016237                                                                                                                            lysosomal microautophagy
## GO:0035691                                                                                            macrophage migration inhibitory factor signaling pathway
## GO:0051684                                                                                                                       maintenance of Golgi location
## GO:0099562                                                                                                       maintenance of postsynaptic density structure
## GO:0036506                                                                                                                     maintenance of unfolded protein
## GO:1904378                                                                                            maintenance of unfolded protein involved in ERAD pathway
## GO:0071423                                                                                                                      malate transmembrane transport
## GO:0015743                                                                                                                                    malate transport
## GO:0008049                                                                                                                             male courtship behavior
## GO:1905198                                                                                                                                  manchette assembly
## GO:0071421                                                                                                               manganese ion transmembrane transport
## GO:0002125                                                                                                                        maternal aggressive behavior
## GO:0042628                                                                                                                               mating plug formation
## GO:1990773                                                                                                                   matrix metallopeptidase secretion
## GO:0036112                                                                                                       medium-chain fatty-acyl-CoA metabolic process
## GO:0021550                                                                                                                       medulla oblongata development
## GO:1903537                                                                                            meiotic cell cycle process involved in oocyte maturation
## GO:0016344                                                                                                    meiotic chromosome movement towards spindle pole
## GO:0006311                                                                                                                             meiotic gene conversion
## GO:0051311                                                                                                                 meiotic metaphase plate congression
## GO:0000710                                                                                                                             meiotic mismatch repair
## GO:0097325                                                                                                                            melanocyte proliferation
## GO:0086047                                                                               membrane depolarization during Purkinje myocyte cell action potential
## GO:0098912                                                                          membrane depolarization during atrial cardiac muscle cell action potential
## GO:0086048                                                                                  membrane depolarization during bundle of His cell action potential
## GO:0039663                                                                                              membrane fusion involved in viral entry into host cell
## GO:0031580                                                                                                                          membrane raft distribution
## GO:0035709                                                                                                                            memory T cell activation
## GO:0009233                                                                                                                       menaquinone metabolic process
## GO:0072138                                                                                 mesenchymal cell proliferation involved in ureteric bud development
## GO:0072309                                                                     mesenchymal stem cell maintenance involved in metanephric nephron morphogenesis
## GO:1905319                                                                                                                     mesenchymal stem cell migration
## GO:0097168                                                                                                                 mesenchymal stem cell proliferation
## GO:1990120                                                                                                        messenger ribonucleoprotein complex assembly
## GO:0072240                                                                                                                metanephric DCT cell differentiation
## GO:0072284                                                                                                             metanephric S-shaped body morphogenesis
## GO:0072277                                                                                                          metanephric glomerular capillary formation
## GO:0072244                                                                                                       metanephric glomerular epithelium development
## GO:0072275                                                                                                                metanephric glomerulus morphogenesis
## GO:0072276                                                                                                    metanephric glomerulus vasculature morphogenesis
## GO:0090176                                                                  microtubule cytoskeleton organization involved in establishment of planar polarity
## GO:0051012                                                                                                                                 microtubule sliding
## GO:1990575                                                                                                   mitochondrial L-ornithine transmembrane transport
## GO:1902775                                                                                                      mitochondrial large ribosomal subunit assembly
## GO:0000958                                                                                                                mitochondrial mRNA catabolic process
## GO:1990180                                                                                                                mitochondrial tRNA 3'-end processing
## GO:0097745                                                                                                                mitochondrial tRNA 5'-end processing
## GO:0070126                                                                                                             mitochondrial translational termination
## GO:0099074                                                                                                                 mitochondrion to lysosome transport
## GO:0099075                                                                                                    mitochondrion-derived vesicle mediated transport
## GO:0044878                                                                                                                      mitotic cytokinesis checkpoint
## GO:0007084                                                                                                                 mitotic nuclear envelope reassembly
## GO:1902990                                                                                      mitotic telomere maintenance via semi-conservative replication
## GO:0052422                                                                                                   modulation by host of symbiont catalytic activity
## GO:0044830                                                                                                  modulation by host of viral RNA genome replication
## GO:0044868                                                                                                      modulation by host of viral molecular function
## GO:0052203                                                                modulation of catalytic activity in other organism involved in symbiotic interaction
## GO:0035702                                                                                                                                monocyte homeostasis
## GO:0048162                                                                                                                          multi-layer follicle stage
## GO:0044800                                                                                                                      multi-organism membrane fusion
## GO:0036258                                                                                                                        multivesicular body assembly
## GO:0014900                                                                                                                                  muscle hyperplasia
## GO:0050883                                                                                                      musculoskeletal movement, spinal reflex action
## GO:0043385                                                                                                                         mycotoxin metabolic process
## GO:0002277                                                                                       myeloid dendritic cell activation involved in immune response
## GO:0015798                                                                                                                              myo-inositol transport
## GO:0052490                                        negative regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0033668                                                                                           negative regulation by symbiont of host apoptotic process
## GO:0052041                                                                                       negative regulation by symbiont of host programmed cell death
## GO:1901536                                                                                                            negative regulation of DNA demethylation
## GO:1905463                                                                                                         negative regulation of DNA duplex unwinding
## GO:0048239                                                                                                negative regulation of DNA recombination at telomere
## GO:0060567                                                                                     negative regulation of DNA-templated transcription, termination
## GO:1903070                                                                  negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:1904425                                                                                                                  negative regulation of GTP binding
## GO:0033861                                                                                                     negative regulation of NAD(P)H oxidase activity
## GO:1903898                                                                                      negative regulation of PERK-mediated unfolded protein response
## GO:2000299                                                                       negative regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0035544                                                                                                       negative regulation of SNARE complex assembly
## GO:0045626                                                                                              negative regulation of T-helper 1 cell differentiation
## GO:2000329                                                                                          negative regulation of T-helper 17 cell lineage commitment
## GO:2000552                                                                                          negative regulation of T-helper 2 cell cytokine production
## GO:0140199                                 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1904178                                                                                                   negative regulation of adipose tissue development
## GO:0002581                                    negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1902511                                                                                                  negative regulation of apoptotic DNA fragmentation
## GO:2000360                                                                                           negative regulation of binding of sperm to zona pellucida
## GO:0010956                                                                                           negative regulation of calcidiol 1-monooxygenase activity
## GO:1902081                                                                               negative regulation of calcium ion import into sarcoplasmic reticulum
## GO:0045914                                                                                              negative regulation of catecholamine metabolic process
## GO:2000137                                                                           negative regulation of cell proliferation involved in heart morphogenesis
## GO:1901856                                                                                                         negative regulation of cellular respiration
## GO:0045079                                                                                               negative regulation of chemokine biosynthetic process
## GO:1904193                                                                                              negative regulation of cholangiocyte apoptotic process
## GO:0061182                                                                                                      negative regulation of chondrocyte development
## GO:1902731                                                                                                    negative regulation of chondrocyte proliferation
## GO:0042322                                                                                        negative regulation of circadian sleep/wake cycle, REM sleep
## GO:2000847                                                                                             negative regulation of corticosteroid hormone secretion
## GO:0051344                                                                                 negative regulation of cyclic-nucleotide phosphodiesterase activity
## GO:2001271                                                negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:0002605                                                                           negative regulation of dendritic cell antigen processing and presentation
## GO:2000016                                                                                             negative regulation of determination of dorsal identity
## GO:0045963                                                                                                   negative regulation of dopamine metabolic process
## GO:1904339                                                                                          negative regulation of dopaminergic neuron differentiation
## GO:2000384                                                                                                         negative regulation of ectoderm development
## GO:2001027                                                                                                  negative regulation of endothelial cell chemotaxis
## GO:0071899                                                                                                    negative regulation of estrogen receptor binding
## GO:1903542                                                                                                           negative regulation of exosomal secretion
## GO:1901003                                                                                                                 negative regulation of fermentation
## GO:2000850                                                                                                     negative regulation of glucocorticoid secretion
## GO:1900450                                                                                         negative regulation of glutamate receptor signaling pathway
## GO:0045967                                                                                                                  negative regulation of growth rate
## GO:0048817                                                                                                     negative regulation of hair follicle maturation
## GO:0051097                                                                                                            negative regulation of helicase activity
## GO:1902037                                                                                      negative regulation of hematopoietic stem cell differentiation
## GO:1903944                                                                                                 negative regulation of hepatocyte apoptotic process
## GO:0031064                                                                                                        negative regulation of histone deacetylation
## GO:0033128                                                                                                      negative regulation of histone phosphorylation
## GO:0002884                                                                                                             negative regulation of hypersensitivity
## GO:0045358                                                                                         negative regulation of interferon-beta biosynthetic process
## GO:0032690                                                                                               negative regulation of interleukin-1 alpha production
## GO:2001180                                                                                                     negative regulation of interleukin-10 secretion
## GO:2001183                                                                                                     negative regulation of interleukin-12 secretion
## GO:2000666                                                                                                     negative regulation of interleukin-13 secretion
## GO:1900041                                                                                                      negative regulation of interleukin-2 secretion
## GO:0048294                                                                                            negative regulation of isotype switching to IgE isotypes
## GO:0010593                                                                                                       negative regulation of lamellipodium assembly
## GO:1903237                                                                                               negative regulation of leukocyte tethering or rolling
## GO:0090327                                                                                   negative regulation of locomotion involved in locomotory behavior
## GO:1900453                                                                                                negative regulation of long-term synaptic depression
## GO:0045715                                                               negative regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1905457                                                                                     negative regulation of lymphoid progenitor cell differentiation
## GO:1905166                                                                                          negative regulation of lysosomal protein catabolic process
## GO:0071641                                                                           negative regulation of macrophage inflammatory protein 1 alpha production
## GO:0034183                                                                             negative regulation of maintenance of mitotic sister chromatid cohesion
## GO:0034092                                                                                     negative regulation of maintenance of sister chromatid cohesion
## GO:2000019                                                                                                       negative regulation of male gonad development
## GO:1905133                                                                                                negative regulation of meiotic chromosome separation
## GO:0048022                                                                                                 negative regulation of melanin biosynthetic process
## GO:1905154                                                                                                        negative regulation of membrane invagination
## GO:0003340                                                   negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1902103                                                                          negative regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0090310                                                                                    negative regulation of methylation-dependent chromatin silencing
## GO:1901859                                                                                          negative regulation of mitochondrial DNA metabolic process
## GO:1901740                                                                                                              negative regulation of myoblast fusion
## GO:1904761                                                                                                negative regulation of myofibroblast differentiation
## GO:0002859                                                 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0002856                                                                   negative regulation of natural killer cell mediated immune response to tumor cell
## GO:1902623                                                                                                         negative regulation of neutrophil migration
## GO:0010751                                                                                    negative regulation of nitric oxide mediated signal transduction
## GO:1902856                                                                                                   negative regulation of non-motile cilium assembly
## GO:1900152                                                    negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0060212                                                                             negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0070433                                                     negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070425                                                       negative regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:1902309                                                                                            negative regulation of peptidyl-serine dephosphorylation
## GO:1900275                                                                                                     negative regulation of phospholipase C activity
## GO:2000041                                                                     negative regulation of planar cell polarity pathway involved in axis elongation
## GO:1902268                                                                                            negative regulation of polyamine transmembrane transport
## GO:1901874                                                                                      negative regulation of post-translational protein modification
## GO:1902303                                                                                                         negative regulation of potassium ion export
## GO:1903765                                                                                  negative regulation of potassium ion export across plasma membrane
## GO:2000974                                                                                                   negative regulation of pro-B cell differentiation
## GO:0010836                                                                                                     negative regulation of protein ADP-ribosylation
## GO:1904351                                                                                     negative regulation of protein catabolic process in the vacuole
## GO:0090038                                                                                                   negative regulation of protein kinase C signaling
## GO:1904780                                                                                           negative regulation of protein localization to centrosome
## GO:0061084                                                                                                            negative regulation of protein refolding
## GO:2000645                                                                                                   negative regulation of receptor catabolic process
## GO:0090071                                                                                                          negative regulation of ribosome biogenesis
## GO:1902725                                                                                               negative regulation of satellite cell differentiation
## GO:1900377                                                                                    negative regulation of secondary metabolite biosynthetic process
## GO:1904057                                                                                                   negative regulation of sensory perception of pain
## GO:0014859                                                                                           negative regulation of skeletal muscle cell proliferation
## GO:1902723                                                                                 negative regulation of skeletal muscle satellite cell proliferation
## GO:0071672                                                                                                negative regulation of smooth muscle cell chemotaxis
## GO:2000832                                                                                                    negative regulation of steroid hormone secretion
## GO:2000297                                                                                                           negative regulation of synapse maturation
## GO:1903422                                                                                                   negative regulation of synaptic vesicle recycling
## GO:1904430                                                                                                           negative regulation of t-circle formation
## GO:1902948                                                                                                  negative regulation of tau-protein kinase activity
## GO:0070495                                                                                negative regulation of thrombin-activated receptor signaling pathway
## GO:0034140                                                                                       negative regulation of toll-like receptor 3 signaling pathway
## GO:0034164                                                                                       negative regulation of toll-like receptor 9 signaling pathway
## GO:0016480                                                                                          negative regulation of transcription by RNA polymerase III
## GO:2000820                                 negative regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0071930                                                              negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010526                                                                                                  negative regulation of transposition, RNA-mediated
## GO:1904694                                                                                           negative regulation of vascular smooth muscle contraction
## GO:0010916                                                                              negative regulation of very-low-density lipoprotein particle clearance
## GO:0072076                                                                                                                  nephrogenic mesenchyme development
## GO:0021502                                                                                                                     neural fold elevation formation
## GO:0021849                                                                                                          neuroblast division in subventricular zone
## GO:0033693                                                                                                                       neurofilament bundle assembly
## GO:0038189                                                                                                                        neuropilin signaling pathway
## GO:0070488                                                                                                                              neutrophil aggregation
## GO:0060618                                                                                                                                  nipple development
## GO:0061341                                                                                   non-canonical Wnt signaling pathway involved in heart development
## GO:0003358                                                                                                                    noradrenergic neuron development
## GO:0002025                                         norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## GO:0090292                                                                                                        nuclear matrix anchoring at nuclear membrane
## GO:0043578                                                                                                                         nuclear matrix organization
## GO:0071630                                                                                  nuclear protein quality control by the ubiquitin-proteasome system
## GO:0035063                                                                                                                          nuclear speck organization
## GO:0015851                                                                                                                                nucleobase transport
## GO:0021817                                                             nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## GO:1901679                                                                                                                  nucleotide transmembrane transport
## GO:0000715                                                                                                  nucleotide-excision repair, DNA damage recognition
## GO:0006295                                                                                              nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0006296                                                                                              nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0006589                                                                                                                     octopamine biosynthetic process
## GO:0046333                                                                                                                        octopamine metabolic process
## GO:0061034                                                                                                        olfactory bulb mitral cell layer development
## GO:0021553                                                                                                                         olfactory nerve development
## GO:0060166                                                                                                                           olfactory pit development
## GO:0015772                                                                                                                           oligosaccharide transport
## GO:1901376                                                                                                organic heteropentacyclic compound metabolic process
## GO:0045299                                                                                                                              otolith mineralization
## GO:0001550                                                                                                                           ovarian cumulus expansion
## GO:0001543                                                                                                                            ovarian follicle rupture
## GO:0015729                                                                                                                              oxaloacetate transport
## GO:0035511                                                                                                                         oxidative DNA demethylation
## GO:0035553                                                                                                         oxidative single-stranded RNA demethylation
## GO:1900535                                                                                                                  palmitic acid biosynthetic process
## GO:1900533                                                                                                                     palmitic acid metabolic process
## GO:0019323                                                                                                                           pentose catabolic process
## GO:0009051                                                                                                           pentose-phosphate shunt, oxidative branch
## GO:0002501                                                                                                   peptide antigen assembly with MHC protein complex
## GO:0018125                                                                                                                       peptidyl-cysteine methylation
## GO:0017187                                                                                                                peptidyl-glutamic acid carboxylation
## GO:0018199                                                                                                                     peptidyl-glutamine modification
## GO:0018312                                                                                                                    peptidyl-serine ADP-ribosylation
## GO:0002343                                                                                                                         peripheral B cell selection
## GO:0010124                                                                                                                     phenylacetate catabolic process
## GO:0006432                                                                                                                    phenylalanyl-tRNA aminoacylation
## GO:0036151                                                                                                           phosphatidylcholine acyl-chain remodeling
## GO:0031161                                                                                                              phosphatidylinositol catabolic process
## GO:0007208                                                                                     phospholipase C-activating serotonin receptor signaling pathway
## GO:0046552                                                                                                                  photoreceptor cell fate commitment
## GO:0042376                                                                                                                     phylloquinone catabolic process
## GO:0042374                                                                                                                     phylloquinone metabolic process
## GO:0016129                                                                                                                   phytosteroid biosynthetic process
## GO:0016128                                                                                                                      phytosteroid metabolic process
## GO:0034727                                                                                                             piecemeal microautophagy of the nucleus
## GO:0097195                                                                                                                                    pilomotor reflex
## GO:0061346                                                                                        planar cell polarity pathway involved in heart morphogenesis
## GO:0034441                                                                                                               plasma lipoprotein particle oxidation
## GO:0006663                                                                                                     platelet activating factor biosynthetic process
## GO:0070889                                                                                                                 platelet alpha granule organization
## GO:0090360                                                                                                           platelet-derived growth factor production
## GO:0032917                                                                                                                               polyamine acetylation
## GO:0016094                                                                                                                     polyprenol biosynthetic process
## GO:0016095                                                                                                                        polyprenol catabolic process
## GO:0021586                                                                                                                                     pons maturation
## GO:1905555                                                                                                          positive regulation blood vessel branching
## GO:0052151                                                                                           positive regulation by symbiont of host apoptotic process
## GO:1905870                                                                                           positive regulation of 3'-UTR-mediated mRNA stabilization
## GO:1904719                                                                                           positive regulation of AMPA glutamate receptor clustering
## GO:0032831                                                    positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:1904219                                                                 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:2000373                                                                                 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0110032                                                                                       positive regulation of G2/MI transition of meiotic cell cycle
## GO:1900245                                                                                                      positive regulation of MDA-5 signaling pathway
## GO:1901666                                                                                         positive regulation of NAD+ ADP-ribosyltransferase activity
## GO:0014040                                                                                                 positive regulation of Schwann cell differentiation
## GO:1903984                                                                                  positive regulation of TRAIL-activated apoptotic signaling pathway
## GO:0061357                                                                                                        positive regulation of Wnt protein secretion
## GO:0014057                                                                                   positive regulation of acetylcholine secretion, neurotransmission
## GO:1904234                                                                                                 positive regulation of aconitate hydratase activity
## GO:0060168                                                                                         positive regulation of adenosine receptor signaling pathway
## GO:1905337                                                                                                                   positive regulation of aggrephagy
## GO:0032349                                                                                             positive regulation of aldosterone biosynthetic process
## GO:0032346                                                                                                positive regulation of aldosterone metabolic process
## GO:2000860                                                                                                        positive regulation of aldosterone secretion
## GO:0042986                                                                               positive regulation of amyloid precursor protein biosynthetic process
## GO:2000825                                                                                                   positive regulation of androgen receptor activity
## GO:1901953                                                                                     positive regulation of anterograde dense core granule transport
## GO:0002585                                                                       positive regulation of antigen processing and presentation of peptide antigen
## GO:0060139                                                                                                   positive regulation of apoptotic process by virus
## GO:0032100                                                                                                                     positive regulation of appetite
## GO:0034263                                                                                         positive regulation of autophagy in response to ER overload
## GO:0060559                                                                                           positive regulation of calcidiol 1-monooxygenase activity
## GO:1903679                                                                                     positive regulation of cap-independent translational initiation
## GO:0110024                                                                                        positive regulation of cardiac muscle myoblast proliferation
## GO:1905312                                                  positive regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0051944                                                                       positive regulation of catecholamine uptake involved in synaptic transmission
## GO:2001288                                                                                                positive regulation of caveolin-mediated endocytosis
## GO:0038091                               positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## GO:0045764                                                                                        positive regulation of cellular amino acid metabolic process
## GO:1903974                                                           positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:0045799                                                                                            positive regulation of chromatin assembly or disassembly
## GO:0046005                                                                                        positive regulation of circadian sleep/wake cycle, REM sleep
## GO:1905445                                                                                                       positive regulation of clathrin coat assembly
## GO:0051466                                                                                    positive regulation of corticotropin-releasing hormone secretion
## GO:1904960                                                                                                positive regulation of cytochrome-c oxidase activity
## GO:0051714                                                                                                  positive regulation of cytolysis in other organism
## GO:1904690                                                                                         positive regulation of cytoplasmic translational initiation
## GO:0045585                                                                                             positive regulation of cytotoxic T cell differentiation
## GO:2000670                                                                                             positive regulation of dendritic cell apoptotic process
## GO:2001200                                                                                               positive regulation of dendritic cell differentiation
## GO:0061184                                                                                                        positive regulation of dermatome development
## GO:2000017                                                                                             positive regulation of determination of dorsal identity
## GO:1903181                                                                                                positive regulation of dopamine biosynthetic process
## GO:0051586                                                                            positive regulation of dopamine uptake involved in synaptic transmission
## GO:1904340                                                                                          positive regulation of dopaminergic neuron differentiation
## GO:1904734                                                                                                   positive regulation of electron transfer activity
## GO:0060769                                                         positive regulation of epithelial cell proliferation involved in prostate gland development
## GO:0003331                                                                                   positive regulation of extracellular matrix constituent secretion
## GO:0031448                                                                                positive regulation of fast-twitch skeletal muscle fiber contraction
## GO:0060474                                                                          positive regulation of flagellated sperm motility involved in capacitation
## GO:1903598                                                                                                        positive regulation of gap junction assembly
## GO:0060454                                                                                                       positive regulation of gastric acid secretion
## GO:1904346                                                                                            positive regulation of gastric mucosal blood circulation
## GO:0034352                                                                                                 positive regulation of glial cell apoptotic process
## GO:1902661                                                                                           positive regulation of glucose mediated signaling pathway
## GO:0071657                                                                             positive regulation of granulocyte colony-stimulating factor production
## GO:0045425                                                        positive regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0071663                                                                                                        positive regulation of granzyme B production
## GO:0060399                                                                                    positive regulation of growth hormone receptor signaling pathway
## GO:0046985                                                                                              positive regulation of hemoglobin biosynthetic process
## GO:0010909                                                                            positive regulation of heparan sulfate proteoglycan biosynthetic process
## GO:0070368                                                                                                   positive regulation of hepatocyte differentiation
## GO:0007228                                                                                      positive regulation of hh target transcription factor activity
## GO:1900106                                                                                                    positive regulation of hyaluranon cable assembly
## GO:0106016                                                                                            positive regulation of inflammatory response to wounding
## GO:0045726                                                                                                positive regulation of integrin biosynthetic process
## GO:0045082                                                                                          positive regulation of interleukin-10 biosynthetic process
## GO:1905078                                                                                                     positive regulation of interleukin-17 secretion
## GO:0045401                                                                                           positive regulation of interleukin-3 biosynthetic process
## GO:0032752                                                                                                     positive regulation of interleukin-3 production
## GO:0045404                                                                                           positive regulation of interleukin-4 biosynthetic process
## GO:1904582                                                                                              positive regulation of intracellular mRNA localization
## GO:1902167                                        positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1902174                                                                                               positive regulation of keratinocyte apoptotic process
## GO:1902608                                                               positive regulation of large conductance calcium-activated potassium channel activity
## GO:0033686                                                                                                positive regulation of luteinizing hormone secretion
## GO:1901492                                                                                                            positive regulation of lymphangiogenesis
## GO:2000111                                                                                                 positive regulation of macrophage apoptotic process
## GO:1901258                                                                              positive regulation of macrophage colony-stimulating factor production
## GO:0043382                                                                                                positive regulation of memory T cell differentiation
## GO:2001055                                                                                           positive regulation of mesenchymal cell apoptotic process
## GO:2000729                                                                positive regulation of mesenchymal cell proliferation involved in ureter development
## GO:1905322                                                                                              positive regulation of mesenchymal stem cell migration
## GO:2000591                                                                                       positive regulation of metanephric mesenchymal cell migration
## GO:0035793                     positive regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:0090063                                                                                                       positive regulation of microtubule nucleation
## GO:1904958                                                                                 positive regulation of midbrain dopaminergic neuron differentiation
## GO:2000857                                                                                                  positive regulation of mineralocorticoid secretion
## GO:0061885                                                                                       positive regulation of mini excitatory postsynaptic potential
## GO:1902958                                                                         positive regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:1903109                                                                                                  positive regulation of mitochondrial transcription
## GO:0046604                                                                                                positive regulation of mitotic centrosome separation
## GO:1900625                                                                                                         positive regulation of monocyte aggregation
## GO:2000439                                                                                                       positive regulation of monocyte extravasation
## GO:0014737                                                                                                               positive regulation of muscle atrophy
## GO:0043323                                                                                            positive regulation of natural killer cell degranulation
## GO:1905294                                                                                            positive regulation of neural crest cell differentiation
## GO:1904457                                                                                                    positive regulation of neuronal action potential
## GO:0070960                                                                                             positive regulation of neutrophil mediated cytotoxicity
## GO:0070961                                                                                 positive regulation of neutrophil mediated killing of symbiont cell
## GO:2000386                                                                                                 positive regulation of ovarian follicle development
## GO:1903378                                                        positive regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:2001247                                                                                     positive regulation of phosphatidylcholine biosynthetic process
## GO:1902995                                                                                                          positive regulation of phospholipid efflux
## GO:0061092                                                                                                   positive regulation of phospholipid translocation
## GO:2000588                                                               positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1902304                                                                                                         positive regulation of potassium ion export
## GO:1903766                                                                                  positive regulation of potassium ion export across plasma membrane
## GO:1902722                                                                                                          positive regulation of prolactin secretion
## GO:0060585                                                                                 positive regulation of prostaglandin-endoperoxide synthase activity
## GO:1902523                                                                                            positive regulation of protein K63-linked ubiquitination
## GO:1904100                                                                                               positive regulation of protein O-linked glycosylation
## GO:1904352                                                                                     positive regulation of protein catabolic process in the vacuole
## GO:1900740                                        positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1904184                                                                                              positive regulation of pyruvate dehydrogenase activity
## GO:1902685                                                                                             positive regulation of receptor localization to synapse
## GO:1901079                                                                                                         positive regulation of relaxation of muscle
## GO:1904833                                                                                               positive regulation of removal of superoxide radicals
## GO:1900135                                                                                            positive regulation of renin secretion into blood stream
## GO:0032097                                                                                                             positive regulation of response to food
## GO:1903971                                                                             positive regulation of response to macrophage colony-stimulating factor
## GO:1902336                                                                                          positive regulation of retinal ganglion cell axon guidance
## GO:1904154                                                                                  positive regulation of retrograde protein transport, ER to cytosol
## GO:1904222                                                                                       positive regulation of serine C-palmitoyltransferase activity
## GO:0014064                                                                                                          positive regulation of serotonin secretion
## GO:1902811                                                                                        positive regulation of skeletal muscle fiber differentiation
## GO:1904349                                                                                    positive regulation of small intestine smooth muscle contraction
## GO:2000120                                                                                         positive regulation of sodium-dependent phosphate transport
## GO:1901671                                                                                                positive regulation of superoxide dismutase activity
## GO:1904431                                                                                                           positive regulation of t-circle formation
## GO:2000611                                                                                                   positive regulation of thyroid hormone generation
## GO:1905075                                                                                                   positive regulation of tight junction disassembly
## GO:0051795                                                                                                            positive regulation of timing of catagen
## GO:0034157                                                                                       positive regulation of toll-like receptor 7 signaling pathway
## GO:1901485                                                                                       positive regulation of transcription factor catabolic process
## GO:0000432                                                                     positive regulation of transcription from RNA polymerase II promoter by glucose
## GO:2000721                                 positive regulation of transcription from RNA polymerase II promoter involved in smooth muscle cell differentiation
## GO:0006990                                          positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## GO:0036493                                                                      positive regulation of translation in response to endoplasmic reticulum stress
## GO:0032058                                                                               positive regulation of translational initiation in response to stress
## GO:0045905                                                                                                    positive regulation of translational termination
## GO:1903774                                                                                         positive regulation of viral budding via host ESCRT complex
## GO:0010980                                                                                            positive regulation of vitamin D 24-hydroxylase activity
## GO:0060557                                                                                               positive regulation of vitamin D biosynthetic process
## GO:0060060                                                                                              post-embryonic retina morphogenesis in camera-type eye
## GO:0045297                                                                                                                                post-mating behavior
## GO:0034421                                                                                                              post-translational protein acetylation
## GO:0021827                                                                                                      postnatal olfactory bulb interneuron migration
## GO:0000973                                                                    posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0002331                                                                                                                        pre-B cell allelic exclusion
## GO:0001546                                                                                                                   preantral ovarian follicle growth
## GO:0030327                                                                                                                prenylated protein catabolic process
## GO:0099526                                                                                                             presynapse to nucleus signaling pathway
## GO:0098928                                                                                                                     presynaptic signal transduction
## GO:0001545                                                                                                                     primary ovarian follicle growth
## GO:1903929                                                                                                                          primary palate development
## GO:0002572                                                                                                                          pro-T cell differentiation
## GO:0010133                                                                                                              proline catabolic process to glutamate
## GO:0039019                                                                                                                      pronephric nephron development
## GO:0060523                                                                                                                 prostate epithelial cord elongation
## GO:0060741                                                                                                                prostate gland stromal morphogenesis
## GO:0070682                                                                                                             proteasome regulatory particle assembly
## GO:1990167                                                                                                                 protein K27-linked deubiquitination
## GO:0044313                                                                                                                  protein K6-linked deubiquitination
## GO:0051697                                                                                                                                protein delipidation
## GO:0045041                                                                                               protein import into mitochondrial intermembrane space
## GO:0016561                                                                                                protein import into peroxisome matrix, translocation
## GO:0032979                                                                                protein insertion into mitochondrial inner membrane from matrix side
## GO:1990108                                                                                                                     protein linear deubiquitination
## GO:0032258                                                                                                             protein localization by the Cvt pathway
## GO:1903292                                                                                                              protein localization to Golgi membrane
## GO:1903119                                                                                                          protein localization to actin cytoskeleton
## GO:1902396                                                                                                   protein localization to bicellular tight junction
## GO:1905725                                                                                                             protein localization to microtubule end
## GO:1904825                                                                                                        protein localization to microtubule plus-end
## GO:0090204                                                                                                                protein localization to nuclear pore
## GO:1990173                                                                                                                 protein localization to nucleoplasm
## GO:0044860                                                                                                        protein localization to plasma membrane raft
## GO:1990166                                                                                                 protein localization to site of double-strand break
## GO:0061833                                                                                                  protein localization to tricellular tight junction
## GO:0018094                                                                                                                             protein polyglycylation
## GO:0030908                                                                                                                                    protein splicing
## GO:0071211                                                                                                  protein targeting to vacuole involved in autophagy
## GO:1903445                                                                                          protein transport from ciliary membrane to plasma membrane
## GO:0003350                                                                                                                    pulmonary myocardium development
## GO:0009182                                                                                            purine deoxyribonucleoside diphosphate metabolic process
## GO:0046122                                                                                                        purine deoxyribonucleoside metabolic process
## GO:0043096                                                                                                                           purine nucleobase salvage
## GO:0072530                                                                                                  purine-containing compound transmembrane transport
## GO:0042822                                                                                                               pyridoxal phosphate metabolic process
## GO:0009197                                                                                     pyrimidine deoxyribonucleoside diphosphate biosynthetic process
## GO:0009196                                                                                        pyrimidine deoxyribonucleoside diphosphate metabolic process
## GO:0009212                                                                                    pyrimidine deoxyribonucleoside triphosphate biosynthetic process
## GO:0006208                                                                                                             pyrimidine nucleobase catabolic process
## GO:0015855                                                                                                                     pyrimidine nucleobase transport
## GO:0009139                                                                                              pyrimidine nucleoside diphosphate biosynthetic process
## GO:0009138                                                                                                 pyrimidine nucleoside diphosphate metabolic process
## GO:0015864                                                                                                                     pyrimidine nucleoside transport
## GO:0009174                                                                                        pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0009173                                                                                           pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009080                                                                                                        pyruvate family amino acid catabolic process
## GO:1901475                                                                                                                    pyruvate transmembrane transport
## GO:1901662                                                                                                                           quinone catabolic process
## GO:0035928                                                                                                                      rRNA import into mitochondrion
## GO:2000286                                                                                receptor internalization involved in canonical Wnt signaling pathway
## GO:1905868                                                                                                    regulation of 3'-UTR-mediated mRNA stabilization
## GO:1903891                                                                                               regulation of ATF6-mediated unfolded protein response
## GO:2000449                                                                                         regulation of CD8-positive, alpha-beta T cell extravasation
## GO:1904217                                                                          regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## GO:1902162                       regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0072695                                                                                                         regulation of DNA recombination at telomere
## GO:2000371                                                                                          regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## GO:0070376                                                                                                                          regulation of ERK5 cascade
## GO:1904020                                                                                            regulation of G protein-coupled receptor internalization
## GO:0110030                                                                                                regulation of G2/MI transition of meiotic cell cycle
## GO:0010963                                                                                                                     regulation of L-arginine import
## GO:1902688                                                                                                                 regulation of NAD metabolic process
## GO:1901664                                                                                                  regulation of NAD+ ADP-ribosyltransferase activity
## GO:0032483                                                                                                       regulation of Rab protein signal transduction
## GO:0032485                                                                                                       regulation of Ral protein signal transduction
## GO:0032487                                                                                                       regulation of Rap protein signal transduction
## GO:0014038                                                                                                          regulation of Schwann cell differentiation
## GO:2001188                           regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:1903939                                                                                                                       regulation of TORC2 signaling
## GO:0060408                                                                                                       regulation of acetylcholine metabolic process
## GO:1904232                                                                                                          regulation of aconitate hydratase activity
## GO:2000367                                                                                                          regulation of acrosomal vesicle exocytosis
## GO:1904616                                                                                                                         regulation of actin binding
## GO:0002877                                                                                 regulation of acute inflammatory response to non-antigenic stimulus
## GO:1905674                                                                                                       regulation of adaptive immune memory response
## GO:1905335                                                                                                                            regulation of aggrephagy
## GO:1903630                                                                                                        regulation of aminoacyl-tRNA ligase activity
## GO:2000823                                                                                                            regulation of androgen receptor activity
## GO:0060177                                                                                                         regulation of angiotensin metabolic process
## GO:1901951                                                                                              regulation of anterograde dense core granule transport
## GO:1903742                                                                                                regulation of anterograde synaptic vesicle transport
## GO:0002589                                                                regulation of antigen processing and presentation of peptide antigen via MHC class I
## GO:1902256                                                                             regulation of apoptotic process involved in outflow tract morphogenesis
## GO:0000821                                                                                                            regulation of arginine metabolic process
## GO:0061888                                                                                                                  regulation of astrocyte activation
## GO:1904170                                                                                                                         regulation of bleb assembly
## GO:0002017                                                                                                     regulation of blood volume by renal aldosterone
## GO:0060378                                                                                                                            regulation of brood size
## GO:1903233                                                                                  regulation of calcium ion-dependent exocytosis of neurotransmitter
## GO:1903279                                                                                                    regulation of calcium:sodium antiporter activity
## GO:1903677                                                                                              regulation of cap-independent translational initiation
## GO:0098679                                         regulation of carbohydrate catabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0110022                                                                                                 regulation of cardiac muscle myoblast proliferation
## GO:1905310                                                           regulation of cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:2000722                                                                                   regulation of cardiac vascular smooth muscle cell differentiation
## GO:1901301                                                                                               regulation of cargo loading into COPII-coated vesicle
## GO:1901844                                                              regulation of cell communication by electrical coupling involved in cardiac conduction
## GO:1905915                                                                                 regulation of cell differentiation involved in phenotypic switching
## GO:0001560                                                                                                 regulation of cell growth by extracellular stimulus
## GO:0003250                                                                              regulation of cell proliferation involved in heart valve morphogenesis
## GO:1901963                                                                            regulation of cell proliferation involved in outflow tract morphogenesis
## GO:0030997                                                                                                          regulation of centriole-centriole cohesion
## GO:2000338                                                                                           regulation of chemokine (C-X-C motif) ligand 1 production
## GO:1904192                                                                                                       regulation of cholangiocyte apoptotic process
## GO:0061187                                                                                                           regulation of chromatin silencing at rDNA
## GO:0002874                                                                                   regulation of chronic inflammatory response to antigenic stimulus
## GO:1905443                                                                                                                regulation of clathrin coat assembly
## GO:0048696                                                                                             regulation of collateral sprouting in absence of injury
## GO:0060300                                                                                                                     regulation of cytokine activity
## GO:0032954                                                                                                                   regulation of cytokinetic process
## GO:0051710                                                                                                           regulation of cytolysis in other organism
## GO:0045583                                                                                                      regulation of cytotoxic T cell differentiation
## GO:1900150                                                                                                            regulation of defense response to fungus
## GO:2000705                                                                                                         regulation of dense core granule biogenesis
## GO:1903179                                                                                                         regulation of dopamine biosynthetic process
## GO:1900095                                                                                   regulation of dosage compensation by inactivation of X chromosome
## GO:0010999                                                                                                    regulation of eIF2 alpha phosphorylation by heme
## GO:2000383                                                                                                                  regulation of ectoderm development
## GO:0042663                                                                                                    regulation of endodermal cell fate specification
## GO:0060699                                                                                                             regulation of endoribonuclease activity
## GO:1901074                                                                                                          regulation of engulfment of apoptotic cell
## GO:0043309                                                                                                              regulation of eosinophil degranulation
## GO:1901187                                                                                                     regulation of ephrin receptor signaling pathway
## GO:0010482                                                                                                               regulation of epidermal cell division
## GO:1905041                                                                                                               regulation of epithelium regeneration
## GO:1904444                                                                                                 regulation of establishment of Sertoli cell barrier
## GO:2000864                                                                                                                   regulation of estradiol secretion
## GO:0071898                                                                                                             regulation of estrogen receptor binding
## GO:0060178                                                                                                                  regulation of exocyst localization
## GO:0031446                                                                                         regulation of fast-twitch skeletal muscle fiber contraction
## GO:2000313                     regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## GO:1904344                                                                                                     regulation of gastric mucosal blood circulation
## GO:1900169                                                                                             regulation of glucocorticoid mediated signaling pathway
## GO:1904023                                                                                     regulation of glucose catabolic process to lactate via pyruvate
## GO:1902659                                                                                                    regulation of glucose mediated signaling pathway
## GO:1903786                                                                                                      regulation of glutathione biosynthetic process
## GO:1900923                                                                                                 regulation of glycine import across plasma membrane
## GO:0072361                                                     regulation of glycolytic process by regulation of transcription from RNA polymerase II promoter
## GO:1904708                                                                                                      regulation of granulosa cell apoptotic process
## GO:0071661                                                                                                                 regulation of granzyme B production
## GO:0003420                                                                                      regulation of growth plate cartilage chondrocyte proliferation
## GO:0090081                                                                      regulation of heart induction by regulation of canonical Wnt signaling pathway
## GO:0003062                                                                                                         regulation of heart rate by chemical signal
## GO:0010908                                                                                     regulation of heparan sulfate proteoglycan biosynthetic process
## GO:1903943                                                                                                          regulation of hepatocyte apoptotic process
## GO:0090107                                                                                            regulation of high-density lipoprotein particle assembly
## GO:0010982                                                                                           regulation of high-density lipoprotein particle clearance
## GO:0043134                                                                                                                   regulation of hindgut contraction
## GO:0110089                                                                                                  regulation of hippocampal neuron apoptotic process
## GO:1901674                                                                                                            regulation of histone H3-K27 acetylation
## GO:2001160                                                                                                            regulation of histone H3-K79 methylation
## GO:1900104                                                                                                             regulation of hyaluranon cable assembly
## GO:1902071                                                                                     regulation of hypoxia-inducible factor-1alpha signaling pathway
## GO:0045399                                                                                                    regulation of interleukin-3 biosynthetic process
## GO:1902214                                                                                              regulation of interleukin-4-mediated signaling pathway
## GO:1902938                                                                             regulation of intracellular calcium activated chloride channel activity
## GO:1901252                                                                                             regulation of intracellular transport of viral material
## GO:2000312                                                                                         regulation of kainate selective glutamate receptor activity
## GO:0090234                                                                                                                  regulation of kinetochore assembly
## GO:1902606                                                                        regulation of large conductance calcium-activated potassium channel activity
## GO:0097213                                                                                                       regulation of lysosomal membrane permeability
## GO:0090365                                                                                                                     regulation of mRNA modification
## GO:0010610                                                                                         regulation of mRNA stability involved in response to stress
## GO:1902226                                                                                regulation of macrophage colony-stimulating factor signaling pathway
## GO:2000446                                                                              regulation of macrophage migration inhibitory factor signaling pathway
## GO:0060375                                                                                                             regulation of mast cell differentiation
## GO:1904464                                                                                                     regulation of matrix metallopeptidase secretion
## GO:1903538                                                                              regulation of meiotic cell cycle process involved in oocyte maturation
## GO:1905024                                                       regulation of membrane repolarization during ventricular cardiac muscle cell action potential
## GO:1905320                                                                                                       regulation of mesenchymal stem cell migration
## GO:1900238                              regulation of metanephric mesenchymal cell migration by platelet-derived growth factor receptor-beta signaling pathway
## GO:2000625                                                                                                               regulation of miRNA catabolic process
## GO:0032423                                                                                                                       regulation of mismatch repair
## GO:0090296                                                                                                         regulation of mitochondrial DNA replication
## GO:1902445                                                        regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## GO:1903108                                                                                                           regulation of mitochondrial transcription
## GO:1903463                                                                                                    regulation of mitotic cell cycle DNA replication
## GO:1900623                                                                                                                  regulation of monocyte aggregation
## GO:0010796                                                                                                              regulation of multivesicular body size
## GO:0014738                                                                                                                    regulation of muscle hyperplasia
## GO:1905292                                                                                                     regulation of neural crest cell differentiation
## GO:0099152                                                                regulation of neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0032899                                                                                                               regulation of neurotrophin production
## GO:1903995                                                                                regulation of non-membrane spanning protein tyrosine kinase activity
## GO:0070428                                                              regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:2000819                                                                                                            regulation of nucleotide-excision repair
## GO:1900141                                                                                                     regulation of oligodendrocyte apoptotic process
## GO:2000474                                                                                                     regulation of opioid receptor signaling pathway
## GO:2000374                                                                                                              regulation of oxygen metabolic process
## GO:2000828                                                                                                         regulation of parathyroid hormone secretion
## GO:0043456                                                                                                               regulation of pentose-phosphate shunt
## GO:2000468                                                                                                                   regulation of peroxidase activity
## GO:0044375                                                                                                                       regulation of peroxisome size
## GO:1902994                                                                                                                   regulation of phospholipid efflux
## GO:0061091                                                                                                            regulation of phospholipid translocation
## GO:2000040                                                                              regulation of planar cell polarity pathway involved in axis elongation
## GO:1905684                                                                                                                regulation of plasma membrane repair
## GO:0090361                                                                                             regulation of platelet-derived growth factor production
## GO:0030860                                                                                             regulation of polarized epithelial cell differentiation
## GO:1901873                                                                                               regulation of post-translational protein modification
## GO:1901629                                                                                                     regulation of presynaptic membrane organization
## GO:0010725                                                                                                 regulation of primitive erythrocyte differentiation
## GO:2000182                                                                                                     regulation of progesterone biosynthetic process
## GO:2000870                                                                                                                regulation of progesterone secretion
## GO:0060584                                                                                          regulation of prostaglandin-endoperoxide synthase activity
## GO:1903093                                                                                                   regulation of protein K48-linked deubiquitination
## GO:0061945                                                                                                     regulation of protein K48-linked ubiquitination
## GO:1904098                                                                                                        regulation of protein O-linked glycosylation
## GO:0099575                                                             regulation of protein catabolic process at presynapse, modulating synaptic transmission
## GO:0090283                                                                                                        regulation of protein glycosylation in Golgi
## GO:1900739                                                 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1905600                                                                       regulation of receptor-mediated endocytosis involved in cholesterol transport
## GO:0002019                                                                                                           regulation of renal output by angiotensin
## GO:0099178                                                                                 regulation of retrograde trans-synaptic signaling by endocanabinoid
## GO:1905279                                                                                               regulation of retrograde transport, endosome to Golgi
## GO:0007468                                                                                                             regulation of rhodopsin gene expression
## GO:0014717                                                                    regulation of satellite cell activation involved in skeletal muscle regeneration
## GO:0090182                                                                                                        regulation of secretion of lysosomal enzymes
## GO:0014722                                                                                  regulation of skeletal muscle contraction by calcium ion signaling
## GO:1904204                                                                                                           regulation of skeletal muscle hypertrophy
## GO:1904048                                                                                                regulation of spontaneous neurotransmitter secretion
## GO:0031335                                                                                                   regulation of sulfur amino acid metabolic process
## GO:0060025                                                                                                                     regulation of synaptic activity
## GO:1905661                                                                                         regulation of telomerase RNA reverse transcriptase activity
## GO:1904533                                                                                                            regulation of telomeric loop disassembly
## GO:1904594                                                                                        regulation of termination of RNA polymerase II transcription
## GO:2000804                                                                       regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## GO:2000843                                                                                                                regulation of testosterone secretion
## GO:1901401                                                                                                        regulation of tetrapyrrole metabolic process
## GO:0070494                                                                                         regulation of thrombin-activated receptor signaling pathway
## GO:1905073                                                                                                            regulation of tight junction disassembly
## GO:0002652                                                                                    regulation of tolerance induction dependent upon immune response
## GO:0034155                                                                                                regulation of toll-like receptor 7 signaling pathway
## GO:1901483                                                                                                regulation of transcription factor catabolic process
## GO:0000430                                                                              regulation of transcription from RNA polymerase II promoter by glucose
## GO:0034395                                                                     regulation of transcription from RNA polymerase II promoter in response to iron
## GO:0021882                                            regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## GO:0021912                                 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## GO:0010525                                                                                                           regulation of transposition, RNA-mediated
## GO:0001807                                                                                                              regulation of type IV hypersensitivity
## GO:2000152                                                                                                  regulation of ubiquitin-specific protease activity
## GO:1903335                                                                                                                    regulation of vacuolar transport
## GO:1905930                                                          regulation of vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0010915                                                                                       regulation of very-low-density lipoprotein particle clearance
## GO:0010901                                                                                      regulation of very-low-density lipoprotein particle remodeling
## GO:0010979                                                                                                     regulation of vitamin D 24-hydroxylase activity
## GO:0071579                                                                                                                    regulation of zinc ion transport
## GO:0019046                                                                                                                          release from viral latency
## GO:0072053                                                                                                                     renal inner medulla development
## GO:0072034                                                                                                                             renal vesicle induction
## GO:0043111                                                                                                                             replication fork arrest
## GO:1904016                                                                                                          response to Thyroglobulin triiodothyronine
## GO:0010446                                                                                                                             response to alkaline pH
## GO:1903842                                                                                                                            response to arsenite ion
## GO:0061771                                                                                                                     response to caloric restriction
## GO:1902349                                                                                                                             response to chloroquine
## GO:0061847                                                                                                                         response to cholecystokinin
## GO:0032025                                                                                                                              response to cobalt ion
## GO:0014878                                                                         response to electrical stimulus involved in regulation of muscle adaptation
## GO:0060992                                                                                                                               response to fungicide
## GO:0009629                                                                                                                                 response to gravity
## GO:1904880                                                                                                                        response to hydrogen sulfide
## GO:0051599                                                                                                                    response to hydrostatic pressure
## GO:0035962                                                                                                                          response to interleukin-13
## GO:0051595                                                                                                                           response to methylglyoxal
## GO:0009624                                                                                                                                response to nematode
## GO:0071873                                                                                                                          response to norepinephrine
## GO:0071798                                                                                                                         response to prostaglandin D
## GO:0046684                                                                                                                              response to pyrethroid
## GO:1901355                                                                                                                               response to rapamycin
## GO:0072708                                                                                                                                response to sorbitol
## GO:0072733                                                                                                                           response to staurosporine
## GO:1904578                                                                                                                            response to thapsigargin
## GO:0071725                                                                                                           response to triacyl bacterial lipopeptide
## GO:0034633                                                                                                                                   retinol transport
## GO:0021570                                                                                                                            rhombomere 4 development
## GO:0021593                                                                                                                            rhombomere morphogenesis
## GO:0006610                                                                                                               ribosomal protein import into nucleus
## GO:0003221                                                                                               right ventricular cardiac muscle tissue morphogenesis
## GO:0048769                                                                                                                                    sarcomerogenesis
## GO:0032788                                                                                                     saturated monocarboxylic acid metabolic process
## GO:0061033                                                                                           secretion by lung epithelial cell involved in lung growth
## GO:0046960                                                                                                                                       sensitization
## GO:0097374                                                                                                                        sensory neuron axon guidance
## GO:0003285                                                                                                                         septum secundum development
## GO:0002554                                                                                                                     serotonin secretion by platelet
## GO:0006714                                                                                                                   sesquiterpenoid metabolic process
## GO:0023016                                                                                                        signal transduction by trans-phosphorylation
## GO:0060931                                                                                                                    sinoatrial node cell development
## GO:0031134                                                                                                                      sister chromatid biorientation
## GO:0043503                                                                                                                    skeletal muscle fiber adaptation
## GO:0031444                                                                                                       slow-twitch skeletal muscle fiber contraction
## GO:0021776                                                           smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## GO:0021775                                                              smoothened signaling pathway involved in ventral spinal cord interneuron specification
## GO:0031120                                                                                                                       snRNA pseudouridine synthesis
## GO:0051030                                                                                                                                     snRNA transport
## GO:0016077                                                                                                                            snoRNA catabolic process
## GO:0010159                                                                                                              specification of animal organ position
## GO:0097724                                                                                                                            sperm flagellum movement
## GO:1905419                                                                                     sperm flagellum movement involved in flagellated sperm motility
## GO:0007284                                                                                                                        spermatogonial cell division
## GO:0032918                                                                                                                              spermidine acetylation
## GO:0006597                                                                                                                       spermine biosynthetic process
## GO:0046208                                                                                                                          spermine catabolic process
## GO:0006667                                                                                                                       sphinganine metabolic process
## GO:0021529                                                                                                    spinal cord oligodendrocyte cell differentiation
## GO:0021530                                                                                                 spinal cord oligodendrocyte cell fate specification
## GO:0021965                                                                                                        spinal cord ventral commissure morphogenesis
## GO:0007056                                                                                                         spindle assembly involved in female meiosis
## GO:0060720                                                                                                               spongiotrophoblast cell proliferation
## GO:0048866                                                                                                                        stem cell fate specification
## GO:0071422                                                                                                                   succinate transmembrane transport
## GO:0015770                                                                                                                                   sucrose transport
## GO:0099163                                                                                                                  synaptic signaling by nitric oxide
## GO:0060084                                                                                                       synaptic transmission involved in micturition
## GO:0048499                                                                                                              synaptic vesicle membrane organization
## GO:0042779                                                                                                                            tRNA 3'-trailer cleavage
## GO:0002946                                                                                                                        tRNA C5-cytosine methylation
## GO:0006409                                                                                                                            tRNA export from nucleus
## GO:0002949                                                                                                        tRNA threonylcarbamoyladenosine modification
## GO:0071431                                                                                       tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0101030                                                                                                                     tRNA-guanine transglycosylation
## GO:0000379                                                                                               tRNA-type intron splice site recognition and cleavage
## GO:0031509                                                                                                                  telomeric heterochromatin assembly
## GO:1902896                                                                                                                               terminal web assembly
## GO:0030846                                                                                     termination of RNA polymerase II transcription, poly(A)-coupled
## GO:0006393                                                                                                          termination of mitochondrial transcription
## GO:0046865                                                                                                                                 terpenoid transport
## GO:0060748                                                                                     tertiary branching involved in mammary gland duct morphogenesis
## GO:0035936                                                                                                                              testosterone secretion
## GO:0016108                                                                                                                    tetraterpenoid metabolic process
## GO:0006772                                                                                                                          thiamine metabolic process
## GO:0015888                                                                                                                                  thiamine transport
## GO:0042723                                                                                                      thiamine-containing compound metabolic process
## GO:0001966                                                                                                                                         thigmotaxis
## GO:0015709                                                                                                                               thiosulfate transport
## GO:0007356                                                                                                           thorax and anterior abdomen determination
## GO:0006435                                                                                                                        threonyl-tRNA aminoacylation
## GO:0046104                                                                                                                         thymidine metabolic process
## GO:0006210                                                                                                                           thymine catabolic process
## GO:0019859                                                                                                                           thymine metabolic process
## GO:1905071                                                                                                                          tight junction disassembly
## GO:0002930                                                                                                                     trabecular meshwork development
## GO:0061153                                                                                                                           trachea gland development
## GO:0061152                                                                                                                       trachea submucosa development
## GO:0099540                                                                                                            trans-synaptic signaling by neuropeptide
## GO:0099548                                                                                                            trans-synaptic signaling by nitric oxide
## GO:0099543                                                                                                             trans-synaptic signaling by soluble gas
## GO:0006391                                                                                                transcription initiation from mitochondrial promoter
## GO:0070634                                                                                                                  transepithelial ammonium transport
## GO:0007181                                                                                           transforming growth factor beta receptor complex assembly
## GO:0007089                                                                                                traversing start control point of mitotic cell cycle
## GO:0021558                                                                                                                         trochlear nerve development
## GO:0001831                                                                                                              trophectodermal cellular morphogenesis
## GO:0015827                                                                                                                                tryptophan transport
## GO:0071596                                                                            ubiquitin-dependent protein catabolic process via the N-end rule pathway
## GO:0032789                                                                                                   unsaturated monocarboxylic acid metabolic process
## GO:0019860                                                                                                                            uracil metabolic process
## GO:0071918                                                                                                                        urea transmembrane transport
## GO:0072190                                                                                                                       ureter urothelium development
## GO:0072092                                                                                                                               ureteric bud invasion
## GO:0006624                                                                                                                         vacuolar protein processing
## GO:0021564                                                                                                                             vagus nerve development
## GO:1905420                                                                        vascular smooth muscle cell differentiation involved in phenotypic switching
## GO:0055005                                                                                                              ventricular cardiac myofibril assembly
## GO:0021847                                                                                                                ventricular zone neuroblast division
## GO:0021524                                                                                                               visceral motor neuron differentiation
## GO:0071939                                                                                                                                    vitamin A import
## GO:0071938                                                                                                                                 vitamin A transport
## GO:0042816                                                                                                                        vitamin B6 metabolic process
## GO:0042360                                                                                                                         vitamin E metabolic process
## GO:0010025                                                                                                                            wax biosynthetic process
## GO:0010166                                                                                                                               wax metabolic process
## GO:0005997                                                                                                                          xylulose metabolic process
## GO:0045218                                                                                                                         zonula adherens maintenance
## GO:0006189                                                                                                                  'de novo' IMP biosynthetic process
## GO:1990966                                                                                                               ATP generation from poly-ADP-D-ribose
## GO:0031296                                                                                                                                B cell costimulation
## GO:0035697                                                                                                       CD8-positive, alpha-beta T cell extravasation
## GO:0048205                                                                                                                       COPI coating of Golgi vesicle
## GO:0071034                                                                                                                               CUT catabolic process
## GO:0071043                                                                                                                               CUT metabolic process
## GO:0030576                                                                                                                             Cajal body organization
## GO:0060486                                                                                                                          Clara cell differentiation
## GO:0043137                                                                                                              DNA replication, removal of RNA primer
## GO:0006269                                                                                                            DNA replication, synthesis of RNA primer
## GO:0035621                                                                                                                      ER to Golgi ceramide transport
## GO:0038095                                                                                                               Fc-epsilon receptor signaling pathway
## GO:0046368                                                                                                                      GDP-L-fucose metabolic process
## GO:0006177                                                                                                                            GMP biosynthetic process
## GO:0090168                                                                                                                                    Golgi reassembly
## GO:0048200                                                                                                                     Golgi transport vesicle coating
## GO:0070384                                                                                                                         Harderian gland development
## GO:0032264                                                                                                                                         IMP salvage
## GO:0007258                                                                                                                                 JUN phosphorylation
## GO:0038109                                                                                                                               Kit signaling pathway
## GO:0019853                                                                                                                L-ascorbic acid biosynthetic process
## GO:0055129                                                                                                                      L-proline biosynthetic process
## GO:0006564                                                                                                                       L-serine biosynthetic process
## GO:0006565                                                                                                                          L-serine catabolic process
## GO:0002396                                                                                                                        MHC protein complex assembly
## GO:0001880                                                                                                                           Mullerian duct regression
## GO:0018076                                                                                                              N-terminal peptidyl-lysine acetylation
## GO:0006499                                                                                                                   N-terminal protein myristoylation
## GO:0006741                                                                                                                           NADP biosynthetic process
## GO:0098989                                                                                                 NMDA selective glutamate receptor signaling pathway
## GO:0086017                                                                                                                   Purkinje myocyte action potential
## GO:0071076                                                                                                                                  RNA 3' uridylation
## GO:0006556                                                                                                           S-adenosylmethionine biosynthetic process
## GO:0033353                                                                                                                          S-adenosylmethionine cycle
## GO:0060061                                                                                                                         Spemann organizer formation
## GO:0002424                                                                                                       T cell mediated immune response to tumor cell
## GO:0002309                                                                                                    T cell proliferation involved in immune response
## GO:0061470                                                                                                            T follicular helper cell differentiation
## GO:0035711                                                                                                                          T-helper 1 cell activation
## GO:0002296                                                                                                                  T-helper 1 cell lineage commitment
## GO:0048014                                                                                                                               Tie signaling pathway
## GO:0019276                                                                                                         UDP-N-acetylgalactosamine metabolic process
## GO:0061355                                                                                                                               Wnt protein secretion
## GO:0090244                                                                                                     Wnt signaling pathway involved in somitogenesis
## GO:0007223                                                                                                   Wnt signaling pathway, calcium modulating pathway
## GO:0009838                                                                                                                                          abscission
## GO:1900620                                                                                                                  acetate ester biosynthetic process
## GO:0006083                                                                                                                           acetate metabolic process
## GO:0008292                                                                                                                  acetylcholine biosynthetic process
## GO:0090135                                                                                                                            actin filament branching
## GO:0030043                                                                                                                        actin filament fragmentation
## GO:0030047                                                                                                                                  actin modification
## GO:0070358                                                                                                        actin polymerization-dependent cell motility
## GO:0090427                                                                                                                               activation of meiosis
## GO:0001905                                                                                                               activation of membrane attack complex
## GO:0002525                                                                                               acute inflammatory response to non-antigenic stimulus
## GO:0006844                                                                                                                            acyl carnitine transport
## GO:0034196                                                                                                                              acylglycerol transport
## GO:1901911                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## GO:1901910                                                                                        adenosine 5'-(hexahydrogen pentaphosphate) metabolic process
## GO:0007196                                                                 adenylate cyclase-inhibiting G protein-coupled glutamate receptor signaling pathway
## GO:1990410                                                                                                           adrenomedullin receptor signaling pathway
## GO:0006522                                                                                                                           alanine metabolic process
## GO:0015842                                                                                            aminergic neurotransmitter loading into synaptic vesicle
## GO:0006578                                                                                                             amino-acid betaine biosynthetic process
## GO:0015917                                                                                                                         aminophospholipid transport
## GO:0006710                                                                                                                          androgen catabolic process
## GO:0002003                                                                                                                              angiotensin maturation
## GO:0001998                                                    angiotensin-mediated vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:0098957                                                                                                       anterograde axonal transport of mitochondrion
## GO:0019732                                                                                                                         antifungal humoral response
## GO:0002477                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class Ib
## GO:0048003                                                                               antigen processing and presentation of lipid antigen via MHC class Ib
## GO:0048007                                                                       antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## GO:0003383                                                                                                                                 apical constriction
## GO:0038027                                                                                                       apolipoprotein A-I-mediated signaling pathway
## GO:0002538                                                                            arachidonic acid metabolite production involved in inflammatory response
## GO:0035910                                                                                                                       ascending aorta morphogenesis
## GO:0006528                                                                                                                        asparagine metabolic process
## GO:1902626                                                                                                  assembly of large subunit precursor of preribosome
## GO:0002265                                                                                                    astrocyte activation involved in immune response
## GO:0060018                                                                                                                           astrocyte fate commitment
## GO:0016240                                                                                                                      autophagosome membrane docking
## GO:0007412                                                                                                                             axon target recognition
## GO:0006285                                                                                                             base-excision repair, AP site formation
## GO:0045575                                                                                                                                 basophil activation
## GO:0019482                                                                                                                      beta-alanine metabolic process
## GO:0060447                                                                                                            bud outgrowth involved in lung branching
## GO:0003166                                                                                                                           bundle of His development
## GO:0046069                                                                                                                              cGMP catabolic process
## GO:0070574                                                                                                                 cadmium ion transmembrane transport
## GO:0015691                                                                                                                               cadmium ion transport
## GO:0061589                                                                                                     calcium activated phosphatidylserine scrambling
## GO:0044336                                                                canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## GO:0000436                                                                       carbon catabolite activation of transcription from RNA polymerase II promoter
## GO:0000429                                                                       carbon catabolite regulation of transcription from RNA polymerase II promoter
## GO:0060913                                                                                                                     cardiac cell fate determination
## GO:0003219                                                                                                                   cardiac right ventricle formation
## GO:0035965                                                                                                                   cardiolipin acyl-chain remodeling
## GO:0070836                                                                                                                                    caveola assembly
## GO:1902292                                                                                                               cell cycle DNA replication initiation
## GO:0003273                                                                                            cell migration involved in endocardial cushion formation
## GO:0035788                                                                                                  cell migration involved in metanephros development
## GO:0035441                                                                                                           cell migration involved in vasculogenesis
## GO:2000793                                                                                              cell proliferation involved in heart valve development
## GO:0061209                                                                                              cell proliferation involved in mesonephros development
## GO:0016998                                                                                                           cell wall macromolecule catabolic process
## GO:1905232                                                                                                                    cellular response to L-glutamate
## GO:0072719                                                                                                                      cellular response to cisplatin
## GO:0071376                                                                                       cellular response to corticotropin-releasing hormone stimulus
## GO:0071726                                                                                                   cellular response to diacyl bacterial lipopeptide
## GO:0097211                                                                                                 cellular response to gonadotropin-releasing hormone
## GO:0071504                                                                                                                        cellular response to heparin
## GO:0071349                                                                                                                 cellular response to interleukin-12
## GO:0036146                                                                                                                      cellular response to mycotoxin
## GO:0090650                                                                                                     cellular response to oxygen-glucose deprivation
## GO:0071374                                                                                                   cellular response to parathyroid hormone stimulus
## GO:1904628                                                                                                cellular response to phorbol 13-acetate 12-myristate
## GO:0051365                                                                                                       cellular response to potassium ion starvation
## GO:1903936                                                                                                                cellular response to sodium arsenite
## GO:0036216                                                                                                      cellular response to stem cell factor stimulus
## GO:0071502                                                                                                           cellular response to temperature stimulus
## GO:0035984                                                                                                                 cellular response to trichostatin A
## GO:0032286                                                                                                           central nervous system myelin maintenance
## GO:0021698                                                                                                           cerebellar cortex structural organization
## GO:0098749                                                                                                                       cerebellar neuron development
## GO:0021590                                                                                                                               cerebellum maturation
## GO:0090660                                                                                                                     cerebrospinal fluid circulation
## GO:0033326                                                                                                                       cerebrospinal fluid secretion
## GO:0038146                                                                                                 chemokine (C-X-C motif) ligand 12 signaling pathway
## GO:0003415                                                                                                                             chondrocyte hypertrophy
## GO:0097360                                                                                                            chorionic trophoblast cell proliferation
## GO:0070827                                                                                                                               chromatin maintenance
## GO:0097549                                                                             chromatin organization involved in negative regulation of transcription
## GO:0034401                                                                                      chromatin organization involved in regulation of transcription
## GO:0002439                                                                                                 chronic inflammatory response to antigenic stimulus
## GO:0032053                                                                                                                     ciliary basal body organization
## GO:0060830                                                                                ciliary receptor clustering involved in smoothened signaling pathway
## GO:0097167                                                                                                                 circadian regulation of translation
## GO:0019240                                                                                                                     citrulline biosynthetic process
## GO:0021747                                                                                                                        cochlear nucleus development
## GO:0007386                                                                                                                   compartment pattern specification
## GO:0072137                                                                                                            condensed mesenchymal cell proliferation
## GO:0022007                                                                                            convergent extension involved in neural plate elongation
## GO:1903575                                                                                                                         cornified envelope assembly
## GO:0043622                                                                                                                   cortical microtubule organization
## GO:0043396                                                                                                           corticotropin-releasing hormone secretion
## GO:0006216                                                                                                                          cytidine catabolic process
## GO:0009972                                                                                                                                cytidine deamination
## GO:0046087                                                                                                                          cytidine metabolic process
## GO:0045065                                                                                                                    cytotoxic T cell differentiation
## GO:0006203                                                                                                                              dGTP catabolic process
## GO:0006231                                                                                                                           dTMP biosynthetic process
## GO:0046073                                                                                                                              dTMP metabolic process
## GO:0002215                                                                                                                        defense response to nematode
## GO:0061110                                                                                                                       dense core granule biogenesis
## GO:0061789                                                                                                                          dense core granule priming
## GO:0046121                                                                                                               deoxyribonucleoside catabolic process
## GO:0009189                                                                                                deoxyribonucleoside diphosphate biosynthetic process
## GO:0061054                                                                                                                               dermatome development
## GO:0002159                                                                                                                                  desmosome assembly
## GO:0042494                                                                                                                  detection of bacterial lipoprotein
## GO:0032497                                                                                                                     detection of lipopolysaccharide
## GO:0035995                                                                                                                         detection of muscle stretch
## GO:0006651                                                                                                                 diacylglycerol biosynthetic process
## GO:0046340                                                                                                                    diacylglycerol catabolic process
## GO:1901909                                                                                                         diadenosine hexaphosphate catabolic process
## GO:1901908                                                                                                         diadenosine hexaphosphate metabolic process
## GO:1901907                                                                                                        diadenosine pentaphosphate catabolic process
## GO:1901906                                                                                                        diadenosine pentaphosphate metabolic process
## GO:0042938                                                                                                                                 dipeptide transport
## GO:0071543                                                                                                   diphosphoinositol polyphosphate metabolic process
## GO:0046351                                                                                                                   disaccharide biosynthetic process
## GO:0044004                                                                                                                 disruption by symbiont of host cell
## GO:0016103                                                                                                                       diterpenoid catabolic process
## GO:0033563                                                                                                                        dorsal/ventral axon guidance
## GO:1990918                                                                                        double-strand break repair involved in meiotic recombination
## GO:0097680                                                                                  double-strand break repair via classical nonhomologous end joining
## GO:0090579                                                                                                                                dsDNA loop formation
## GO:0003373                                                                                  dynamin family protein polymerization involved in membrane fission
## GO:0003374                                                                             dynamin family protein polymerization involved in mitochondrial fission
## GO:0001712                                                                                                                     ectodermal cell fate commitment
## GO:0015990                                                                                                         electron transport coupled proton transport
## GO:0030538                                                                                                                   embryonic genitalia morphogenesis
## GO:0048619                                                                                                                     embryonic hindgut morphogenesis
## GO:0071926                                                                                                                   endocannabinoid signaling pathway
## GO:0003274                                                                                                                          endocardial cushion fusion
## GO:0060214                                                                                                                               endocardium formation
## GO:0075509                                                                                                  endocytosis involved in viral entry into host cell
## GO:0061031                                                                                                            endodermal digestive tract morphogenesis
## GO:0000480                                                  endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0071787                                                                                                     endoplasmic reticulum tubular network formation
## GO:1990809                                                                                         endoplasmic reticulum tubular network membrane organization
## GO:0015988                                                                     energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0009957                                                                                                                   epidermal cell fate specification
## GO:0042414                                                                                                                       epinephrine metabolic process
## GO:0061030                                                                      epithelial cell differentiation involved in mammary gland alveolus development
## GO:0060743                                                                                   epithelial cell maturation involved in prostate gland development
## GO:2001013                                                                                epithelial cell proliferation involved in renal tubule morphogenesis
## GO:0008065                                                                                                                establishment of blood-nerve barrier
## GO:0048104                                                                                            establishment of body hair or bristle planar orientation
## GO:0048105                                                                                                       establishment of body hair planar orientation
## GO:0071963                                                                                 establishment or maintenance of cell polarity regulating cell shape
## GO:0030951                                                                                   establishment or maintenance of microtubule cytoskeleton polarity
## GO:0045338                                                                                                              farnesyl diphosphate metabolic process
## GO:0031443                                                                                                       fast-twitch skeletal muscle fiber contraction
## GO:0033540                                                                                                    fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0051309                                                                                                                female meiosis chromosome separation
## GO:0021797                                                                                                  forebrain anterior/posterior pattern specification
## GO:0001732                                                                                             formation of cytoplasmic translation initiation complex
## GO:0015755                                                                                                                    fructose transmembrane transport
## GO:0061198                                                                                                                         fungiform papilla formation
## GO:0097112                                                                                                         gamma-aminobutyric acid receptor clustering
## GO:0090202                                                                                                                                        gene looping
## GO:0072144                                                                                                               glomerular mesangial cell development
## GO:0072008                                                                                                           glomerular mesangial cell differentiation
## GO:0090521                                                                                                       glomerular visceral epithelial cell migration
## GO:0021615                                                                                                                glossopharyngeal nerve morphogenesis
## GO:0043402                                                                                                           glucocorticoid mediated signaling pathway
## GO:0019659                                                                                                                glucose catabolic process to lactate
## GO:0019661                                                                                                   glucose catabolic process to lactate via pyruvate
## GO:0006537                                                                                                                      glutamate biosynthetic process
## GO:0034635                                                                                                                               glutathione transport
## GO:0046167                                                                                                           glycerol-3-phosphate biosynthetic process
## GO:1903804                                                                                                               glycine import across plasma membrane
## GO:0019660                                                                                                                             glycolytic fermentation
## GO:0061622                                                                                                      glycolytic process through glucose-1-phosphate
## GO:0034436                                                                                                                              glycoprotein transport
## GO:0071611                                                                                                    granulocyte colony-stimulating factor production
## GO:0042253                                                                               granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0044110                                                                                                            growth involved in symbiotic interaction
## GO:0044117                                                                                                                          growth of symbiont in host
## GO:0044116                                                                                                growth of symbiont involved in interaction with host
## GO:0003431                                                                                                      growth plate cartilage chondrocyte development
## GO:0010286                                                                                                                                    heat acclimation
## GO:0035684                                                                                                                         helper T cell extravasation
## GO:0042167                                                                                                                              heme catabolic process
## GO:0070868                                                                                        heterochromatin organization involved in chromatin silencing
## GO:0001692                                                                                                                         histamine metabolic process
## GO:0070537                                                                                                             histone H2A K63-linked deubiquitination
## GO:0035616                                                                                            histone H2B conserved C-terminal lysine deubiquitination
## GO:0034729                                                                                                                          histone H3-K79 methylation
## GO:0106077                                                                                                                               histone succinylation
## GO:0070814                                                                                                               hydrogen sulfide biosynthetic process
## GO:0021888                                                                                     hypothalamus gonadotrophin-releasing hormone neuron development
## GO:0021886                                                                                 hypothalamus gonadotrophin-releasing hormone neuron differentiation
## GO:0046100                                                                                                                      hypoxanthine metabolic process
## GO:1901523                                                                                                                         icosanoid catabolic process
## GO:0002434                                                                                                                            immune complex clearance
## GO:0002767                                                                                  immune response-inhibiting cell surface receptor signaling pathway
## GO:0002378                                                                                                                 immunoglobulin biosynthetic process
## GO:0002426                                                                                                         immunoglobulin production in mucosal tissue
## GO:0060819                                                                                                  inactivation of X chromosome by genetic imprinting
## GO:0043152                                                                                                                induction of bacterial agglutination
## GO:0046102                                                                                                                           inosine metabolic process
## GO:0038156                                                                                                            interleukin-3-mediated signaling pathway
## GO:0042097                                                                                                                  interleukin-4 biosynthetic process
## GO:0035622                                                                                                                  intrahepatic bile duct development
## GO:0003011                                                                                                             involuntary skeletal muscle contraction
## GO:0072051                                                                                                               juxtaglomerular apparatus development
## GO:0046952                                                                                                                       ketone body catabolic process
## GO:0072131                                                                                                                     kidney mesenchyme morphogenesis
## GO:0001907                                                                                                                   killing by symbiont of host cells
## GO:0019244                                                                                                          lactate biosynthetic process from pyruvate
## GO:0006272                                                                                                                           leading strand elongation
## GO:0060459                                                                                                                               left lung development
## GO:1990086                                                                                                                   lens fiber cell apoptotic process
## GO:0006552                                                                                                                           leucine catabolic process
## GO:0048861                                                                                                        leukemia inhibitory factor signaling pathway
## GO:0060988                                                                                                                                 lipid tube assembly
## GO:0035338                                                                                                      long-chain fatty-acyl-CoA biosynthetic process
## GO:0097212                                                                                                                     lysosomal membrane organization
## GO:0036301                                                                                                     macrophage colony-stimulating factor production
## GO:0006344                                                                                                                  maintenance of chromatin silencing
## GO:0007060                                                                                                                 male meiosis chromosome segregation
## GO:0060648                                                                                                                     mammary gland bud morphogenesis
## GO:0060594                                                                                                                         mammary gland specification
## GO:0060596                                                                                                                           mammary placode formation
## GO:1904382                                                                                              mannose trimming involved in glycoprotein ERAD pathway
## GO:0097029                                                                                                  mature conventional dendritic cell differentiation
## GO:0051793                                                                                                           medium-chain fatty acid catabolic process
## GO:0000706                                                                                                          meiotic DNA double-strand break processing
## GO:0000711                                                                                                                        meiotic DNA repair synthesis
## GO:0051598                                                                                                                    meiotic recombination checkpoint
## GO:0086046                                                                                        membrane depolarization during SA node cell action potential
## GO:0051665                                                                                                                          membrane raft localization
## GO:0097749                                                                                                                                 membrane tubulation
## GO:1900200                                                                              mesenchymal cell apoptotic process involved in metanephros development
## GO:1901145                                                                                mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072198                                                                                       mesenchymal cell proliferation involved in ureter development
## GO:0072180                                                                                                                      mesonephric duct morphogenesis
## GO:0072262                                                             metanephric glomerular mesangial cell proliferation involved in metanephros development
## GO:0072223                                                                                                        metanephric glomerular mesangium development
## GO:0072236                                                                                                               metanephric loop of Henle development
## GO:0072162                                                                                                        metanephric mesenchymal cell differentiation
## GO:0035789                                                                                                              metanephric mesenchymal cell migration
## GO:0072133                                                                                                                metanephric mesenchyme morphogenesis
## GO:0072289                                                                                                                metanephric nephron tubule formation
## GO:0072093                                                                                                                 metanephric renal vesicle formation
## GO:0044785                                                                                                 metaphase/anaphase transition of meiotic cell cycle
## GO:0051596                                                                                                                     methylglyoxal catabolic process
## GO:0019243                                                                              methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## GO:0061727                                                                                                          methylglyoxal catabolic process to lactate
## GO:0030035                                                                                                                                 microspike assembly
## GO:0021555                                                                                                           midbrain-hindbrain boundary morphogenesis
## GO:0098816                                                                                                              mini excitatory postsynaptic potential
## GO:0000964                                                                                                                 mitochondrial RNA 5'-end processing
## GO:1900864                                                                                                                      mitochondrial RNA modification
## GO:0006121                                                                                           mitochondrial electron transport, succinate to ubiquinone
## GO:0034553                                                                                                 mitochondrial respiratory chain complex II assembly
## GO:0097250                                                                                               mitochondrial respiratory chain supercomplex assembly
## GO:0070900                                                                                                                     mitochondrial tRNA modification
## GO:0070125                                                                                                              mitochondrial translational elongation
## GO:1902975                                                                                                                  mitotic DNA replication initiation
## GO:0098763                                                                                                                            mitotic cell cycle phase
## GO:0071962                                                                                                      mitotic sister chromatid cohesion, centromeric
## GO:0021815                                                     modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## GO:0032324                                                                                                         molybdopterin cofactor biosynthetic process
## GO:0052651                                                                                                                  monoacylglycerol catabolic process
## GO:0042117                                                                                                                                 monocyte activation
## GO:0035522                                                                                                      monoubiquitinated histone H2A deubiquitination
## GO:0035521                                                                                                          monoubiquitinated histone deubiquitination
## GO:1903966                                                                                                     monounsaturated fatty acid biosynthetic process
## GO:1903964                                                                                                        monounsaturated fatty acid metabolic process
## GO:0036257                                                                                                                    multivesicular body organization
## GO:0002408                                                                                                                   myeloid dendritic cell chemotaxis
## GO:0014835                                                                                   myoblast differentiation involved in skeletal muscle regeneration
## GO:0048625                                                                                                                            myoblast fate commitment
## GO:0014839                                                                                         myoblast migration involved in skeletal muscle regeneration
## GO:0036446                                                                                                                       myofibroblast differentiation
## GO:0061055                                                                                                                                 myotome development
## GO:0045578                                                                                                       negative regulation of B cell differentiation
## GO:1903625                                                                                                        negative regulation of DNA catabolic process
## GO:0039534                                                                                                      negative regulation of MDA-5 signaling pathway
## GO:0071878                                                           negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0070164                                                                                                        negative regulation of adiponectin secretion
## GO:0032348                                                                                             negative regulation of aldosterone biosynthetic process
## GO:0032345                                                                                                negative regulation of aldosterone metabolic process
## GO:1905907                                                                                                     negative regulation of amyloid fibril formation
## GO:0002584                                                                       negative regulation of antigen processing and presentation of peptide antigen
## GO:0038108                                                                                negative regulation of appetite by leptin-mediated signaling pathway
## GO:1901097                                                                                                     negative regulation of autophagosome maturation
## GO:1903347                                                                                           negative regulation of bicellular tight junction assembly
## GO:0070858                                                                                               negative regulation of bile acid biosynthetic process
## GO:1904252                                                                                                  negative regulation of bile acid metabolic process
## GO:1903588                                               negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1900158                                                                              negative regulation of bone mineralization involved in bone maturation
## GO:2000173                                                                                           negative regulation of branching morphogenesis of a nerve
## GO:0006933                                                                     negative regulation of cell adhesion involved in substrate-bound cell migration
## GO:0060244                                                                            negative regulation of cell proliferation involved in contact inhibition
## GO:1900060                                                                                                negative regulation of ceramide biosynthetic process
## GO:0071650                                                                                    negative regulation of chemokine (C-C motif) ligand 5 production
## GO:1900186                                                                                               negative regulation of clathrin-dependent endocytosis
## GO:1903660                                                                                            negative regulation of complement-dependent cytotoxicity
## GO:2000065                                                                                                negative regulation of cortisol biosynthetic process
## GO:0045918                                                                                                                    negative regulation of cytolysis
## GO:0050689                                                                                            negative regulation of defense response to virus by host
## GO:1903860                                                                                                           negative regulation of dendrite extension
## GO:2000669                                                                                             negative regulation of dendritic cell apoptotic process
## GO:2001199                                                                                               negative regulation of dendritic cell differentiation
## GO:1902951                                                                                                  negative regulation of dendritic spine maintenance
## GO:2001033                                                                     negative regulation of double-strand break repair via nonhomologous end joining
## GO:1903225                                                                                              negative regulation of endodermal cell differentiation
## GO:0003332                                                                                   negative regulation of extracellular matrix constituent secretion
## GO:0007621                                                                                                           negative regulation of female receptivity
## GO:0051490                                                                                                          negative regulation of filopodium assembly
## GO:0046882                                                                                       negative regulation of follicle-stimulating hormone secretion
## GO:2000978                                                                                             negative regulation of forebrain neuron differentiation
## GO:0014053                                                                                            negative regulation of gamma-aminobutyric acid secretion
## GO:1905937                                                                                                      negative regulation of germ cell proliferation
## GO:0072125                                                                                      negative regulation of glomerular mesangial cell proliferation
## GO:0090194                                                                                                       negative regulation of glomerulus development
## GO:0060125                                                                                                     negative regulation of growth hormone secretion
## GO:0061086                                                                                                   negative regulation of histone H3-K27 methylation
## GO:2000619                                                                                                   negative regulation of histone H4-K16 acetylation
## GO:0002924                                                               negative regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1900126                                                                                              negative regulation of hyaluronan biosynthetic process
## GO:0010730                                                                                       negative regulation of hydrogen peroxide biosynthetic process
## GO:0002838                                                                                                negative regulation of immune response to tumor cell
## GO:0106015                                                                                            negative regulation of inflammatory response to wounding
## GO:0045608                                                                             negative regulation of inner ear auditory receptor cell differentiation
## GO:2000981                                                                                      negative regulation of inner ear receptor cell differentiation
## GO:2000660                                                                                     negative regulation of interleukin-1-mediated signaling pathway
## GO:0045415                                                                                           negative regulation of interleukin-8 biosynthetic process
## GO:1904479                                                                                                        negative regulation of intestinal absorption
## GO:1903751                                                       negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902219                                                          negative regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1904995                                                                              negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:0050748                                                                                                negative regulation of lipoprotein metabolic process
## GO:1901491                                                                                                            negative regulation of lymphangiogenesis
## GO:2000255                                                                                                 negative regulation of male germ cell proliferation
## GO:0033026                                                                                                  negative regulation of mast cell apoptotic process
## GO:0045632                                                                                              negative regulation of mechanoreceptor differentiation
## GO:1901994                                                                                          negative regulation of meiotic cell cycle phase transition
## GO:1900212                                                       negative regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072040                                                         negative regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:1905903                                                                                                           negative regulation of mesoderm formation
## GO:1905771                                                                                              negative regulation of mesodermal cell differentiation
## GO:0042662                                                                                           negative regulation of mesodermal cell fate specification
## GO:0061218                                                                                                      negative regulation of mesonephros development
## GO:1904684                                                                                                negative regulation of metalloendopeptidase activity
## GO:1902109                                                            negative regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0030886                                                                                            negative regulation of myeloid dendritic cell activation
## GO:0032824                                                                                          negative regulation of natural killer cell differentiation
## GO:0032827                                                              negative regulation of natural killer cell differentiation involved in immune response
## GO:1902564                                                                                                        negative regulation of neutrophil activation
## GO:0033030                                                                                                 negative regulation of neutrophil apoptotic process
## GO:1900108                                                                                                      negative regulation of nodal signaling pathway
## GO:2000623                                                          negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:2001205                                                                                                       negative regulation of osteoclast development
## GO:0035359                                                                 negative regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0043553                                                                                       negative regulation of phosphatidylinositol 3-kinase activity
## GO:0071072                                                                                            negative regulation of phospholipid biosynthetic process
## GO:0010748                                                                              negative regulation of plasma membrane long-chain fatty acid transport
## GO:2000587                                                               negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:0060686                                                                                                      negative regulation of prostatic bud formation
## GO:1905765                                                                       negative regulation of protection from non-homologous end joining at telomere
## GO:0090086                                                                                                     negative regulation of protein deubiquitination
## GO:1903333                                                                                                              negative regulation of protein folding
## GO:0060051                                                                                                        negative regulation of protein glycosylation
## GO:0090074                                                                                            negative regulation of protein homodimerization activity
## GO:2000435                                                                                                          negative regulation of protein neddylation
## GO:0001920                                                                                                           negative regulation of receptor recycling
## GO:0002835                                                                                                       negative regulation of response to tumor cell
## GO:0051612                                                                                                             negative regulation of serotonin uptake
## GO:0021914                                                      negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## GO:1904673                                                                                     negative regulation of somatic stem cell population maintenance
## GO:0032929                                                                                                  negative regulation of superoxide anion generation
## GO:0061428                                                         negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0060633                                                                     negative regulation of transcription initiation from RNA polymerase II promoter
## GO:1901837                                                                    negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0045900                                                                                                     negative regulation of translational elongation
## GO:1905460                                                                     negative regulation of vascular associated smooth muscle cell apoptotic process
## GO:1903690                                                                                  negative regulation of wound healing, spreading of epidermal cells
## GO:0039689                                                                                                             negative stranded viral RNA replication
## GO:0014022                                                                                                                             neural plate elongation
## GO:0014016                                                                                                                          neuroblast differentiation
## GO:0097402                                                                                                                                neuroblast migration
## GO:0097118                                                                                    neuroligin clustering involved in postsynaptic membrane assembly
## GO:0097350                                                                                                                                neutrophil clearance
## GO:0070947                                                                                                               neutrophil mediated killing of fungus
## GO:0042126                                                                                                                           nitrate metabolic process
## GO:0018916                                                                                                                      nitrobenzene metabolic process
## GO:0019666                                                                                                                   nitrogenous compound fermentation
## GO:0001994                                              norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## GO:1902315                                                                                                       nuclear cell cycle DNA replication initiation
## GO:0071042                                                                                            nuclear polyadenylation-dependent mRNA catabolic process
## GO:0070966                                                                                             nuclear-transcribed mRNA catabolic process, no-go decay
## GO:0021557                                                                                                                        oculomotor nerve development
## GO:0008355                                                                                                                                  olfactory learning
## GO:0035672                                                                                                                oligopeptide transmembrane transport
## GO:0038165                                                                                                             oncostatin-M-mediated signaling pathway
## GO:0032474                                                                                                                               otolith morphogenesis
## GO:0060066                                                                                                                                 oviduct development
## GO:0090403                                                                                                       oxidative stress-induced premature senescence
## GO:0000239                                                                                                                                           pachytene
## GO:0061113                                                                                                                              pancreas morphogenesis
## GO:0072268                                                                                           pattern specification involved in metanephros development
## GO:0018197                                                                                                                 peptidyl-aspartic acid modification
## GO:0018171                                                                                                                         peptidyl-cysteine oxidation
## GO:0018364                                                                                                                      peptidyl-glutamine methylation
## GO:0018201                                                                                                                       peptidyl-glycine modification
## GO:0018211                                                                                                                    peptidyl-tryptophan modification
## GO:0031508                                                                                                                pericentric heterochromatin assembly
## GO:0014012                                                                                                         peripheral nervous system axon regeneration
## GO:0032290                                                                                                          peripheral nervous system myelin formation
## GO:0048936                                                                                                       peripheral nervous system neuron axonogenesis
## GO:0002465                                                                                                                      peripheral tolerance induction
## GO:0016557                                                                                                                      peroxisome membrane biogenesis
## GO:0042396                                                                                                                     phosphagen biosynthetic process
## GO:0006599                                                                                                                        phosphagen metabolic process
## GO:0006659                                                                                                             phosphatidylserine biosynthetic process
## GO:0046314                                                                                                                phosphocreatine biosynthetic process
## GO:0006603                                                                                                                   phosphocreatine metabolic process
## GO:0046149                                                                                                                           pigment catabolic process
## GO:0046469                                                                                                        platelet activating factor metabolic process
## GO:0060155                                                                                                                 platelet dense granule organization
## GO:0072386                                                                                             plus-end-directed organelle transport along microtubule
## GO:0072383                                                                                               plus-end-directed vesicle transport along microtubule
## GO:0071047                                                                                                    polyadenylation-dependent mRNA catabolic process
## GO:0006598                                                                                                                         polyamine catabolic process
## GO:0006787                                                                                                     porphyrin-containing compound catabolic process
## GO:0052501                                            positive regulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052330                                        positive regulation by organism of programmed cell death in other organism involved in symbiotic interaction
## GO:0052042                                                                                       positive regulation by symbiont of host programmed cell death
## GO:0046726                                                                                   positive regulation by virus of viral protein levels in host cell
## GO:2000582                                                                  positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:2000563                                                                                positive regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0043378                                                                              positive regulation of CD8-positive, alpha-beta T cell differentiation
## GO:2000566                                                                                positive regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1901537                                                                                                            positive regulation of DNA demethylation
## GO:0051106                                                                                                                 positive regulation of DNA ligation
## GO:1905643                                                                                                              positive regulation of DNA methylation
## GO:1902953                                                                                       positive regulation of ER to Golgi vesicle-mediated transport
## GO:0070318                                                                                                          positive regulation of G0 to G1 transition
## GO:1904426                                                                                                                  positive regulation of GTP binding
## GO:0042998                                                                                   positive regulation of Golgi to plasma membrane protein transport
## GO:0051142                                                                                                      positive regulation of NK T cell proliferation
## GO:1903899                                                                                      positive regulation of PERK-mediated unfolded protein response
## GO:0002669                                                                                                                positive regulation of T cell anergy
## GO:2000525                                                                                                         positive regulation of T cell costimulation
## GO:2000409                                                                                                         positive regulation of T cell extravasation
## GO:0010536                                                                                          positive regulation of activation of Janus kinase activity
## GO:1901529                                                                                                       positive regulation of anion channel activity
## GO:0002803                                                                                             positive regulation of antibacterial peptide production
## GO:0002225                                                                                             positive regulation of antimicrobial peptide production
## GO:1903849                                                                                                          positive regulation of aorta morphogenesis
## GO:0044533                                                                                          positive regulation of apoptotic process in other organism
## GO:0048691                                                                                      positive regulation of axon extension involved in regeneration
## GO:1903348                                                                                           positive regulation of bicellular tight junction assembly
## GO:0070859                                                                                               positive regulation of bile acid biosynthetic process
## GO:1904253                                                                                                  positive regulation of bile acid metabolic process
## GO:2000504                                                                                                      positive regulation of blood vessel remodeling
## GO:1904879                                                   positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0106134                                                                                              positive regulation of cardiac muscle cell contraction
## GO:1904849                                                                                  positive regulation of cell chemotaxis to fibroblast growth factor
## GO:0042660                                                                                                      positive regulation of cell fate specification
## GO:0032849                                                                                                        positive regulation of cellular pH reduction
## GO:1903724                                                                                                         positive regulation of centriole elongation
## GO:1904209                                                                                     positive regulation of chemokine (C-C motif) ligand 2 secretion
## GO:1904109                                                                                                           positive regulation of cholesterol import
## GO:0010841                                                                                      positive regulation of circadian sleep/wake cycle, wakefulness
## GO:0045917                                                                                                        positive regulation of complement activation
## GO:1905205                                                                                                positive regulation of connective tissue replacement
## GO:1902261                                                                                 positive regulation of delayed rectifier potassium channel activity
## GO:1904811                                                                                                 positive regulation of dense core granule transport
## GO:0070175                                                                                                        positive regulation of enamel mineralization
## GO:0032079                                                                                               positive regulation of endodeoxyribonuclease activity
## GO:1903373                                                                           positive regulation of endoplasmic reticulum tubular network organization
## GO:2000546                                                                      positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000418                                                                                                         positive regulation of eosinophil migration
## GO:1905278                                                                                                    positive regulation of epithelial tube formation
## GO:1903553                                                                                               positive regulation of extracellular exosome assembly
## GO:1901203                                                                                                positive regulation of extracellular matrix assembly
## GO:0070346                                                                                                       positive regulation of fat cell proliferation
## GO:0051919                                                                                                                 positive regulation of fibrinolysis
## GO:0046881                                                                                       positive regulation of follicle-stimulating hormone secretion
## GO:0003104                                                                                                        positive regulation of glomerular filtration
## GO:0070094                                                                                                           positive regulation of glucagon secretion
## GO:1903296                                                                                       positive regulation of glutamate secretion, neurotransmission
## GO:0040010                                                                                                                  positive regulation of growth rate
## GO:0001996                                                                                     positive regulation of heart rate by epinephrine-norepinephrine
## GO:1903595                                                                                             positive regulation of histamine secretion by mast cell
## GO:2001168                                                                                                   positive regulation of histone H2B ubiquitination
## GO:1900114                                                                                                 positive regulation of histone H3-K9 trimethylation
## GO:0010729                                                                                       positive regulation of hydrogen peroxide biosynthetic process
## GO:1901300                                                                             positive regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033092                                                                                      positive regulation of immature T cell proliferation in thymus
## GO:1903797                                                                                      positive regulation of inorganic anion transmembrane transport
## GO:0031587                                                      positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0045356                                                                                        positive regulation of interferon-alpha biosynthetic process
## GO:0050717                                                                                                positive regulation of interleukin-1 alpha secretion
## GO:2000667                                                                                                     positive regulation of interleukin-13 secretion
## GO:0032385                                                                                          positive regulation of intracellular cholesterol transport
## GO:0032379                                                                                                positive regulation of intracellular lipid transport
## GO:0032382                                                                                               positive regulation of intracellular sterol transport
## GO:0010912                                                                                                           positive regulation of isomerase activity
## GO:0048295                                                                                            positive regulation of isotype switching to IgE isotypes
## GO:0002913                                                                                                            positive regulation of lymphocyte anergy
## GO:1900365                                                                                                         positive regulation of mRNA polyadenylation
## GO:0070668                                                                                                      positive regulation of mast cell proliferation
## GO:1903527                                                                                                          positive regulation of membrane tubulation
## GO:2000741                                                                                        positive regulation of mesenchymal stem cell differentiation
## GO:0072108                                                   positive regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:1904141                                                                                                    positive regulation of microglial cell migration
## GO:0031117                                                                                                 positive regulation of microtubule depolymerization
## GO:0010636                                                                                                         positive regulation of mitochondrial fusion
## GO:2000503                                                                                               positive regulation of natural killer cell chemotaxis
## GO:1902565                                                                                                        positive regulation of neutrophil activation
## GO:0043315                                                                                                     positive regulation of neutrophil degranulation
## GO:0010750                                                                                    positive regulation of nitric oxide mediated signal transduction
## GO:2000327                                                                          positive regulation of nuclear receptor transcription coactivator activity
## GO:0060282                                                                                                           positive regulation of oocyte development
## GO:1905881                                                                                                                    positive regulation of oogenesis
## GO:0090290                                                                                                     positive regulation of osteoclast proliferation
## GO:0060279                                                                                                                    positive regulation of ovulation
## GO:0090187                                                                                                   positive regulation of pancreatic juice secretion
## GO:1900738                                                      positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:2000259                                                                                                   positive regulation of protein activation cascade
## GO:1903061                                                                                                           positive regulation of protein lipidation
## GO:1905342                                                                                          positive regulation of protein localization to kinetochore
## GO:1902527                                                                                                   positive regulation of protein monoubiquitination
## GO:1902730                                                                                            positive regulation of proteoglycan biosynthetic process
## GO:1904395                                                                       positive regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0071673                                                                                                positive regulation of smooth muscle cell chemotaxis
## GO:1903278                                                                                     positive regulation of sodium ion export across plasma membrane
## GO:0032417                                                                                            positive regulation of sodium:proton antiporter activity
## GO:0090274                                                                                                       positive regulation of somatostatin secretion
## GO:2000911                                                                                                                positive regulation of sterol import
## GO:0051176                                                                                                     positive regulation of sulfur metabolic process
## GO:0051835                                                                                                positive regulation of synapse structural plasticity
## GO:1904874                                                                                    positive regulation of telomerase RNA localization to Cajal body
## GO:0003099                                                                            positive regulation of the force of heart contraction by chemical signal
## GO:0001997                                                                 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## GO:2000412                                                                                                          positive regulation of thymocyte migration
## GO:0046016                                                                                                     positive regulation of transcription by glucose
## GO:0036091                                                positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0003257                          positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:0010735                                                                             positive regulation of transcription via serum response element binding
## GO:0045901                                                                                                     positive regulation of translational elongation
## GO:0045903                                                                                                       positive regulation of translational fidelity
## GO:0001805                                                                                                    positive regulation of type III hypersensitivity
## GO:0072107                                                                                                       positive regulation of ureteric bud formation
## GO:1901610                                                                                          positive regulation of vesicle transport along microtubule
## GO:0046136                                                                                                    positive regulation of vitamin metabolic process
## GO:1904071                                                                                                                    presynaptic active zone assembly
## GO:0060468                                                                                                                            prevention of polyspermy
## GO:0006562                                                                                                                           proline catabolic process
## GO:0060737                                                                                                                 prostate gland morphogenetic growth
## GO:0018103                                                                                                                      protein C-linked glycosylation
## GO:0018406                                                                                   protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## GO:0018317                                                                                                       protein C-linked glycosylation via tryptophan
## GO:0044314                                                                                                                   protein K27-linked ubiquitination
## GO:1990168                                                                                                                 protein K33-linked deubiquitination
## GO:0036508                                                                                                                   protein alpha-1,2-demannosylation
## GO:0018214                                                                                                                               protein carboxylation
## GO:0035977                                                                                  protein deglycosylation involved in glycoprotein catabolic process
## GO:0036507                                                                                                                             protein demannosylation
## GO:0018343                                                                                                                               protein farnesylation
## GO:0016560                                                                                                      protein import into peroxisome matrix, docking
## GO:0032978                                                                                                     protein insertion into membrane from inner side
## GO:0089700                                                                                                                          protein kinase D signaling
## GO:0061739                                                                                               protein lipidation involved in autophagosome assembly
## GO:0071896                                                                                                           protein localization to adherens junction
## GO:1902463                                                                                                           protein localization to cell leading edge
## GO:0033366                                                                                                           protein localization to secretory granule
## GO:0018377                                                                                                                              protein myristoylation
## GO:0030091                                                                                                                                      protein repair
## GO:0018335                                                                                                                               protein succinylation
## GO:0022615                                                                                                                         protein to membrane docking
## GO:0032596                                                                                                                protein transport into membrane raft
## GO:0043328                  protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0030167                                                                                                                      proteoglycan catabolic process
## GO:0009946                                                                                                                  proximal/distal axis specification
## GO:0036343                                                                                                                                psychomotor behavior
## GO:0009136                                                                                                  purine nucleoside diphosphate biosynthetic process
## GO:0009180                                                                                              purine ribonucleoside diphosphate biosynthetic process
## GO:0006166                                                                                                                       purine ribonucleoside salvage
## GO:0035590                                                                                                    purinergic nucleotide receptor signaling pathway
## GO:0033387                                                                                                      putrescine biosynthetic process from ornithine
## GO:0046125                                                                                                    pyrimidine deoxyribonucleoside metabolic process
## GO:0009223                                                                                                    pyrimidine deoxyribonucleotide catabolic process
## GO:0000720                                                                                               pyrimidine dimer repair by nucleotide-excision repair
## GO:0006244                                                                                                             pyrimidine nucleotide catabolic process
## GO:0009078                                                                                                        pyruvate family amino acid metabolic process
## GO:0006848                                                                                                                                  pyruvate transport
## GO:0000320                                                                                                                    re-entry into mitotic cell cycle
## GO:0097500                                                                                                          receptor localization to non-motile cilium
## GO:0035624                                                                                                                            receptor transactivation
## GO:0019065                                                                                                 receptor-mediated endocytosis of virus by host cell
## GO:0046813                                                                                                    receptor-mediated virion attachment to host cell
## GO:2000580                                                                           regulation of ATP-dependent microtubule motor activity, plus-end-directed
## GO:0098904                                                                                                         regulation of AV node cell action potential
## GO:1905289                                                                                                          regulation of CAMKK-AMPK signaling cascade
## GO:0032829                                                             regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0003400                                                                                                                 regulation of COPII vesicle coating
## GO:1905774                                                                                                                 regulation of DNA helicase activity
## GO:0051105                                                                                                                          regulation of DNA ligation
## GO:0097752                                                                                                                         regulation of DNA stability
## GO:0090113                                                                              regulation of ER to Golgi vesicle-mediated transport by GTP hydrolysis
## GO:0090170                                                                                                                     regulation of Golgi inheritance
## GO:0034124                                                                                  regulation of MyD88-dependent toll-like receptor signaling pathway
## GO:1900368                                                                                                                      regulation of RNA interference
## GO:1904475                                                                                                                    regulation of Ras GTPase binding
## GO:2001106                                                                                        regulation of Rho guanyl-nucleotide exchange factor activity
## GO:0046013                                                                                                      regulation of T cell homeostatic proliferation
## GO:0002840                                                                                         regulation of T cell mediated immune response to tumor cell
## GO:2000328                                                                                                   regulation of T-helper 17 cell lineage commitment
## GO:1903121                                                                                           regulation of TRAIL-activated apoptotic signaling pathway
## GO:0008592                                                                                                                regulation of Toll signaling pathway
## GO:0061356                                                                                                                 regulation of Wnt protein secretion
## GO:0010510                                                                                         regulation of acetyl-CoA biosynthetic process from pyruvate
## GO:0001969                                                                                                 regulation of activation of membrane attack complex
## GO:0060167                                                                                                  regulation of adenosine receptor signaling pathway
## GO:0140192                                          regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:1902869                                                                                                         regulation of amacrine cell differentiation
## GO:0002586                                                               regulation of antigen processing and presentation of peptide antigen via MHC class II
## GO:1903847                                                                                                                   regulation of aorta morphogenesis
## GO:2000359                                                                                                    regulation of binding of sperm to zona pellucida
## GO:1905553                                                                                                                regulation of blood vessel branching
## GO:0072095                                                                                  regulation of branch elongation involved in ureteric bud branching
## GO:1902080                                                                                        regulation of calcium ion import into sarcoplasmic reticulum
## GO:0060800                                                                       regulation of cell differentiation involved in embryonic placenta development
## GO:1900069                                                                                               regulation of cellular hyperosmotic salinity response
## GO:0090230                                                                                                           regulation of centromere complex assembly
## GO:0070602                                                                                                 regulation of centromeric sister chromatid cohesion
## GO:1904714                                                                                                          regulation of chaperone-mediated autophagy
## GO:1903644                                                                                                    regulation of chaperone-mediated protein folding
## GO:1904207                                                                                              regulation of chemokine (C-C motif) ligand 2 secretion
## GO:0061181                                                                                                               regulation of chondrocyte development
## GO:1901382                                                                                              regulation of chorionic trophoblast cell proliferation
## GO:0010847                                                                                                                    regulation of chromatin assembly
## GO:0010710                                                                                                            regulation of collagen catabolic process
## GO:2000852                                                                                                              regulation of corticosterone secretion
## GO:0043397                                                                                             regulation of corticotropin-releasing hormone secretion
## GO:2001270                                                         regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## GO:1904688                                                                                                  regulation of cytoplasmic translational initiation
## GO:0010724                                                                                                regulation of definitive erythrocyte differentiation
## GO:1904809                                                                                                          regulation of dense core granule transport
## GO:0061183                                                                                                                 regulation of dermatome development
## GO:1905749                                                                                         regulation of endosome to plasma membrane protein transport
## GO:1902566                                                                                                                 regulation of eosinophil activation
## GO:1903903                                                                                                      regulation of establishment of T cell polarity
## GO:0090210                                                                                                  regulation of establishment of blood-brain barrier
## GO:0043465                                                                                                                          regulation of fermentation
## GO:1903596                                                                                                                 regulation of gap junction assembly
## GO:2000211                                                                                                           regulation of glutamate metabolic process
## GO:1903294                                                                                                regulation of glutamate secretion, neurotransmission
## GO:0071655                                                                                      regulation of granulocyte colony-stimulating factor production
## GO:0045423                                                                 regulation of granulocyte macrophage colony-stimulating factor biosynthetic process
## GO:0100012                                                                                    regulation of heart induction by canonical Wnt signaling pathway
## GO:0070366                                                                                                            regulation of hepatocyte differentiation
## GO:1902202                                                                                   regulation of hepatocyte growth factor receptor signaling pathway
## GO:1903593                                                                                                      regulation of histamine secretion by mast cell
## GO:1900109                                                                                                           regulation of histone H3-K9 dimethylation
## GO:2000520                                                                                                       regulation of immunological synapse formation
## GO:0032672                                                                                                              regulation of interleukin-3 production
## GO:0045402                                                                                                    regulation of interleukin-4 biosynthetic process
## GO:0070103                                                                                              regulation of interleukin-6-mediated signaling pathway
## GO:1904580                                                                                                       regulation of intracellular mRNA localization
## GO:1903750                                                                regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:0010911                                                                                                                    regulation of isomerase activity
## GO:0019747                                                                                                          regulation of isoprenoid metabolic process
## GO:0035564                                                                                                                           regulation of kidney size
## GO:1902746                                                                                                       regulation of lens fiber cell differentiation
## GO:0072367                                                        regulation of lipid transport by regulation of transcription from RNA polymerase II promoter
## GO:1904059                                                                                                                      regulation of locomotor rhythm
## GO:0014916                                                                                                                   regulation of lung blood pressure
## GO:1905671                                                                                                                 regulation of lysosome organization
## GO:1901256                                                                                       regulation of macrophage colony-stimulating factor production
## GO:1902435                                                                                                                  regulation of male mating behavior
## GO:0032763                                                                                                         regulation of mast cell cytokine production
## GO:1905132                                                                                                         regulation of meiotic chromosome separation
## GO:1902630                                                                                                            regulation of membrane hyperpolarization
## GO:1905031                                                                   regulation of membrane repolarization during cardiac muscle cell action potential
## GO:1900211                                                                regulation of mesenchymal cell apoptotic process involved in metanephros development
## GO:0072039                                                                  regulation of mesenchymal cell apoptotic process involved in nephron morphogenesis
## GO:0072199                                                                         regulation of mesenchymal cell proliferation involved in ureter development
## GO:2000589                                                                                                regulation of metanephric mesenchymal cell migration
## GO:1902102                                                                                   regulation of metaphase/anaphase transition of meiotic cell cycle
## GO:0061884                                                                                                regulation of mini excitatory postsynaptic potential
## GO:0000960                                                                                                   regulation of mitochondrial RNA catabolic process
## GO:1902956                                                                                  regulation of mitochondrial electron transport, NADH to ubiquinone
## GO:0044528                                                                                                          regulation of mitochondrial mRNA stability
## GO:2000437                                                                                                                regulation of monocyte extravasation
## GO:0032971                                                                                                               regulation of muscle filament sliding
## GO:1904760                                                                                                         regulation of myofibroblast differentiation
## GO:0043321                                                                                                     regulation of natural killer cell degranulation
## GO:0050923                                                                                                                   regulation of negative chemotaxis
## GO:0070949                                                                                          regulation of neutrophil mediated killing of symbiont cell
## GO:0006808                                                                                                                  regulation of nitrogen utilization
## GO:1900175                                            regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:1900145                                                             regulation of nodal signaling pathway involved in determination of left/right asymmetry
## GO:2000622                                                                   regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:1902897                                                                                            regulation of postsynaptic density protein 95 clustering
## GO:1905764                                                                                regulation of protection from non-homologous end joining at telomere
## GO:1905340                                                                                                   regulation of protein localization to kinetochore
## GO:0061083                                                                                                                     regulation of protein refolding
## GO:1903613                                                                                                 regulation of protein tyrosine phosphatase activity
## GO:1904182                                                                                                       regulation of pyruvate dehydrogenase activity
## GO:1901000                                                                                                               regulation of response to salt stress
## GO:1904220                                                                                                regulation of serine C-palmitoyltransferase activity
## GO:1902809                                                                                                 regulation of skeletal muscle fiber differentiation
## GO:2000097                                                                                                    regulation of smooth muscle cell-matrix adhesion
## GO:1901668                                                                                                         regulation of superoxide dismutase activity
## GO:1904742                                                                                                                 regulation of telomeric DNA binding
## GO:2000331                                                                                                          regulation of terminal button organization
## GO:0051794                                                                                                                     regulation of timing of catagen
## GO:0021913                               regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## GO:0032910                                                                                           regulation of transforming growth factor beta3 production
## GO:2001201                                                                                             regulation of transforming growth factor-beta secretion
## GO:0140245                                                                                                            regulation of translation at postsynapse
## GO:0099578                                                                          regulation of translation at postsynapse, modulating synaptic transmission
## GO:0001803                                                                                                             regulation of type III hypersensitivity
## GO:0072106                                                                                                                regulation of ureteric bud formation
## GO:0002528                                                                         regulation of vascular permeability involved in acute inflammatory response
## GO:0097494                                                                                                                          regulation of vesicle size
## GO:1903772                                                                                                  regulation of viral budding via host ESCRT complex
## GO:1905150                                                                                                 regulation of voltage-gated sodium channel activity
## GO:0070350                                                                                                          regulation of white fat cell proliferation
## GO:0070294                                                                                                                         renal sodium ion absorption
## GO:0002018                                                                                              renin-angiotensin regulation of aldosterone production
## GO:0034552                                                                                                               respiratory chain complex II assembly
## GO:0072716                                                                                                                           response to actinomycin D
## GO:0043435                                                                                                         response to corticotropin-releasing hormone
## GO:0071724                                                                                                            response to diacyl bacterial lipopeptide
## GO:1990839                                                                                                                              response to endothelin
## GO:0051593                                                                                                                              response to folic acid
## GO:0097210                                                                                                          response to gonadotropin-releasing hormone
## GO:0071503                                                                                                                                 response to heparin
## GO:0052572                                                                                                                    response to host immune response
## GO:0052564                                                                     response to immune response of other organism involved in symbiotic interaction
## GO:0072429                                                                                                 response to intra-S DNA damage checkpoint signaling
## GO:0010040                                                                                                                            response to iron(II) ion
## GO:0090649                                                                                                              response to oxygen-glucose deprivation
## GO:1904627                                                                                                         response to phorbol 13-acetate 12-myristate
## GO:0036215                                                                                                                        response to stem cell factor
## GO:0035983                                                                                                                          response to trichostatin A
## GO:0009414                                                                                                                       response to water deprivation
## GO:0061709                                                                                                                                       reticulophagy
## GO:1990009                                                                                                                      retinal cell apoptotic process
## GO:0060221                                                                                                                    retinal rod cell differentiation
## GO:0034653                                                                                                                     retinoic acid catabolic process
## GO:0021569                                                                                                                            rhombomere 3 development
## GO:0021571                                                                                                                            rhombomere 5 development
## GO:0097343                                                                                                                                ripoptosome assembly
## GO:1901026                                                                                                ripoptosome assembly involved in necroptotic process
## GO:0014901                                                                                  satellite cell activation involved in skeletal muscle regeneration
## GO:0060528                                        secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## GO:0061792                                                                                                                        secretory granule maturation
## GO:0001887                                                                                                                 selenium compound metabolic process
## GO:0016259                                                                                                                    selenocysteine metabolic process
## GO:0035582                                                                                                         sequestering of BMP in extracellular matrix
## GO:0035583                                                                                                     sequestering of TGFbeta in extracellular matrix
## GO:0036515                                                                                                                   serotonergic neuron axon guidance
## GO:0002351                                                                                              serotonin production involved in inflammatory response
## GO:0002442                                                                                               serotonin secretion involved in inflammatory response
## GO:0051790                                                                                                         short-chain fatty acid biosynthetic process
## GO:1990926                                                                                                                    short-term synaptic potentiation
## GO:0035087                                                                                                siRNA loading onto RISC involved in RNA interference
## GO:0007227                                                                                                        signal transduction downstream of smoothened
## GO:0060921                                                                                                                sinoatrial node cell differentiation
## GO:0021938                                         smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## GO:0000454                                                                                                          snoRNA guided rRNA pseudouridine synthesis
## GO:0007525                                                                                                                          somatic muscle development
## GO:0060126                                                                                                         somatotropin secreting cell differentiation
## GO:0001757                                                                                                                                somite specification
## GO:0072086                                                                                                             specification of loop of Henle identity
## GO:0097476                                                                                                                  spinal cord motor neuron migration
## GO:0090214                                                                                                       spongiotrophoblast layer developmental growth
## GO:0021773                                                                                                        striatal medium spiny neuron differentiation
## GO:0014891                                                                                                                             striated muscle atrophy
## GO:0006931                                                                                    substrate-dependent cell migration, cell attachment to substrate
## GO:0000103                                                                                                                                sulfate assimilation
## GO:0000101                                                                                                                         sulfur amino acid transport
## GO:0097490                                                                                                             sympathetic neuron projection extension
## GO:0097491                                                                                                              sympathetic neuron projection guidance
## GO:0099538                                                                                                                 synaptic signaling via neuropeptide
## GO:0016182                                                                                                              synaptic vesicle budding from endosome
## GO:0016080                                                                                                                          synaptic vesicle targeting
## GO:0016189                                                                                                                 synaptic vesicle to endosome fusion
## GO:0002143                                                                                                             tRNA wobble position uridine thiolation
## GO:0030423                                                                                      targeting of mRNA for destruction involved in RNA interference
## GO:0015734                                                                                                                                   taurine transport
## GO:0090669                                                                                                                        telomerase RNA stabilization
## GO:0032202                                                                                                                                   telomere assembly
## GO:0032201                                                                                              telomere maintenance via semi-conservative replication
## GO:0031860                                                                                                                     telomeric 3' overhang formation
## GO:0061819                                                                                                   telomeric DNA-containing double minutes formation
## GO:0035990                                                                                                                         tendon cell differentiation
## GO:0035992                                                                                                                                    tendon formation
## GO:0023021                                                                                                                  termination of signal transduction
## GO:0021678                                                                                                                         third ventricle development
## GO:0060129                                                                                          thyroid-stimulating hormone-secreting cell differentiation
## GO:0060535                                                                                                                     trachea cartilage morphogenesis
## GO:0099191                                                                                                                    trans-synaptic signaling by BDNF
## GO:0099183                                                                                  trans-synaptic signaling by BDNF, modulating synaptic transmission
## GO:0099553                                                                       trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## GO:0099552                                                                                 trans-synaptic signaling by lipid, modulating synaptic transmission
## GO:0036369                                                                                                              transcription factor catabolic process
## GO:0071733                                                                                             transcriptional activation by promoter-enhancer looping
## GO:0032907                                                                                                         transforming growth factor beta3 production
## GO:0002188                                                                                                                            translation reinitiation
## GO:0003195                                                                                                                           tricuspid valve formation
## GO:0034197                                                                                                                              triglyceride transport
## GO:0042939                                                                                                                                tripeptide transport
## GO:0036484                                                                                                                   trunk neural crest cell migration
## GO:0035290                                                                                                                                  trunk segmentation
## GO:0001802                                                                                                                           type III hypersensitivity
## GO:0001806                                                                                                                            type IV hypersensitivity
## GO:0009826                                                                                                                          unidimensional cell growth
## GO:0035799                                                                                                                                   ureter maturation
## GO:0006573                                                                                                                            valine metabolic process
## GO:0014826                                                                                                                      vein smooth muscle contraction
## GO:0007418                                                                                                                         ventral midline development
## GO:0036486                                                                                                           ventral trunk neural crest cell migration
## GO:0099041                                                                                                                          vesicle tethering to Golgi
## GO:0021650                                                                                                                   vestibulocochlear nerve formation
## GO:0019042                                                                                                                                       viral latency
## GO:0007296                                                                                                                                      vitellogenesis
## GO:0070343                                                                                                                        white fat cell proliferation
## GO:0031591                                                                                                                     wybutosine biosynthetic process
## GO:0031590                                                                                                                        wybutosine metabolic process
## GO:0009256                                                                                                         10-formyltetrahydrofolate metabolic process
## GO:0015867                                                                                                                                       ATP transport
## GO:0002339                                                                                                                                    B cell selection
## GO:0001922                                                                                                                              B-1 B cell homeostasis
## GO:0010387                                                                                                                           COP9 signalosome assembly
## GO:0035964                                                                                                                         COPI-coated vesicle budding
## GO:0070934                                                                                                                     CRD-mediated mRNA stabilization
## GO:0070779                                                                                                           D-aspartate import across plasma membrane
## GO:0070777                                                                                                                               D-aspartate transport
## GO:0000738                                                                                                               DNA catabolic process, exonucleolytic
## GO:0010792                                                                   DNA double-strand break processing involved in repair via single-strand annealing
## GO:0051103                                                                                                                 DNA ligation involved in DNA repair
## GO:0000730                                                                                                                            DNA recombinase assembly
## GO:0090735                                                                                                                         DNA repair complex assembly
## GO:0033567                                                                                                        DNA replication, Okazaki fragment processing
## GO:0070375                                                                                                                                        ERK5 cascade
## GO:0007199                                                            G protein-coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## GO:0003164                                                                                                                     His-Purkinje system development
## GO:0032020                                                                                                                           ISG15-protein conjugation
## GO:0060397                                                                                       JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0097638                                                                                                            L-arginine import across plasma membrane
## GO:0019509                                                                                                       L-methionine salvage from methylthioadenosine
## GO:0045341                                                                                                                    MHC class I biosynthetic process
## GO:0070291                                                                                                                N-acylethanolamine metabolic process
## GO:0070292                                                                                                    N-acylphosphatidylethanolamine metabolic process
## GO:0006116                                                                                                                                      NADH oxidation
## GO:0006742                                                                                                                              NADP catabolic process
## GO:0003137                                                                                                 Notch signaling pathway involved in heart induction
## GO:0086068                                                                                   Purkinje myocyte to ventricular cardiac muscle cell communication
## GO:0086029                                                                                       Purkinje myocyte to ventricular cardiac muscle cell signaling
## GO:0036265                                                                                                                        RNA (guanine-N7)-methylation
## GO:0035927                                                                                                                       RNA import into mitochondrion
## GO:0032484                                                                                                                     Ral protein signal transduction
## GO:0001777                                                                                                                    T cell homeostatic proliferation
## GO:0033153                                                                                                                 T cell receptor V(D)J recombination
## GO:0071847                                                                                                                  TNFSF11-mediated signaling pathway
## GO:0035666                                                                                                 TRIF-dependent toll-like receptor signaling pathway
## GO:0007171                                                                               activation of transmembrane receptor protein tyrosine kinase activity
## GO:0007198                                                                                   adenylate cyclase-inhibiting serotonin receptor signaling pathway
## GO:0080144                                                                                                                              amino acid homeostasis
## GO:0072488                                                                                                                    ammonium transmembrane transport
## GO:0021764                                                                                                                                amygdala development
## GO:0033564                                                                                                                    anterior/posterior axon guidance
## GO:0001788                                                                                                            antibody-dependent cellular cytotoxicity
## GO:0060414                                                                                                            aorta smooth muscle tissue morphogenesis
## GO:0030263                                                                                                                   apoptotic chromosome condensation
## GO:0060057                                                                                              apoptotic process involved in mammary gland involution
## GO:0035905                                                                                                                         ascending aorta development
## GO:0003289                                                                                                                  atrial septum primum morphogenesis
## GO:0016255                                                                                                                 attachment of GPI anchor to protein
## GO:0044804                                                                                                                                autophagy of nucleus
## GO:0030242                                                                                                                             autophagy of peroxisome
## GO:0048319                                                                                                                        axial mesoderm morphogenesis
## GO:0090245                                                                                                           axis elongation involved in somitogenesis
## GO:0016199                                                                                                               axon midline choice point recognition
## GO:0006287                                                                                                                   base-excision repair, gap-filling
## GO:2001197                                                                                 basement membrane assembly involved in embryonic body morphogenesis
## GO:0060681                                                                                                branch elongation involved in ureteric bud branching
## GO:1904970                                                                                                                               brush border assembly
## GO:0061591                                                                                                     calcium activated galactosylceramide scrambling
## GO:0061590                                                                                                    calcium activated phosphatidylcholine scrambling
## GO:0061588                                                                                                           calcium activated phospholipid scrambling
## GO:0099502                                                                                             calcium-dependent activation of synaptic vesicle fusion
## GO:0038171                                                                                                                       cannabinoid signaling pathway
## GO:0061316                                                                                       canonical Wnt signaling pathway involved in heart development
## GO:0002190                                                                                                            cap-independent translational initiation
## GO:0045991                                                                                                       carbon catabolite activation of transcription
## GO:0045990                                                                                                       carbon catabolite regulation of transcription
## GO:0061026                                                                                                                  cardiac muscle tissue regeneration
## GO:0060926                                                                                                                  cardiac pacemaker cell development
## GO:0060948                                                                                                     cardiac vascular smooth muscle cell development
## GO:0060689                                                                                         cell differentiation involved in salivary gland development
## GO:0035787                                                                                                       cell migration involved in kidney development
## GO:0061325                                                                                          cell proliferation involved in outflow tract morphogenesis
## GO:0044838                                                                                                                                     cell quiescence
## GO:0044036                                                                                                           cell wall macromolecule metabolic process
## GO:0071554                                                                                                                cell wall organization or biogenesis
## GO:0044108                                                                                                               cellular alcohol biosynthetic process
## GO:0044107                                                                                                                  cellular alcohol metabolic process
## GO:0010961                                                                                                                  cellular magnesium ion homeostasis
## GO:1990416                                                                                     cellular response to brain-derived neurotrophic factor stimulus
## GO:0072757                                                                                                                   cellular response to camptothecin
## GO:0071455                                                                                                                      cellular response to hyperoxia
## GO:0071681                                                                                                              cellular response to indole-3-methanol
## GO:0036016                                                                                                                  cellular response to interleukin-3
## GO:1904637                                                                                                                      cellular response to ionomycin
## GO:0090156                                                                                                                   cellular sphingolipid homeostasis
## GO:0022009                                                                                                               central nervous system vasculogenesis
## GO:0061642                                                                                                                             chemoattraction of axon
## GO:0060591                                                                                                                        chondroblast differentiation
## GO:0097240                                                                                                       chromosome attachment to the nuclear envelope
## GO:0051305                                                                                                            chromosome movement towards spindle pole
## GO:0061073                                                                                                                          ciliary body morphogenesis
## GO:0070120                                                                                              ciliary neurotrophic factor-mediated signaling pathway
## GO:0015889                                                                                                                                 cobalamin transport
## GO:0048669                                                                                                           collateral sprouting in absence of injury
## GO:0002069                                                                                                        columnar/cuboidal epithelial cell maturation
## GO:0001661                                                                                                                          conditioned taste aversion
## GO:0035934                                                                                                                            corticosterone secretion
## GO:0007253                                                                                                               cytoplasmic sequestering of NF-kappaB
## GO:0046078                                                                                                                              dUMP metabolic process
## GO:0097742                                                                                                                          de novo centriole assembly
## GO:0098535                                                               de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## GO:0031087                                                                                     deadenylation-independent decapping of nuclear-transcribed mRNA
## GO:0070837                                                                                                                      dehydroascorbic acid transport
## GO:0097187                                                                                                                                      dentinogenesis
## GO:0009157                                                                                              deoxyribonucleoside monophosphate biosynthetic process
## GO:0009202                                                                                               deoxyribonucleoside triphosphate biosynthetic process
## GO:0070940                                                                                            dephosphorylation of RNA polymerase II C-terminal domain
## GO:0030205                                                                                                                  dermatan sulfate metabolic process
## GO:0050651                                                                                                  dermatan sulfate proteoglycan biosynthetic process
## GO:0009597                                                                                                                                  detection of virus
## GO:0035469                                                                                                    determination of pancreatic left/right asymmetry
## GO:0015961                                                                                                         diadenosine polyphosphate catabolic process
## GO:0060666                                                                      dichotomous subdivision of terminal units involved in salivary gland branching
## GO:0036072                                                                                                                                 direct ossification
## GO:0072025                                                                                                                distal convoluted tubule development
## GO:0019348                                                                                                                          dolichol metabolic process
## GO:1990961                                                                                                                           drug transmembrane export
## GO:0033227                                                                                                                                     dsRNA transport
## GO:0060971                                                                                                   embryonic heart tube left/right pattern formation
## GO:0003199                                                                     endocardial cushion to mesenchymal transition involved in heart valve formation
## GO:0002278                                                                                                   eosinophil activation involved in immune response
## GO:0043308                                                                                                                            eosinophil degranulation
## GO:0002447                                                                                                                        eosinophil mediated immunity
## GO:0060750                                                                             epithelial cell proliferation involved in mammary gland duct elongation
## GO:0042276                                                                                                                   error-prone translesion synthesis
## GO:0051295                                                                                                       establishment of meiotic spindle localization
## GO:0006068                                                                                                                           ethanol catabolic process
## GO:1901503                                                                                                                          ether biosynthetic process
## GO:0008611                                                                                                                    ether lipid biosynthetic process
## GO:0035426                                                                                                                 extracellular matrix-cell signaling
## GO:0033078                                                                                                                  extrathymic T cell differentiation
## GO:0001561                                                                                                                          fatty acid alpha-oxidation
## GO:0006113                                                                                                                                        fermentation
## GO:1904447                                                                                                                folate import across plasma membrane
## GO:0098838                                                                                                                      folate transmembrane transport
## GO:0046655                                                                                                                        folic acid metabolic process
## GO:0015884                                                                                                                                folic acid transport
## GO:0046292                                                                                                                      formaldehyde metabolic process
## GO:0048859                                                                                                                    formation of anatomical boundary
## GO:0021943                                                                                                                 formation of radial glial scaffolds
## GO:0010994                                                                                                                 free ubiquitin chain polymerization
## GO:0019375                                                                                                                   galactolipid biosynthetic process
## GO:0033499                                                                                                       galactose catabolic process via UDP-galactose
## GO:0006682                                                                                                             galactosylceramide biosynthetic process
## GO:0009448                                                                                                           gamma-aminobutyric acid metabolic process
## GO:1990349                                                                                                       gap junction-mediated intercellular transport
## GO:0042078                                                                                                                        germ-line stem cell division
## GO:0098728                                                                                                              germline stem cell asymmetric division
## GO:0021780                                                                                                                       glial cell fate specification
## GO:0021563                                                                                                                  glossopharyngeal nerve development
## GO:0006041                                                                                                                       glucosamine metabolic process
## GO:0015760                                                                                                                       glucose-6-phosphate transport
## GO:0006538                                                                                                                         glutamate catabolic process
## GO:0006868                                                                                                                                 glutamine transport
## GO:0006751                                                                                                                       glutathione catabolic process
## GO:0006114                                                                                                                       glycerol biosynthetic process
## GO:0046504                                                                                                                 glycerol ether biosynthetic process
## GO:0015793                                                                                                                                  glycerol transport
## GO:0006545                                                                                                                        glycine biosynthetic process
## GO:0003241                                                                                                              growth involved in heart morphogenesis
## GO:0003419                                                                                                    growth plate cartilage chondrocyte proliferation
## GO:1901069                                                                                                     guanosine-containing compound catabolic process
## GO:0046959                                                                                                                                         habituation
## GO:0031581                                                                                                                              hemidesmosome assembly
## GO:0015015                                                                           heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## GO:0030202                                                                                                                           heparin metabolic process
## GO:0051122                                                                                                                      hepoxilin biosynthetic process
## GO:0051121                                                                                                                         hepoxilin metabolic process
## GO:0015712                                                                                                                          hexose phosphate transport
## GO:0006548                                                                                                                         histidine catabolic process
## GO:0070535                                                                                                               histone H2A K63-linked ubiquitination
## GO:0036414                                                                                                                              histone citrullination
## GO:0009092                                                                                                                        homoserine metabolic process
## GO:0044027                                                                                                                      hypermethylation of CpG island
## GO:0021855                                                                                                                         hypothalamus cell migration
## GO:0002765                                                                                                      immune response-inhibiting signal transduction
## GO:0002085                                                                                                  inhibition of neuroepithelial cell differentiation
## GO:0002220                                                                           innate immune response activating cell surface receptor signaling pathway
## GO:0045349                                                                                                               interferon-alpha biosynthetic process
## GO:0035546                                                                                                                           interferon-beta secretion
## GO:0042091                                                                                                                 interleukin-10 biosynthetic process
## GO:0032632                                                                                                                            interleukin-3 production
## GO:0035771                                                                                                            interleukin-4-mediated signaling pathway
## GO:0075733                                                                                                                    intracellular transport of virus
## GO:0035720                                                                                                                  intraciliary anterograde transport
## GO:0001957                                                                                                                        intramembranous ossification
## GO:0015705                                                                                                                                    iodide transport
## GO:0009240                                                                                                        isopentenyl diphosphate biosynthetic process
## GO:0046490                                                                                                           isopentenyl diphosphate metabolic process
## GO:0035873                                                                                                                     lactate transmembrane transport
## GO:0015727                                                                                                                                   lactate transport
## GO:0032802                                                                                         low-density lipoprotein particle receptor catabolic process
## GO:0060480                                                                                                                    lung goblet cell differentiation
## GO:0071593                                                                                                                              lymphocyte aggregation
## GO:0006398                                                                                            mRNA 3'-end processing by stem-loop binding and cleavage
## GO:0110104                                                                                                                    mRNA alternative polyadenylation
## GO:0098795                                                                                                            mRNA cleavage involved in gene silencing
## GO:0035279                                                                                                   mRNA cleavage involved in gene silencing by miRNA
## GO:1990481                                                                                                                        mRNA pseudouridine synthesis
## GO:0038145                                                                                              macrophage colony-stimulating factor signaling pathway
## GO:0048496                                                                                                                maintenance of animal organ identity
## GO:0036438                                                                                                                    maintenance of lens transparency
## GO:0072656                                                                                                    maintenance of protein location in mitochondrion
## GO:0043490                                                                                                                            malate-aspartate shuttle
## GO:0090598                                                                                                             male anatomical structure morphogenesis
## GO:0048808                                                                                                                        male genitalia morphogenesis
## GO:0048133                                                                                                        male germ-line stem cell asymmetric division
## GO:0033024                                                                                                                         mast cell apoptotic process
## GO:0060374                                                                                                                           mast cell differentiation
## GO:0033023                                                                                                                               mast cell homeostasis
## GO:0070662                                                                                                                             mast cell proliferation
## GO:0060137                                                                                                            maternal process involved in parturition
## GO:0002901                                                                                                                     mature B cell apoptotic process
## GO:0070197                                                                                                  meiotic attachment of telomere to nuclear envelope
## GO:0051754                                                                                                      meiotic sister chromatid cohesion, centromeric
## GO:0044821                                                                                                     meiotic telomere tethering at nuclear periphery
## GO:1903232                                                                                                                                 melanosome assembly
## GO:0086045                                                                                        membrane depolarization during AV node cell action potential
## GO:0030397                                                                                                                                membrane disassembly
## GO:0098914                                                                          membrane repolarization during atrial cardiac muscle cell action potential
## GO:0072143                                                                                                                          mesangial cell development
## GO:0072007                                                                                                                      mesangial cell differentiation
## GO:0060916                                                                                         mesenchymal cell proliferation involved in lung development
## GO:0072221                                                                                                    metanephric distal convoluted tubule development
## GO:0072235                                                                                                               metanephric distal tubule development
## GO:0014005                                                                                                                               microglia development
## GO:0002282                                                                                              microglial cell activation involved in immune response
## GO:1904124                                                                                                                           microglial cell migration
## GO:0007494                                                                                                                                  midgut development
## GO:0072385                                                                                            minus-end-directed organelle transport along microtubule
## GO:0000965                                                                                                                 mitochondrial RNA 3'-end processing
## GO:0000957                                                                                                                 mitochondrial RNA catabolic process
## GO:0035694                                                                                                             mitochondrial protein catabolic process
## GO:0045448                                                                                                                       mitotic cell cycle, embryonic
## GO:0051256                                                                                                                    mitotic spindle midzone assembly
## GO:0003192                                                                                                                              mitral valve formation
## GO:0052150                                                                                                    modulation by symbiont of host apoptotic process
## GO:0046462                                                                                                                  monoacylglycerol metabolic process
## GO:0070487                                                                                                                                monocyte aggregation
## GO:0061743                                                                                                                                      motor learning
## GO:0003150                                                                                                                       muscular septum morphogenesis
## GO:0014905                                                                                            myoblast fusion involved in skeletal muscle regeneration
## GO:0035747                                                                                                                      natural killer cell chemotaxis
## GO:0002325                                                                                     natural killer cell differentiation involved in immune response
## GO:0106119                                                                                                   negative reguation of sterol biosynthetic process
## GO:2001186                                                                                   negative regulation of CD8-positive, alpha-beta T cell activation
## GO:2000002                                                                                                        negative regulation of DNA damage checkpoint
## GO:2000143                                                                                      negative regulation of DNA-templated transcription, initiation
## GO:0070317                                                                                                          negative regulation of G0 to G1 transition
## GO:0042997                                                                                   negative regulation of Golgi to plasma membrane protein transport
## GO:0045347                                                                                            negative regulation of MHC class II biosynthetic process
## GO:1900226                                                                                          negative regulation of NLRP3 inflammasome complex assembly
## GO:0035021                                                                                              negative regulation of Rac protein signal transduction
## GO:0010991                                                                                                negative regulation of SMAD protein complex assembly
## GO:0060392                                                                                             negative regulation of SMAD protein signal transduction
## GO:0001915                                                                                                 negative regulation of T cell mediated cytotoxicity
## GO:0070236                                                                                     negative regulation of activation-induced cell death of T cells
## GO:0010693                                                                                                negative regulation of alkaline phosphatase activity
## GO:1901877                                                                                                          negative regulation of calcium ion binding
## GO:0055118                                                                                                   negative regulation of cardiac muscle contraction
## GO:0033239                                                                                             negative regulation of cellular amine metabolic process
## GO:0045541                                                                                             negative regulation of cholesterol biosynthetic process
## GO:0090370                                                                                                           negative regulation of cholesterol efflux
## GO:0090206                                                                                                negative regulation of cholesterol metabolic process
## GO:0002740                                                                               negative regulation of cytokine secretion involved in immune response
## GO:1900425                                                                                                negative regulation of defense response to bacterium
## GO:0060160                                                                                          negative regulation of dopamine receptor signaling pathway
## GO:0033602                                                                                                           negative regulation of dopamine secretion
## GO:1903999                                                                                                              negative regulation of eating behavior
## GO:1903912                                                              negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## GO:2000697                                                               negative regulation of epithelial cell differentiation involved in kidney development
## GO:2000195                                                                                                     negative regulation of female gonad development
## GO:0090272                                                                                          negative regulation of fibroblast growth factor production
## GO:1903976                                                                                                         negative regulation of glial cell migration
## GO:0031947                                                                                          negative regulation of glucocorticoid biosynthetic process
## GO:0031944                                                                                             negative regulation of glucocorticoid metabolic process
## GO:0033132                                                                                                         negative regulation of glucokinase activity
## GO:0045719                                                                                                negative regulation of glycogen biosynthetic process
## GO:2000346                                                                                                     negative regulation of hepatocyte proliferation
## GO:1903300                                                                                                          negative regulation of hexokinase activity
## GO:1901842                                                                                  negative regulation of high voltage-gated calcium channel activity
## GO:1903298                                                                        negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0032304                                                                                                          negative regulation of icosanoid secretion
## GO:0033088                                                                                      negative regulation of immature T cell proliferation in thymus
## GO:0051025                                                                                                     negative regulation of immunoglobulin secretion
## GO:0032687                                                                                                  negative regulation of interferon-alpha production
## GO:1902714                                                                                                   negative regulation of interferon-gamma secretion
## GO:0032696                                                                                                    negative regulation of interleukin-13 production
## GO:1905077                                                                                                     negative regulation of interleukin-17 secretion
## GO:0045085                                                                                           negative regulation of interleukin-2 biosynthetic process
## GO:0032714                                                                                                     negative regulation of interleukin-5 production
## GO:0034760                                                                                             negative regulation of iron ion transmembrane transport
## GO:0034757                                                                                                           negative regulation of iron ion transport
## GO:0045829                                                                                                            negative regulation of isotype switching
## GO:1902744                                                                                                   negative regulation of lamellipodium organization
## GO:0090219                                                                                                        negative regulation of lipid kinase activity
## GO:0033685                                                                                                negative regulation of luteinizing hormone secretion
## GO:0010936                                                                                               negative regulation of macrophage cytokine production
## GO:0002906                                                                                              negative regulation of mature B cell apoptotic process
## GO:0051902                                                                                                 negative regulation of mitochondrial depolarization
## GO:0010637                                                                                                         negative regulation of mitochondrial fusion
## GO:0045950                                                                                                        negative regulation of mitotic recombination
## GO:0051387                                                                                  negative regulation of neurotrophin TRK receptor signaling pathway
## GO:0042483                                                                                                                negative regulation of odontogenesis
## GO:1903377                                                        negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0048550                                                                                                                  negative regulation of pinocytosis
## GO:1900045                                                                                            negative regulation of protein K63-linked ubiquitination
## GO:1902817                                                                                          negative regulation of protein localization to microtubule
## GO:1901078                                                                                                         negative regulation of relaxation of muscle
## GO:0060266                                                                          negative regulation of respiratory burst involved in inflammatory response
## GO:0010891                                                                                                 negative regulation of sequestering of triglyceride
## GO:1900004                                                                                           negative regulation of serine-type endopeptidase activity
## GO:1902572                                                                                               negative regulation of serine-type peptidase activity
## GO:0014063                                                                                                          negative regulation of serotonin secretion
## GO:0045875                                                                                                    negative regulation of sister chromatid cohesion
## GO:0090155                                                                                            negative regulation of sphingolipid biosynthetic process
## GO:0032227                                                                                          negative regulation of synaptic transmission, dopaminergic
## GO:2000301                                                                                                  negative regulation of synaptic vesicle exocytosis
## GO:1904506                                                                               negative regulation of telomere maintenance in response to DNA damage
## GO:0034136                                                                                       negative regulation of toll-like receptor 2 signaling pathway
## GO:1990441                                    negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0032911                                                                                  negative regulation of transforming growth factor beta1 production
## GO:0010897                                                                                               negative regulation of triglyceride catabolic process
## GO:1901164                                                                                                   negative regulation of trophoblast cell migration
## GO:0010957                                                                                               negative regulation of vitamin D biosynthetic process
## GO:0072179                                                                                                                              nephric duct formation
## GO:0023041                                                                                                                        neuronal signal transduction
## GO:0032898                                                                                                                             neurotrophin production
## GO:0014028                                                                                                                                 notochord formation
## GO:0051081                                                                                                                        nuclear envelope disassembly
## GO:0071033                                                                                          nuclear retention of pre-mRNA at the site of transcription
## GO:0043174                                                                                                                                  nucleoside salvage
## GO:0070427                                                                            nucleotide-binding oligomerization domain containing 1 signaling pathway
## GO:0006297                                                                                                         nucleotide-excision repair, DNA gap filling
## GO:0071698                                                                                                                       olfactory placode development
## GO:0030910                                                                                                                         olfactory placode formation
## GO:0071699                                                                                                                     olfactory placode morphogenesis
## GO:0097252                                                                                                                   oligodendrocyte apoptotic process
## GO:0021779                                                                                                                oligodendrocyte cell fate commitment
## GO:0021778                                                                                                             oligodendrocyte cell fate specification
## GO:0035106                                                                                                                                operant conditioning
## GO:0019532                                                                                                                                   oxalate transport
## GO:0035513                                                                                                                         oxidative RNA demethylation
## GO:0032364                                                                                                                                  oxygen homeostasis
## GO:0072592                                                                                                                            oxygen metabolic process
## GO:0061205                                                                                                                    paramesonephric duct development
## GO:0035898                                                                                                                       parathyroid hormone secretion
## GO:0009052                                                                                                       pentose-phosphate shunt, non-oxidative branch
## GO:0018057                                                                                                                           peptidyl-lysine oxidation
## GO:1990264                                                             peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## GO:1990511                                                                                                                          piRNA biosynthetic process
## GO:0002317                                                                                                                         plasma cell differentiation
## GO:0035879                                                                                                                   plasma membrane lactate transport
## GO:0044854                                                                                                                       plasma membrane raft assembly
## GO:0002904                                                                                                     positive regulation of B cell apoptotic process
## GO:1905451                                                                 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903721                                                                                                     positive regulation of I-kappaB phosphorylation
## GO:0045345                                                                                             positive regulation of MHC class I biosynthetic process
## GO:0033864                                                                                                     positive regulation of NAD(P)H oxidase activity
## GO:0035481                                                                          positive regulation of Notch signaling pathway involved in heart induction
## GO:0035022                                                                                              positive regulation of Rac protein signal transduction
## GO:1900149                                                                                                       positive regulation of Schwann cell migration
## GO:0106071                                                    positive regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0010694                                                                                                positive regulation of alkaline phosphatase activity
## GO:1900223                                                                                                       positive regulation of amyloid-beta clearance
## GO:0002760                                                                                               positive regulation of antimicrobial humoral response
## GO:1902512                                                                                                  positive regulation of apoptotic DNA fragmentation
## GO:0060058                                                                       positive regulation of apoptotic process involved in mammary gland involution
## GO:1904261                                                          positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0061047                                                                                     positive regulation of branching involved in lung morphogenesis
## GO:2000481                                                                                       positive regulation of cAMP-dependent protein kinase activity
## GO:1905665                                                                                    positive regulation of calcium ion import across plasma membrane
## GO:1901896                                                                                         positive regulation of calcium-transporting ATPase activity
## GO:0060355                                                                                            positive regulation of cell adhesion molecule production
## GO:2000304                                                                                                positive regulation of ceramide biosynthetic process
## GO:0071651                                                                                    positive regulation of chemokine (C-C motif) ligand 5 production
## GO:0002678                                                                                                positive regulation of chronic inflammatory response
## GO:2000370                                                                                               positive regulation of clathrin-dependent endocytosis
## GO:0051464                                                                                                           positive regulation of cortisol secretion
## GO:0010606                                                                                    positive regulation of cytoplasmic mRNA processing body assembly
## GO:1902952                                                                                                  positive regulation of dendritic spine maintenance
## GO:0032077                                                                                                   positive regulation of deoxyribonuclease activity
## GO:0060161                                                                                          positive regulation of dopamine receptor signaling pathway
## GO:1904000                                                                                                              positive regulation of eating behavior
## GO:2001137                                                                                                          positive regulation of endocytic recycling
## GO:1905007                                               positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:2000196                                                                                                     positive regulation of female gonad development
## GO:0090271                                                                                          positive regulation of fibroblast growth factor production
## GO:0002636                                                                                                    positive regulation of germinal center formation
## GO:2000324                                                                                    positive regulation of glucocorticoid receptor signaling pathway
## GO:0035948                                      positive regulation of gluconeogenesis by positive regulation of transcription from RNA polymerase II promoter
## GO:2000467                                                                                          positive regulation of glycogen (starch) synthase activity
## GO:0032278                                                                                                       positive regulation of gonadotropin secretion
## GO:0031284                                                                                                   positive regulation of guanylate cyclase activity
## GO:0048818                                                                                                     positive regulation of hair follicle maturation
## GO:1901534                                                                                positive regulation of hematopoietic progenitor cell differentiation
## GO:1901843                                                                                  positive regulation of high voltage-gated calcium channel activity
## GO:0071442                                                                                                   positive regulation of histone H3-K14 acetylation
## GO:1900127                                                                                              positive regulation of hyaluronan biosynthetic process
## GO:0010726                                                                                          positive regulation of hydrogen peroxide metabolic process
## GO:0033091                                                                                                positive regulation of immature T cell proliferation
## GO:0035549                                                                                                    positive regulation of interferon-beta secretion
## GO:2001184                                                                                                     positive regulation of interleukin-12 secretion
## GO:0032747                                                                                                    positive regulation of interleukin-23 production
## GO:1904504                                                                                                                    positive regulation of lipophagy
## GO:0050747                                                                                                positive regulation of lipoprotein metabolic process
## GO:0010986                                                                                               positive regulation of lipoprotein particle clearance
## GO:0034241                                                                                                            positive regulation of macrophage fusion
## GO:0034184                                                                             positive regulation of maintenance of mitotic sister chromatid cohesion
## GO:1903521                                                                                                     positive regulation of mammary gland involution
## GO:1901995                                                                                          positive regulation of meiotic cell cycle phase transition
## GO:0045636                                                                                                   positive regulation of melanocyte differentiation
## GO:2000382                                                                                                         positive regulation of mesoderm development
## GO:0072300                                                                                           positive regulation of metanephric glomerulus development
## GO:2000576                                                                                                   positive regulation of microtubule motor activity
## GO:1905448                                                                       positive regulation of mitochondrial ATP synthesis coupled electron transport
## GO:0002729                                                                                      positive regulation of natural killer cell cytokine production
## GO:0033031                                                                                                 positive regulation of neutrophil apoptotic process
## GO:2001206                                                                                                       positive regulation of osteoclast development
## GO:0010513                                                                                    positive regulation of phosphatidylinositol biosynthetic process
## GO:0032430                                                                                                    positive regulation of phospholipase A2 activity
## GO:0010641                                                                    positive regulation of platelet-derived growth factor receptor signaling pathway
## GO:1903566                                                                                               positive regulation of protein localization to cilium
## GO:1902474                                                                                              positive regulation of protein localization to synapse
## GO:0032106                                                                                           positive regulation of response to extracellular stimulus
## GO:0032109                                                                                                  positive regulation of response to nutrient levels
## GO:0048386                                                                                     positive regulation of retinoic acid receptor signaling pathway
## GO:0060316                                                                         positive regulation of ryanodine-sensitive calcium-release channel activity
## GO:0046878                                                                                                             positive regulation of saliva secretion
## GO:0060298                                                                                                       positive regulation of sarcomere organization
## GO:0072513                                                                              positive regulation of secondary heart field cardioblast proliferation
## GO:0014858                                                                                           positive regulation of skeletal muscle cell proliferation
## GO:0090154                                                                                            positive regulation of sphingolipid biosynthetic process
## GO:1905832                                                                                                             positive regulation of spindle assembly
## GO:0048687                                                                                                    positive regulation of sprouting of injured axon
## GO:0031632                                                                  positive regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:1902949                                                                                                  positive regulation of tau-protein kinase activity
## GO:0098735                                                                                               positive regulation of the force of heart contraction
## GO:1901165                                                                                                   positive regulation of trophoblast cell migration
## GO:0035470                                                                                                       positive regulation of vascular wound healing
## GO:0007023                                                                                                             post-chaperonin tubulin folding pathway
## GO:1990709                                                                                                                presynaptic active zone organization
## GO:0060431                                                                                                                          primary lung bud formation
## GO:0006701                                                                                                                   progesterone biosynthetic process
## GO:0042701                                                                                                                              progesterone secretion
## GO:0006561                                                                                                                        proline biosynthetic process
## GO:0019541                                                                                                                        propionate metabolic process
## GO:0019230                                                                                                                                      proprioception
## GO:0035523                                                                                                                 protein K29-linked deubiquitination
## GO:0035519                                                                                                                   protein K29-linked ubiquitination
## GO:1990592                                                                                                                       protein K69-linked ufmylation
## GO:0018101                                                                                                                              protein citrullination
## GO:0051725                                                                                                                         protein de-ADP-ribosylation
## GO:0071947                                                                  protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## GO:0033578                                                                                                                      protein glycosylation in Golgi
## GO:0045040                                                                                                    protein import into mitochondrial outer membrane
## GO:0001844                                                               protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0097039                                                                                                                   protein linear polyubiquitination
## GO:0009249                                                                                                                                 protein lipoylation
## GO:1903361                                                                                                 protein localization to basolateral plasma membrane
## GO:0071205                                                                                                protein localization to juxtaparanode region of axon
## GO:0002175                                                                                                     protein localization to paranode region of axon
## GO:0106035                                                                                                     protein maturation by [4Fe-4S] cluster transfer
## GO:1990564                                                                                                                              protein polyufmylation
## GO:0045053                                                                                                                protein retention in Golgi apparatus
## GO:1990743                                                                                                                                 protein sialylation
## GO:0035610                                                                                                                  protein side chain deglutamylation
## GO:0046501                                                                                                             protoporphyrinogen IX metabolic process
## GO:0072014                                                                                                                         proximal tubule development
## GO:0072047                                                                                   proximal/distal pattern formation involved in nephron development
## GO:0009137                                                                                                     purine nucleoside diphosphate catabolic process
## GO:0009181                                                                                                 purine ribonucleoside diphosphate catabolic process
## GO:0009177                                                                                   pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## GO:0009211                                                                                       pyrimidine deoxyribonucleoside triphosphate metabolic process
## GO:0046133                                                                                                         pyrimidine ribonucleoside catabolic process
## GO:0019805                                                                                                                    quinolinate biosynthetic process
## GO:0031118                                                                                                                        rRNA pseudouridine synthesis
## GO:0051029                                                                                                                                      rRNA transport
## GO:0090118                                                                                     receptor-mediated endocytosis involved in cholesterol transport
## GO:0043654                                                                                                                       recognition of apoptotic cell
## GO:1905462                                                                                                                  regulation of DNA duplex unwinding
## GO:0031554                                                                                              regulation of DNA-templated transcription, termination
## GO:0045343                                                                                                      regulation of MHC class I biosynthetic process
## GO:1902031                                                                                                                regulation of NADP metabolic process
## GO:0051140                                                                                                               regulation of NK T cell proliferation
## GO:0035480                                                                                   regulation of Notch signaling pathway involved in heart induction
## GO:2000523                                                                                                                  regulation of T cell costimulation
## GO:0050812                                                                                                         regulation of acyl-CoA biosynthetic process
## GO:0002786                                                                                                      regulation of antibacterial peptide production
## GO:0002580                                             regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0002784                                                                                                      regulation of antimicrobial peptide production
## GO:0009786                                                                                                              regulation of asymmetric cell division
## GO:0098910                                                                                           regulation of atrial cardiac muscle cell action potential
## GO:0048690                                                                                               regulation of axon extension involved in regeneration
## GO:2000812                                                                                                     regulation of barbed-end actin filament capping
## GO:1904259                                                                   regulation of basement membrane assembly involved in embryonic body morphogenesis
## GO:0110011                                                                                                        regulation of basement membrane organization
## GO:0060762                                                                                regulation of branching involved in mammary gland duct morphogenesis
## GO:0060665                                                regulation of branching involved in salivary gland morphogenesis by mesenchymal-epithelial signaling
## GO:1901876                                                                                                                   regulation of calcium ion binding
## GO:0098909                                                            regulation of cardiac muscle cell action potential involved in regulation of contraction
## GO:0032847                                                                                                                 regulation of cellular pH reduction
## GO:1900034                                                                                                             regulation of cellular response to heat
## GO:1903972                                                                    regulation of cellular response to macrophage colony-stimulating factor stimulus
## GO:1903722                                                                                                                  regulation of centriole elongation
## GO:0060623                                                                                                               regulation of chromosome condensation
## GO:0071922                                                                                                                       regulation of cohesin loading
## GO:1904026                                                                                                          regulation of collagen fibril organization
## GO:0051342                                                                                          regulation of cyclic-nucleotide phosphodiesterase activity
## GO:1903224                                                                                                       regulation of endodermal cell differentiation
## GO:1903371                                                                                    regulation of endoplasmic reticulum tubular network organization
## GO:0051036                                                                                                                         regulation of endosome size
## GO:1901509                                                                                                        regulation of endothelial tube morphogenesis
## GO:2000535                                                                                                     regulation of entry of bacterium into host cell
## GO:1905333                                                                                                                      regulation of gastric motility
## GO:0060398                                                                                             regulation of growth hormone receptor signaling pathway
## GO:0046984                                                                                                       regulation of hemoglobin biosynthetic process
## GO:2001166                                                                                                            regulation of histone H2B ubiquitination
## GO:1903297                                                                                 regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## GO:0106014                                                                                                     regulation of inflammatory response to wounding
## GO:0045113                                                                                                         regulation of integrin biosynthetic process
## GO:0045354                                                                                                 regulation of interferon-alpha biosynthetic process
## GO:0035547                                                                                                             regulation of interferon-beta secretion
## GO:0045074                                                                                                   regulation of interleukin-10 biosynthetic process
## GO:1902218                                                                   regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:1901979                                                                                           regulation of inward rectifier potassium channel activity
## GO:1904502                                                                                                                             regulation of lipophagy
## GO:0032803                                                                           regulation of low-density lipoprotein particle receptor catabolic process
## GO:1903519                                                                                                              regulation of mammary gland involution
## GO:0033025                                                                                                           regulation of mast cell apoptotic process
## GO:0070666                                                                                                               regulation of mast cell proliferation
## GO:0002905                                                                                                       regulation of mature B cell apoptotic process
## GO:1900825                                                                   regulation of membrane depolarization during cardiac muscle cell action potential
## GO:1903525                                                                                                                   regulation of membrane tubulation
## GO:0043380                                                                                                         regulation of memory T cell differentiation
## GO:1904139                                                                                                             regulation of microglial cell migration
## GO:0010968                                                                                                                regulation of microtubule nucleation
## GO:1904956                                                                                          regulation of midbrain dopaminergic neuron differentiation
## GO:0009794                                                                                                         regulation of mitotic cell cycle, embryonic
## GO:1902412                                                                                                                   regulation of mitotic cytokinesis
## GO:0014735                                                                                                                        regulation of muscle atrophy
## GO:2000501                                                                                                        regulation of natural killer cell chemotaxis
## GO:0032826                                                                       regulation of natural killer cell differentiation involved in immune response
## GO:2000325                                                                                   regulation of nuclear receptor transcription coactivator activity
## GO:0070432                                                              regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070424                                                                regulation of nucleotide-binding oligomerization domain containing signaling pathway
## GO:0090289                                                                                                              regulation of osteoclast proliferation
## GO:0060278                                                                                                                             regulation of ovulation
## GO:2000275                                                                                          regulation of oxidative phosphorylation uncoupler activity
## GO:1902308                                                                                                     regulation of peptidyl-serine dephosphorylation
## GO:2001245                                                                                              regulation of phosphatidylcholine biosynthetic process
## GO:1900736                                                               regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0060696                                                                                                        regulation of phospholipid catabolic process
## GO:2000583                                                                       regulation of platelet-derived growth factor receptor-alpha signaling pathway
## GO:1902267                                                                                                     regulation of polyamine transmembrane transport
## GO:1902498                                                                                                            regulation of protein autoubiquitination
## GO:1903059                                                                                                                    regulation of protein lipidation
## GO:1902816                                                                                                   regulation of protein localization to microtubule
## GO:1902525                                                                                                            regulation of protein monoubiquitination
## GO:2000434                                                                                                                   regulation of protein neddylation
## GO:1900133                                                                                                     regulation of renin secretion into blood stream
## GO:1903969                                                                                      regulation of response to macrophage colony-stimulating factor
## GO:0090259                                                                                                   regulation of retinal ganglion cell axon guidance
## GO:0061088                                                                                                              regulation of sequestering of zinc ion
## GO:1900003                                                                                                    regulation of serine-type endopeptidase activity
## GO:1902571                                                                                                        regulation of serine-type peptidase activity
## GO:1904347                                                                                             regulation of small intestine smooth muscle contraction
## GO:1903276                                                                                              regulation of sodium ion export across plasma membrane
## GO:2000118                                                                                                  regulation of sodium-dependent phosphate transport
## GO:0150003                                                                                                     regulation of spontaneous synaptic transmission
## GO:0062028                                                                                                               regulation of stress granule assembly
## GO:0008582                                                                                             regulation of synaptic growth at neuromuscular junction
## GO:0001978                                                               regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## GO:0001992                                                                                       regulation of systemic arterial blood pressure by vasopressin
## GO:1904505                                                                                        regulation of telomere maintenance in response to DNA damage
## GO:2000224                                                                                                     regulation of testosterone biosynthetic process
## GO:2000410                                                                                                                   regulation of thymocyte migration
## GO:2000609                                                                                                            regulation of thyroid hormone generation
## GO:0002155                                                                                            regulation of thyroid hormone mediated signaling pathway
## GO:0051884                                                                                                                      regulation of timing of anagen
## GO:0060164                                                                                                      regulation of timing of neuron differentiation
## GO:0046015                                                                                                              regulation of transcription by glucose
## GO:0014724                                                                                                    regulation of twitch skeletal muscle contraction
## GO:0106020                                                                                                                       regulation of vesicle docking
## GO:0048209                                                                                           regulation of vesicle targeting, to, from or within Golgi
## GO:1901608                                                                                                   regulation of vesicle transport along microtubule
## GO:0070295                                                                                                                              renal water absorption
## GO:0072344                                                                                                                          rescue of stalled ribosome
## GO:0061476                                                                                                                           response to anticoagulant
## GO:0072718                                                                                                                               response to cisplatin
## GO:0009750                                                                                                                                response to fructose
## GO:0071680                                                                                                                       response to indole-3-methanol
## GO:0070669                                                                                                                           response to interleukin-2
## GO:0036015                                                                                                                           response to interleukin-3
## GO:1904636                                                                                                                               response to ionomycin
## GO:0002238                                                                                                               response to molecule of fungal origin
## GO:0014873                                                                             response to muscle activity involved in regulation of muscle adaptation
## GO:0032571                                                                                                                               response to vitamin K
## GO:0061304                                                                                                                  retinal blood vessel morphogenesis
## GO:0098942                                                                               retrograde trans-synaptic signaling by trans-synaptic protein complex
## GO:0090677                                                                                                                          reversible differentiation
## GO:0009188                                                                                                     ribonucleoside diphosphate biosynthetic process
## GO:0090666                                                                                                                   scaRNA localization to Cajal body
## GO:0061056                                                                                                                              sclerotome development
## GO:0050915                                                                                                                    sensory perception of sour taste
## GO:0032329                                                                                                                                    serine transport
## GO:0015739                                                                                                                               sialic acid transport
## GO:0097503                                                                                                                                         sialylation
## GO:0003163                                                                                                                         sinoatrial node development
## GO:0014734                                                                                                                         skeletal muscle hypertrophy
## GO:0014834                                                                 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## GO:1990770                                                                                                           small intestine smooth muscle contraction
## GO:0060083                                                                                                   smooth muscle contraction involved in micturition
## GO:0040031                                                                                                                                  snRNA modification
## GO:0048254                                                                                                                                 snoRNA localization
## GO:0060023                                                                                                                             soft palate development
## GO:0002568                                                                                                    somatic diversification of T cell receptor genes
## GO:0002681                                                                                              somatic recombination of T cell receptor gene segments
## GO:0065001                                                                                                                      specification of axis polarity
## GO:0072081                                                                                                            specification of nephron tubule identity
## GO:0030382                                                                                                                    sperm mitochondrion organization
## GO:0007290                                                                                                                        spermatid nucleus elongation
## GO:0008295                                                                                                                     spermidine biosynthetic process
## GO:0003376                                                                                                  sphingosine-1-phosphate receptor signaling pathway
## GO:0000393                                                                              spliceosomal conformational changes to generate catalytic conformation
## GO:0042148                                                                                                                                     strand invasion
## GO:0035617                                                                                                                          stress granule disassembly
## GO:0015744                                                                                                                                 succinate transport
## GO:0016191                                                                                                                          synaptic vesicle uncoating
## GO:0031119                                                                                                                        tRNA pseudouridine synthesis
## GO:0034227                                                                                                                              tRNA thio-modification
## GO:0051031                                                                                                                                      tRNA transport
## GO:0006363                                                                                                       termination of RNA polymerase I transcription
## GO:0033015                                                                                                                      tetrapyrrole catabolic process
## GO:0050955                                                                                                                                       thermoception
## GO:0006567                                                                                                                         threonine catabolic process
## GO:0038163                                                                                                           thrombopoietin-mediated signaling pathway
## GO:0070460                                                                                                               thyroid-stimulating hormone secretion
## GO:0044691                                                                                                                                      tooth eruption
## GO:0009403                                                                                                                          toxin biosynthetic process
## GO:0009407                                                                                                                             toxin catabolic process
## GO:0019087                                                                                                                transformation of host cell by virus
## GO:0032197                                                                                                                         transposition, RNA-mediated
## GO:0019346                                                                                                                                    transsulfuration
## GO:0061551                                                                                                                     trigeminal ganglion development
## GO:0021636                                                                                                                      trigeminal nerve morphogenesis
## GO:0021637                                                                                                            trigeminal nerve structural organization
## GO:0001834                                                                                                                  trophectodermal cell proliferation
## GO:0019441                                                                                                          tryptophan catabolic process to kynurenine
## GO:0006572                                                                                                                          tyrosine catabolic process
## GO:0070086                                                                                                                     ubiquitin-dependent endocytosis
## GO:0097466                                                                                                       ubiquitin-dependent glycoprotein ERAD pathway
## GO:0090611                                                         ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## GO:0072193                                                                                                           ureter smooth muscle cell differentiation
## GO:0072191                                                                                                                    ureter smooth muscle development
## GO:0060157                                                                                                                         urinary bladder development
## GO:0034447                                                                                                     very-low-density lipoprotein particle clearance
## GO:0030050                                                                                                              vesicle transport along actin filament
## GO:0060005                                                                                                                                   vestibular reflex
## GO:0075525                                                                                                        viral translational termination-reinitiation
## GO:0006776                                                                                                                         vitamin A metabolic process
## GO:0070640                                                                                                                        vitamin D3 metabolic process
## GO:0009115                                                                                                                          xanthine catabolic process
## GO:0007354                                                                                            zygotic determination of anterior/posterior axis, embryo
## GO:0006207                                                                                                'de novo' pyrimidine nucleobase biosynthetic process
## GO:0050427                                                                                             3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:0006167                                                                                                                            AMP biosynthetic process
## GO:0002326                                                                                                                           B cell lineage commitment
## GO:0002322                                                                                                    B cell proliferation involved in immune response
## GO:0001923                                                                                                                          B-1 B cell differentiation
## GO:0061312                                                                                                 BMP signaling pathway involved in heart development
## GO:0006501                                                                                                                       C-terminal protein lipidation
## GO:0006975                                                                                                          DNA damage induced protein phosphorylation
## GO:0006307                                                                                                             DNA dealkylation involved in DNA repair
## GO:0015074                                                                                                                                     DNA integration
## GO:0044806                                                                                                                          G-quadruplex DNA unwinding
## GO:0046037                                                                                                                               GMP metabolic process
## GO:0090166                                                                                                                                   Golgi disassembly
## GO:0015808                                                                                                                                 L-alanine transport
## GO:1903400                                                                                                                  L-arginine transmembrane transport
## GO:0006777                                                                                                      Mo-molybdopterin cofactor biosynthetic process
## GO:0019720                                                                                                         Mo-molybdopterin cofactor metabolic process
## GO:0019262                                                                                                               N-acetylneuraminate catabolic process
## GO:0006498                                                                                                                       N-terminal protein lipidation
## GO:0097114                                                                                                                  NMDA glutamate receptor clustering
## GO:0070898                                                                                                   RNA polymerase III preinitiation complex assembly
## GO:0006048                                                                                                        UDP-N-acetylglucosamine biosynthetic process
## GO:0014055                                                                                                          acetylcholine secretion, neurotransmission
## GO:0000147                                                                                                                       actin cortical patch assembly
## GO:0051666                                                                                                                   actin cortical patch localization
## GO:0044396                                                                                                                   actin cortical patch organization
## GO:0008635                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## GO:0031584                                                                                                              activation of phospholipase D activity
## GO:0032237                                                                                               activation of store-operated calcium channel activity
## GO:0000915                                                                                                                actomyosin contractile ring assembly
## GO:0044837                                                                                                            actomyosin contractile ring organization
## GO:0070162                                                                                                                               adiponectin secretion
## GO:0019401                                                                                                                        alditol biosynthetic process
## GO:0097647                                                                                                                   amylin receptor signaling pathway
## GO:0006702                                                                                                                       androgen biosynthetic process
## GO:0021960                                                                                                                   anterior commissure morphogenesis
## GO:0098937                                                                                                                     anterograde dendritic transport
## GO:0071839                                                                                                                    apoptotic process in bone marrow
## GO:1902262                                                                                            apoptotic process involved in blood vessel morphogenesis
## GO:0003278                                                                                                   apoptotic process involved in heart morphogenesis
## GO:0006526                                                                                                                       arginine biosynthetic process
## GO:1903826                                                                                                                    arginine transmembrane transport
## GO:0015801                                                                                                                       aromatic amino acid transport
## GO:0060842                                                                                                           arterial endothelial cell differentiation
## GO:0000912                                                                                            assembly of actomyosin apparatus involved in cytokinesis
## GO:0055059                                                                                                                      asymmetric neuroblast division
## GO:0009912                                                                                                              auditory receptor cell fate commitment
## GO:0075071                                                                                                         autophagy involved in symbiotic interaction
## GO:0075044                                                                                       autophagy of host cells involved in interaction with symbiont
## GO:0048677                                                                                                             axon extension involved in regeneration
## GO:1990822                                                                                                            basic amino acid transmembrane transport
## GO:0032782                                                                                                                                 bile acid secretion
## GO:0010815                                                                                                                        bradykinin catabolic process
## GO:0060751                                                                                          branch elongation involved in mammary gland duct branching
## GO:0021785                                                                                                                  branchiomotor neuron axon guidance
## GO:0086073                                                                         bundle of His cell-Purkinje myocyte adhesion involved in cell communication
## GO:1990036                                                                                                      calcium ion import into sarcoplasmic reticulum
## GO:0015722                                                                                                                     canalicular bile acid transport
## GO:0044340                                                                        canonical Wnt signaling pathway involved in regulation of cell proliferation
## GO:0009756                                                                                                                     carbohydrate mediated signaling
## GO:0060920                                                                                                              cardiac pacemaker cell differentiation
## GO:0015879                                                                                                                                 carnitine transport
## GO:0044278                                                                                                              cell wall disruption in other organism
## GO:0071494                                                                                                                           cellular response to UV-C
## GO:0071221                                                                                                          cellular response to bacterial lipopeptide
## GO:0071220                                                                                                          cellular response to bacterial lipoprotein
## GO:0071321                                                                                                                           cellular response to cGMP
## GO:0071350                                                                                                                 cellular response to interleukin-15
## GO:0071499                                                                                                     cellular response to laminar fluid shear stress
## GO:0071286                                                                                                                  cellular response to magnesium ion
## GO:0071287                                                                                                                  cellular response to manganese ion
## GO:0071316                                                                                                                       cellular response to nicotine
## GO:0071500                                                                                                             cellular response to nitrosative stress
## GO:0071224                                                                                                                  cellular response to peptidoglycan
## GO:1902075                                                                                                                           cellular response to salt
## GO:0009992                                                                                                                          cellular water homeostasis
## GO:0061511                                                                                                                                centriole elongation
## GO:0021937                  cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## GO:0021853                                                                                                     cerebral cortex GABAergic interneuron migration
## GO:0035926                                                                                                            chemokine (C-C motif) ligand 2 secretion
## GO:0061643                                                                                                                              chemorepulsion of axon
## GO:0019695                                                                                                                           choline metabolic process
## GO:0015871                                                                                                                                   choline transport
## GO:0060718                                                                                                          chorionic trophoblast cell differentiation
## GO:0034382                                                                                                                       chylomicron remnant clearance
## GO:0042746                                                                                                             circadian sleep/wake cycle, wakefulness
## GO:0015746                                                                                                                                   citrate transport
## GO:0006824                                                                                                                                cobalt ion transport
## GO:0051182                                                                                                                                  coenzyme transport
## GO:0071921                                                                                                                                     cohesin loading
## GO:0072049                                                                                                                     comma-shaped body morphogenesis
## GO:0007182                                                                                                         common-partner SMAD protein phosphorylation
## GO:0002248                                                                       connective tissue replacement involved in inflammatory response wound healing
## GO:0035434                                                                                                                  copper ion transmembrane transport
## GO:0043400                                                                                                                                  cortisol secretion
## GO:0007619                                                                                                                                  courtship behavior
## GO:0061550                                                                                                                        cranial ganglion development
## GO:0009214                                                                                                                 cyclic nucleotide catabolic process
## GO:0016554                                                                                                                         cytidine to uridine editing
## GO:0007016                                                                                                           cytoskeletal anchoring at plasma membrane
## GO:0046070                                                                                                                              dGTP metabolic process
## GO:0098963                                                                                          dendritic transport of messenger ribonucleoprotein complex
## GO:0098961                                                                                                    dendritic transport of ribonucleoprotein complex
## GO:0009186                                                                                                   deoxyribonucleoside diphosphate metabolic process
## GO:0071910                                                                                                         determination of liver left/right asymmetry
## GO:0010273                                                                                                                        detoxification of copper ion
## GO:0048852                                                                                                                          diencephalon morphogenesis
## GO:0005984                                                                                                                      disaccharide metabolic process
## GO:0042420                                                                                                                          dopamine catabolic process
## GO:0036514                                                                                                                   dopaminergic neuron axon guidance
## GO:1990791                                                                                                                    dorsal root ganglion development
## GO:0045002                                                                                              double-strand break repair via single-strand annealing
## GO:0097070                                                                                                                           ductus arteriosus closure
## GO:0001705                                                                                                                                  ectoderm formation
## GO:0010668                                                                                                                     ectodermal cell differentiation
## GO:0060956                                                                                                                    endocardial cell differentiation
## GO:0090500                                                                                                       endocardial cushion to mesenchymal transition
## GO:0000447 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0061817                                                                                                     endoplasmic reticulum-plasma membrane tethering
## GO:0035635                                                                                                                   entry of bacterium into host cell
## GO:0043307                                                                                                                               eosinophil activation
## GO:0060684                                                                                                               epithelial-mesenchymal cell signaling
## GO:0014045                                                                                                    establishment of endothelial blood-brain barrier
## GO:0006703                                                                                                                       estrogen biosynthetic process
## GO:0006069                                                                                                                                   ethanol oxidation
## GO:0046949                                                                                                                 fatty-acyl-CoA biosynthetic process
## GO:0042699                                                                                                      follicle-stimulating hormone signaling pathway
## GO:0021869                                                                                                 forebrain ventricular zone progenitor cell division
## GO:0006003                                                                                                         fructose 2,6-bisphosphate metabolic process
## GO:0006004                                                                                                                            fucose metabolic process
## GO:0061197                                                                                                                     fungiform papilla morphogenesis
## GO:0035483                                                                                                                                    gastric emptying
## GO:0035860                                                                                   glial cell-derived neurotrophic factor receptor signaling pathway
## GO:0072104                                                                                                                      glomerular capillary formation
## GO:0072103                                                                                                                glomerulus vasculature morphogenesis
## GO:0010255                                                                                                                  glucose mediated signaling pathway
## GO:0061535                                                                                                              glutamate secretion, neurotransmission
## GO:0046476                                                                                                               glycosylceramide biosynthetic process
## GO:0046487                                                                                                                        glyoxylate metabolic process
## GO:0060789                                                                                                                     hair follicle placode formation
## GO:0060022                                                                                                                             hard palate development
## GO:0009757                                                                                                                           hexose mediated signaling
## GO:0071557                                                                                                                        histone H3-K27 demethylation
## GO:0034773                                                                                                                       histone H4-K20 trimethylation
## GO:0016576                                                                                                                           histone dephosphorylation
## GO:0035405                                                                                                                   histone-threonine phosphorylation
## GO:0070813                                                                                                                  hydrogen sulfide metabolic process
## GO:0052805                                                                                                     imidazole-containing compound catabolic process
## GO:0033152                                                                                                                  immunoglobulin V(D)J recombination
## GO:0090715                                                                                                              immunological memory formation process
## GO:0060120                                                                                                             inner ear receptor cell fate commitment
## GO:0045112                                                                                                                       integrin biosynthetic process
## GO:0010496                                                                                                                             intercellular transport
## GO:0035723                                                                                                           interleukin-15-mediated signaling pathway
## GO:0035655                                                                                                           interleukin-18-mediated signaling pathway
## GO:0072602                                                                                                                             interleukin-4 secretion
## GO:1904936                                                                                                                               interneuron migration
## GO:0060729                                                                                                         intestinal epithelial structure maintenance
## GO:0051454                                                                                                                          intracellular pH elevation
## GO:0036481                                                                              intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## GO:1902774                                                                                                                 late endosome to lysosome transport
## GO:0000237                                                                                                                                           leptotene
## GO:0002232                                                                                              leukocyte chemotaxis involved in inflammatory response
## GO:0061724                                                                                                                                           lipophagy
## GO:0060481                                                                                                               lobar bronchus epithelium development
## GO:0051661                                                                                                                  maintenance of centrosome location
## GO:0035633                                                                                                  maintenance of permeability of blood-brain barrier
## GO:0060745                                                                                                       mammary gland branching involved in pregnancy
## GO:0060744                                                                                                       mammary gland branching involved in thelarche
## GO:0032762                                                                                                                       mast cell cytokine production
## GO:0042256                                                                                                                            mature ribosome assembly
## GO:0051792                                                                                                        medium-chain fatty acid biosynthetic process
## GO:0031293                                                                                                   membrane protein intracellular domain proteolysis
## GO:0043379                                                                                                                       memory T cell differentiation
## GO:0008078                                                                                                                           mesodermal cell migration
## GO:0072177                                                                                                                        mesonephric duct development
## GO:0072257                                                                                          metanephric nephron tubule epithelial cell differentiation
## GO:0072174                                                                                                                        metanephric tubule formation
## GO:0014004                                                                                                                           microglia differentiation
## GO:0051415                                                                                  microtubule nucleation by interphase microtubule organizing center
## GO:0051013                                                                                                                                microtubule severing
## GO:0043504                                                                                                                            mitochondrial DNA repair
## GO:0033615                                                                                     mitochondrial proton-transporting ATP synthase complex assembly
## GO:0000022                                                                                                                          mitotic spindle elongation
## GO:0044789                                                                                                  modulation by host of viral release from host cell
## GO:0052433                                                     modulation by organism of apoptotic process in other organism involved in symbiotic interaction
## GO:0052040                                                                                                modulation by symbiont of host programmed cell death
## GO:0044532                                                                                                   modulation of apoptotic process in other organism
## GO:0044531                                                                                               modulation of programmed cell death in other organism
## GO:0052248                                                             modulation of programmed cell death in other organism involved in symbiotic interaction
## GO:0097475                                                                                                                              motor neuron migration
## GO:0044803                                                                                                                multi-organism membrane organization
## GO:0002372                                                                                                          myeloid dendritic cell cytokine production
## GO:0002370                                                                                                             natural killer cell cytokine production
## GO:0097064                                                                                                                           ncRNA export from nucleus
## GO:0097527                                                                                                                       necroptotic signaling pathway
## GO:0052405                                                                                          negative regulation by host of symbiont molecular function
## GO:0034316                                                                                     negative regulation of Arp2/3 complex-mediated actin nucleation
## GO:0032792                                                                                           negative regulation of CREB transcription factor activity
## GO:1903026                                                            negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:2000405                                                                                                             negative regulation of T cell migration
## GO:0002826                                                                                              negative regulation of T-helper 1 type immune response
## GO:0045629                                                                                              negative regulation of T-helper 2 cell differentiation
## GO:0003308                                                                          negative regulation of Wnt signaling pathway involved in heart development
## GO:0002865                                                                            negative regulation of acute inflammatory response to antigenic stimulus
## GO:0010360                                                                                                       negative regulation of anion channel activity
## GO:0071866                                                                                             negative regulation of apoptotic process in bone marrow
## GO:0010754                                                                                                      negative regulation of cGMP-mediated signaling
## GO:1901895                                                                                         negative regulation of calcium-transporting ATPase activity
## GO:1903243                                                                             negative regulation of cardiac muscle hypertrophy in response to stress
## GO:1901723                                                                            negative regulation of cell proliferation involved in kidney development
## GO:0070100                                                                                         negative regulation of chemokine-mediated signaling pathway
## GO:0010887                                                                                                          negative regulation of cholesterol storage
## GO:0002677                                                                                                negative regulation of chronic inflammatory response
## GO:2001268                                                 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0032466                                                                                                                  negative regulation of cytokinesis
## GO:0031999                                                                                                    negative regulation of fatty acid beta-oxidation
## GO:0003105                                                                                                        negative regulation of glomerular filtration
## GO:0070093                                                                                                           negative regulation of glucagon secretion
## GO:2000323                                                                                    negative regulation of glucocorticoid receptor signaling pathway
## GO:0051572                                                                                                    negative regulation of histone H3-K4 methylation
## GO:0090241                                                                                                       negative regulation of histone H4 acetylation
## GO:0033087                                                                                                negative regulation of immature T cell proliferation
## GO:0060336                                                                                  negative regulation of interferon-gamma-mediated signaling pathway
## GO:2000483                                                                                                      negative regulation of interleukin-8 secretion
## GO:0051005                                                                                                  negative regulation of lipoprotein lipase activity
## GO:2000110                                                                                                 negative regulation of macrophage apoptotic process
## GO:0045650                                                                                                   negative regulation of macrophage differentiation
## GO:0043305                                                                                                      negative regulation of mast cell degranulation
## GO:1904180                                                                                                      negative regulation of membrane depolarization
## GO:1905049                                                                                                    negative regulation of metallopeptidase activity
## GO:0051562                                                                                      negative regulation of mitochondrial calcium ion concentration
## GO:0090258                                                                                                        negative regulation of mitochondrial fission
## GO:0035795                                                                                          negative regulation of mitochondrial membrane permeability
## GO:1901525                                                                                                                    negative regulation of mitophagy
## GO:0044362                                                                                         negative regulation of molecular function in other organism
## GO:0052204                                                       negative regulation of molecular function in other organism involved in symbiotic interaction
## GO:0090027                                                                                                          negative regulation of monocyte chemotaxis
## GO:2000672                                                                                               negative regulation of motor neuron apoptotic process
## GO:0035509                                                                                      negative regulation of myosin-light-chain-phosphatase activity
## GO:0014043                                                                                                            negative regulation of neuron maturation
## GO:0051771                                                                                   negative regulation of nitric-oxide synthase biosynthetic process
## GO:1900194                                                                                                            negative regulation of oocyte maturation
## GO:0090188                                                                                                   negative regulation of pancreatic juice secretion
## GO:1902083                                                                                            negative regulation of peptidyl-cysteine S-nitrosylation
## GO:0010757                                                                                                       negative regulation of plasminogen activation
## GO:0046826                                                                                                  negative regulation of protein export from nucleus
## GO:0090315                                                                                                negative regulation of protein targeting to membrane
## GO:1903215                                                                                           negative regulation of protein targeting to mitochondrion
## GO:0010871                                                                                                negative regulation of receptor biosynthetic process
## GO:0045590                                                                                            negative regulation of regulatory T cell differentiation
## GO:0060331                                                                                                 negative regulation of response to interferon-gamma
## GO:1900028                                                                                                              negative regulation of ruffle assembly
## GO:0060315                                                                         negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:1901621                                               negative regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0090032                                                                                         negative regulation of steroid hormone biosynthetic process
## GO:0051964                                                                                                             negative regulation of synapse assembly
## GO:0031914                                                                                                          negative regulation of synaptic plasticity
## GO:1902804                                                                                                   negative regulation of synaptic vesicle transport
## GO:0034242                                                                                negative regulation of syncytium formation by plasma membrane fusion
## GO:0032055                                                                                            negative regulation of translation in response to stress
## GO:1904428                                                                                                        negative regulation of tubulin deacetylation
## GO:0042536                                                                                   negative regulation of tumor necrosis factor biosynthetic process
## GO:2000675                                                                                     negative regulation of type B pancreatic cell apoptotic process
## GO:1904753                                                                             negative regulation of vascular associated smooth muscle cell migration
## GO:1905563                                                                                      negative regulation of vascular endothelial cell proliferation
## GO:0031339                                                                                                               negative regulation of vesicle fusion
## GO:0046137                                                                                                    negative regulation of vitamin metabolic process
## GO:0021999                                                                                                     neural plate anterior/posterior regionalization
## GO:0045213                                                                                                         neurotransmitter receptor metabolic process
## GO:0019740                                                                                                                                nitrogen utilization
## GO:0038031                                                                                                 non-canonical Wnt signaling pathway via JNK cascade
## GO:0003357                                                                                                                noradrenergic neuron differentiation
## GO:0071763                                                                                                                       nuclear membrane organization
## GO:0071029                                                                                                                          nuclear ncRNA surveillance
## GO:0071046                                                                                           nuclear polyadenylation-dependent ncRNA catabolic process
## GO:0071035                                                                                            nuclear polyadenylation-dependent rRNA catabolic process
## GO:0071038                                                                                            nuclear polyadenylation-dependent tRNA catabolic process
## GO:0031086                                                                         nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## GO:0033869                                                                                                           nucleoside bisphosphate catabolic process
## GO:0071895                                                                                                                         odontoblast differentiation
## GO:0008228                                                                                                                                        opsonization
## GO:0021631                                                                                                                           optic nerve morphogenesis
## GO:0002051                                                                                                                          osteoblast fate commitment
## GO:0061734                                                                parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## GO:0009253                                                                                                                     peptidoglycan catabolic process
## GO:0000270                                                                                                                     peptidoglycan metabolic process
## GO:0018120                                                                                                                  peptidyl-arginine ADP-ribosylation
## GO:0019919                                                                                    peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## GO:0017183                                                                                   peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## GO:0017182                                                                                                              peptidyl-diphthamide metabolic process
## GO:1904238                                                                                                                       pericyte cell differentiation
## GO:0090383                                                                                                                             phagosome acidification
## GO:0034638                                                                                                               phosphatidylcholine catabolic process
## GO:0003402                                                                                            planar cell polarity pathway involved in axis elongation
## GO:1904938                                                                                              planar cell polarity pathway involved in axon guidance
## GO:0035790                                                                                     platelet-derived growth factor receptor-alpha signaling pathway
## GO:0040038                                                                                                        polar body extrusion after meiotic divisions
## GO:1902047                                                                                                                   polyamine transmembrane transport
## GO:0015846                                                                                                                                 polyamine transport
## GO:0006798                                                                                                                     polyphosphate catabolic process
## GO:0006797                                                                                                                     polyphosphate metabolic process
## GO:0044791                                                                                         positive regulation by host of viral release from host cell
## GO:1903626                                                                                                        positive regulation of DNA catabolic process
## GO:1903071                                                                  positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0090080                                                        positive regulation of MAPKKK cascade by fibroblast growth factor receptor signaling pathway
## GO:0051138                                                                                                    positive regulation of NK T cell differentiation
## GO:0046833                                                                                                      positive regulation of RNA export from nucleus
## GO:2000556                                                                                          positive regulation of T-helper 1 cell cytokine production
## GO:2000321                                                                                             positive regulation of T-helper 17 cell differentiation
## GO:1903116                                                                                                positive regulation of actin filament-based movement
## GO:2000210                                                                                                                      positive regulation of anoikis
## GO:2000427                                                                                                     positive regulation of apoptotic cell clearance
## GO:0090238                                                                                                   positive regulation of arachidonic acid secretion
## GO:0051987                                                                            positive regulation of attachment of spindle microtubules to kinetochore
## GO:1901098                                                                                                     positive regulation of autophagosome maturation
## GO:0051891                                                                                                  positive regulation of cardioblast differentiation
## GO:0046601                                                                                                        positive regulation of centriole replication
## GO:0002606                                                                           positive regulation of dendritic cell antigen processing and presentation
## GO:0038033                  positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## GO:1901552                                                                                                 positive regulation of endothelial cell development
## GO:1903142                                                                                         positive regulation of establishment of endothelial barrier
## GO:0045925                                                                                                           positive regulation of female receptivity
## GO:0046645                                                                                                positive regulation of gamma-delta T cell activation
## GO:0045588                                                                                           positive regulation of gamma-delta T cell differentiation
## GO:2000851                                                                                                     positive regulation of glucocorticoid secretion
## GO:0033133                                                                                                         positive regulation of glucokinase activity
## GO:1901321                                                                                                              positive regulation of heart induction
## GO:0051096                                                                                                            positive regulation of helicase activity
## GO:1902035                                                                                        positive regulation of hematopoietic stem cell proliferation
## GO:2000491                                                                                             positive regulation of hepatic stellate cell activation
## GO:0090240                                                                                                       positive regulation of histone H4 acetylation
## GO:1901727                                                                                                 positive regulation of histone deacetylase activity
## GO:0033184                                                                                                       positive regulation of histone ubiquitination
## GO:0034112                                                                                                 positive regulation of homotypic cell-cell adhesion
## GO:0002925                                                               positive regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1905206                                                                                         positive regulation of hydrogen peroxide-induced cell death
## GO:0090261                                                                                                      positive regulation of inclusion body assembly
## GO:0032962                                                                                  positive regulation of inositol trisphosphate biosynthetic process
## GO:0032730                                                                                               positive regulation of interleukin-1 alpha production
## GO:0050725                                                                                      positive regulation of interleukin-1 beta biosynthetic process
## GO:2001181                                                                                                     positive regulation of interleukin-10 secretion
## GO:0032741                                                                                                    positive regulation of interleukin-18 production
## GO:2000664                                                                                                      positive regulation of interleukin-5 secretion
## GO:0048298                                                                                            positive regulation of isotype switching to IgA isotypes
## GO:2000394                                                                                                  positive regulation of lamellipodium morphogenesis
## GO:1903238                                                                                               positive regulation of leukocyte tethering or rolling
## GO:0034093                                                                                     positive regulation of maintenance of sister chromatid cohesion
## GO:0060903                                                                                                                    positive regulation of meiosis I
## GO:2000630                                                                                                      positive regulation of miRNA metabolic process
## GO:1904528                                                                                                          positive regulation of microtubule binding
## GO:0002735                                                                                   positive regulation of myeloid dendritic cell cytokine production
## GO:1904398                                                                                           positive regulation of neuromuscular junction development
## GO:0010701                                                                                                     positive regulation of norepinephrine secretion
## GO:0010571                                                                                           positive regulation of nuclear cell cycle DNA replication
## GO:0032075                                                                                                            positive regulation of nuclease activity
## GO:0042488                                                                                     positive regulation of odontogenesis of dentin-containing tooth
## GO:0070447                                                                                     positive regulation of oligodendrocyte progenitor proliferation
## GO:1900086                                                                                        positive regulation of peptidyl-tyrosine autophosphorylation
## GO:0048549                                                                                                                  positive regulation of pinocytosis
## GO:0010756                                                                                                       positive regulation of plasminogen activation
## GO:0010572                                                                                                          positive regulation of platelet activation
## GO:1903334                                                                                                              positive regulation of protein folding
## GO:1904778                                                                                          positive regulation of protein localization to cell cortex
## GO:1904751                                                                                            positive regulation of protein localization to nucleolus
## GO:2000646                                                                                                   positive regulation of receptor catabolic process
## GO:0060267                                                                                                            positive regulation of respiratory burst
## GO:0048633                                                                                                positive regulation of skeletal muscle tissue growth
## GO:0043415                                                                                          positive regulation of skeletal muscle tissue regeneration
## GO:0070245                                                                                                  positive regulation of thymocyte apoptotic process
## GO:0034165                                                                                       positive regulation of toll-like receptor 9 signaling pathway
## GO:0070172                                                                                                         positive regulation of tooth mineralization
## GO:0061408                                                     positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## GO:0061419                                                         positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:1901228                                                  positive regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0007221                                                                                       positive regulation of transcription of Notch receptor target
## GO:0032914                                                                                  positive regulation of transforming growth factor beta1 production
## GO:0032056                                                                                            positive regulation of translation in response to stress
## GO:2000676                                                                                     positive regulation of type B pancreatic cell apoptotic process
## GO:1900748                                                                         positive regulation of vascular endothelial growth factor signaling pathway
## GO:1905065                                                                                  positive regulation of vascular smooth muscle cell differentiation
## GO:0048597                                                                                                        post-embryonic camera-type eye morphogenesis
## GO:0035166                                                                                                                          post-embryonic hemopoiesis
## GO:0031204                                                                                      posttranslational protein targeting to membrane, translocation
## GO:1901162                                                                                                         primary amino compound biosynthetic process
## GO:0060319                                                                                                               primitive erythrocyte differentiation
## GO:0035524                                                                                                                     proline transmembrane transport
## GO:0035608                                                                                                                             protein deglutamylation
## GO:0045046                                                                                                             protein import into peroxisome membrane
## GO:1903044                                                                                                               protein localization to membrane raft
## GO:1903546                                                                                                 protein localization to photoreceptor outer segment
## GO:0022417                                                                                                               protein maturation by protein folding
## GO:0006477                                                                                                                                   protein sulfation
## GO:0071569                                                                                                                                  protein ufmylation
## GO:0009217                                                                                           purine deoxyribonucleoside triphosphate catabolic process
## GO:0034034                                                                                                    purine nucleoside bisphosphate catabolic process
## GO:0032261                                                                                                                           purine nucleotide salvage
## GO:0009446                                                                                                                     putrescine biosynthetic process
## GO:0019364                                                                                                               pyridine nucleotide catabolic process
## GO:0009176                                                                                      pyrimidine deoxyribonucleoside monophosphate metabolic process
## GO:0072531                                                                                              pyrimidine-containing compound transmembrane transport
## GO:0046874                                                                                                                       quinolinate metabolic process
## GO:0002023                                                                                              reduction of food intake in response to dietary excess
## GO:0046719                                                                                            regulation by virus of viral protein levels in host cell
## GO:2000348                                                                                                                regulation of CD40 signaling pathway
## GO:0043376                                                                                       regulation of CD8-positive, alpha-beta T cell differentiation
## GO:0032489                                                                                                     regulation of Cdc42 protein signal transduction
## GO:0030174                                                                                              regulation of DNA-dependent DNA replication initiation
## GO:1903719                                                                                                              regulation of I-kappaB phosphorylation
## GO:1903894                                                                                               regulation of IRE1-mediated unfolded protein response
## GO:0002036                                                                                             regulation of L-glutamate import across plasma membrane
## GO:0039533                                                                                                               regulation of MDA-5 signaling pathway
## GO:2000298                                                                                regulation of Rho-dependent protein serine/threonine kinase activity
## GO:0010990                                                                                                         regulation of SMAD protein complex assembly
## GO:2000407                                                                                                                  regulation of T cell extravasation
## GO:2000554                                                                                                   regulation of T-helper 1 cell cytokine production
## GO:0014056                                                                                            regulation of acetylcholine secretion, neurotransmission
## GO:0070163                                                                                                                 regulation of adiponectin secretion
## GO:0071865                                                                                                      regulation of apoptotic process in bone marrow
## GO:0031133                                                                                                                         regulation of axon diameter
## GO:0002034                                                                                            regulation of blood vessel diameter by renin-angiotensin
## GO:1900157                                                                                       regulation of bone mineralization involved in bone maturation
## GO:0060687                                                                                    regulation of branching involved in prostate gland morphogenesis
## GO:0051940                                                                                regulation of catecholamine uptake involved in synaptic transmission
## GO:2001286                                                                                                         regulation of caveolin-mediated endocytosis
## GO:0010649                                                                                             regulation of cell communication by electrical coupling
## GO:0060620                                                                                                                    regulation of cholesterol import
## GO:0060296                                                                                    regulation of cilium beat frequency involved in ciliary motility
## GO:0060295                                                                                             regulation of cilium movement involved in cell motility
## GO:1902019                                                                                                        regulation of cilium-dependent cell motility
## GO:0010840                                                                                               regulation of circadian sleep/wake cycle, wakefulness
## GO:1905203                                                                                                         regulation of connective tissue replacement
## GO:2000064                                                                                                         regulation of cortisol biosynthetic process
## GO:0051462                                                                                                                    regulation of cortisol secretion
## GO:1904959                                                                                                         regulation of cytochrome-c oxidase activity
## GO:2000015                                                                                                      regulation of determination of dorsal identity
## GO:0051584                                                                                     regulation of dopamine uptake involved in synaptic transmission
## GO:0070173                                                                                                                 regulation of enamel mineralization
## GO:2000416                                                                                                                  regulation of eosinophil migration
## GO:1905005                                                        regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:1903551                                                                                                        regulation of extracellular exosome assembly
## GO:2000977                                                                                                      regulation of forebrain neuron differentiation
## GO:2000821                                                                                                                     regulation of grooming behavior
## GO:0000414                                                                                                            regulation of histone H3-K36 methylation
## GO:0031585                                                               regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## GO:0050705                                                                                                         regulation of interleukin-1 alpha secretion
## GO:0050722                                                                                               regulation of interleukin-1 beta biosynthetic process
## GO:2000659                                                                                              regulation of interleukin-1-mediated signaling pathway
## GO:0034759                                                                                                      regulation of iron ion transmembrane transport
## GO:0090325                                                                                            regulation of locomotion involved in locomotory behavior
## GO:1905165                                                                                                   regulation of lysosomal protein catabolic process
## GO:0010793                                                                                                              regulation of mRNA export from nucleus
## GO:0034239                                                                                                                     regulation of macrophage fusion
## GO:0071640                                                                                    regulation of macrophage inflammatory protein 1 alpha production
## GO:0098902                                                                                       regulation of membrane depolarization during action potential
## GO:1904683                                                                                                         regulation of metalloendopeptidase activity
## GO:0072298                                                                                                    regulation of metanephric glomerulus development
## GO:0072307                                                                            regulation of metanephric nephron tubule epithelial cell differentiation
## GO:1905446                                                                                regulation of mitochondrial ATP synthesis coupled electron transport
## GO:1901858                                                                                                   regulation of mitochondrial DNA metabolic process
## GO:0002733                                                                                            regulation of myeloid dendritic cell cytokine production
## GO:0002727                                                                                               regulation of natural killer cell cytokine production
## GO:0070948                                                                                                      regulation of neutrophil mediated cytotoxicity
## GO:1900239                                                                                                                  regulation of phenotypic switching
## GO:0060304                                                                                                regulation of phosphatidylinositol dephosphorylation
## GO:0010746                                                                                       regulation of plasma membrane long-chain fatty acid transport
## GO:0099566                                                                                      regulation of postsynaptic cytosolic calcium ion concentration
## GO:0060685                                                                                                               regulation of prostatic bud formation
## GO:0099576                                                            regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## GO:1905634                                                                                                     regulation of protein localization to chromatin
## GO:0060264                                                                                   regulation of respiratory burst involved in inflammatory response
## GO:0046668                                                                                                    regulation of retinal cell programmed cell death
## GO:0051611                                                                                                                      regulation of serotonin uptake
## GO:0071671                                                                                                         regulation of smooth muscle cell chemotaxis
## GO:0032415                                                                                                     regulation of sodium:proton antiporter activity
## GO:1904672                                                                                              regulation of somatic stem cell population maintenance
## GO:0090273                                                                                                                regulation of somatostatin secretion
## GO:0048686                                                                                                             regulation of sprouting of injured axon
## GO:2000909                                                                                                                         regulation of sterol import
## GO:0099179                                                                                                            regulation of synaptic membrane adhesion
## GO:0003100                                                                                        regulation of systemic arterial blood pressure by endothelin
## GO:1904429                                                                                                                    regulation of t-circle formation
## GO:0006449                                                                                                             regulation of translational termination
## GO:2000074                                                                                                    regulation of type B pancreatic cell development
## GO:0061043                                                                                                                regulation of vascular wound healing
## GO:0070562                                                                                                  regulation of vitamin D receptor signaling pathway
## GO:1903689                                                                                           regulation of wound healing, spreading of epidermal cells
## GO:0003072                                          renal control of peripheral vascular resistance involved in regulation of systemic arterial blood pressure
## GO:0003096                                                                                                                          renal sodium ion transport
## GO:1990414                                                                           replication-born double-strand break repair via sister chromatid exchange
## GO:0001302                                                                                                                              replicative cell aging
## GO:0070339                                                                                                                   response to bacterial lipopeptide
## GO:1901563                                                                                                                            response to camptothecin
## GO:0052173                                                                            response to defenses of other organism involved in symbiotic interaction
## GO:0014894                                                                                 response to denervation involved in regulation of muscle adaptation
## GO:1904587                                                                                                                            response to glycoprotein
## GO:0075136                                                                                                                                    response to host
## GO:0052200                                                                                                                           response to host defenses
## GO:0055093                                                                                                                               response to hyperoxia
## GO:0035902                                                                                                                   response to immobilization stress
## GO:0014854                                                                                                                              response to inactivity
## GO:0070671                                                                                                                          response to interleukin-12
## GO:0034616                                                                                                              response to laminar fluid shear stress
## GO:0009642                                                                                                                         response to light intensity
## GO:0014870                                                                                                                       response to muscle inactivity
## GO:0014877                                                                           response to muscle inactivity involved in regulation of muscle adaptation
## GO:0010046                                                                                                                               response to mycotoxin
## GO:0071107                                                                                                                     response to parathyroid hormone
## GO:0010269                                                                                                                            response to selenium ion
## GO:1903935                                                                                                                         response to sodium arsenite
## GO:0001878                                                                                                                                   response to yeast
## GO:0003406                                                                                                              retinal pigment epithelium development
## GO:1990049                                                                                                    retrograde neuronal dense core vesicle transport
## GO:0098921                                                                                              retrograde trans-synaptic signaling by endocannabinoid
## GO:0098920                                                                                                        retrograde trans-synaptic signaling by lipid
## GO:0060024                                                                                                                      rhythmic synaptic transmission
## GO:0034031                                                                                                       ribonucleoside bisphosphate catabolic process
## GO:0060662                                                                                                                           salivary gland cavitation
## GO:0050916                                                                                                                   sensory perception of sweet taste
## GO:0050975                                                                                                                         sensory perception of touch
## GO:0050917                                                                                                                   sensory perception of umami taste
## GO:0003284                                                                                                                           septum primum development
## GO:0032119                                                                                                                            sequestering of zinc ion
## GO:0042427                                                                                                                      serotonin biosynthetic process
## GO:0019626                                                                                                            short-chain fatty acid catabolic process
## GO:0098528                                                                                                               skeletal muscle fiber differentiation
## GO:0061302                                                                                                                  smooth muscle cell-matrix adhesion
## GO:0042796                                                                                                           snRNA transcription by RNA polymerase III
## GO:0021523                                                                                                                somatic motor neuron differentiation
## GO:0042713                                                                                                                                   sperm ejaculation
## GO:0006686                                                                                                                  sphingomyelin biosynthetic process
## GO:0060708                                                                                                                  spongiotrophoblast differentiation
## GO:0048865                                                                                                                           stem cell fate commitment
## GO:1990169                                                                                                                       stress response to copper ion
## GO:0021825                                                                                            substrate-dependent cerebral cortex tangential migration
## GO:0006104                                                                                                                      succinyl-CoA metabolic process
## GO:0010182                                                                                                                    sugar mediated signaling pathway
## GO:0016185                                                                                   synaptic vesicle budding from presynaptic endocytic zone membrane
## GO:0070127                                                                                           tRNA aminoacylation for mitochondrial protein translation
## GO:0007217                                                                                                               tachykinin receptor signaling pathway
## GO:0071816                                                                                           tail-anchored membrane protein insertion into ER membrane
## GO:1905323                                                                                                              telomerase holoenzyme complex assembly
## GO:0034398                                                                                                             telomere tethering at nuclear periphery
## GO:0016115                                                                                                                         terpenoid catabolic process
## GO:0046654                                                                                                               tetrahydrofolate biosynthetic process
## GO:0042695                                                                                                                                           thelarche
## GO:0070327                                                                                                                           thyroid hormone transport
## GO:0002461                                                                                                  tolerance induction dependent upon immune response
## GO:0002513                                                                                                                 tolerance induction to self antigen
## GO:0006362                                                                                             transcription elongation from RNA polymerase I promoter
## GO:0006361                                                                                             transcription initiation from RNA polymerase I promoter
## GO:0000972                                                                transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## GO:0030321                                                                                                                  transepithelial chloride transport
## GO:0038044                                                                                                           transforming growth factor-beta secretion
## GO:0006842                                                                                                                        tricarboxylic acid transport
## GO:0006642                                                                                                                           triglyceride mobilization
## GO:0071830                                                                                                    triglyceride-rich lipoprotein particle clearance
## GO:0060605                                                                                                                               tube lumen cavitation
## GO:0030579                                                                                                  ubiquitin-dependent SMAD protein catabolic process
## GO:0015747                                                                                                                                     urate transport
## GO:0015840                                                                                                                                      urea transport
## GO:0061038                                                                                                                                uterus morphogenesis
## GO:0070072                                                                                         vacuolar proton-transporting V-type ATPase complex assembly
## GO:0042760                                                                                                        very long-chain fatty acid catabolic process
## GO:0021648                                                                                                               vestibulocochlear nerve morphogenesis
## GO:0042373                                                                                                                         vitamin K metabolic process
## GO:0046110                                                                                                                          xanthine metabolic process
## GO:0006015                                                                                                  5-phosphoribose 1-diphosphate biosynthetic process
## GO:0046391                                                                                                     5-phosphoribose 1-diphosphate metabolic process
## GO:0006370                                                                                                                      7-methylguanosine mRNA capping
## GO:0042904                                                                                                            9-cis-retinoic acid biosynthetic process
## GO:0042905                                                                                                               9-cis-retinoic acid metabolic process
## GO:0035754                                                                                                                                   B cell chemotaxis
## GO:0002361                                                                           CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## GO:0061641                                                                                                            CENP-A containing chromatin organization
## GO:0034080                                                                                                               CENP-A containing nucleosome assembly
## GO:0045006                                                                                                                                     DNA deamination
## GO:0044026                                                                                                                                DNA hypermethylation
## GO:0032776                                                                                                                         DNA methylation on cytosine
## GO:0006265                                                                                                                              DNA topological change
## GO:0019673                                                                                                                       GDP-mannose metabolic process
## GO:0019852                                                                                                                   L-ascorbic acid metabolic process
## GO:0046439                                                                                                                        L-cysteine metabolic process
## GO:0071265                                                                                                                   L-methionine biosynthetic process
## GO:0071267                                                                                                                                L-methionine salvage
## GO:1903352                                                                                                                 L-ornithine transmembrane transport
## GO:0006559                                                                                                                   L-phenylalanine catabolic process
## GO:0039530                                                                                                                             MDA-5 signaling pathway
## GO:0017196                                                                                                          N-terminal peptidyl-methionine acetylation
## GO:0006735                                                                                                                                   NADH regeneration
## GO:0070995                                                                                                                                     NADPH oxidation
## GO:0001866                                                                                                                             NK T cell proliferation
## GO:0006607                                                                                                             NLS-bearing protein import into nucleus
## GO:0061314                                                                                                       Notch signaling involved in heart development
## GO:0030578                                                                                                                               PML body organization
## GO:0060011                                                                                                                          Sertoli cell proliferation
## GO:0002291                                         T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002870                                                                                                                                       T cell anergy
## GO:0002457                                                                                                          T cell antigen processing and presentation
## GO:0033292                                                                                                                               T-tubule organization
## GO:0036462                                                                                                         TRAIL-activated apoptotic signaling pathway
## GO:0008063                                                                                                                              Toll signaling pathway
## GO:1904953                                                                      Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:1900619                                                                                                                     acetate ester metabolic process
## GO:0008291                                                                                                                     acetylcholine metabolic process
## GO:0061526                                                                                                                             acetylcholine secretion
## GO:0007256                                                                                                                         activation of JNKK activity
## GO:0086023                                                        adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0033211                                                                                                             adiponectin-activated signaling pathway
## GO:0070842                                                                                                                                  aggresome assembly
## GO:0035932                                                                                                                               aldosterone secretion
## GO:0019694                                                                                                                   alkanesulfonate metabolic process
## GO:0043102                                                                                                                                  amino acid salvage
## GO:0150094                                                                                                amyloid-beta clearance by cellular catabolic process
## GO:0150093                                                                                                              amyloid-beta clearance by transcytosis
## GO:0060978                                                                                            angiogenesis involved in coronary vascular morphogenesis
## GO:1990048                                                                                                   anterograde neuronal dense core vesicle transport
## GO:0002778                                                                                                                    antibacterial peptide production
## GO:0002775                                                                                                                    antimicrobial peptide production
## GO:0006531                                                                                                                         aspartate metabolic process
## GO:0036302                                                                                                                  atrioventricular canal development
## GO:0016198                                                                                                                       axon choice point recognition
## GO:0060385                                                                                                                axonogenesis involved in innervation
## GO:0001955                                                                                                                             blood vessel maturation
## GO:0031547                                                                                        brain-derived neurotrophic factor receptor signaling pathway
## GO:0060449                                                                                                           bud elongation involved in lung branching
## GO:0086043                                                                                                                 bundle of His cell action potential
## GO:0086028                                                                                                    bundle of His cell to Purkinje myocyte signaling
## GO:0097646                                                                                                        calcitonin family receptor signaling pathway
## GO:1990034                                                                                                           calcium ion export across plasma membrane
## GO:0061621                                                                                                                                canonical glycolysis
## GO:0086042                                                                                                    cardiac muscle cell-cardiac muscle cell adhesion
## GO:0003253                                                                         cardiac neural crest cell migration involved in outflow tract morphogenesis
## GO:0032049                                                                                                                    cardiolipin biosynthetic process
## GO:0019614                                                                                                      catechol-containing compound catabolic process
## GO:0042424                                                                                                                     catecholamine catabolic process
## GO:0061343                                                                                                       cell adhesion involved in heart morphogenesis
## GO:0035766                                                                                                         cell chemotaxis to fibroblast growth factor
## GO:0086064                                                                            cell communication by electrical coupling involved in cardiac conduction
## GO:0021814                                                                              cell motility involved in cerebral cortex radial glia guided migration
## GO:0033278                                                                                                                      cell proliferation in midbrain
## GO:0071476                                                                                                                         cellular hypotonic response
## GO:0046950                                                                                                              cellular ketone body metabolic process
## GO:0097384                                                                                                                 cellular lipid biosynthetic process
## GO:1903351                                                                                                                       cellular response to dopamine
## GO:0071362                                                                                                                          cellular response to ether
## GO:0071351                                                                                                                 cellular response to interleukin-18
## GO:0035865                                                                                                                  cellular response to potassium ion
## GO:0035356                                                                                                                   cellular triglyceride homeostasis
## GO:0051026                                                                                                                                    chiasma assembly
## GO:0006348                                                                                                                     chromatin silencing at telomere
## GO:0042747                                                                                                               circadian sleep/wake cycle, REM sleep
## GO:0072318                                                                                                                           clathrin coat disassembly
## GO:0036089                                                                                                                           cleavage furrow formation
## GO:0045162                                                                                                         clustering of voltage-gated sodium channels
## GO:0021902                                                                                    commitment of neuronal cell to specific neuron type in forebrain
## GO:0060029                                                                                                      convergent extension involved in organogenesis
## GO:0015677                                                                                                                                   copper ion import
## GO:0009804                                                                                                                          coumarin metabolic process
## GO:0051715                                                                                                                         cytolysis in other organism
## GO:0060318                                                                                                              definitive erythrocyte differentiation
## GO:0097048                                                                                                                    dendritic cell apoptotic process
## GO:0050655                                                                                                     dermatan sulfate proteoglycan metabolic process
## GO:0071907                                                                                               determination of digestive tract left/right asymmetry
## GO:0050904                                                                                                                                          diapedesis
## GO:0045003                                                                                 double-strand break repair via synthesis-dependent strand annealing
## GO:0036492                                                                               eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## GO:0051541                                                                                                                           elastin metabolic process
## GO:0048702                                                                                                                embryonic neurocranium morphogenesis
## GO:0060059                                                                                                   embryonic retina morphogenesis in camera-type eye
## GO:0003160                                                                                                                           endocardium morphogenesis
## GO:0032510                                                                              endosome to lysosome transport via multivesicular body sorting pathway
## GO:0035768                                                                                             endothelial cell chemotaxis to fibroblast growth factor
## GO:0060839                                                                                                                    endothelial cell fate commitment
## GO:0060664                                                                              epithelial cell proliferation involved in salivary gland morphogenesis
## GO:0060287                                                                        epithelial cilium movement involved in determination of left/right asymmetry
## GO:1902222                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:0071169                                                                                                  establishment of protein localization to chromatin
## GO:0071971                                                                                                                      extracellular exosome assembly
## GO:0048069                                                                                                                                    eye pigmentation
## GO:0060613                                                                                                                                 fat pad development
## GO:0034625                                                                                                   fatty acid elongation, monounsaturated fatty acid
## GO:0034626                                                                                                   fatty acid elongation, polyunsaturated fatty acid
## GO:0019367                                                                                                         fatty acid elongation, saturated fatty acid
## GO:0019368                                                                                                       fatty acid elongation, unsaturated fatty acid
## GO:0033504                                                                                                                             floor plate development
## GO:0021798                                                                                                          forebrain dorsal/ventral pattern formation
## GO:0061196                                                                                                                       fungiform papilla development
## GO:0019388                                                                                                                         galactose catabolic process
## GO:0006689                                                                                                                       ganglioside catabolic process
## GO:0033483                                                                                                                                     gas homeostasis
## GO:0030718                                                                                                          germ-line stem cell population maintenance
## GO:0061718                                                                                                               glucose catabolic process to pyruvate
## GO:0006678                                                                                                                  glucosylceramide metabolic process
## GO:0046477                                                                                                                  glycosylceramide catabolic process
## GO:0035701                                                                                                                   hematopoietic stem cell migration
## GO:0021578                                                                                                                                hindbrain maturation
## GO:0006547                                                                                                                         histidine metabolic process
## GO:0034720                                                                                                                         histone H3-K4 demethylation
## GO:0036123                                                                                                                         histone H3-K9 dimethylation
## GO:0043987                                                                                                                      histone H3-S10 phosphorylation
## GO:0097411                                                                                                   hypoxia-inducible factor-1alpha signaling pathway
## GO:0098596                                                                                                                                  imitative learning
## GO:0046218                                                                                                                   indolalkylamine catabolic process
## GO:0042436                                                                                                        indole-containing compound catabolic process
## GO:1990001                                                                    inhibition of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050703                                                                                                                       interleukin-1 alpha secretion
## GO:0050720                                                                                                             interleukin-1 beta biosynthetic process
## GO:0072603                                                                                                                             interleukin-5 secretion
## GO:0045110                                                                                                               intermediate filament bundle assembly
## GO:0120009                                                                                                                        intermembrane lipid transfer
## GO:0035735                                                                                                  intraciliary transport involved in cilium assembly
## GO:1990144                                                                                        intrinsic apoptotic signaling pathway in response to hypoxia
## GO:0008627                                                                                 intrinsic apoptotic signaling pathway in response to osmotic stress
## GO:0061072                                                                                                                                  iris morphogenesis
## GO:0006102                                                                                                                        isocitrate metabolic process
## GO:0048289                                                                                                                   isotype switching to IgE isotypes
## GO:0097283                                                                                                                      keratinocyte apoptotic process
## GO:0061439                                                                                                                    kidney vasculature morphogenesis
## GO:0032808                                                                                                                          lacrimal gland development
## GO:0006273                                                                                                                           lagging strand elongation
## GO:0070309                                                                                                                       lens fiber cell morphogenesis
## GO:0060235                                                                                                                   lens induction in camera-type eye
## GO:0006551                                                                                                                           leucine metabolic process
## GO:0060482                                                                                                                          lobar bronchus development
## GO:0060437                                                                                                                                         lung growth
## GO:0002249                                                                                                                                   lymphocyte anergy
## GO:0000395                                                                                                                     mRNA 5'-splice site recognition
## GO:0071608                                                                                                  macrophage inflammatory protein-1 alpha production
## GO:0061517                                                                                                                            macrophage proliferation
## GO:0043570                                                                                                                  maintenance of DNA repeat elements
## GO:0098880                                                                                                maintenance of postsynaptic specialization structure
## GO:0071694                                                                                             maintenance of protein location in extracellular region
## GO:0006108                                                                                                                            malate metabolic process
## GO:0060763                                                                                                                mammary duct terminal end bud growth
## GO:0042138                                                                                                           meiotic DNA double-strand break formation
## GO:0010032                                                                                                                     meiotic chromosome condensation
## GO:0098915                                                                     membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0072161                                                                                     mesenchymal cell differentiation involved in kidney development
## GO:2001012                                                                               mesenchymal cell differentiation involved in renal system development
## GO:0072038                                                                                 mesenchymal stem cell maintenance involved in nephron morphogenesis
## GO:0072282                                                                                                            metanephric nephron tubule morphogenesis
## GO:0009438                                                                                                                     methylglyoxal metabolic process
## GO:0035280                                                                                         miRNA loading onto RISC involved in gene silencing by miRNA
## GO:0061518                                                                                                                       microglial cell proliferation
## GO:0035931                                                                                                                         mineralocorticoid secretion
## GO:0042776                                                                                                mitochondrial ATP synthesis coupled proton transport
## GO:0061668                                                                                                                     mitochondrial ribosome assembly
## GO:0052428                                                                                                   modulation by host of symbiont molecular function
## GO:0044359                                                                                                  modulation of molecular function in other organism
## GO:0052205                                                                modulation of molecular function in other organism involved in symbiotic interaction
## GO:0043545                                                                                                            molybdopterin cofactor metabolic process
## GO:1903251                                                                                                      multi-ciliated epithelial cell differentiation
## GO:0044828                                                                                             negative regulation by host of viral genome replication
## GO:0050859                                                                                            negative regulation of B cell receptor signaling pathway
## GO:0032876                                                                                                        negative regulation of DNA endoreduplication
## GO:0039536                                                                                                      negative regulation of RIG-I signaling pathway
## GO:0010626                                                                                                   negative regulation of Schwann cell proliferation
## GO:0042985                                                                               negative regulation of amyloid precursor protein biosynthetic process
## GO:0002578                                                                                          negative regulation of antigen processing and presentation
## GO:1902338                                                                                  negative regulation of apoptotic process involved in morphogenesis
## GO:0010616                                                                                                    negative regulation of cardiac muscle adaptation
## GO:0033629                                                                                           negative regulation of cell adhesion mediated by integrin
## GO:1901977                                                                                                        negative regulation of cell cycle checkpoint
## GO:0045794                                                                                                                  negative regulation of cell volume
## GO:2000048                                                                                      negative regulation of cell-cell adhesion mediated by cadherin
## GO:0046600                                                                                                        negative regulation of centriole replication
## GO:0042321                                                                                            negative regulation of circadian sleep/wake cycle, sleep
## GO:0032811                                                                                                        negative regulation of epinephrine secretion
## GO:0060770                                                         negative regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070345                                                                                                       negative regulation of fat cell proliferation
## GO:0060467                                                                                                                negative regulation of fertilization
## GO:0051918                                                                                                                 negative regulation of fibrinolysis
## GO:0070874                                                                                                   negative regulation of glycogen metabolic process
## GO:0051799                                                                                                    negative regulation of hair follicle development
## GO:0035331                                                                                                              negative regulation of hippo signaling
## GO:1900113                                                                                                 negative regulation of histone H3-K9 trimethylation
## GO:0010727                                                                                          negative regulation of hydrogen peroxide metabolic process
## GO:1903208                                                                                       negative regulation of hydrogen peroxide-induced neuron death
## GO:0032713                                                                                                     negative regulation of interleukin-4 production
## GO:0045409                                                                                           negative regulation of interleukin-6 biosynthetic process
## GO:0010989                                                                                   negative regulation of low-density lipoprotein particle clearance
## GO:0010760                                                                                                        negative regulation of macrophage chemotaxis
## GO:0033600                                                                                  negative regulation of mammary gland epithelial cell proliferation
## GO:0051045                                                                                      negative regulation of membrane protein ectodomain proteolysis
## GO:1903979                                                                                                   negative regulation of microglial cell activation
## GO:0071638                                                                                    negative regulation of monocyte chemotactic protein-1 production
## GO:0045656                                                                                                     negative regulation of monocyte differentiation
## GO:0071676                                                                                                   negative regulation of mononuclear cell migration
## GO:0032074                                                                                                            negative regulation of nuclease activity
## GO:0060283                                                                                                           negative regulation of oocyte development
## GO:1905880                                                                                                                    negative regulation of oogenesis
## GO:1903753                                                                                                              negative regulation of p38MAPK cascade
## GO:0010519                                                                                                       negative regulation of phospholipase activity
## GO:1902915                                                                                                   negative regulation of protein polyubiquitination
## GO:0060268                                                                                                            negative regulation of respiratory burst
## GO:0048387                                                                                     negative regulation of retinoic acid receptor signaling pathway
## GO:1902455                                                                                             negative regulation of stem cell population maintenance
## GO:0016479                                                                                            negative regulation of transcription by RNA polymerase I
## GO:0051970                                                                                                negative regulation of transmission of nerve impulse
## GO:1900747                                                                         negative regulation of vascular endothelial growth factor signaling pathway
## GO:0038007                                                                                                                  netrin-activated signaling pathway
## GO:1901166                                                                        neural crest cell migration involved in autonomic nervous system development
## GO:0060897                                                                                                                        neural plate regionalization
## GO:0036476                                                                                                       neuron death in response to hydrogen peroxide
## GO:0099011                                                                                                              neuronal dense core vesicle exocytosis
## GO:0098943                                                                              neurotransmitter receptor transport, postsynaptic endosome to lysosome
## GO:0070945                                                                                              neutrophil mediated killing of gram-negative bacterium
## GO:1900164                                                          nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## GO:0038107                                                                           nodal signaling pathway involved in determination of left/right asymmetry
## GO:0038030                                                                                                non-canonical Wnt signaling pathway via MAPK cascade
## GO:0030473                                                                                                                 nuclear migration along microtubule
## GO:0002072                                                                                     optic cup morphogenesis involved in camera-type eye development
## GO:0015822                                                                                                                                 ornithine transport
## GO:0072675                                                                                                                                   osteoclast fusion
## GO:0015671                                                                                                                                    oxygen transport
## GO:0045852                                                                                                                                        pH elevation
## GO:0038001                                                                                                                                 paracrine signaling
## GO:0030046                                                                                                             parallel actin filament bundle assembly
## GO:0030913                                                                                                                         paranodal junction assembly
## GO:0060017                                                                                                                       parathyroid gland development
## GO:0035247                                                                                                               peptidyl-arginine omega-N-methylation
## GO:0036166                                                                                                                                phenotypic switching
## GO:0009698                                                                                                                   phenylpropanoid metabolic process
## GO:0006655                                                                                                           phosphatidylglycerol biosynthetic process
## GO:0070782                                                                                               phosphatidylserine exposure on apoptotic cell surface
## GO:0060158                                                                                      phospholipase C-activating dopamine receptor signaling pathway
## GO:0008594                                                                                                                    photoreceptor cell morphogenesis
## GO:0044857                                                                                                                   plasma membrane raft organization
## GO:0048227                                                                                                               plasma membrane to endosome transport
## GO:0002576                                                                                                                              platelet degranulation
## GO:0051694                                                                                                                  pointed-end actin filament capping
## GO:0043634                                                                                                   polyadenylation-dependent ncRNA catabolic process
## GO:0071051                                                                                                  polyadenylation-dependent snoRNA 3'-end processing
## GO:0050861                                                                                            positive regulation of B cell receptor signaling pathway
## GO:0060369                                                                           positive regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1900227                                                                                          positive regulation of NLRP3 inflammasome complex assembly
## GO:0002666                                                                                                   positive regulation of T cell tolerance induction
## GO:2000553                                                                                          positive regulation of T-helper 2 cell cytokine production
## GO:0045630                                                                                              positive regulation of T-helper 2 cell differentiation
## GO:1905653                                                                                                         positive regulation of artery morphogenesis
## GO:1902961                                 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0048842                                                                                     positive regulation of axon extension involved in axon guidance
## GO:0003321                                                                                 positive regulation of blood pressure by epinephrine-norepinephrine
## GO:0045915                                                                                              positive regulation of catecholamine metabolic process
## GO:2000138                                                                           positive regulation of cell proliferation involved in heart morphogenesis
## GO:2000049                                                                                      positive regulation of cell-cell adhesion mediated by cadherin
## GO:0033634                                                                                      positive regulation of cell-cell adhesion mediated by integrin
## GO:2001040                                                                                                    positive regulation of cellular response to drug
## GO:0010886                                                                                                          positive regulation of cholesterol storage
## GO:1902732                                                                                                    positive regulation of chondrocyte proliferation
## GO:1904798                                                                                                        positive regulation of core promoter binding
## GO:0051461                                                                                                      positive regulation of corticotropin secretion
## GO:2000510                                                                                                    positive regulation of dendritic cell chemotaxis
## GO:0002732                                                                                           positive regulation of dendritic cell cytokine production
## GO:0045964                                                                                                   positive regulation of dopamine metabolic process
## GO:2000698                                                               positive regulation of epithelial cell differentiation involved in kidney development
## GO:0060501                                                                 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0060054                                                                      positive regulation of epithelial cell proliferation involved in wound healing
## GO:2000271                                                                                                 positive regulation of fibroblast apoptotic process
## GO:0014054                                                                                            positive regulation of gamma-aminobutyric acid secretion
## GO:1904306                                                                           positive regulation of gastro-intestinal system smooth muscle contraction
## GO:1903301                                                                                                          positive regulation of hexokinase activity
## GO:0061087                                                                                                   positive regulation of histone H3-K27 methylation
## GO:0045359                                                                                         positive regulation of interferon-beta biosynthetic process
## GO:0060335                                                                                  positive regulation of interferon-gamma-mediated signaling pathway
## GO:1900042                                                                                                      positive regulation of interleukin-2 secretion
## GO:0051351                                                                                                              positive regulation of ligase activity
## GO:0048170                                                                                       positive regulation of long-term neuronal synaptic plasticity
## GO:0060754                                                                                                         positive regulation of mast cell chemotaxis
## GO:0048023                                                                                                 positive regulation of melanin biosynthetic process
## GO:1905050                                                                                                    positive regulation of metallopeptidase activity
## GO:1903980                                                                                                   positive regulation of microglial cell activation
## GO:0090267                                                                               positive regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0002860                                                 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0032819                                                                                            positive regulation of natural killer cell proliferation
## GO:0010940                                                                                                          positive regulation of necrotic cell death
## GO:0014042                                                                                                            positive regulation of neuron maturation
## GO:0150012                                                                                               positive regulation of neuron projection arborization
## GO:0051582                                                                                                      positive regulation of neurotransmitter uptake
## GO:0032241                                                                                     positive regulation of nucleobase-containing compound transport
## GO:1902177                                                               positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903223                                                                                        positive regulation of oxidative stress-induced neuron death
## GO:0050942                                                                                                 positive regulation of pigment cell differentiation
## GO:1903288                                                                                                         positive regulation of potassium ion import
## GO:1903003                                                                                                     positive regulation of protein deubiquitination
## GO:1900020                                                                                                    positive regulation of protein kinase C activity
## GO:1904781                                                                                           positive regulation of protein localization to centrosome
## GO:1903955                                                                                           positive regulation of protein targeting to mitochondrion
## GO:0060332                                                                                                 positive regulation of response to interferon-gamma
## GO:0010890                                                                                                 positive regulation of sequestering of triglyceride
## GO:2001016                                                                                         positive regulation of skeletal muscle cell differentiation
## GO:0090232                                                                                                           positive regulation of spindle checkpoint
## GO:0032226                                                                                          positive regulation of synaptic transmission, dopaminergic
## GO:0034137                                                                                       positive regulation of toll-like receptor 2 signaling pathway
## GO:0034141                                                                                       positive regulation of toll-like receptor 3 signaling pathway
## GO:1904668                                                                                            positive regulation of ubiquitin protein ligase activity
## GO:1905461                                                                     positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0048050                                                                                                                    post-embryonic eye morphogenesis
## GO:0036388                                                                                                                    pre-replicative complex assembly
## GO:1902299                                                                             pre-replicative complex assembly involved in cell cycle DNA replication
## GO:0006267                                                                     pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## GO:0099525                                                                                                           presynaptic dense core vesicle exocytosis
## GO:0031053                                                                                                                            primary miRNA processing
## GO:0030422                                                                                                    production of siRNA involved in RNA interference
## GO:0070459                                                                                                                                 prolactin secretion
## GO:0060527                                                           prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## GO:0060526                                                                                                             prostate glandular acinus morphogenesis
## GO:0051189                                                                                                                  prosthetic group metabolic process
## GO:0042270                                                                                           protection from natural killer cell mediated cytotoxicity
## GO:0036066                                                                                                                       protein O-linked fucosylation
## GO:0045048                                                                                                                  protein insertion into ER membrane
## GO:1903608                                                                                                  protein localization to cytoplasmic stress granule
## GO:0070973                                                                                             protein localization to endoplasmic reticulum exit site
## GO:0070212                                                                                                                       protein poly-ADP-ribosylation
## GO:0006627                                                                                   protein processing involved in protein targeting to mitochondrion
## GO:0006621                                                                                                                       protein retention in ER lumen
## GO:0043461                                                                                                   proton-transporting ATP synthase complex assembly
## GO:0070070                                                                                                  proton-transporting V-type ATPase complex assembly
## GO:0061156                                                                                                                      pulmonary artery morphogenesis
## GO:0009155                                                                                                        purine deoxyribonucleotide catabolic process
## GO:0006145                                                                                                                 purine nucleobase catabolic process
## GO:0009146                                                                                                    purine nucleoside triphosphate catabolic process
## GO:0034035                                                                                                purine ribonucleoside bisphosphate metabolic process
## GO:0009445                                                                                                                        putrescine metabolic process
## GO:0046135                                                                                                             pyrimidine nucleoside catabolic process
## GO:0021942                                                                                                       radial glia guided migration of Purkinje cell
## GO:0038026                                                                                                                   reelin-mediated signaling pathway
## GO:1904717                                                                                                    regulation of AMPA glutamate receptor clustering
## GO:1901535                                                                                                                     regulation of DNA demethylation
## GO:1905449                                                                          regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:1903897                                                                                               regulation of PERK-mediated unfolded protein response
## GO:0002667                                                                                                                         regulation of T cell anergy
## GO:0010533                                                                                                   regulation of activation of Janus kinase activity
## GO:2000858                                                                                                                 regulation of aldosterone secretion
## GO:1905906                                                                                                              regulation of amyloid fibril formation
## GO:0002002                                                                                                           regulation of angiotensin levels in blood
## GO:0002583                                                                                regulation of antigen processing and presentation of peptide antigen
## GO:0002759                                                                                                        regulation of antimicrobial humoral response
## GO:2000425                                                                                                              regulation of apoptotic cell clearance
## GO:0060372                                                                                    regulation of atrial cardiac muscle cell membrane repolarization
## GO:0061046                                                                                              regulation of branching involved in lung morphogenesis
## GO:0060558                                                                                                    regulation of calcidiol 1-monooxygenase activity
## GO:1905664                                                                                             regulation of calcium ion import across plasma membrane
## GO:0060353                                                                                                     regulation of cell adhesion molecule production
## GO:1904847                                                                                           regulation of cell chemotaxis to fibroblast growth factor
## GO:0070099                                                                                                  regulation of chemokine-mediated signaling pathway
## GO:0042320                                                                                                 regulation of circadian sleep/wake cycle, REM sleep
## GO:2000668                                                                                                      regulation of dendritic cell apoptotic process
## GO:2001198                                                                                                        regulation of dendritic cell differentiation
## GO:1904732                                                                                                            regulation of electron transfer activity
## GO:0032071                                                                                                        regulation of endodeoxyribonuclease activity
## GO:2000544                                                                               regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:0003330                                                                                            regulation of extracellular matrix constituent secretion
## GO:2000653                                                                                                                    regulation of genetic imprinting
## GO:1905936                                                                                                               regulation of germ cell proliferation
## GO:0106104                                                                                                         regulation of glutamate receptor clustering
## GO:0031282                                                                                                            regulation of guanylate cyclase activity
## GO:0071440                                                                                                            regulation of histone H3-K14 acetylation
## GO:2000618                                                                                                            regulation of histone H4-K16 acetylation
## GO:1903207                                                                                                regulation of hydrogen peroxide-induced neuron death
## GO:0032960                                                                                           regulation of inositol trisphosphate biosynthetic process
## GO:2000665                                                                                                              regulation of interleukin-13 secretion
## GO:2000662                                                                                                               regulation of interleukin-5 secretion
## GO:0048296                                                                                                     regulation of isotype switching to IgA isotypes
## GO:0048293                                                                                                     regulation of isotype switching to IgE isotypes
## GO:1902172                                                                                                        regulation of keratinocyte apoptotic process
## GO:0045714                                                                        regulation of low-density lipoprotein particle receptor biosynthetic process
## GO:1901490                                                                                                                     regulation of lymphangiogenesis
## GO:0002911                                                                                                                     regulation of lymphocyte anergy
## GO:2000254                                                                                                          regulation of male germ cell proliferation
## GO:0045634                                                                                                            regulation of melanocyte differentiation
## GO:0098903                                                                                       regulation of membrane repolarization during action potential
## GO:2000739                                                                                                 regulation of mesenchymal stem cell differentiation
## GO:1905902                                                                                                                    regulation of mesoderm formation
## GO:1905770                                                                                                       regulation of mesodermal cell differentiation
## GO:0042661                                                                                                    regulation of mesodermal cell fate specification
## GO:0090235                                                                                                           regulation of metaphase plate congression
## GO:0032532                                                                                                                    regulation of microvillus length
## GO:2000855                                                                                                           regulation of mineralocorticoid secretion
## GO:0000019                                                                                                                 regulation of mitotic recombination
## GO:0030885                                                                                                     regulation of myeloid dendritic cell activation
## GO:0061074                                                                                                             regulation of neural retina development
## GO:1900107                                                                                                               regulation of nodal signaling pathway
## GO:2000354                                                                                                          regulation of ovarian follicle development
## GO:1900084                                                                                                 regulation of peptidyl-tyrosine autophosphorylation
## GO:0010511                                                                                             regulation of phosphatidylinositol biosynthetic process
## GO:1902302                                                                                                                  regulation of potassium ion export
## GO:1903764                                                                                           regulation of potassium ion export across plasma membrane
## GO:1904350                                                                                              regulation of protein catabolic process in the vacuole
## GO:1900019                                                                                                             regulation of protein kinase C activity
## GO:1901897                                                                                                          regulation of relaxation of cardiac muscle
## GO:0060075                                                                                                            regulation of resting membrane potential
## GO:2000197                                                                                                regulation of ribonucleoprotein complex localization
## GO:2001260                                                                                                   regulation of semaphorin-plexin signaling pathway
## GO:0003025                                                                             regulation of systemic arterial blood pressure by baroreceptor feedback
## GO:1904872                                                                                             regulation of telomerase RNA localization to Cajal body
## GO:0003057                                                                                     regulation of the force of heart contraction by chemical signal
## GO:1900094                                        regulation of transcription from RNA polymerase II promoter involved in determination of left/right symmetry
## GO:0003256                                   regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## GO:1901388                                                                                            regulation of transforming growth factor beta activation
## GO:0140243                                                                                                                regulation of translation at synapse
## GO:0099547                                                                              regulation of translation at synapse, modulating synaptic transmission
## GO:0036491                                                                    regulation of translation initiation in response to endoplasmic reticulum stress
## GO:0060373                                                                               regulation of ventricular cardiac muscle cell membrane depolarization
## GO:0061438                                                                                                              renal system vasculature morphogenesis
## GO:0003097                                                                                                                               renal water transport
## GO:0002001                                                                                                                   renin secretion into blood stream
## GO:0002536                                                                                                 respiratory burst involved in inflammatory response
## GO:0072423                                                                                                         response to DNA damage checkpoint signaling
## GO:0072402                                                                                                      response to DNA integrity checkpoint signaling
## GO:1902065                                                                                                                             response to L-glutamate
## GO:0070141                                                                                                                                    response to UV-A
## GO:0032493                                                                                                                   response to bacterial lipoprotein
## GO:0070305                                                                                                                                    response to cGMP
## GO:0072396                                                                                                         response to cell cycle checkpoint signaling
## GO:1903350                                                                                                                                response to dopamine
## GO:0033762                                                                                                                                response to glucagon
## GO:0009635                                                                                                                               response to herbicide
## GO:0035864                                                                                                                           response to potassium ion
## GO:0000056                                                                                                         ribosomal small subunit export from nucleus
## GO:0032790                                                                                                                                ribosome disassembly
## GO:0051610                                                                                                                                    serotonin uptake
## GO:0014719                                                                                                           skeletal muscle satellite cell activation
## GO:0021910                                                                             smoothened signaling pathway involved in ventral spinal cord patterning
## GO:0044341                                                                                                                sodium-dependent phosphate transport
## GO:0008215                                                                                                                          spermine metabolic process
## GO:0090306                                                                                                                spindle assembly involved in meiosis
## GO:0051231                                                                                                                                  spindle elongation
## GO:0051255                                                                                                                            spindle midzone assembly
## GO:0048682                                                                                                                           sprouting of injured axon
## GO:0090400                                                                                                                 stress-induced premature senescence
## GO:0060012                                                                                                                  synaptic transmission, glycinergic
## GO:0036466                                                                                                             synaptic vesicle recycling via endosome
## GO:0019530                                                                                                                           taurine metabolic process
## GO:0035989                                                                                                                                  tendon development
## GO:0006369                                                                                                      termination of RNA polymerase II transcription
## GO:0006729                                                                                                            tetrahydrobiopterin biosynthetic process
## GO:0006566                                                                                                                         threonine metabolic process
## GO:0072679                                                                                                                                 thymocyte migration
## GO:0002154                                                                                                          thyroid hormone mediated signaling pathway
## GO:0034154                                                                                                              toll-like receptor 7 signaling pathway
## GO:0060440                                                                                                                                   trachea formation
## GO:0003186                                                                                                                       tricuspid valve morphogenesis
## GO:0006569                                                                                                                        tryptophan catabolic process
## GO:0014721                                                                                                                  twitch skeletal muscle contraction
## GO:0060509                                                                                                                   type I pneumocyte differentiation
## GO:0060510                                                                                                                  type II pneumocyte differentiation
## GO:0060676                                                                                                                              ureteric bud formation
## GO:0034379                                                                                                      very-low-density lipoprotein particle assembly
## GO:0099022                                                                                                                                   vesicle tethering
## GO:0046784                                                                                                            viral mRNA export from host cell nucleus
## GO:0019062                                                                                                                      virion attachment to host cell
## GO:0042297                                                                                                                                      vocal learning
## GO:0003010                                                                                                               voluntary skeletal muscle contraction
## GO:0009452                                                                                                                       7-methylguanosine RNA capping
## GO:0061762                                                                                                                        CAMKK-AMPK signaling cascade
## GO:0023035                                                                                                                              CD40 signaling pathway
## GO:0035740                                                                                                       CD8-positive, alpha-beta T cell proliferation
## GO:0042940                                                                                                                              D-amino acid transport
## GO:0042769                                                                                                        DNA damage response, detection of DNA damage
## GO:0043045                                                                                                      DNA methylation involved in embryo development
## GO:0098664                                                                                              G protein-coupled serotonin receptor signaling pathway
## GO:0070314                                                                                                                                 G1 to G0 transition
## GO:0090160                                                                                                                         Golgi to lysosome transport
## GO:0006188                                                                                                                            IMP biosynthetic process
## GO:0016266                                                                                                                                 O-glycan processing
## GO:0036260                                                                                                                                         RNA capping
## GO:0090670                                                                                                                      RNA localization to Cajal body
## GO:0090685                                                                                                                         RNA localization to nucleus
## GO:0010501                                                                                                                   RNA secondary structure unwinding
## GO:0035385                                                                                                                        Roundabout signaling pathway
## GO:0072050                                                                                                                         S-shaped body morphogenesis
## GO:0038203                                                                                                                                     TORC2 signaling
## GO:0034475                                                                                                                          U4 snRNA 3'-end processing
## GO:0006228                                                                                                                            UTP biosynthetic process
## GO:0060478                                                                                                                        acrosomal vesicle exocytosis
## GO:0090527                                                                                                                       actin filament reorganization
## GO:0099515                                                                                                                      actin filament-based transport
## GO:0000185                                                                                                                       activation of MAPKKK activity
## GO:0051503                                                                                                                        adenine nucleotide transport
## GO:0007197                                                             adenylate cyclase-inhibiting G protein-coupled acetylcholine receptor signaling pathway
## GO:0034334                                                                                                                       adherens junction maintenance
## GO:0044650                                                                                                                   adhesion of symbiont to host cell
## GO:0035973                                                                                                                                          aggrephagy
## GO:0046349                                                                                                                    amino sugar biosynthetic process
## GO:0015838                                                                                                                        amino-acid betaine transport
## GO:0097065                                                                                                                           anterior head development
## GO:0043615                                                                                                                            astrocyte cell migration
## GO:0055009                                                                                                          atrial cardiac muscle tissue morphogenesis
## GO:0003190                                                                                                                    atrioventricular valve formation
## GO:0035425                                                                                                                                 autocrine signaling
## GO:0072378                                                                                                            blood coagulation, fibrin clot formation
## GO:0002035                                                                                                                      brain renin-angiotensin system
## GO:0015670                                                                                                                            carbon dioxide transport
## GO:0003348                                                                                                            cardiac endothelial cell differentiation
## GO:0060923                                                                                                                 cardiac muscle cell fate commitment
## GO:0042637                                                                                                                                             catagen
## GO:0043697                                                                                                                              cell dedifferentiation
## GO:0110095                                                                                                                 cellular detoxification of aldehyde
## GO:0072501                                                                                                       cellular divalent inorganic anion homeostasis
## GO:0030643                                                                                                                  cellular phosphate ion homeostasis
## GO:0071493                                                                                                                           cellular response to UV-B
## GO:0071313                                                                                                                       cellular response to caffeine
## GO:0071420                                                                                                                      cellular response to histamine
## GO:0071447                                                                                                                  cellular response to hydroperoxide
## GO:1990314                                                                                            cellular response to insulin-like growth factor stimulus
## GO:0072502                                                                                                      cellular trivalent inorganic anion homeostasis
## GO:0021626                                                                                                                   central nervous system maturation
## GO:0021894                                                                                                   cerebral cortex GABAergic interneuron development
## GO:1901538                                                                                           changes to DNA methylation involved in embryo development
## GO:0006032                                                                                                                            chitin catabolic process
## GO:0006030                                                                                                                            chitin metabolic process
## GO:0000052                                                                                                                        citrulline metabolic process
## GO:0009235                                                                                                                         cobalamin metabolic process
## GO:0060242                                                                                                                                  contact inhibition
## GO:0060027                                                                                                       convergent extension involved in gastrulation
## GO:0021540                                                                                                                       corpus callosum morphogenesis
## GO:0034651                                                                                                                       cortisol biosynthetic process
## GO:0021603                                                                                                                             cranial nerve formation
## GO:0060363                                                                                                                        cranial suture morphogenesis
## GO:0002182                                                                                                                cytoplasmic translational elongation
## GO:0046060                                                                                                                              dATP metabolic process
## GO:0043696                                                                                                                                   dedifferentiation
## GO:0140059                                                                                                                               dendrite arborization
## GO:0009120                                                                                                               deoxyribonucleoside metabolic process
## GO:0009162                                                                                                 deoxyribonucleoside monophosphate metabolic process
## GO:0009204                                                                                                  deoxyribonucleoside triphosphate catabolic process
## GO:0005513                                                                                                                            detection of calcium ion
## GO:0061687                                                                                                                detoxification of inorganic compound
## GO:0015959                                                                                                         diadenosine polyphosphate metabolic process
## GO:0035912                                                                                                                          dorsal aorta morphogenesis
## GO:0034498                                                                                                                   early endosome to Golgi transport
## GO:0040016                                                                                                                                  embryonic cleavage
## GO:0001714                                                                                                                  endodermal cell fate specification
## GO:0051643                                                                                                                  endoplasmic reticulum localization
## GO:0090158                                                                                                         endoplasmic reticulum membrane organization
## GO:0042045                                                                                                                          epithelial fluid transport
## GO:0051683                                                                                                                 establishment of Golgi localization
## GO:0097368                                                                                                               establishment of Sertoli cell barrier
## GO:0034085                                                                                                          establishment of sister chromatid cohesion
## GO:0006067                                                                                                                           ethanol metabolic process
## GO:0098881                                                                                  exocytic insertion of neurotransmitter receptor to plasma membrane
## GO:0098967                                                                            exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## GO:0000459                                                                                                 exonucleolytic trimming involved in rRNA processing
## GO:0000467                    exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042363                                                                                                               fat-soluble vitamin catabolic process
## GO:1902001                                                                                                                  fatty acid transmembrane transport
## GO:0007144                                                                                                                                    female meiosis I
## GO:0016321                                                                                                               female meiosis chromosome segregation
## GO:0021861                                                                                                         forebrain radial glial cell differentiation
## GO:0001325                                                                                                          formation of extrachromosomal circular DNA
## GO:0072310                                                                                                              glomerular epithelial cell development
## GO:0072015                                                                                                     glomerular visceral epithelial cell development
## GO:0016139                                                                                                                         glycoside catabolic process
## GO:0061484                                                                                                                 hematopoietic stem cell homeostasis
## GO:0007442                                                                                                                               hindgut morphogenesis
## GO:0043983                                                                                                                          histone H4-K12 acetylation
## GO:0035404                                                                                                                      histone-serine phosphorylation
## GO:0030214                                                                                                                        hyaluronan catabolic process
## GO:0021979                                                                                                                   hypothalamus cell differentiation
## GO:0042435                                                                                                     indole-containing compound biosynthetic process
## GO:0001826                                                                                                                inner cell mass cell differentiation
## GO:0072611                                                                                                                            interleukin-13 secretion
## GO:0032627                                                                                                                           interleukin-23 production
## GO:0097376                                                                                                                           interneuron axon guidance
## GO:0097286                                                                                                                                     iron ion import
## GO:0048290                                                                                                                   isotype switching to IgA isotypes
## GO:0032511                                                                          late endosome to vacuole transport via multivesicular body sorting pathway
## GO:0019372                                                                                                                                lipoxygenase pathway
## GO:0042758                                                                                                             long-chain fatty acid catabolic process
## GO:0045713                                                                                      low-density lipoprotein particle receptor biosynthetic process
## GO:0060836                                                                                                          lymphatic endothelial cell differentiation
## GO:0034238                                                                                                                                   macrophage fusion
## GO:0010216                                                                                                                      maintenance of DNA methylation
## GO:0022605                                                                                                                           mammalian oogenesis stage
## GO:0033313                                                                                                                       meiotic cell cycle checkpoint
## GO:0072205                                                                                                             metanephric collecting duct development
## GO:0072239                                                                                                      metanephric glomerulus vasculature development
## GO:0061732                                                                                         mitochondrial acetyl-CoA biosynthetic process from pyruvate
## GO:0035696                                                                                                                              monocyte extravasation
## GO:0061744                                                                                                                                      motor behavior
## GO:0014908                                                                                    myotube differentiation involved in skeletal muscle regeneration
## GO:2000562                                                                                negative regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0051126                                                                                                             negative regulation of actin nucleation
## GO:1900222                                                                                                       negative regulation of amyloid-beta clearance
## GO:1904746                                                                                    negative regulation of apoptotic process involved in development
## GO:1903147                                                                                                   negative regulation of autophagy of mitochondrion
## GO:2000480                                                                                       negative regulation of cAMP-dependent protein kinase activity
## GO:0009996                                                                                                      negative regulation of cell fate specification
## GO:0002692                                                                                                       negative regulation of cellular extravasation
## GO:1902548                                                             negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0045916                                                                                                        negative regulation of complement activation
## GO:2000766                                                                                                      negative regulation of cytoplasmic translation
## GO:0061002                                                                                                negative regulation of dendritic spine morphogenesis
## GO:0010764                                                                                                         negative regulation of fibroblast migration
## GO:0060455                                                                                                       negative regulation of gastric acid secretion
## GO:2000542                                                                                                                 negative regulation of gastrulation
## GO:1905940                                                                                                            negative regulation of gonad development
## GO:0032277                                                                                                       negative regulation of gonadotropin secretion
## GO:1905098                                                                                   negative regulation of guanyl-nucleotide exchange factor activity
## GO:0042636                                                                                                                   negative regulation of hair cycle
## GO:1901533                                                                                negative regulation of hematopoietic progenitor cell differentiation
## GO:1901299                                                                             negative regulation of hydrogen peroxide-mediated programmed cell death
## GO:0090084                                                                                                      negative regulation of inclusion body assembly
## GO:0031441                                                                                                       negative regulation of mRNA 3'-end processing
## GO:1900364                                                                                                         negative regulation of mRNA polyadenylation
## GO:0033007                                                                             negative regulation of mast cell activation involved in immune response
## GO:1905709                                                                                                        negative regulation of membrane permeability
## GO:0072201                                                                                               negative regulation of mesenchymal cell proliferation
## GO:1901029                                        negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:0032815                                                                                               negative regulation of natural killer cell activation
## GO:0051581                                                                                                      negative regulation of neurotransmitter uptake
## GO:0010700                                                                                                     negative regulation of norepinephrine secretion
## GO:0090324                                                                                                    negative regulation of oxidative phosphorylation
## GO:1903726                                                                                               negative regulation of phospholipid metabolic process
## GO:2000258                                                                                                   negative regulation of protein activation cascade
## GO:0044387                                                             negative regulation of protein kinase activity by regulation of protein phosphorylation
## GO:0035814                                                                                                       negative regulation of renal sodium excretion
## GO:0032229                                                                                             negative regulation of synaptic transmission, GABAergic
## GO:0034144                                                                                       negative regulation of toll-like receptor 4 signaling pathway
## GO:1905064                                                                                  negative regulation of vascular smooth muscle cell differentiation
## GO:0046958                                                                                                                             nonassociative learning
## GO:0007000                                                                                                                              nucleolus organization
## GO:0009133                                                                                                         nucleoside diphosphate biosynthetic process
## GO:1901642                                                                                                                  nucleoside transmembrane transport
## GO:0038003                                                                                                                   opioid receptor signaling pathway
## GO:0030916                                                                                                                              otic vesicle formation
## GO:0007008                                                                                                           outer mitochondrial membrane organization
## GO:0019800                                                                                   peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## GO:0035246                                                                                                                     peptidyl-arginine N-methylation
## GO:0018202                                                                                                                     peptidyl-histidine modification
## GO:0034983                                                                                                                       peptidyl-lysine deacetylation
## GO:0017185                                                                                                                       peptidyl-lysine hydroxylation
## GO:0018401                                                                                               peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## GO:0036289                                                                                                                 peptidyl-serine autophosphorylation
## GO:0032287                                                                                                        peripheral nervous system myelin maintenance
## GO:0090385                                                                                                                           phagosome-lysosome fusion
## GO:0036092                                                                                               phosphatidylinositol-3-phosphate biosynthetic process
## GO:0015911                                                                                                     plasma membrane long-chain fatty acid transport
## GO:0043633                                                                                                     polyadenylation-dependent RNA catabolic process
## GO:0016093                                                                                                                        polyprenol metabolic process
## GO:0044829                                                                                             positive regulation by host of viral genome replication
## GO:2000601                                                                                     positive regulation of Arp2/3 complex-mediated actin nucleation
## GO:1900264                                                                                         positive regulation of DNA-directed DNA polymerase activity
## GO:0051135                                                                                                         positive regulation of NK T cell activation
## GO:1904783                                                                                             positive regulation of NMDA glutamate receptor activity
## GO:1900246                                                                                                      positive regulation of RIG-I signaling pathway
## GO:0045627                                                                                              positive regulation of T-helper 1 cell differentiation
## GO:2000096                                                                          positive regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:1904747                                                                                    positive regulation of apoptotic process involved in development
## GO:1902339                                                                                  positive regulation of apoptotic process involved in morphogenesis
## GO:1905247                                                                                             positive regulation of aspartic-type peptidase activity
## GO:2000987                                                                                                     positive regulation of behavioral fear response
## GO:0062043                                                                                 positive regulation of cardiac epithelial to mesenchymal transition
## GO:0010455                                                                                                         positive regulation of cell fate commitment
## GO:0038089                                                       positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## GO:0045542                                                                                             positive regulation of cholesterol biosynthetic process
## GO:0090205                                                                                                positive regulation of cholesterol metabolic process
## GO:0045919                                                                                                                    positive regulation of cytolysis
## GO:0048087                                                                                                   positive regulation of developmental pigmentation
## GO:2000643                                                                                    positive regulation of early endosome to late endosome transport
## GO:1903367                                                                                                                positive regulation of fear response
## GO:0045743                                                                          positive regulation of fibroblast growth factor receptor signaling pathway
## GO:2000543                                                                                                                 positive regulation of gastrulation
## GO:0072126                                                                                      positive regulation of glomerular mesangial cell proliferation
## GO:0097151                                                                                            positive regulation of inhibitory postsynaptic potential
## GO:0045362                                                                                           positive regulation of interleukin-1 biosynthetic process
## GO:1902255                                                                  positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0031666                                                                                positive regulation of lipopolysaccharide-mediated signaling pathway
## GO:1902416                                                                                                                 positive regulation of mRNA binding
## GO:0033601                                                                                  positive regulation of mammary gland epithelial cell proliferation
## GO:0045654                                                                                                positive regulation of megakaryocyte differentiation
## GO:0045842                                                                                        positive regulation of mitotic metaphase/anaphase transition
## GO:1901970                                                                                          positive regulation of mitotic sister chromatid separation
## GO:0014744                                                                                                            positive regulation of muscle adaptation
## GO:0002857                                                                   positive regulation of natural killer cell mediated immune response to tumor cell
## GO:0150078                                                                                                   positive regulation of neuroinflammatory response
## GO:0051388                                                                                  positive regulation of neurotrophin TRK receptor signaling pathway
## GO:0035360                                                                 positive regulation of peroxisome proliferator activated receptor signaling pathway
## GO:1901628                                                                                           positive regulation of postsynaptic membrane organization
## GO:0031394                                                                                           positive regulation of prostaglandin biosynthetic process
## GO:0060050                                                                                                        positive regulation of protein glycosylation
## GO:1900378                                                                                    positive regulation of secondary metabolite biosynthetic process
## GO:0048743                                                                                            positive regulation of skeletal muscle fiber development
## GO:0106120                                                                                                  positive regulation of sterol biosynthetic process
## GO:1901341                                                                                      positive regulation of store-operated calcium channel activity
## GO:2000809                                                                                                  positive regulation of synaptic vesicle clustering
## GO:1903265                                                                             positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:0001812                                                                                                      positive regulation of type I hypersensitivity
## GO:1904417                                                                                                                    positive regulation of xenophagy
## GO:0034310                                                                                                                   primary alcohol catabolic process
## GO:0050847                                                                                                             progesterone receptor signaling pathway
## GO:0048793                                                                                                                              pronephros development
## GO:0085020                                                                                                                    protein K6-linked ubiquitination
## GO:0018243                                                                                                        protein O-linked glycosylation via threonine
## GO:0018344                                                                                                                         protein geranylgeranylation
## GO:0045039                                                                                                    protein import into mitochondrial inner membrane
## GO:1904491                                                                                                     protein localization to ciliary transition zone
## GO:0071692                                                                                                        protein localization to extracellular region
## GO:0018065                                                                                                                            protein-cofactor linkage
## GO:0009113                                                                                                              purine nucleobase biosynthetic process
## GO:0009169                                                                                               purine ribonucleoside monophosphate catabolic process
## GO:0015868                                                                                                                     purine ribonucleotide transport
## GO:0043101                                                                                                                  purine-containing compound salvage
## GO:0072526                                                                                                      pyridine-containing compound catabolic process
## GO:0019856                                                                                                          pyrimidine nucleobase biosynthetic process
## GO:0009130                                                                                            pyrimidine nucleoside monophosphate biosynthetic process
## GO:0070475                                                                                                                               rRNA base methylation
## GO:2000564                                                                                         regulation of CD8-positive, alpha-beta T cell proliferation
## GO:1900262                                                                                                  regulation of DNA-directed DNA polymerase activity
## GO:1903069                                                                           regulation of ER-associated ubiquitin-dependent protein catabolic process
## GO:0051136                                                                                                             regulation of NK T cell differentiation
## GO:1900147                                                                                                                regulation of Schwann cell migration
## GO:0003307                                                                                   regulation of Wnt signaling pathway involved in heart development
## GO:0070235                                                                                              regulation of activation-induced cell death of T cells
## GO:0032347                                                                                                      regulation of aldosterone biosynthetic process
## GO:1905651                                                                                                                  regulation of artery morphogenesis
## GO:0060371                                                                                    regulation of atrial cardiac muscle cell membrane depolarization
## GO:0051890                                                                                                           regulation of cardioblast differentiation
## GO:0071649                                                                                             regulation of chemokine (C-C motif) ligand 5 production
## GO:1904796                                                                                                                 regulation of core promoter binding
## GO:0051459                                                                                                               regulation of corticotropin secretion
## GO:0010603                                                                                             regulation of cytoplasmic mRNA processing body assembly
## GO:1900247                                                                                                  regulation of cytoplasmic translational elongation
## GO:1901201                                                                                                         regulation of extracellular matrix assembly
## GO:0046880                                                                                                regulation of follicle-stimulating hormone secretion
## GO:0031946                                                                                                   regulation of glucocorticoid biosynthetic process
## GO:0000820                                                                                         regulation of glutamine family amino acid metabolic process
## GO:2000465                                                                                                   regulation of glycogen (starch) synthase activity
## GO:0005981                                                                                                            regulation of glycogen catabolic process
## GO:0090381                                                                                                                       regulation of heart induction
## GO:1901725                                                                                                          regulation of histone deacetylase activity
## GO:0010728                                                                                                regulation of hydrogen peroxide biosynthetic process
## GO:1903795                                                                                               regulation of inorganic anion transmembrane transport
## GO:0045360                                                                                                    regulation of interleukin-1 biosynthetic process
## GO:2001182                                                                                                              regulation of interleukin-12 secretion
## GO:1905076                                                                                                              regulation of interleukin-17 secretion
## GO:0032661                                                                                                             regulation of interleukin-18 production
## GO:0032667                                                                                                             regulation of interleukin-23 production
## GO:0030300                                                                                                     regulation of intestinal cholesterol absorption
## GO:0032383                                                                                                   regulation of intracellular cholesterol transport
## GO:0032377                                                                                                         regulation of intracellular lipid transport
## GO:0032380                                                                                                        regulation of intracellular sterol transport
## GO:0051340                                                                                                                       regulation of ligase activity
## GO:0033684                                                                                                         regulation of luteinizing hormone secretion
## GO:0034182                                                                                      regulation of maintenance of mitotic sister chromatid cohesion
## GO:0060753                                                                                                                  regulation of mast cell chemotaxis
## GO:0003339                                                            regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0032534                                                                                                                  regulation of microvillus assembly
## GO:0046602                                                                                                         regulation of mitotic centrosome separation
## GO:1905274                                                                                       regulation of modification of postsynaptic actin cytoskeleton
## GO:0035507                                                                                               regulation of myosin-light-chain-phosphatase activity
## GO:0043313                                                                                                              regulation of neutrophil degranulation
## GO:2000169                                                                                                     regulation of peptidyl-cysteine S-nitrosylation
## GO:2000586                                                                        regulation of platelet-derived growth factor receptor-beta signaling pathway
## GO:1903286                                                                                                                  regulation of potassium ion import
## GO:2000973                                                                                                            regulation of pro-B cell differentiation
## GO:1903564                                                                                                        regulation of protein localization to cilium
## GO:1902866                                                                                                 regulation of retina development in camera-type eye
## GO:1904393                                                                                regulation of skeletal muscle acetylcholine-gated channel clustering
## GO:0048631                                                                                                         regulation of skeletal muscle tissue growth
## GO:1901620                                                        regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0001993                                                                        regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## GO:0032909                                                                                           regulation of transforming growth factor beta2 production
## GO:0036490                                                                               regulation of translation in response to endoplasmic reticulum stress
## GO:1904415                                                                                                                             regulation of xenophagy
## GO:0060087                                                                                                                relaxation of vascular smooth muscle
## GO:0001999                               renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure
## GO:0072033                                                                                                                             renal vesicle formation
## GO:0048478                                                                                                                         replication fork protection
## GO:0070672                                                                                                                          response to interleukin-15
## GO:0009415                                                                                                                                   response to water
## GO:0016056                                                                                                                rhodopsin mediated signaling pathway
## GO:0009191                                                                                                        ribonucleoside diphosphate catabolic process
## GO:0009158                                                                                                      ribonucleoside monophosphate catabolic process
## GO:0000055                                                                                                         ribosomal large subunit export from nucleus
## GO:0001514                                                                                                                        selenocysteine incorporation
## GO:0048752                                                                                                                    semicircular canal morphogenesis
## GO:0071670                                                                                                                       smooth muscle cell chemotaxis
## GO:0070253                                                                                                                              somatostatin secretion
## GO:0006685                                                                                                                     sphingomyelin catabolic process
## GO:0097501                                                                                                                        stress response to metal ion
## GO:0006930                                                                                                  substrate-dependent cell migration, cell extension
## GO:0006105                                                                                                                         succinate metabolic process
## GO:0000098                                                                                                                 sulfur amino acid catabolic process
## GO:0098883                                                                                                                                     synapse pruning
## GO:0099532                                                                                                               synaptic vesicle endosomal processing
## GO:0090656                                                                                                                                  t-circle formation
## GO:0042780                                                                                                                              tRNA 3'-end processing
## GO:0016078                                                                                                                              tRNA catabolic process
## GO:0090672                                                                                                                         telomerase RNA localization
## GO:0090671                                                                                                           telomerase RNA localization to Cajal body
## GO:0090737                                                                                                          telomere maintenance via telomere trimming
## GO:0061820                                                                                                                        telomeric D-loop disassembly
## GO:0090657                                                                                                                          telomeric loop disassembly
## GO:0072553                                                                                                                        terminal button organization
## GO:1902645                                                                                                               tertiary alcohol biosynthetic process
## GO:0060534                                                                                                                       trachea cartilage development
## GO:0032906                                                                                                         transforming growth factor beta2 production
## GO:0006451                                                                                                                           translational readthrough
## GO:0044417                                                                                                                translocation of molecules into host
## GO:0051836                                                                    translocation of molecules into other organism involved in symbiotic interaction
## GO:0003175                                                                                                                         tricuspid valve development
## GO:0007021                                                                                                                            tubulin complex assembly
## GO:0010992                                                                                                                                 ubiquitin recycling
## GO:0048280                                                                                                                 vesicle fusion with Golgi apparatus
## GO:0072319                                                                                                                                   vesicle uncoating
## GO:0070561                                                                                                                vitamin D receptor signaling pathway
## GO:0042364                                                                                                          water-soluble vitamin biosynthetic process
## GO:0042908                                                                                                                                xenobiotic transport
## GO:0071578                                                                                                              zinc ion import across plasma membrane
## GO:0006241                                                                                                                            CTP biosynthetic process
## GO:0046036                                                                                                                               CTP metabolic process
## GO:0038096                                                                                        Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0045023                                                                                                                                 G0 to G1 transition
## GO:1902023                                                                                                                                L-arginine transport
## GO:0006563                                                                                                                          L-serine metabolic process
## GO:0046498                                                                                                            S-adenosylhomocysteine metabolic process
## GO:0086015                                                                                                                       SA node cell action potential
## GO:0086070                                                                                            SA node cell to atrial cardiac muscle cell communication
## GO:0086018                                                                                                SA node cell to atrial cardiac muscle cell signaling
## GO:0032933                                                                                                                             SREBP signaling pathway
## GO:0006616                                                                          SRP-dependent cotranslational protein targeting to membrane, translocation
## GO:0036135                                                                                                                              Schwann cell migration
## GO:0046051                                                                                                                               UTP metabolic process
## GO:1901374                                                                                                                             acetate ester transport
## GO:0015870                                                                                                                             acetylcholine transport
## GO:0006382                                                                                                                        adenosine to inosine editing
## GO:0008343                                                                                                                              adult feeding behavior
## GO:0032328                                                                                                                                   alanine transport
## GO:0030647                                                                                                         aminoglycoside antibiotic metabolic process
## GO:0099641                                                                                                                anterograde axonal protein transport
## GO:0042590                                                                    antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0001547                                                                                                                      antral ovarian follicle growth
## GO:0015810                                                                                                                   aspartate transmembrane transport
## GO:0099624                                                                                                  atrial cardiac muscle cell membrane repolarization
## GO:0003228                                                                                                            atrial cardiac muscle tissue development
## GO:0048102                                                                                                                               autophagic cell death
## GO:0048318                                                                                                                          axial mesoderm development
## GO:0035095                                                                                                                     behavioral response to nicotine
## GO:0060837                                                                                                       blood vessel endothelial cell differentiation
## GO:0048539                                                                                                                             bone marrow development
## GO:0016338                                                                  calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0051934                                                                                              catecholamine uptake involved in synaptic transmission
## GO:0060352                                                                                                                   cell adhesion molecule production
## GO:0030644                                                                                                                   cellular chloride ion homeostasis
## GO:0071481                                                                                                                          cellular response to X-ray
## GO:0110096                                                                                                                       cellular response to aldehyde
## GO:0071872                                                                                                           cellular response to epinephrine stimulus
## GO:0071372                                                                                          cellular response to follicle-stimulating hormone stimulus
## GO:0071225                                                                                                              cellular response to muramyl dipeptide
## GO:0071394                                                                                                          cellular response to testosterone stimulus
## GO:0097067                                                                                                       cellular response to thyroid hormone stimulus
## GO:0021796                                                                                                                     cerebral cortex regionalization
## GO:0071609                                                                                                           chemokine (C-C motif) ligand 5 production
## GO:0060717                                                                                                                                 chorion development
## GO:0061009                                                                                                                        common bile duct development
## GO:0060028                                                                                                    convergent extension involved in axis elongation
## GO:0061303                                                                                                               cornea development in camera-type eye
## GO:0021957                                                                                                                   corticospinal tract morphogenesis
## GO:0090286                                                                                                          cytoskeletal anchoring at nuclear membrane
## GO:0044597                                                                                                                      daunorubicin metabolic process
## GO:0099519                                                                                                           dense core granule cytoskeletal transport
## GO:0003140                                                                                           determination of left/right asymmetry in lateral mesoderm
## GO:0060539                                                                                                                               diaphragm development
## GO:0051583                                                                                                   dopamine uptake involved in synaptic transmission
## GO:0044598                                                                                                                       doxorubicin metabolic process
## GO:0046618                                                                                                                                         drug export
## GO:0035234                                                                                                             ectopic germ cell programmed cell death
## GO:0007343                                                                                                                                      egg activation
## GO:0048251                                                                                                                              elastic fiber assembly
## GO:0060136                                                                                                      embryonic process involved in female pregnancy
## GO:0034058                                                                                                                            endosomal vesicle fusion
## GO:0042118                                                                                                                         endothelial cell activation
## GO:0043353                                                                                                               enucleate erythrocyte differentiation
## GO:0050957                                                                                                                                   equilibrioception
## GO:0001768                                                                                                                    establishment of T cell polarity
## GO:0051660                                                                                                            establishment of centrosome localization
## GO:0001767                                                                                                                establishment of lymphocyte polarity
## GO:0044849                                                                                                                                       estrous cycle
## GO:0042439                                                                                                  ethanolamine-containing compound metabolic process
## GO:0031017                                                                                                                       exocrine pancreas development
## GO:0052696                                                                                                                           flavonoid glucuronidation
## GO:0009396                                                                                                 folic acid-containing compound biosynthetic process
## GO:0006012                                                                                                                         galactose metabolic process
## GO:0006681                                                                                                                galactosylceramide metabolic process
## GO:0035482                                                                                                                                    gastric motility
## GO:0008354                                                                                                                                 germ cell migration
## GO:0032836                                                                                                            glomerular basement membrane development
## GO:0015886                                                                                                                                      heme transport
## GO:0034384                                                                                                         high-density lipoprotein particle clearance
## GO:0061525                                                                                                                                 hindgut development
## GO:0036353                                                                                                                 histone H2A-K119 monoubiquitination
## GO:0070544                                                                                                                        histone H3-K36 demethylation
## GO:0034770                                                                                                                          histone H4-K20 methylation
## GO:0006971                                                                                                                                  hypotonic response
## GO:0002433                                                         immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0090713                                                                                                                        immunological memory process
## GO:0097340                                                                                                  inhibition of cysteine-type endopeptidase activity
## GO:0042222                                                                                                                  interleukin-1 biosynthetic process
## GO:0021830                                                                                             interneuron migration from the subpallium to the cortex
## GO:0014827                                                                                                                 intestine smooth muscle contraction
## GO:1902224                                                                                                                       ketone body metabolic process
## GO:0042182                                                                                                                            ketone catabolic process
## GO:0070189                                                                                                                        kynurenine metabolic process
## GO:0019249                                                                                                                        lactate biosynthetic process
## GO:0044539                                                                                                                        long-chain fatty acid import
## GO:0034374                                                                                                         low-density lipoprotein particle remodeling
## GO:0060462                                                                                                                               lung lobe development
## GO:0060463                                                                                                                             lung lobe morphogenesis
## GO:0060426                                                                                                                        lung vasculature development
## GO:0007042                                                                                                                       lysosomal lumen acidification
## GO:1905146                                                                                                                 lysosomal protein catabolic process
## GO:0098734                                                                                                                      macromolecule depalmitoylation
## GO:0044351                                                                                                                                    macropinocytosis
## GO:0045199                                                                                                maintenance of epithelial cell apical/basal polarity
## GO:0060592                                                                                                                             mammary gland formation
## GO:0006013                                                                                                                           mannose metabolic process
## GO:0044771                                                                                                                 meiotic cell cycle phase transition
## GO:0033206                                                                                                                                 meiotic cytokinesis
## GO:0072497                                                                                                               mesenchymal stem cell differentiation
## GO:0060638                                                                                                               mesenchymal-epithelial cell signaling
## GO:0051418                                                                                             microtubule nucleation by microtubule organizing center
## GO:0030917                                                                                                             midbrain-hindbrain boundary development
## GO:0034551                                                                                                mitochondrial respiratory chain complex III assembly
## GO:0090646                                                                                                                       mitochondrial tRNA processing
## GO:0090647                                                                                                        modulation of age-related behavioral decline
## GO:0098828                                                                                                     modulation of inhibitory postsynaptic potential
## GO:0035520                                                                                                          monoubiquitinated protein deubiquitination
## GO:0035878                                                                                                                                    nail development
## GO:0043320                                                                                                                   natural killer cell degranulation
## GO:0002713                                                                                                     negative regulation of B cell mediated immunity
## GO:0002725                                                                                                   negative regulation of T cell cytokine production
## GO:0035562                                                                                                            negative regulation of chromatin binding
## GO:0032471                                                                              negative regulation of endoplasmic reticulum calcium ion concentration
## GO:1900102                                                                              negative regulation of endoplasmic reticulum unfolded protein response
## GO:1903748                                                                       negative regulation of establishment of protein localization to mitochondrion
## GO:1903054                                                                                            negative regulation of extracellular matrix organization
## GO:2000192                                                                                                         negative regulation of fatty acid transport
## GO:2000270                                                                                                 negative regulation of fibroblast apoptotic process
## GO:0034351                                                                                                 negative regulation of glial cell apoptotic process
## GO:0014050                                                                                                          negative regulation of glutamate secretion
## GO:0002890                                                                                      negative regulation of immunoglobulin mediated immune response
## GO:0043569                                                                        negative regulation of insulin-like growth factor receptor signaling pathway
## GO:0050713                                                                                                 negative regulation of interleukin-1 beta secretion
## GO:0045617                                                                                                 negative regulation of keratinocyte differentiation
## GO:0010985                                                                                               negative regulation of lipoprotein particle clearance
## GO:2000381                                                                                                         negative regulation of mesoderm development
## GO:0072217                                                                                                      negative regulation of metanephros development
## GO:0002887                                                                                          negative regulation of myeloid leukocyte mediated immunity
## GO:0007406                                                                                                     negative regulation of neuroblast proliferation
## GO:2000051                                                                                          negative regulation of non-canonical Wnt signaling pathway
## GO:0046533                                                                                           negative regulation of photoreceptor cell differentiation
## GO:0033234                                                                                                          negative regulation of protein sumoylation
## GO:0045869                                                   negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045988                                                                                                  negative regulation of striated muscle contraction
## GO:1904354                                                                                                             negative regulation of telomere capping
## GO:0010944                                                                                negative regulation of transcription by competitive promoter binding
## GO:0014029                                                                                                                              neural crest formation
## GO:0001842                                                                                                                               neural fold formation
## GO:0001839                                                                                                                          neural plate morphogenesis
## GO:0060896                                                                                                                  neural plate pattern specification
## GO:0061101                                                                                                                 neuroendocrine cell differentiation
## GO:0048664                                                                                                                           neuron fate determination
## GO:0036480                                                                        neuron intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0070944                                                                                                            neutrophil mediated killing of bacterium
## GO:0051292                                                                                                                       nuclear pore complex assembly
## GO:0046113                                                                                                                        nucleobase catabolic process
## GO:0009134                                                                                                            nucleoside diphosphate catabolic process
## GO:0015858                                                                                                                                nucleoside transport
## GO:0043173                                                                                                                                  nucleotide salvage
## GO:0033683                                                                                                            nucleotide-excision repair, DNA incision
## GO:0098597                                                                                                                              observational learning
## GO:0021891                                                                                                              olfactory bulb interneuron development
## GO:0009313                                                                                                                   oligosaccharide catabolic process
## GO:0002158                                                                                                                            osteoclast proliferation
## GO:0048840                                                                                                                                 otolith development
## GO:0042473                                                                                                                             outer ear morphogenesis
## GO:0003310                                                                                                                   pancreatic A cell differentiation
## GO:0048341                                                                                                                         paraxial mesoderm formation
## GO:0007567                                                                                                                                         parturition
## GO:0061004                                                                                                pattern specification involved in kidney development
## GO:0007341                                                                                                                       penetration of zona pellucida
## GO:0003344                                                                                                                           pericardium morphogenesis
## GO:0016559                                                                                                                                  peroxisome fission
## GO:0006646                                                                                                       phosphatidylethanolamine biosynthetic process
## GO:0070816                                                                                              phosphorylation of RNA polymerase II C-terminal domain
## GO:0030638                                                                                                                        polyketide metabolic process
## GO:0015791                                                                                                                                    polyol transport
## GO:2000969                                                                                                       positive regulation of AMPA receptor activity
## GO:2001187                                                                                   positive regulation of CD8-positive, alpha-beta T cell activation
## GO:1905216                                                                                                                  positive regulation of RNA binding
## GO:1904179                                                                                                   positive regulation of adipose tissue development
## GO:1902669                                                                                                                positive regulation of axon guidance
## GO:1903589                                               positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903012                                                                                                             positive regulation of bone development
## GO:0010753                                                                                                      positive regulation of cGMP-mediated signaling
## GO:1901978                                                                                                        positive regulation of cell cycle checkpoint
## GO:0010825                                                                                                       positive regulation of centrosome duplication
## GO:0010873                                                                                                   positive regulation of cholesterol esterification
## GO:0046010                                                                                    positive regulation of circadian sleep/wake cycle, non-REM sleep
## GO:2000848                                                                                             positive regulation of corticosteroid hormone secretion
## GO:2001269                                                 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0002741                                                                               positive regulation of cytokine secretion involved in immune response
## GO:2000767                                                                                                      positive regulation of cytoplasmic translation
## GO:0090045                                                                                                         positive regulation of deacetylase activity
## GO:1905168                                                                      positive regulation of double-strand break repair via homologous recombination
## GO:1902237                                                   positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0031536                                                                                                            positive regulation of exit from mitosis
## GO:0031622                                                                                                             positive regulation of fever generation
## GO:2000617                                                                                                    positive regulation of histone H3-K9 acetylation
## GO:0033129                                                                                                      positive regulation of histone phosphorylation
## GO:2001046                                                                                          positive regulation of integrin-mediated signaling pathway
## GO:0045084                                                                                          positive regulation of interleukin-12 biosynthetic process
## GO:0051006                                                                                                  positive regulation of lipoprotein lipase activity
## GO:1900454                                                                                                positive regulation of long-term synaptic depression
## GO:2000020                                                                                                       positive regulation of male gonad development
## GO:1902101                                                                                  positive regulation of metaphase/anaphase transition of cell cycle
## GO:0090309                                                                                    positive regulation of methylation-dependent chromatin silencing
## GO:0098779                                                                        positive regulation of mitophagy in response to mitochondrial depolarization
## GO:0045657                                                                                                     positive regulation of monocyte differentiation
## GO:0033034                                                                                               positive regulation of myeloid cell apoptotic process
## GO:0060406                                                                                                              positive regulation of penile erection
## GO:2001140                                                                                                       positive regulation of phospholipid transport
## GO:1902966                                                                                       positive regulation of protein localization to early endosome
## GO:2000234                                                                                                              positive regulation of rRNA processing
## GO:1900122                                                                                                             positive regulation of receptor binding
## GO:1903911                                                                                                          positive regulation of receptor clustering
## GO:1901033                                                                                          positive regulation of response to reactive oxygen species
## GO:0090070                                                                                                          positive regulation of ribosome biogenesis
## GO:1904058                                                                                                   positive regulation of sensory perception of pain
## GO:0090031                                                                                         positive regulation of steroid hormone biosynthetic process
## GO:0010898                                                                                               positive regulation of triglyceride catabolic process
## GO:0002894                                                                                                     positive regulation of type II hypersensitivity
## GO:0001798                                                                                                    positive regulation of type IIa hypersensitivity
## GO:0070474                                                                                            positive regulation of uterine smooth muscle contraction
## GO:2001214                                                                                                               positive regulation of vasculogenesis
## GO:0046598                                                                                                   positive regulation of viral entry into host cell
## GO:0000338                                                                                                                               protein deneddylation
## GO:0002084                                                                                                                            protein depalmitoylation
## GO:0099612                                                                                                                        protein localization to axon
## GO:1905383                                                                                                                  protein localization to presynapse
## GO:0018095                                                                                                                           protein polyglutamylation
## GO:0006152                                                                                                                 purine nucleoside catabolic process
## GO:0009128                                                                                                   purine nucleoside monophosphate catabolic process
## GO:0015865                                                                                                                         purine nucleotide transport
## GO:0046130                                                                                                             purine ribonucleoside catabolic process
## GO:0009221                                                                                                 pyrimidine deoxyribonucleotide biosynthetic process
## GO:0006290                                                                                                                             pyrimidine dimer repair
## GO:0009129                                                                                               pyrimidine nucleoside monophosphate metabolic process
## GO:0090481                                                                                                 pyrimidine nucleotide-sugar transmembrane transport
## GO:0031125                                                                                                                              rRNA 3'-end processing
## GO:0070316                                                                                                                   regulation of G0 to G1 transition
## GO:0033860                                                                                                              regulation of NAD(P)H oxidase activity
## GO:0010624                                                                                                            regulation of Schwann cell proliferation
## GO:1903715                                                                                                                   regulation of aerobic respiration
## GO:0032344                                                                                                         regulation of aldosterone metabolic process
## GO:0090237                                                                                                            regulation of arachidonic acid secretion
## GO:1902959                                          regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## GO:0060312                                                                                                               regulation of blood vessel remodeling
## GO:2000172                                                                                                    regulation of branching morphogenesis of a nerve
## GO:0062042                                                                                          regulation of cardiac epithelial to mesenchymal transition
## GO:0086036                                                                                                regulation of cardiac muscle cell membrane potential
## GO:0010881                                                    regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:1903242                                                                                      regulation of cardiac muscle hypertrophy in response to stress
## GO:0106049                                                                                                   regulation of cellular response to osmotic stress
## GO:2001225                                                                                                                    regulation of chloride transport
## GO:0001672                                                                                                     regulation of chromatin assembly or disassembly
## GO:1903659                                                                                                     regulation of complement-dependent cytotoxicity
## GO:0002604                                                                                    regulation of dendritic cell antigen processing and presentation
## GO:2000508                                                                                                             regulation of dendritic cell chemotaxis
## GO:0032070                                                                                                            regulation of deoxyribonuclease activity
## GO:1904338                                                                                                   regulation of dopaminergic neuron differentiation
## GO:0014060                                                                                                                 regulation of epinephrine secretion
## GO:2000794                                                                          regulation of epithelial cell proliferation involved in lung morphogenesis
## GO:0046643                                                                                                         regulation of gamma-delta T cell activation
## GO:0045586                                                                                                    regulation of gamma-delta T cell differentiation
## GO:1904304                                                                                    regulation of gastro-intestinal system smooth muscle contraction
## GO:0048819                                                                                                              regulation of hair follicle maturation
## GO:0051095                                                                                                                     regulation of helicase activity
## GO:1902033                                                                                                 regulation of hematopoietic stem cell proliferation
## GO:2000489                                                                                                      regulation of hepatic stellate cell activation
## GO:1900125                                                                                                       regulation of hyaluronan biosynthetic process
## GO:0032650                                                                                                        regulation of interleukin-1 alpha production
## GO:1904729                                                                                                           regulation of intestinal lipid absorption
## GO:0034756                                                                                                                    regulation of iron ion transport
## GO:2000392                                                                                                           regulation of lamellipodium morphogenesis
## GO:1903236                                                                                                        regulation of leukocyte tethering or rolling
## GO:0034091                                                                                              regulation of maintenance of sister chromatid cohesion
## GO:0060631                                                                                                                             regulation of meiosis I
## GO:1901993                                                                                                   regulation of meiotic cell cycle phase transition
## GO:0010635                                                                                                                  regulation of mitochondrial fusion
## GO:2000671                                                                                                        regulation of motor neuron apoptotic process
## GO:0032817                                                                                                     regulation of natural killer cell proliferation
## GO:0150011                                                                                                        regulation of neuron projection arborization
## GO:1903376                                                                 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## GO:0010966                                                                                                                   regulation of phosphate transport
## GO:0032429                                                                                                             regulation of phospholipase A2 activity
## GO:2001138                                                                                                                regulation of phospholipid transport
## GO:0050932                                                                                                          regulation of pigment cell differentiation
## GO:0010835                                                                                                              regulation of protein ADP-ribosylation
## GO:1900044                                                                                                     regulation of protein K63-linked ubiquitination
## GO:0061635                                                                                                             regulation of protein complex stability
## GO:1904776                                                                                                   regulation of protein localization to cell cortex
## GO:1902965                                                                                                regulation of protein localization to early endosome
## GO:1904749                                                                                                     regulation of protein localization to nucleolus
## GO:2000121                                                                                                        regulation of removal of superoxide radicals
## GO:0046877                                                                                                                      regulation of saliva secretion
## GO:0014807                                                                                                                         regulation of somitogenesis
## GO:0034139                                                                                                regulation of toll-like receptor 3 signaling pathway
## GO:0034163                                                                                                regulation of toll-like receptor 9 signaling pathway
## GO:0001810                                                                                                               regulation of type I hypersensitivity
## GO:0002892                                                                                                              regulation of type II hypersensitivity
## GO:0001796                                                                                                             regulation of type IIa hypersensitivity
## GO:0003056                                                                                                    regulation of vascular smooth muscle contraction
## GO:0060556                                                                                                        regulation of vitamin D biosynthetic process
## GO:0072048                                                                                                                  renal system pattern specification
## GO:0090399                                                                                                                              replicative senescence
## GO:0017062                                                                                                              respiratory chain complex III assembly
## GO:0051412                                                                                                                          response to corticosterone
## GO:0071871                                                                                                                             response to epinephrine
## GO:0045472                                                                                                                                   response to ether
## GO:0051409                                                                                                                      response to nitrosative stress
## GO:0060040                                                                                                              retinal bipolar neuron differentiation
## GO:0046666                                                                                                                  retinal cell programmed cell death
## GO:0021546                                                                                                                              rhombomere development
## GO:0003139                                                                                                                 secondary heart field specification
## GO:0097264                                                                                                                                    self proteolysis
## GO:0035581                                                                                                  sequestering of extracellular ligand from receptor
## GO:0007210                                                                                                                serotonin receptor signaling pathway
## GO:0030241                                                                                                      skeletal muscle myosin thick filament assembly
## GO:0014816                                                                                                      skeletal muscle satellite cell differentiation
## GO:0070922                                                                                                                         small RNA loading onto RISC
## GO:0042795                                                                                                            snRNA transcription by RNA polymerase II
## GO:0090520                                                                                                             sphingolipid mediated signaling pathway
## GO:0000244                                                                                                             spliceosomal tri-snRNP complex assembly
## GO:0071688                                                                                                      striated muscle myosin thick filament assembly
## GO:0061549                                                                                                                    sympathetic ganglion development
## GO:0022028                                                                             tangential migration from the subventricular zone to the olfactory bulb
## GO:0061370                                                                                                                   testosterone biosynthetic process
## GO:0046146                                                                                                               tetrahydrobiopterin metabolic process
## GO:0043587                                                                                                                                tongue morphogenesis
## GO:0099545                                                                                                  trans-synaptic signaling by trans-synaptic complex
## GO:0060290                                                                                                                                transdifferentiation
## GO:0036363                                                                                                          transforming growth factor beta activation
## GO:0046794                                                                                                                                  transport of virus
## GO:0016068                                                                                                                             type I hypersensitivity
## GO:0002445                                                                                                                            type II hypersensitivity
## GO:0001794                                                                                                                           type IIa hypersensitivity
## GO:0072197                                                                                                                                ureter morphogenesis
## GO:0060677                                                                                                                             ureteric bud elongation
## GO:0061042                                                                                                                              vascular wound healing
## GO:0003223                                                                                                        ventricular compact myocardium morphogenesis
## GO:0034372                                                                                                    very-low-density lipoprotein particle remodeling
## GO:0021562                                                                                                                 vestibulocochlear nerve development
## GO:0061032                                                                                                             visceral serous pericardium development
## GO:0050882                                                                                                                  voluntary musculoskeletal movement
## GO:0002246                                                                                                     wound healing involved in inflammatory response
## GO:0052697                                                                                                                          xenobiotic glucuronidation
## GO:0097341                                                                                                                                  zymogen inhibition
## GO:0060020                                                                                                                 Bergmann glial cell differentiation
## GO:0048208                                                                                                                               COPII vesicle coating
## GO:0006183                                                                                                                            GTP biosynthetic process
## GO:0075522                                                                                                       IRES-dependent viral translational initiation
## GO:0006558                                                                                                                   L-phenylalanine metabolic process
## GO:0007220                                                                                                                           Notch receptor processing
## GO:0036499                                                                                                             PERK-mediated unfolded protein response
## GO:0035744                                                                                                                 T-helper 1 cell cytokine production
## GO:0009650                                                                                                                                       UV protection
## GO:0051639                                                                                                                    actin filament network formation
## GO:0046085                                                                                                                         adenosine metabolic process
## GO:0007191                                                                                    adenylate cyclase-activating dopamine receptor signaling pathway
## GO:0042891                                                                                                                                antibiotic transport
## GO:0045176                                                                                                                         apical protein localization
## GO:0048149                                                                                                                      behavioral response to ethanol
## GO:0000492                                                                                                                             box C/D snoRNP assembly
## GO:0099004                                                                                                       calmodulin dependent kinase signaling pathway
## GO:0060379                                                                                                        cardiac muscle cell myoblast differentiation
## GO:0003211                                                                                                                         cardiac ventricle formation
## GO:0072203                                                                                              cell proliferation involved in metanephros development
## GO:0070417                                                                                                                           cellular response to cold
## GO:0071257                                                                                                            cellular response to electrical stimulus
## GO:0071233                                                                                                                        cellular response to leucine
## GO:1990253                                                                                                             cellular response to leucine starvation
## GO:0071223                                                                                                              cellular response to lipoteichoic acid
## GO:0043562                                                                                                                cellular response to nitrogen levels
## GO:0006995                                                                                                            cellular response to nitrogen starvation
## GO:0140052                                                                             cellular response to oxidised low-density lipoprotein particle stimulus
## GO:0071501                                                                                                               cellular response to sterol depletion
## GO:0071305                                                                                                                      cellular response to vitamin D
## GO:0021800                                                                                                                cerebral cortex tangential migration
## GO:0061684                                                                                                                        chaperone-mediated autophagy
## GO:0072321                                                                                                                chaperone-mediated protein transport
## GO:0006707                                                                                                                       cholesterol catabolic process
## GO:0060710                                                                                                                             chorio-allantoic fusion
## GO:0000183                                                                                                                         chromatin silencing at rDNA
## GO:0015937                                                                                                                     coenzyme A biosynthetic process
## GO:0060982                                                                                                                       coronary artery morphogenesis
## GO:0051458                                                                                                                             corticotropin secretion
## GO:0034650                                                                                                                          cortisol metabolic process
## GO:0000290                                                                                       deadenylation-dependent decapping of nuclear-transcribed mRNA
## GO:1990504                                                                                                                       dense core granule exocytosis
## GO:0032253                                                                                                                     dense core granule localization
## GO:1901950                                                                                                                        dense core granule transport
## GO:0002934                                                                                                                              desmosome organization
## GO:0046543                                                                                              development of secondary female sexual characteristics
## GO:0072017                                                                                                                           distal tubule development
## GO:0006488                                                                                                dolichol-linked oligosaccharide biosynthetic process
## GO:0035907                                                                                                                            dorsal aorta development
## GO:0048703                                                                                                              embryonic viscerocranium morphogenesis
## GO:0000478                                                                                                endonucleolytic cleavage involved in rRNA processing
## GO:0000479                                                            endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0035646                                                                                                                    endosome to melanosome transport
## GO:0043485                                                                                                               endosome to pigment granule transport
## GO:0048242                                                                                                                               epinephrine secretion
## GO:1902221                                                                       erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:0046485                                                                                                                       ether lipid metabolic process
## GO:0051601                                                                                                                                exocyst localization
## GO:0043928                                                 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:1900116                                                                                            extracellular negative regulation of signal transduction
## GO:1900115                                                                                                     extracellular regulation of signal transduction
## GO:0021612                                                                                                                facial nerve structural organization
## GO:1901569                                                                                                             fatty acid derivative catabolic process
## GO:0090269                                                                                                                 fibroblast growth factor production
## GO:0046884                                                                                                              follicle-stimulating hormone secretion
## GO:0021873                                                                                                                       forebrain neuroblast division
## GO:0006000                                                                                                                          fructose metabolic process
## GO:0019374                                                                                                                      galactolipid metabolic process
## GO:0016264                                                                                                                               gap junction assembly
## GO:0061620                                                                                                      glycolytic process through glucose-6-phosphate
## GO:0003129                                                                                                                                     heart induction
## GO:0015014                                                        heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## GO:0034380                                                                                                          high-density lipoprotein particle assembly
## GO:0002349                                                                                              histamine production involved in inflammatory response
## GO:0002553                                                                                                                    histamine secretion by mast cell
## GO:0002441                                                                                               histamine secretion involved in inflammatory response
## GO:0044154                                                                                                                          histone H3-K14 acetylation
## GO:0098532                                                                                                                       histone H3-K27 trimethylation
## GO:0010452                                                                                                                          histone H3-K36 methylation
## GO:0052803                                                                                                     imidazole-containing compound metabolic process
## GO:1901142                                                                                                                           insulin metabolic process
## GO:0045350                                                                                                                interferon-beta biosynthetic process
## GO:0022027                                                                                                                      interkinetic nuclear migration
## GO:0072610                                                                                                                            interleukin-12 secretion
## GO:0032621                                                                                                                           interleukin-18 production
## GO:0008300                                                                                                                        isoprenoid catabolic process
## GO:0098598                                                                                                     learned vocalization behavior or vocal learning
## GO:0043651                                                                                                                     linoleic acid metabolic process
## GO:0035336                                                                                                         long-chain fatty-acyl-CoA metabolic process
## GO:0072070                                                                                                                           loop of Henle development
## GO:0060484                                                                                                              lung-associated mesenchyme development
## GO:0071888                                                                                                                        macrophage apoptotic process
## GO:0035090                                                                                                           maintenance of apical/basal cell polarity
## GO:0035437                                                                                        maintenance of protein localization in endoplasmic reticulum
## GO:0002176                                                                                                                        male germ cell proliferation
## GO:0002315                                                                                                                marginal zone B cell differentiation
## GO:0051791                                                                                                           medium-chain fatty acid metabolic process
## GO:0051177                                                                                                                   meiotic sister chromatid cohesion
## GO:0045144                                                                                                                meiotic sister chromatid segregation
## GO:0003149                                                                                                                     membranous septum morphogenesis
## GO:0048382                                                                                                                             mesendoderm development
## GO:0072173                                                                                                                    metanephric tubule morphogenesis
## GO:0010587                                                                                                                             miRNA catabolic process
## GO:0034454                                                                                                                 microtubule anchoring at centrosome
## GO:0033314                                                                                                                  mitotic DNA replication checkpoint
## GO:0072674                                                                                                             multinuclear osteoclast differentiation
## GO:0030049                                                                                                                             muscle filament sliding
## GO:0002318                                                                                                             myeloid progenitor cell differentiation
## GO:0031034                                                                                                                            myosin filament assembly
## GO:0002420                                                                        natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0044793                                                                                                        negative regulation by host of viral process
## GO:0043922                                                                                                  negative regulation by host of viral transcription
## GO:0033085                                                                                             negative regulation of T cell differentiation in thymus
## GO:0045759                                                                                                             negative regulation of action potential
## GO:1903011                                                                                                             negative regulation of bone development
## GO:1900038                                                                                                 negative regulation of cellular response to hypoxia
## GO:0032375                                                                                                        negative regulation of cholesterol transport
## GO:1902018                                                                                                              negative regulation of cilium assembly
## GO:0048671                                                                                                         negative regulation of collateral sprouting
## GO:0043301                                                                                                      negative regulation of leukocyte degranulation
## GO:0010745                                                                                 negative regulation of macrophage derived foam cell differentiation
## GO:1905522                                                                                                         negative regulation of macrophage migration
## GO:0031642                                                                                                                  negative regulation of myelination
## GO:0051001                                                                                               negative regulation of nitric-oxide synthase activity
## GO:0033689                                                                                                     negative regulation of osteoblast proliferation
## GO:0032372                                                                                                             negative regulation of sterol transport
## GO:0070244                                                                                                  negative regulation of thymocyte apoptotic process
## GO:0071635                                                                                   negative regulation of transforming growth factor beta production
## GO:1904468                                                                                              negative regulation of tumor necrosis factor secretion
## GO:1904667                                                                                            negative regulation of ubiquitin protein ligase activity
## GO:0035811                                                                                                                 negative regulation of urine volume
## GO:0039532                                                     negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0060052                                                                                                             neurofilament cytoskeleton organization
## GO:0007158                                                                                                                           neuron cell-cell adhesion
## GO:1990535                                                                                                                       neuron projection maintenance
## GO:0007270                                                                                                                 neuron-neuron synaptic transmission
## GO:0098700                                                                                                      neurotransmitter loading into synaptic vesicle
## GO:0099628                                                                                                        neurotransmitter receptor diffusion trapping
## GO:0042421                                                                                                                 norepinephrine biosynthetic process
## GO:0031468                                                                                                                         nuclear envelope reassembly
## GO:0034427                                                                                   nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## GO:0015780                                                                                                            nucleotide-sugar transmembrane transport
## GO:0006591                                                                                                                         ornithine metabolic process
## GO:0018026                                                                                                                     peptidyl-lysine monomethylation
## GO:0061626                                                                                                                pharyngeal arch artery morphogenesis
## GO:0019336                                                                                                        phenol-containing compound catabolic process
## GO:0007603                                                                                                                    phototransduction, visible light
## GO:0048757                                                                                                                          pigment granule maturation
## GO:0030311                                                                                                       poly-N-acetyllactosamine biosynthetic process
## GO:0030309                                                                                                          poly-N-acetyllactosamine metabolic process
## GO:0045348                                                                                            positive regulation of MHC class II biosynthetic process
## GO:2000318                                                                                             positive regulation of T-helper 17 type immune response
## GO:0032927                                                                                           positive regulation of activin receptor signaling pathway
## GO:0045762                                                                                                   positive regulation of adenylate cyclase activity
## GO:0090336                                                                                               positive regulation of brown fat cell differentiation
## GO:1901724                                                                            positive regulation of cell proliferation involved in kidney development
## GO:2000774                                                                                                          positive regulation of cellular senescence
## GO:0021940                                                                              positive regulation of cerebellar granule cell precursor proliferation
## GO:1905820                                                                                                        positive regulation of chromosome separation
## GO:1900103                                                                              positive regulation of endoplasmic reticulum unfolded protein response
## GO:0045741                                                                          positive regulation of epidermal growth factor-activated receptor activity
## GO:1903749                                                                       positive regulation of establishment of protein localization to mitochondrion
## GO:1904851                                                                            positive regulation of establishment of protein localization to telomere
## GO:0090091                                                                                             positive regulation of extracellular matrix disassembly
## GO:0032000                                                                                                    positive regulation of fatty acid beta-oxidation
## GO:1902093                                                                                                   positive regulation of flagellated sperm motility
## GO:2000347                                                                                                     positive regulation of hepatocyte proliferation
## GO:0033625                                                                                                          positive regulation of integrin activation
## GO:0060907                                                                                               positive regulation of macrophage cytokine production
## GO:1901526                                                                                                                    positive regulation of mitophagy
## GO:0070257                                                                                                              positive regulation of mucus secretion
## GO:2000391                                                                                                     positive regulation of neutrophil extravasation
## GO:1903800                                                                     positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0031274                                                                                                        positive regulation of pseudopodium assembly
## GO:0090129                                                                                                           positive regulation of synapse maturation
## GO:0032224                                                                                           positive regulation of synaptic transmission, cholinergic
## GO:2000302                                                                                                  positive regulation of synaptic vesicle exocytosis
## GO:0002645                                                                                                          positive regulation of tolerance induction
## GO:0034145                                                                                       positive regulation of toll-like receptor 4 signaling pathway
## GO:1901838                                                                    positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0051971                                                                                                positive regulation of transmission of nerve impulse
## GO:0061365                                                                                                 positive regulation of triglyceride lipase activity
## GO:2001280                                                                                  positive regulation of unsaturated fatty acid biosynthetic process
## GO:0097119                                                                                                          postsynaptic density protein 95 clustering
## GO:0098970                                                                                           postsynaptic neurotransmitter receptor diffusion trapping
## GO:0097105                                                                                                                       presynaptic membrane assembly
## GO:0060215                                                                                                                               primitive hemopoiesis
## GO:0090009                                                                                                                          primitive streak formation
## GO:0006560                                                                                                                           proline metabolic process
## GO:0015824                                                                                                                                   proline transport
## GO:0060513                                                                                                                             prostatic bud formation
## GO:0031848                                                                                              protection from non-homologous end joining at telomere
## GO:0035871                                                                                                                 protein K11-linked deubiquitination
## GO:0018242                                                                                                           protein O-linked glycosylation via serine
## GO:0034975                                                                                                            protein folding in endoplasmic reticulum
## GO:0034214                                                                                                                              protein hexamerization
## GO:0051204                                                                                                       protein insertion into mitochondrial membrane
## GO:0090435                                                                                                            protein localization to nuclear envelope
## GO:0009209                                                                                         pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0098953                                                                                                                         receptor diffusion trapping
## GO:0032875                                                                                                                 regulation of DNA endoreduplication
## GO:0042996                                                                                            regulation of Golgi to plasma membrane protein transport
## GO:0051133                                                                                                                  regulation of NK T cell activation
## GO:0035542                                                                                                                regulation of SNARE complex assembly
## GO:2000551                                                                                                   regulation of T-helper 2 cell cytokine production
## GO:0010692                                                                                                         regulation of alkaline phosphatase activity
## GO:0010958                                                                                              regulation of amino acid import across plasma membrane
## GO:1905245                                                                                                      regulation of aspartic-type peptidase activity
## GO:1901096                                                                                                              regulation of autophagosome maturation
## GO:0070857                                                                                                        regulation of bile acid biosynthetic process
## GO:0010612                                                                                                             regulation of cardiac muscle adaptation
## GO:2000303                                                                                                         regulation of ceramide biosynthetic process
## GO:2001135                                                                                                                   regulation of endocytic recycling
## GO:0031620                                                                                                                      regulation of fever generation
## GO:0051917                                                                                                                          regulation of fibrinolysis
## GO:0090270                                                                                                   regulation of fibroblast growth factor production
## GO:0002634                                                                                                             regulation of germinal center formation
## GO:0031943                                                                                                      regulation of glucocorticoid metabolic process
## GO:0033131                                                                                                                  regulation of glucokinase activity
## GO:0035947                                                        regulation of gluconeogenesis by regulation of transcription from RNA polymerase II promoter
## GO:0040009                                                                                                                           regulation of growth rate
## GO:1905097                                                                                            regulation of guanyl-nucleotide exchange factor activity
## GO:1902036                                                                                               regulation of hematopoietic stem cell differentiation
## GO:0033182                                                                                                                regulation of histone ubiquitination
## GO:0033084                                                                                               regulation of immature T cell proliferation in thymus
## GO:0045607                                                                                      regulation of inner ear auditory receptor cell differentiation
## GO:2000980                                                                                               regulation of inner ear receptor cell differentiation
## GO:0045357                                                                                                  regulation of interferon-beta biosynthetic process
## GO:2001179                                                                                                              regulation of interleukin-10 secretion
## GO:1900040                                                                                                               regulation of interleukin-2 secretion
## GO:1905456                                                                                              regulation of lymphoid progenitor cell differentiation
## GO:1902415                                                                                                                          regulation of mRNA binding
## GO:2000109                                                                                                          regulation of macrophage apoptotic process
## GO:0045631                                                                                                       regulation of mechanoreceptor differentiation
## GO:1904526                                                                                                                   regulation of microtubule binding
## GO:2000574                                                                                                            regulation of microtubule motor activity
## GO:0002858                                                          regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## GO:0098908                                                                                                             regulation of neuronal action potential
## GO:1902563                                                                                                                 regulation of neutrophil activation
## GO:0033029                                                                                                          regulation of neutrophil apoptotic process
## GO:2000389                                                                                                              regulation of neutrophil extravasation
## GO:1900193                                                                                                                     regulation of oocyte maturation
## GO:0090186                                                                                                            regulation of pancreatic juice secretion
## GO:0099509                                                                                       regulation of presynaptic cytosolic calcium ion concentration
## GO:0043497                                                                                                   regulation of protein heterodimerization activity
## GO:1904779                                                                                                    regulation of protein localization to centrosome
## GO:2000644                                                                                                            regulation of receptor catabolic process
## GO:0060297                                                                                                                regulation of sarcomere organization
## GO:0014062                                                                                                                   regulation of serotonin secretion
## GO:0043416                                                                                                   regulation of skeletal muscle tissue regeneration
## GO:0051823                                                                                                         regulation of synapse structural plasticity
## GO:2000807                                                                                                           regulation of synaptic vesicle clustering
## GO:1902947                                                                                                           regulation of tau-protein kinase activity
## GO:0070170                                                                                                                  regulation of tooth mineralization
## GO:0032908                                                                                           regulation of transforming growth factor beta1 production
## GO:0032354                                                                                                            response to follicle-stimulating hormone
## GO:0070673                                                                                                                          response to interleukin-18
## GO:0010288                                                                                                                                response to lead ion
## GO:0043201                                                                                                                                 response to leucine
## GO:0070391                                                                                                                       response to lipoteichoic acid
## GO:0051775                                                                                                                             response to redox state
## GO:1902074                                                                                                                                    response to salt
## GO:0033299                                                                                                                      secretion of lysosomal enzymes
## GO:0000012                                                                                                                          single strand break repair
## GO:0035093                                                                                                   spermatogenesis, exchange of chromosomal proteins
## GO:0008216                                                                                                                        spermidine metabolic process
## GO:0046512                                                                                                                    sphingosine biosynthetic process
## GO:0016127                                                                                                                            sterol catabolic process
## GO:0021843                                                                                substrate-independent telencephalic tangential interneuron migration
## GO:0021826                                                                                            substrate-independent telencephalic tangential migration
## GO:0051124                                                                                                           synaptic growth at neuromuscular junction
## GO:0006388                                                                                            tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0099542                                                                                                         trans-synaptic signaling by endocannabinoid
## GO:0099541                                                                                                                   trans-synaptic signaling by lipid
## GO:0006283                                                                                                    transcription-coupled nucleotide-excision repair
## GO:0033572                                                                                                                               transferrin transport
## GO:0014883                                                                                                              transition between fast and slow fiber
## GO:0034370                                                                                                   triglyceride-rich lipoprotein particle remodeling
## GO:0048207                                                                                                            vesicle targeting, rough ER to cis-Golgi
## GO:0009265                                                                                                         2'-deoxyribonucleotide biosynthetic process
## GO:0097113                                                                                                                  AMPA glutamate receptor clustering
## GO:0086016                                                                                                                       AV node cell action potential
## GO:0086027                                                                                                        AV node cell to bundle of His cell signaling
## GO:0035739                                                                                                       CD4-positive, alpha-beta T cell proliferation
## GO:0006977                                                       DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0042023                                                                                                                               DNA endoreduplication
## GO:0006266                                                                                                                                        DNA ligation
## GO:0086103                                                                              G protein-coupled receptor signaling pathway involved in heart process
## GO:0046040                                                                                                                               IMP metabolic process
## GO:0033327                                                                                                                         Leydig cell differentiation
## GO:0006054                                                                                                               N-acetylneuraminate metabolic process
## GO:0001865                                                                                                                           NK T cell differentiation
## GO:0000394                                                                                             RNA splicing, via endonucleolytic cleavage and ligation
## GO:0014010                                                                                                                          Schwann cell proliferation
## GO:0051764                                                                                                                           actin crosslink formation
## GO:0051014                                                                                                                             actin filament severing
## GO:0098870                                                                                                                        action potential propagation
## GO:0002118                                                                                                                                 aggressive behavior
## GO:0032342                                                                                                                    aldosterone biosynthetic process
## GO:0035881                                                                                                                       amacrine cell differentiation
## GO:0006527                                                                                                                          arginine catabolic process
## GO:0015809                                                                                                                                  arginine transport
## GO:0030953                                                                                                                     astral microtubule organization
## GO:0098722                                                                                                                       asymmetric stem cell division
## GO:0070831                                                                                                                          basement membrane assembly
## GO:0060346                                                                                                                            bone trabecula formation
## GO:0006171                                                                                                                           cAMP biosynthetic process
## GO:0036444                                                                                                               calcium import into the mitochondrion
## GO:1901660                                                                                                                                  calcium ion export
## GO:0061309                                                                       cardiac neural crest cell development involved in outflow tract morphogenesis
## GO:0003263                                                                                                                           cardioblast proliferation
## GO:0072584                                                                                                                       caveolin-mediated endocytosis
## GO:0043482                                                                                                                       cellular pigment accumulation
## GO:0036006                                                                                  cellular response to macrophage colony-stimulating factor stimulus
## GO:0071732                                                                                                                   cellular response to nitric oxide
## GO:0071415                                                                                                     cellular response to purine-containing compound
## GO:0070601                                                                                                               centromeric sister chromatid cohesion
## GO:0035627                                                                                                                                  ceramide transport
## GO:0021684                                                                                                                 cerebellar granular layer formation
## GO:0021707                                                                                                             cerebellar granule cell differentiation
## GO:0021892                                                                                               cerebral cortex GABAergic interneuron differentiation
## GO:0031055                                                                                                                  chromatin remodeling at centromere
## GO:0038063                                                                                       collagen-activated tyrosine kinase receptor signaling pathway
## GO:0035726                                                                                                        common myeloid progenitor cell proliferation
## GO:0001867                                                                                                               complement activation, lectin pathway
## GO:0097278                                                                                                                   complement-dependent cytotoxicity
## GO:0097709                                                                                                                       connective tissue replacement
## GO:0007028                                                                                                                              cytoplasm organization
## GO:0002468                                                                                                  dendritic cell antigen processing and presentation
## GO:0098935                                                                                                                                 dendritic transport
## GO:0046385                                                                                                          deoxyribose phosphate biosynthetic process
## GO:0046386                                                                                                             deoxyribose phosphate catabolic process
## GO:0032490                                                                                                           detection of molecule of bacterial origin
## GO:0048263                                                                                                                    determination of dorsal identity
## GO:0048262                                                                                                           determination of dorsal/ventral asymmetry
## GO:0060600                                                                                              dichotomous subdivision of an epithelial terminal unit
## GO:0016102                                                                                                                    diterpenoid biosynthetic process
## GO:0000727                                                                                            double-strand break repair via break-induced replication
## GO:0060900                                                                                                                 embryonic camera-type eye formation
## GO:0048617                                                                                                                     embryonic foregut morphogenesis
## GO:0048241                                                                                                                               epinephrine transport
## GO:0070278                                                                                                          extracellular matrix constituent secretion
## GO:1903867                                                                                                                 extraembryonic membrane development
## GO:0033539                                                                                              fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0009812                                                                                                                         flavonoid metabolic process
## GO:0006002                                                                                                              fructose 6-phosphate metabolic process
## GO:0001574                                                                                                                    ganglioside biosynthetic process
## GO:0036093                                                                                                                             germ cell proliferation
## GO:0072102                                                                                                                            glomerulus morphogenesis
## GO:1901072                                                                                                   glucosamine-containing compound catabolic process
## GO:0006072                                                                                                              glycerol-3-phosphate metabolic process
## GO:0008626                                                                                                       granzyme-mediated apoptotic signaling pathway
## GO:0035733                                                                                                                    hepatic stellate cell activation
## GO:0031507                                                                                                                            heterochromatin assembly
## GO:0033080                                                                                                             immature T cell proliferation in thymus
## GO:0006586                                                                                                                   indolalkylamine metabolic process
## GO:0072642                                                                                                                          interferon-alpha secretion
## GO:0032610                                                                                                                      interleukin-1 alpha production
## GO:0042090                                                                                                                 interleukin-12 biosynthetic process
## GO:0048312                                                                                                          intracellular distribution of mitochondria
## GO:1901678                                                                                                                  iron coordination entity transport
## GO:0033210                                                                                                                   leptin-mediated signaling pathway
## GO:0060174                                                                                                                                  limb bud formation
## GO:0097421                                                                                                                                  liver regeneration
## GO:0051657                                                                                                                   maintenance of organelle location
## GO:0099558                                                                                                                    maintenance of synapse structure
## GO:0060056                                                                                                                            mammary gland involution
## GO:0090148                                                                                                                                    membrane fission
## GO:0001765                                                                                                                              membrane raft assembly
## GO:0072172                                                                                                                        mesonephric tubule formation
## GO:0072075                                                                                                                  metanephric mesenchyme development
## GO:0043653                                                                                           mitochondrial fragmentation involved in apoptotic process
## GO:0014889                                                                                                                                      muscle atrophy
## GO:0002423                                                                                          natural killer cell mediated immune response to tumor cell
## GO:2000320                                                                                             negative regulation of T-helper 17 cell differentiation
## GO:0046007                                                                                               negative regulation of activated T cell proliferation
## GO:0090281                                                                                                           negative regulation of calcium ion import
## GO:1902260                                                                                 negative regulation of delayed rectifier potassium channel activity
## GO:0045602                                                                                             negative regulation of endothelial cell differentiation
## GO:0090394                                                                                            negative regulation of excitatory postsynaptic potential
## GO:0010459                                                                                                                   negative regulation of heart rate
## GO:0034115                                                                                               negative regulation of heterotypic cell-cell adhesion
## GO:1902166                                        negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0150079                                                                                                   negative regulation of neuroinflammatory response
## GO:1903799                                                                     negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0032463                                                                                                  negative regulation of protein homooligomerization
## GO:0051967                                                                                         negative regulation of synaptic transmission, glutamatergic
## GO:0090209                                                                                               negative regulation of triglyceride metabolic process
## GO:0072178                                                                                                                          nephric duct morphogenesis
## GO:0038180                                                                                                               nerve growth factor signaling pathway
## GO:0019227                                                                                                               neuronal action potential propagation
## GO:0098887                                                                              neurotransmitter receptor transport, endosome to postsynaptic membrane
## GO:0070943                                                                                                        neutrophil mediated killing of symbiont cell
## GO:0009125                                                                                                          nucleoside monophosphate catabolic process
## GO:0021554                                                                                                                             optic nerve development
## GO:0071600                                                                                                                          otic vesicle morphogenesis
## GO:0006107                                                                                                                      oxaloacetate metabolic process
## GO:0018206                                                                                                                    peptidyl-methionine modification
## GO:0019511                                                                                                                      peptidyl-proline hydroxylation
## GO:0048935                                                                                                        peripheral nervous system neuron development
## GO:0048934                                                                                                    peripheral nervous system neuron differentiation
## GO:0006658                                                                                                                phosphatidylserine metabolic process
## GO:0033700                                                                                                                                 phospholipid efflux
## GO:0035845                                                                                                       photoreceptor cell outer segment organization
## GO:2000344                                                                                                            positive regulation of acrosome reaction
## GO:0002579                                                                                          positive regulation of antigen processing and presentation
## GO:2000786                                                                                                       positive regulation of autophagosome assembly
## GO:1903431                                                                                                              positive regulation of cell maturation
## GO:0071864                                                                                            positive regulation of cell proliferation in bone marrow
## GO:1901857                                                                                                         positive regulation of cellular respiration
## GO:2000343                                                                                  positive regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0033603                                                                                                           positive regulation of dopamine secretion
## GO:1903977                                                                                                         positive regulation of glial cell migration
## GO:0051574                                                                                                    positive regulation of histone H3-K9 methylation
## GO:0043568                                                                        positive regulation of insulin-like growth factor receptor signaling pathway
## GO:1902741                                                                                                   positive regulation of interferon-alpha secretion
## GO:0045416                                                                                           positive regulation of interleukin-8 biosynthetic process
## GO:1902231                                                              positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0031442                                                                                                       positive regulation of mRNA 3'-end processing
## GO:0010744                                                                                 positive regulation of macrophage derived foam cell differentiation
## GO:0051561                                                                                      positive regulation of mitochondrial calcium ion concentration
## GO:0051901                                                                                                 positive regulation of mitochondrial depolarization
## GO:1901030                                        positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:2000288                                                                                                       positive regulation of myoblast proliferation
## GO:0010739                                                                                                   positive regulation of protein kinase A signaling
## GO:0090037                                                                                                   positive regulation of protein kinase C signaling
## GO:0010870                                                                                                positive regulation of receptor biosynthetic process
## GO:0045876                                                                                                    positive regulation of sister chromatid cohesion
## GO:0045945                                                                                          positive regulation of transcription by RNA polymerase III
## GO:1990440                                    positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:0048563                                                                                                           post-embryonic animal organ morphogenesis
## GO:0031077                                                                                                          post-embryonic camera-type eye development
## GO:0097104                                                                                                                      postsynaptic membrane assembly
## GO:0098789                                                                                                      pre-mRNA cleavage required for polyadenylation
## GO:0097354                                                                                                                                         prenylation
## GO:0070213                                                                                                                       protein auto-ADP-ribosylation
## GO:0007039                                                                                                            protein catabolic process in the vacuole
## GO:0097499                                                                                                           protein localization to non-motile cilium
## GO:0018342                                                                                                                                 protein prenylation
## GO:0018298                                                                                                                         protein-chromophore linkage
## GO:0021860                                                                                                                        pyramidal neuron development
## GO:0009208                                                                                            pyrimidine ribonucleoside triphosphate metabolic process
## GO:2000561                                                                                         regulation of CD4-positive, alpha-beta T cell proliferation
## GO:0002664                                                                                                            regulation of T cell tolerance induction
## GO:2000822                                                                                                              regulation of behavioral fear response
## GO:0060693                                                                                    regulation of branching involved in salivary gland morphogenesis
## GO:1902514                                                            regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:1901894                                                                                                  regulation of calcium-transporting ATPase activity
## GO:0070587                                                                                           regulation of cell-cell adhesion involved in gastrulation
## GO:0010872                                                                                                            regulation of cholesterol esterification
## GO:0002676                                                                                                         regulation of chronic inflammatory response
## GO:0003356                                                                                                                 regulation of cilium beat frequency
## GO:0150065                                                                                                                  regulation of deacetylase activity
## GO:1903998                                                                                                                       regulation of eating behavior
## GO:0060768                                                                  regulation of epithelial cell proliferation involved in prostate gland development
## GO:0070203                                                                                     regulation of establishment of protein localization to telomere
## GO:1903365                                                                                                                         regulation of fear response
## GO:0045924                                                                                                                    regulation of female receptivity
## GO:0014052                                                                                                     regulation of gamma-aminobutyric acid secretion
## GO:2000322                                                                                             regulation of glucocorticoid receptor signaling pathway
## GO:2000849                                                                                                              regulation of glucocorticoid secretion
## GO:1903299                                                                                                                   regulation of hexokinase activity
## GO:0035330                                                                                                                       regulation of hippo signaling
## GO:0061085                                                                                                            regulation of histone H3-K27 methylation
## GO:0002923                                                                        regulation of humoral immune response mediated by circulating immunoglobulin
## GO:1902739                                                                                                            regulation of interferon-alpha secretion
## GO:0045075                                                                                                   regulation of interleukin-12 biosynthetic process
## GO:0048021                                                                                                          regulation of melanin biosynthetic process
## GO:1905038                                                                                                      regulation of membrane lipid metabolic process
## GO:0002855                                                                            regulation of natural killer cell mediated immune response to tumor cell
## GO:0072182                                                                                        regulation of nephron tubule epithelial cell differentiation
## GO:1902513                                                                                                 regulation of organelle transport along microtubule
## GO:2001204                                                                                                                regulation of osteoclast development
## GO:0060405                                                                                                                       regulation of penile erection
## GO:0046532                                                                                                    regulation of photoreceptor cell differentiation
## GO:0048548                                                                                                                           regulation of pinocytosis
## GO:0031392                                                                                                    regulation of prostaglandin biosynthetic process
## GO:1903332                                                                                                                       regulation of protein folding
## GO:0031272                                                                                                                 regulation of pseudopodium assembly
## GO:0003266                                                                                       regulation of secondary heart field cardioblast proliferation
## GO:0045091                                                            regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0090153                                                                                                     regulation of sphingolipid biosynthetic process
## GO:1901339                                                                                               regulation of store-operated calcium channel activity
## GO:0042762                                                                                                              regulation of sulfur metabolic process
## GO:0031630                                                                           regulation of synaptic vesicle fusion to presynaptic active zone membrane
## GO:0010807                                                                                                              regulation of synaptic vesicle priming
## GO:0034135                                                                                                regulation of toll-like receptor 2 signaling pathway
## GO:0043619                                                         regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0006450                                                                                                                regulation of translational fidelity
## GO:1901163                                                                                                            regulation of trophoblast cell migration
## GO:0090043                                                                                                                 regulation of tubulin deacetylation
## GO:1905459                                                                              regulation of vascular associated smooth muscle cell apoptotic process
## GO:0044557                                                                                                                         relaxation of smooth muscle
## GO:0002679                                                                                                      respiratory burst involved in defense response
## GO:0034776                                                                                                                               response to histamine
## GO:0017085                                                                                                                             response to insecticide
## GO:0036005                                                                                                    response to macrophage colony-stimulating factor
## GO:0010042                                                                                                                           response to manganese ion
## GO:0046689                                                                                                                             response to mercury ion
## GO:0051385                                                                                                                       response to mineralocorticoid
## GO:0006991                                                                                                                        response to sterol depletion
## GO:0014874                                                                                    response to stimulus involved in regulation of muscle adaptation
## GO:0061299                                                                                                 retina vasculature morphogenesis in camera-type eye
## GO:0002138                                                                                                                  retinoic acid biosynthetic process
## GO:0060013                                                                                                                                     righting reflex
## GO:0060872                                                                                                                      semicircular canal development
## GO:0048630                                                                                                                       skeletal muscle tissue growth
## GO:0043589                                                                                                                                  skin morphogenesis
## GO:0009301                                                                                                                                 snRNA transcription
## GO:0046520                                                                                                                      sphingoid biosynthetic process
## GO:0061669                                                                                                              spontaneous neurotransmitter secretion
## GO:0070142                                                                                                                            synaptic vesicle budding
## GO:0016188                                                                                                                         synaptic vesicle maturation
## GO:0035999                                                                                                                    tetrahydrofolate interconversion
## GO:0070493                                                                                                       thrombin-activated receptor signaling pathway
## GO:0006384                                                                                           transcription initiation from RNA polymerase III promoter
## GO:0032905                                                                                                         transforming growth factor beta1 production
## GO:0021559                                                                                                                        trigeminal nerve development
## GO:0006568                                                                                                                        tryptophan metabolic process
## GO:0072641                                                                                                                         type I interferon secretion
## GO:0006570                                                                                                                          tyrosine metabolic process
## GO:0000050                                                                                                                                          urea cycle
## GO:1905288                                                                                            vascular associated smooth muscle cell apoptotic process
## GO:0097084                                                                                                             vascular smooth muscle cell development
## GO:0048845                                                                                                                   venous blood vessel morphogenesis
## GO:0055015                                                                                                         ventricular cardiac muscle cell development
## GO:0042368                                                                                                                      vitamin D biosynthetic process
## GO:0009111                                                                                                                           vitamin catabolic process
## GO:0098792                                                                                                                                           xenophagy
## GO:0019471                                                                                                                  4-hydroxyproline metabolic process
## GO:0032488                                                                                                                   Cdc42 protein signal transduction
## GO:0071712                                                                                                   ER-associated misfolded protein catabolic process
## GO:0035588                                                                                             G protein-coupled purinergic receptor signaling pathway
## GO:0090161                                                                                                                              Golgi ribbon formation
## GO:0036498                                                                                                             IRE1-mediated unfolded protein response
## GO:0072683                                                                                                                                T cell extravasation
## GO:0072540                                                                                                                 T-helper 17 cell lineage commitment
## GO:0006047                                                                                                           UDP-N-acetylglucosamine metabolic process
## GO:0003306                                                                                                 Wnt signaling pathway involved in heart development
## GO:0006086                                                                                                       acetyl-CoA biosynthetic process from pyruvate
## GO:0033275                                                                                                                       actin-myosin filament sliding
## GO:0001973                                                                                                                adenosine receptor signaling pathway
## GO:0007195                                                                                    adenylate cyclase-inhibiting dopamine receptor signaling pathway
## GO:0019646                                                                                                                    aerobic electron transport chain
## GO:0032341                                                                                                                       aldosterone metabolic process
## GO:0060033                                                                                                                     anatomical structure regression
## GO:0038166                                                                                                             angiotensin-activated signaling pathway
## GO:0009068                                                                                                       aspartate family amino acid catabolic process
## GO:0019896                                                                                                                   axonal transport of mitochondrion
## GO:0035630                                                                                                     bone mineralization involved in bone maturation
## GO:0060433                                                                                                                                bronchus development
## GO:0006182                                                                                                                           cGMP biosynthetic process
## GO:0061577                                                                          calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0003207                                                                                                                           cardiac chamber formation
## GO:0032048                                                                                                                       cardiolipin metabolic process
## GO:0009437                                                                                                                         carnitine metabolic process
## GO:0060573                                                                                           cell fate specification involved in pattern specification
## GO:0071838                                                                                                                   cell proliferation in bone marrow
## GO:0070586                                                                                                         cell-cell adhesion involved in gastrulation
## GO:0045217                                                                                                                      cell-cell junction maintenance
## GO:0071318                                                                                                                            cellular response to ATP
## GO:0071468                                                                                                                      cellular response to acidic pH
## GO:0036295                                                                                                        cellular response to increased oxygen levels
## GO:0035457                                                                                                               cellular response to interferon-alpha
## GO:0071281                                                                                                                       cellular response to iron ion
## GO:0071294                                                                                                                       cellular response to zinc ion
## GO:0070508                                                                                                                                  cholesterol import
## GO:0048096                                                                                                     chromatin-mediated maintenance of transcription
## GO:0072044                                                                                                                         collecting duct development
## GO:0006957                                                                                                          complement activation, alternative pathway
## GO:0009264                                                                                                               deoxyribonucleotide catabolic process
## GO:0043649                                                                                                                 dicarboxylic acid catabolic process
## GO:0090494                                                                                                                                     dopamine uptake
## GO:0060502                                                                                        epithelial cell proliferation involved in lung morphogenesis
## GO:0060767                                                                                epithelial cell proliferation involved in prostate gland development
## GO:0090557                                                                                                     establishment of endothelial intestinal barrier
## GO:0021561                                                                                                                            facial nerve development
## GO:0021610                                                                                                                          facial nerve morphogenesis
## GO:0070341                                                                                                                              fat cell proliferation
## GO:0007440                                                                                                                               foregut morphogenesis
## GO:0001731                                                                                                      formation of translation preinitiation complex
## GO:0030388                                                                                                         fructose 1,6-bisphosphate metabolic process
## GO:0035933                                                                                                                            glucocorticoid secretion
## GO:0097688                                                                                                                       glutamate receptor clustering
## GO:0006750                                                                                                                    glutathione biosynthetic process
## GO:0006662                                                                                                                    glycerol ether metabolic process
## GO:0015816                                                                                                                                   glycine transport
## GO:0042541                                                                                                                     hemoglobin biosynthetic process
## GO:0034375                                                                                                        high-density lipoprotein particle remodeling
## GO:0033523                                                                                                                          histone H2B ubiquitination
## GO:0070933                                                                                                                            histone H4 deacetylation
## GO:0034969                                                                                                                        histone arginine methylation
## GO:0071044                                                                                                                      histone mRNA catabolic process
## GO:0006020                                                                                                                          inositol metabolic process
## GO:0072608                                                                                                                            interleukin-10 secretion
## GO:0072615                                                                                                                            interleukin-17 secretion
## GO:0070970                                                                                                                             interleukin-2 secretion
## GO:0006880                                                                                                              intracellular sequestering of iron ion
## GO:1902400                                                                              intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0021670                                                                                                                       lateral ventricle development
## GO:0070986                                                                                                                       left/right axis specification
## GO:0032799                                                                                         low-density lipoprotein receptor particle metabolic process
## GO:0060430                                                                                                                            lung saccule development
## GO:0032275                                                                                                                       luteinizing hormone secretion
## GO:0098787                                                                                                           mRNA cleavage involved in mRNA processing
## GO:0034088                                                                                                    maintenance of mitotic sister chromatid cohesion
## GO:0060179                                                                                                                                male mating behavior
## GO:0007135                                                                                                                                          meiosis II
## GO:0061983                                                                                                                       meiosis II cell cycle process
## GO:0007128                                                                                                                                  meiotic prophase I
## GO:0045141                                                                                                                         meiotic telomere clustering
## GO:0086013                                                                                 membrane repolarization during cardiac muscle cell action potential
## GO:0003337                                                                          mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0009086                                                                                                                     methionine biosynthetic process
## GO:0072393                                                                                              microtubule anchoring at microtubule organizing center
## GO:0060073                                                                                                                                         micturition
## GO:0006705                                                                                                              mineralocorticoid biosynthetic process
## GO:0006123                                                                                            mitochondrial electron transport, cytochrome c to oxygen
## GO:0006122                                                                                         mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0007100                                                                                                                       mitotic centrosome separation
## GO:0003183                                                                                                                          mitral valve morphogenesis
## GO:0097049                                                                                                                      motor neuron apoptotic process
## GO:0060586                                                                                                       multicellular organismal iron ion homeostasis
## GO:0031033                                                                                                                        myosin filament organization
## GO:0001787                                                                                                                   natural killer cell proliferation
## GO:2000317                                                                                             negative regulation of T-helper 17 type immune response
## GO:0061052                                                                      negative regulation of cell growth involved in cardiac muscle cell development
## GO:0010826                                                                                                       negative regulation of centrosome duplication
## GO:1900118                                                                                                 negative regulation of execution phase of apoptosis
## GO:0045717                                                                                              negative regulation of fatty acid biosynthetic process
## GO:0032353                                                                                                 negative regulation of hormone biosynthetic process
## GO:0002921                                                                                                      negative regulation of humoral immune response
## GO:1900165                                                                                                      negative regulation of interleukin-6 secretion
## GO:1900272                                                                                              negative regulation of long-term synaptic potentiation
## GO:2000402                                                                                                         negative regulation of lymphocyte migration
## GO:0033004                                                                                                         negative regulation of mast cell activation
## GO:0014745                                                                                                            negative regulation of muscle adaptation
## GO:0046929                                                                                                   negative regulation of neurotransmitter secretion
## GO:2000009                                                                                         negative regulation of protein localization to cell surface
## GO:0051280                                                                              negative regulation of release of sequestered calcium ion into cytosol
## GO:0034392                                                                                         negative regulation of smooth muscle cell apoptotic process
## GO:0097201                                                          negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0072176                                                                                                                            nephric duct development
## GO:0001840                                                                                                                            neural plate development
## GO:0045161                                                                                                                     neuronal ion channel clustering
## GO:0099639                                                                                    neurotransmitter receptor transport, endosome to plasma membrane
## GO:0001781                                                                                                                        neutrophil apoptotic process
## GO:0043312                                                                                                                            neutrophil degranulation
## GO:0048570                                                                                                                             notochord morphogenesis
## GO:0070431                                                                            nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0070423                                                                              nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070444                                                                                                            oligodendrocyte progenitor proliferation
## GO:0006490                                                                                             oligosaccharide-lipid intermediate biosynthetic process
## GO:0006098                                                                                                                             pentose-phosphate shunt
## GO:0030432                                                                                                                                         peristalsis
## GO:0006654                                                                                                              phosphatidic acid biosynthetic process
## GO:0055091                                                                                                                            phospholipid homeostasis
## GO:0043476                                                                                                                                pigment accumulation
## GO:0001778                                                                                                                              plasma membrane repair
## GO:2000105                                                                                                positive regulation of DNA-dependent DNA replication
## GO:0030836                                                                                              positive regulation of actin filament depolymerization
## GO:1903961                                                                                                positive regulation of anion transmembrane transport
## GO:0090343                                                                                                                   positive regulation of cell aging
## GO:0033240                                                                                             positive regulation of cellular amine metabolic process
## GO:0046607                                                                                                             positive regulation of centrosome cycle
## GO:0045080                                                                                               positive regulation of chemokine biosynthetic process
## GO:1900426                                                                                                positive regulation of defense response to bacterium
## GO:2000253                                                                                                             positive regulation of feeding behavior
## GO:0032725                                                                  positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0060124                                                                                                     positive regulation of growth hormone secretion
## GO:0051798                                                                                                    positive regulation of hair follicle development
## GO:0051024                                                                                                     positive regulation of immunoglobulin secretion
## GO:0045078                                                                                        positive regulation of interferon-gamma biosynthetic process
## GO:0045086                                                                                           positive regulation of interleukin-2 biosynthetic process
## GO:0032754                                                                                                     positive regulation of interleukin-5 production
## GO:0010838                                                                                                   positive regulation of keratinocyte proliferation
## GO:0071639                                                                                    positive regulation of monocyte chemotactic protein-1 production
## GO:0032825                                                                                          positive regulation of natural killer cell differentiation
## GO:0060213                                                                             positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0071073                                                                                            positive regulation of phospholipid biosynthetic process
## GO:0032308                                                                                                      positive regulation of prostaglandin secretion
## GO:1905668                                                                                             positive regulation of protein localization to endosome
## GO:1902459                                                                                             positive regulation of stem cell population maintenance
## GO:1900244                                                                                                 positive regulation of synaptic vesicle endocytosis
## GO:1902805                                                                                                   positive regulation of synaptic vesicle transport
## GO:0002329                                                                                                                          pre-B cell differentiation
## GO:0051324                                                                                                                                            prophase
## GO:0060525                                                                                                               prostate glandular acinus development
## GO:0006517                                                                                                                             protein deglycosylation
## GO:0016926                                                                                                                               protein desumoylation
## GO:0016558                                                                                                               protein import into peroxisome matrix
## GO:1902946                                                                                                              protein localization to early endosome
## GO:0097428                                                                                                  protein maturation by iron-sulfur cluster transfer
## GO:0021859                                                                                                                    pyramidal neuron differentiation
## GO:0009219                                                                                                    pyrimidine deoxyribonucleotide metabolic process
## GO:0007168                                                                                                         receptor guanylyl cyclase signaling pathway
## GO:0060368                                                                                    regulation of Fc receptor mediated stimulatory signaling pathway
## GO:1905214                                                                                                                           regulation of RNA binding
## GO:0045625                                                                                                       regulation of T-helper 1 cell differentiation
## GO:1903789                                                                                                    regulation of amino acid transmembrane transport
## GO:1902510                                                                                                           regulation of apoptotic DNA fragmentation
## GO:0051988                                                                                     regulation of attachment of spindle microtubules to kinetochore
## GO:1904251                                                                                                           regulation of bile acid metabolic process
## GO:0002016                                                                                                     regulation of blood volume by renin-angiotensin
## GO:0003264                                                                                                             regulation of cardioblast proliferation
## GO:0071863                                                                                                     regulation of cell proliferation in bone marrow
## GO:0033632                                                                                               regulation of cell-cell adhesion mediated by integrin
## GO:0006521                                                                                                 regulation of cellular amino acid metabolic process
## GO:0043471                                                                                               regulation of cellular carbohydrate catabolic process
## GO:0042268                                                                                                                             regulation of cytolysis
## GO:0002730                                                                                                    regulation of dendritic cell cytokine production
## GO:0060159                                                                                                   regulation of dopamine receptor signaling pathway
## GO:0070202                                                                                   regulation of establishment of protein localization to chromosome
## GO:0070344                                                                                                                regulation of fat cell proliferation
## GO:0060453                                                                                                                regulation of gastric acid secretion
## GO:0072124                                                                                               regulation of glomerular mesangial cell proliferation
## GO:0070092                                                                                                                    regulation of glucagon secretion
## GO:2000615                                                                                                             regulation of histone H3-K9 acetylation
## GO:1900112                                                                                                          regulation of histone H3-K9 trimethylation
## GO:1901298                                                                                      regulation of hydrogen peroxide-mediated programmed cell death
## GO:0033083                                                                                                         regulation of immature T cell proliferation
## GO:0010749                                                                                             regulation of nitric oxide mediated signal transduction
## GO:0070445                                                                                              regulation of oligodendrocyte progenitor proliferation
## GO:2000232                                                                                                                       regulation of rRNA processing
## GO:1900376                                                                                             regulation of secondary metabolite biosynthetic process
## GO:0010889                                                                                                          regulation of sequestering of triglyceride
## GO:0014842                                                                                          regulation of skeletal muscle satellite cell proliferation
## GO:2000035                                                                                                                    regulation of stem cell division
## GO:0000083                                                                       regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0010998                                                                                regulation of translational initiation by eIF2 alpha phosphorylation
## GO:2000674                                                                                              regulation of type B pancreatic cell apoptotic process
## GO:0070472                                                                                                     regulation of uterine smooth muscle contraction
## GO:0003091                                                                                                                             renal water homeostasis
## GO:0032026                                                                                                                           response to magnesium ion
## GO:0046548                                                                                                                        retinal rod cell development
## GO:0043691                                                                                                                       reverse cholesterol transport
## GO:1902287                                                                                       semaphorin-plexin signaling pathway involved in axon guidance
## GO:0042989                                                                                                                      sequestering of actin monomers
## GO:0072431                                                                                    signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:0039692                                                                          single stranded viral RNA replication via double stranded DNA intermediate
## GO:0000491                                                                                                  small nucleolar ribonucleoprotein complex assembly
## GO:0031126                                                                                                                            snoRNA 3'-end processing
## GO:0035376                                                                                                                                       sterol import
## GO:0001682                                                                                                                              tRNA 5'-leader removal
## GO:0060439                                                                                                                               trachea morphogenesis
## GO:0061450                                                                                                                          trophoblast cell migration
## GO:0046415                                                                                                                             urate metabolic process
## GO:0019627                                                                                                                              urea metabolic process
## GO:0014832                                                                                                           urinary bladder smooth muscle contraction
## GO:0060068                                                                                                                                  vagina development
## GO:0021521                                                                                                       ventral spinal cord interneuron specification
## GO:0039702                                                                                                                viral budding via host ESCRT complex
## GO:0086067                                                                                                    AV node cell to bundle of His cell communication
## GO:0018410                                                                                                          C-terminal protein amino acid modification
## GO:0006268                                                                                                           DNA unwinding involved in DNA replication
## GO:0006983                                                                                                                                ER overload response
## GO:0038094                                                                                                                 Fc-gamma receptor signaling pathway
## GO:0007213                                                                                          G protein-coupled acetylcholine receptor signaling pathway
## GO:0006895                                                                                                                         Golgi to endosome transport
## GO:0002756                                                                                              MyD88-independent toll-like receptor signaling pathway
## GO:0006491                                                                                                                                 N-glycan processing
## GO:0051132                                                                                                                                NK T cell activation
## GO:0016246                                                                                                                                    RNA interference
## GO:0032486                                                                                                                     Rap protein signal transduction
## GO:0007183                                                                                                                       SMAD protein complex assembly
## GO:0002517                                                                                                                          T cell tolerance induction
## GO:0070914                                                                                                                           UV-damage excision repair
## GO:0097202                                                                                                  activation of cysteine-type endopeptidase activity
## GO:0052646                                                                                                                 alditol phosphate metabolic process
## GO:0042983                                                                                                      amyloid precursor protein biosynthetic process
## GO:0031145                                                                                              anaphase-promoting complex-dependent catabolic process
## GO:0008595                                                                                                       anterior/posterior axis specification, embryo
## GO:0051315                                                                                           attachment of mitotic spindle microtubules to kinetochore
## GO:0031223                                                                                                                                   auditory behavior
## GO:0015802                                                                                                                          basic amino acid transport
## GO:0032060                                                                                                                                       bleb assembly
## GO:0060670                                                                                              branching involved in labyrinthine layer morphogenesis
## GO:0060911                                                                                                                        cardiac cell fate commitment
## GO:0090493                                                                                                                                catecholamine uptake
## GO:0021924                                                                                                        cell proliferation in external granule layer
## GO:0042402                                                                                                           cellular biogenic amine catabolic process
## GO:0052695                                                                                                                            cellular glucuronidation
## GO:0071397                                                                                                                    cellular response to cholesterol
## GO:0097011                                                                      cellular response to granulocyte macrophage colony-stimulating factor stimulus
## GO:0072711                                                                                                                    cellular response to hydroxyurea
## GO:0071285                                                                                                                    cellular response to lithium ion
## GO:0071380                                                                                                       cellular response to prostaglandin E stimulus
## GO:1902170                                                                                                      cellular response to reactive nitrogen species
## GO:0071295                                                                                                                        cellular response to vitamin
## GO:0051299                                                                                                                               centrosome separation
## GO:0021683                                                                                                             cerebellar granular layer morphogenesis
## GO:0021930                                                                                                     cerebellar granule cell precursor proliferation
## GO:0090220                                                           chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0038065                                                                                                                collagen-activated signaling pathway
## GO:0071679                                                                                                                    commissural neuron axon guidance
## GO:0002430                                                                                                      complement receptor mediated signaling pathway
## GO:0021604                                                                                                               cranial nerve structural organization
## GO:0042994                                                                                                    cytoplasmic sequestering of transcription factor
## GO:0002371                                                                                                                  dendritic cell cytokine production
## GO:0045136                                                                                                     development of secondary sexual characteristics
## GO:0009950                                                                                                                   dorsal/ventral axis specification
## GO:0060272                                                                                                              embryonic skeletal joint morphogenesis
## GO:0003157                                                                                                                             endocardium development
## GO:0015682                                                                                                                               ferric iron transport
## GO:0001660                                                                                                                                    fever generation
## GO:0021877                                                                                                                    forebrain neuron fate commitment
## GO:0042492                                                                                                                  gamma-delta T cell differentiation
## GO:0072311                                                                                                          glomerular epithelial cell differentiation
## GO:0072110                                                                                                             glomerular mesangial cell proliferation
## GO:0072112                                                                                                 glomerular visceral epithelial cell differentiation
## GO:0070091                                                                                                                                  glucagon secretion
## GO:0006544                                                                                                                           glycine metabolic process
## GO:0061615                                                                                                     glycolytic process through fructose-6-phosphate
## GO:1901070                                                                                                  guanosine-containing compound biosynthetic process
## GO:0048012                                                                                                 hepatocyte growth factor receptor signaling pathway
## GO:0043970                                                                                                                           histone H3-K9 acetylation
## GO:0033169                                                                                                                         histone H3-K9 demethylation
## GO:0033079                                                                                                                       immature T cell proliferation
## GO:0090594                                                                                                                   inflammatory response to wounding
## GO:0007320                                                                                                                                        insemination
## GO:0030299                                                                                                                   intestinal cholesterol absorption
## GO:0008298                                                                                                                     intracellular mRNA localization
## GO:0035721                                                                                                                   intraciliary retrograde transport
## GO:0060601                                                                                                                lateral sprouting from an epithelium
## GO:0019370                                                                                                                    leukotriene biosynthetic process
## GO:0061140                                                                                                                 lung secretory cell differentiation
## GO:0001553                                                                                                                                       luteinization
## GO:0034086                                                                                                            maintenance of sister chromatid cohesion
## GO:0002551                                                                                                                                mast cell chemotaxis
## GO:0098764                                                                                                                          meiosis I cell cycle phase
## GO:0098762                                                                                                                            meiotic cell cycle phase
## GO:0007501                                                                                                                  mesodermal cell fate specification
## GO:0008212                                                                                                                 mineralocorticoid metabolic process
## GO:0034982                                                                                                                    mitochondrial protein processing
## GO:0003174                                                                                                                            mitral valve development
## GO:0019054                                                                                                                 modulation by virus of host process
## GO:0042693                                                                                                                         muscle cell fate commitment
## GO:0043508                                                                                                          negative regulation of JUN kinase activity
## GO:0032926                                                                                           negative regulation of activin receptor signaling pathway
## GO:0002674                                                                                                  negative regulation of acute inflammatory response
## GO:0106072                                                    negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0046642                                                                                              negative regulation of alpha-beta T cell proliferation
## GO:0032099                                                                                                                     negative regulation of appetite
## GO:1902902                                                                                                       negative regulation of autophagosome assembly
## GO:0045955                                                                                             negative regulation of calcium ion-dependent exocytosis
## GO:0046606                                                                                                             negative regulation of centrosome cycle
## GO:0046322                                                                                                         negative regulation of fatty acid oxidation
## GO:0045820                                                                                                           negative regulation of glycolytic process
## GO:0051573                                                                                                    negative regulation of histone H3-K9 methylation
## GO:0032351                                                                                                    negative regulation of hormone metabolic process
## GO:0002638                                                                                                    negative regulation of immunoglobulin production
## GO:0050711                                                                                                      negative regulation of interleukin-1 secretion
## GO:0033147                                                                            negative regulation of intracellular estrogen receptor signaling pathway
## GO:2001054                                                                                           negative regulation of mesenchymal cell apoptotic process
## GO:0060546                                                                                                          negative regulation of necroptotic process
## GO:2001223                                                                                                             negative regulation of neuron migration
## GO:0060394                                                                              negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0031953                                                                                                  negative regulation of protein autophosphorylation
## GO:1900121                                                                                                             negative regulation of receptor binding
## GO:0002091                                                                                                     negative regulation of receptor internalization
## GO:2000650                                                                                negative regulation of sodium ion transmembrane transporter activity
## GO:1900025                                                                                  negative regulation of substrate adhesion-dependent cell spreading
## GO:0051974                                                                                                          negative regulation of telomerase activity
## GO:0034244                                                                     negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0060339                                                                                 negative regulation of type I interferon-mediated signaling pathway
## GO:0030948                                                                negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0045906                                                                                                             negative regulation of vasoconstriction
## GO:1903817                                                                                     negative regulation of voltage-gated potassium channel activity
## GO:0072160                                                                                                      nephron tubule epithelial cell differentiation
## GO:0070942                                                                                                                    neutrophil mediated cytotoxicity
## GO:0071941                                                                                                                    nitrogen cycle metabolic process
## GO:0071027                                                                                                                            nuclear RNA surveillance
## GO:0071028                                                                                                                           nuclear mRNA surveillance
## GO:0006862                                                                                                                                nucleotide transport
## GO:0035872                                                                nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0042048                                                                                                                                  olfactory behavior
## GO:0006857                                                                                                                              oligopeptide transport
## GO:0001542                                                                                                                     ovulation from ovarian follicle
## GO:0048340                                                                                                                     paraxial mesoderm morphogenesis
## GO:0019321                                                                                                                           pentose metabolic process
## GO:0018216                                                                                                                       peptidyl-arginine methylation
## GO:0001845                                                                                                                              phagolysosome assembly
## GO:0035435                                                                                                               phosphate ion transmembrane transport
## GO:0046471                                                                                                              phosphatidylglycerol metabolic process
## GO:0006596                                                                                                                      polyamine biosynthetic process
## GO:0021548                                                                                                                                    pons development
## GO:0045899                                                             positive regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0060391                                                                                             positive regulation of SMAD protein signal transduction
## GO:1904925                                                       positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:0060452                                                                                                   positive regulation of cardiac muscle contraction
## GO:1903651                                                                                                        positive regulation of cytoplasmic transport
## GO:2001034                                                                     positive regulation of double-strand break repair via nonhomologous end joining
## GO:0090193                                                                                                       positive regulation of glomerulus development
## GO:0042635                                                                                                                   positive regulation of hair cycle
## GO:0031652                                                                                                              positive regulation of heat generation
## GO:1902715                                                                                                   positive regulation of interferon-gamma secretion
## GO:2000484                                                                                                      positive regulation of interleukin-8 secretion
## GO:0033148                                                                            positive regulation of intracellular estrogen receptor signaling pathway
## GO:0048304                                                                                            positive regulation of isotype switching to IgG isotypes
## GO:0051549                                                                                                       positive regulation of keratinocyte migration
## GO:1904181                                                                                                      positive regulation of membrane depolarization
## GO:0072216                                                                                                      positive regulation of metanephros development
## GO:0010918                                                                                             positive regulation of mitochondrial membrane potential
## GO:1902857                                                                                                   positive regulation of non-motile cilium assembly
## GO:0042482                                                                                                                positive regulation of odontogenesis
## GO:1903862                                                                                                    positive regulation of oxidative phosphorylation
## GO:0090073                                                                                            positive regulation of protein homodimerization activity
## GO:1904816                                                                         positive regulation of protein localization to chromosome, telomeric region
## GO:1902916                                                                                                   positive regulation of protein polyubiquitination
## GO:2000833                                                                                                    positive regulation of steroid hormone secretion
## GO:0060340                                                                                 positive regulation of type I interferon-mediated signaling pathway
## GO:0035810                                                                                                                 positive regulation of urine volume
## GO:0044090                                                                                                         positive regulation of vacuole organization
## GO:0097090                                                                                                                   presynaptic membrane organization
## GO:0034309                                                                                                                primary alcohol biosynthetic process
## GO:0002328                                                                                                                          pro-B cell differentiation
## GO:1903441                                                                                                            protein localization to ciliary membrane
## GO:0034497                                                                                                    protein localization to phagophore assembly site
## GO:0031269                                                                                                                               pseudopodium assembly
## GO:0009148                                                                                             pyrimidine nucleoside triphosphate biosynthetic process
## GO:1900225                                                                                                   regulation of NLRP3 inflammasome complex assembly
## GO:1903025                                                                     regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:0045628                                                                                                       regulation of T-helper 2 cell differentiation
## GO:1904177                                                                                                            regulation of adipose tissue development
## GO:0042984                                                                                        regulation of amyloid precursor protein biosynthetic process
## GO:0010359                                                                                                                regulation of anion channel activity
## GO:1903587                                                        regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0021936                                                                                       regulation of cerebellar granule cell precursor proliferation
## GO:0010885                                                                                                                   regulation of cholesterol storage
## GO:1902950                                                                                                           regulation of dendritic spine maintenance
## GO:0034350                                                                                                          regulation of glial cell apoptotic process
## GO:0003093                                                                                                                 regulation of glomerular filtration
## GO:0032276                                                                                                                regulation of gonadotropin secretion
## GO:0090239                                                                                                                regulation of histone H4 acetylation
## GO:0045072                                                                                                 regulation of interferon-gamma biosynthetic process
## GO:1904478                                                                                                                 regulation of intestinal absorption
## GO:0050746                                                                                                         regulation of lipoprotein metabolic process
## GO:0010988                                                                                            regulation of low-density lipoprotein particle clearance
## GO:0035751                                                                                                                    regulation of lysosomal lumen pH
## GO:2000018                                                                                                                regulation of male gonad development
## GO:1905048                                                                                                             regulation of metallopeptidase activity
## GO:0090308                                                                                             regulation of methylation-dependent chromatin silencing
## GO:0099159                                                                                                regulation of modification of postsynaptic structure
## GO:0070255                                                                                                                       regulation of mucus secretion
## GO:1904396                                                                                                    regulation of neuromuscular junction development
## GO:0033262                                                                                                    regulation of nuclear cell cycle DNA replication
## GO:0060281                                                                                                                    regulation of oocyte development
## GO:1905879                                                                                                                             regulation of oogenesis
## GO:0010755                                                                                                                regulation of plasminogen activation
## GO:0090085                                                                                                              regulation of protein deubiquitination
## GO:1905666                                                                                                      regulation of protein localization to endosome
## GO:0002087                                                                           regulation of respiratory gaseous exchange by neurological system process
## GO:0048742                                                                                                     regulation of skeletal muscle fiber development
## GO:0061418                                                                  regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0043558                                                                                        regulation of translational initiation in response to stress
## GO:2001279                                                                                           regulation of unsaturated fatty acid biosynthetic process
## GO:0055119                                                                                                                        relaxation of cardiac muscle
## GO:0061318                                                                                                               renal filtration cell differentiation
## GO:0036296                                                                                                                 response to increased oxygen levels
## GO:0032494                                                                                                                           response to peptidoglycan
## GO:0033280                                                                                                                               response to vitamin D
## GO:0000054                                                                                                               ribosomal subunit export from nucleus
## GO:0033750                                                                                                                               ribosome localization
## GO:0048733                                                                                                                         sebaceous gland development
## GO:1902285                                                                          semaphorin-plexin signaling pathway involved in neuron projection guidance
## GO:0097577                                                                                                                            sequestering of iron ion
## GO:0009071                                                                                                          serine family amino acid catabolic process
## GO:0007614                                                                                                                                   short-term memory
## GO:0006465                                                                                                                           signal peptide processing
## GO:0072425                                                                                            signal transduction involved in G2 DNA damage checkpoint
## GO:0014841                                                                                                        skeletal muscle satellite cell proliferation
## GO:0030240                                                                                                              skeletal muscle thin filament assembly
## GO:0036376                                                                                                            sodium ion export across plasma membrane
## GO:0032525                                                                                                            somite rostral/caudal axis specification
## GO:0006670                                                                                                                       sphingosine metabolic process
## GO:0021520                                                                                                    spinal cord motor neuron cell fate specification
## GO:0070525                                                                                                   tRNA threonylcarbamoyladenosine metabolic process
## GO:0043247                                                                                                      telomere maintenance in response to DNA damage
## GO:0021794                                                                                                                                thalamus development
## GO:0007351                                                                                                                     tripartite regional subdivision
## GO:0072512                                                                                                                trivalent inorganic cation transport
## GO:0090042                                                                                                                               tubulin deacetylation
## GO:0014848                                                                                                             urinary tract smooth muscle contraction
## GO:0070471                                                                                                                   uterine smooth muscle contraction
## GO:0042761                                                                                                     very long-chain fatty acid biosynthetic process
## GO:0000076                                                                                                                          DNA replication checkpoint
## GO:0097154                                                                                                                    GABAergic neuron differentiation
## GO:0048313                                                                                                                                   Golgi inheritance
## GO:0098712                                                                                                           L-glutamate import across plasma membrane
## GO:0000279                                                                                                                                             M phase
## GO:0044546                                                                                                                 NLRP3 inflammasome complex assembly
## GO:0048541                                                                                                                           Peyer's patch development
## GO:0090503                                                                                                  RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0046500                                                                                                              S-adenosylmethionine metabolic process
## GO:0035745                                                                                                                 T-helper 2 cell cytokine production
## GO:0042976                                                                                                                 activation of Janus kinase activity
## GO:0006924                                                                                                            activation-induced cell death of T cells
## GO:0021984                                                                                                                         adenohypophysis development
## GO:0046185                                                                                                                          aldehyde catabolic process
## GO:0009310                                                                                                                             amine catabolic process
## GO:0006577                                                                                                                amino-acid betaine metabolic process
## GO:0019886                                                                   antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:0048755                                                                                                                  branching morphogenesis of a nerve
## GO:0086069                                                                                                bundle of His cell to Purkinje myocyte communication
## GO:0046058                                                                                                                              cAMP metabolic process
## GO:0061308                                                                                 cardiac neural crest cell development involved in heart development
## GO:0090110                                                                                                             cargo loading into COPII-coated vesicle
## GO:0010644                                                                                                           cell communication by electrical coupling
## GO:0021534                                                                                                                     cell proliferation in hindbrain
## GO:0030007                                                                                                                  cellular potassium ion homeostasis
## GO:0071371                                                                                                          cellular response to gonadotropin stimulus
## GO:0010457                                                                                                                        centriole-centriole cohesion
## GO:0021702                                                                                                            cerebellar Purkinje cell differentiation
## GO:0034435                                                                                                                          cholesterol esterification
## GO:0015936                                                                                                                        coenzyme A metabolic process
## GO:0009263                                                                                                            deoxyribonucleotide biosynthetic process
## GO:0043650                                                                                                              dicarboxylic acid biosynthetic process
## GO:0072505                                                                                                                divalent inorganic anion homeostasis
## GO:0048484                                                                                                                  enteric nervous system development
## GO:0090136                                                                                                                       epithelial cell-cell adhesion
## GO:0045198                                                                                              establishment of epithelial cell apical/basal polarity
## GO:0090151                                                                                     establishment of protein localization to mitochondrial membrane
## GO:0030950                                                                                         establishment or maintenance of actin cytoskeleton polarity
## GO:0042362                                                                                                            fat-soluble vitamin biosynthetic process
## GO:0030497                                                                                                                               fatty acid elongation
## GO:0060180                                                                                                                              female mating behavior
## GO:0072537                                                                                                                               fibroblast activation
## GO:0007342                                                                             fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0014831                                                                                                  gastro-intestinal system smooth muscle contraction
## GO:0042921                                                                                                           glucocorticoid receptor signaling pathway
## GO:0006007                                                                                                                           glucose catabolic process
## GO:0019585                                                                                                                       glucuronate metabolic process
## GO:0046479                                                                                                                 glycosphingolipid catabolic process
## GO:0032604                                                                                         granulocyte macrophage colony-stimulating factor production
## GO:0070365                                                                                                                          hepatocyte differentiation
## GO:0021932                                                                                                         hindbrain radial glia guided cell migration
## GO:0050667                                                                                                                      homocysteine metabolic process
## GO:0030213                                                                                                                     hyaluronan biosynthetic process
## GO:0010421                                                                                                    hydrogen peroxide-mediated programmed cell death
## GO:0031573                                                                                                                       intra-S DNA damage checkpoint
## GO:0003334                                                                                                                            keratinocyte development
## GO:0070486                                                                                                                               leukocyte aggregation
## GO:0031987                                                                                                          locomotion involved in locomotory behavior
## GO:0080009                                                                                                                                    mRNA methylation
## GO:0097531                                                                                                                                 mast cell migration
## GO:0072224                                                                                                                  metanephric glomerulus development
## GO:1904948                                                                                                        midbrain dopaminergic neuron differentiation
## GO:0006264                                                                                                                       mitochondrial DNA replication
## GO:0000963                                                                                                                        mitochondrial RNA processing
## GO:1902969                                                                                                                             mitotic DNA replication
## GO:0071850                                                                                                                           mitotic cell cycle arrest
## GO:0048537                                                                                                      mucosal-associated lymphoid tissue development
## GO:0051451                                                                                                                                  myoblast migration
## GO:0007194                                                                                                   negative regulation of adenylate cyclase activity
## GO:1902931                                                                                                 negative regulation of alcohol biosynthetic process
## GO:0051782                                                                                                                negative regulation of cell division
## GO:1903430                                                                                                              negative regulation of cell maturation
## GO:0045792                                                                                                                    negative regulation of cell size
## GO:0051198                                                                                                   negative regulation of coenzyme metabolic process
## GO:0032966                                                                                                negative regulation of collagen biosynthetic process
## GO:0010713                                                                                                   negative regulation of collagen metabolic process
## GO:0007175                                                                          negative regulation of epidermal growth factor-activated receptor activity
## GO:0045647                                                                                                  negative regulation of erythrocyte differentiation
## GO:0010561                                                                                            negative regulation of glycoprotein biosynthetic process
## GO:0010839                                                                                                   negative regulation of keratinocyte proliferation
## GO:0043031                                                                                                        negative regulation of macrophage activation
## GO:0032769                                                                                                       negative regulation of monooxygenase activity
## GO:0030812                                                                                                 negative regulation of nucleotide catabolic process
## GO:0090331                                                                                                         negative regulation of platelet aggregation
## GO:0010642                                                                    negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:1904590                                                                                                               negative regulation of protein import
## GO:0042308                                                                                                  negative regulation of protein import into nucleus
## GO:0032096                                                                                                             negative regulation of response to food
## GO:1902306                                                                                           negative regulation of sodium ion transmembrane transport
## GO:0010804                                                                             negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0002829                                                                                                       negative regulation of type 2 immune response
## GO:0042532                                                                                     negative regulation of tyrosine phosphorylation of STAT protein
## GO:0043116                                                                                                        negative regulation of vascular permeability
## GO:0045060                                                                                                                    negative thymic T cell selection
## GO:0019184                                                                                                           nonribosomal peptide biosynthetic process
## GO:0006999                                                                                                                           nuclear pore organization
## GO:0009226                                                                                                               nucleotide-sugar biosynthetic process
## GO:0019755                                                                                                                       one-carbon compound transport
## GO:0048308                                                                                                                               organelle inheritance
## GO:0018119                                                                                                                   peptidyl-cysteine S-nitrosylation
## GO:0035970                                                                                                                peptidyl-threonine dephosphorylation
## GO:0055062                                                                                                                           phosphate ion homeostasis
## GO:0046473                                                                                                                 phosphatidic acid metabolic process
## GO:0090179                                                                                        planar cell polarity pathway involved in neural tube closure
## GO:0035791                                                                                      platelet-derived growth factor receptor-beta signaling pathway
## GO:0043517                                                               positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0010820                                                                                                            positive regulation of T cell chemotaxis
## GO:1904263                                                                                                              positive regulation of TORC1 signaling
## GO:0048711                                                                                                    positive regulation of astrocyte differentiation
## GO:0048680                                                                                                            positive regulation of axon regeneration
## GO:0035563                                                                                                            positive regulation of chromatin binding
## GO:0031937                                                                                                          positive regulation of chromatin silencing
## GO:0045938                                                                                            positive regulation of circadian sleep/wake cycle, sleep
## GO:0048672                                                                                                         positive regulation of collateral sprouting
## GO:1905516                                                                                                                positive regulation of fertilization
## GO:1905941                                                                                                            positive regulation of gonad development
## GO:0034116                                                                                               positive regulation of heterotypic cell-cell adhesion
## GO:0002885                                                                                                             positive regulation of hypersensitivity
## GO:0060732                                                                                      positive regulation of inositol phosphate biosynthetic process
## GO:0032736                                                                                                    positive regulation of interleukin-13 production
## GO:0045618                                                                                                 positive regulation of keratinocyte differentiation
## GO:0090141                                                                                                        positive regulation of mitochondrial fission
## GO:2000052                                                                                          positive regulation of non-canonical Wnt signaling pathway
## GO:0033690                                                                                                     positive regulation of osteoblast proliferation
## GO:0071803                                                                                                            positive regulation of podosome assembly
## GO:0070863                                                                                      positive regulation of protein exit from endoplasmic reticulum
## GO:0045591                                                                                            positive regulation of regulatory T cell differentiation
## GO:0035815                                                                                                       positive regulation of renal sodium excretion
## GO:0051284                                                                                                  positive regulation of sequestering of calcium ion
## GO:0051152                                                                                           positive regulation of smooth muscle cell differentiation
## GO:0031915                                                                                                          positive regulation of synaptic plasticity
## GO:0030949                                                                positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031340                                                                                                               positive regulation of vesicle fusion
## GO:1901387                                                                                       positive regulation of voltage-gated calcium channel activity
## GO:0006620                                                                               posttranslational protein targeting to endoplasmic reticulum membrane
## GO:0097468                                                                                        programmed cell death in response to reactive oxygen species
## GO:0060736                                                                                                                               prostate gland growth
## GO:0043248                                                                                                                                 proteasome assembly
## GO:0072697                                                                                                                 protein localization to cell cortex
## GO:0018158                                                                                                                                   protein oxidation
## GO:0070071                                                                                              proton-transporting two-sector ATPase complex assembly
## GO:0042559                                                                                                  pteridine-containing compound biosynthetic process
## GO:0009215                                                                                           purine deoxyribonucleoside triphosphate metabolic process
## GO:0046134                                                                                                          pyrimidine nucleoside biosynthetic process
## GO:0046132                                                                                                      pyrimidine ribonucleoside biosynthetic process
## GO:0071428                                                                                       rRNA-containing ribonucleoprotein complex export from nucleus
## GO:0060019                                                                                                                   radial glial cell differentiation
## GO:1903624                                                                                                                 regulation of DNA catabolic process
## GO:0045346                                                                                                     regulation of MHC class II biosynthetic process
## GO:0046831                                                                                                               regulation of RNA export from nucleus
## GO:1900221                                                                                                                regulation of amyloid-beta clearance
## GO:1904923                                                                regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:1900402                                         regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:0010882                                                                                   regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032536                                                                                                                  regulation of cell projection size
## GO:2000047                                                                                               regulation of cell-cell adhesion mediated by cadherin
## GO:2000341                                                                                           regulation of chemokine (C-X-C motif) ligand 2 production
## GO:0045188                                                                                             regulation of circadian sleep/wake cycle, non-REM sleep
## GO:1901550                                                                                                          regulation of endothelial cell development
## GO:1903140                                                                                                  regulation of establishment of endothelial barrier
## GO:0032645                                                                           regulation of granulocyte macrophage colony-stimulating factor production
## GO:1901841                                                                                           regulation of high voltage-gated calcium channel activity
## GO:0033127                                                                                                               regulation of histone phosphorylation
## GO:2001044                                                                                                   regulation of integrin-mediated signaling pathway
## GO:0090266                                                                                        regulation of mitotic cell cycle spindle assembly checkpoint
## GO:1903504                                                                                                            regulation of mitotic spindle checkpoint
## GO:0060211                                                                                      regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0035358                                                                          regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0099151                                                                                                         regulation of postsynaptic density assembly
## GO:0032306                                                                                                               regulation of prostaglandin secretion
## GO:0060049                                                                                                                 regulation of protein glycosylation
## GO:0060263                                                                                                                     regulation of respiratory burst
## GO:0047484                                                                                                            regulation of response to osmotic stress
## GO:0090069                                                                                                                   regulation of ribosome biogenesis
## GO:0014819                                                                                                           regulation of skeletal muscle contraction
## GO:0048505                                                                                                        regulation of timing of cell differentiation
## GO:1901836                                                                             regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:0010896                                                                                                        regulation of triglyceride catabolic process
## GO:0061469                                                                                                  regulation of type B pancreatic cell proliferation
## GO:1905063                                                                                           regulation of vascular smooth muscle cell differentiation
## GO:2001212                                                                                                                        regulation of vasculogenesis
## GO:0098911                                                                                      regulation of ventricular cardiac muscle cell action potential
## GO:0010225                                                                                                                                    response to UV-C
## GO:0097012                                                                                        response to granulocyte macrophage colony-stimulating factor
## GO:0072710                                                                                                                             response to hydroxyurea
## GO:0010226                                                                                                                             response to lithium ion
## GO:0097066                                                                                                                         response to thyroid hormone
## GO:0042574                                                                                                                           retinal metabolic process
## GO:0032988                                                                                                               ribonucleoprotein complex disassembly
## GO:0042454                                                                                                                    ribonucleoside catabolic process
## GO:0021903                                                                                                                 rostrocaudal neural tube patterning
## GO:0046459                                                                                                            short-chain fatty acid metabolic process
## GO:0071340                                                                                              skeletal muscle acetylcholine-gated channel clustering
## GO:0014866                                                                                                                         skeletal myofibril assembly
## GO:0060831                                                                      smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0043144                                                                                                                                   snoRNA processing
## GO:0098719                                                                                                            sodium ion import across plasma membrane
## GO:0016446                                                                                                       somatic hypermutation of immunoglobulin genes
## GO:0035092                                                                                                                        sperm chromatin condensation
## GO:0021527                                                                                                      spinal cord association neuron differentiation
## GO:0098814                                                                                                                   spontaneous synaptic transmission
## GO:0034433                                                                                                                              steroid esterification
## GO:0034434                                                                                                                               sterol esterification
## GO:0042271                                                                                         susceptibility to natural killer cell mediated cytotoxicity
## GO:0016081                                                                                                                            synaptic vesicle docking
## GO:0099116                                                                                                                              tRNA 5'-end processing
## GO:0034397                                                                                                                               telomere localization
## GO:0099550                                                                                          trans-synaptic signaling, modulating synaptic transmission
## GO:0006415                                                                                                                           translational termination
## GO:0072506                                                                                                               trivalent inorganic anion homeostasis
## GO:0045351                                                                                                              type I interferon biosynthetic process
## GO:0006063                                                                                                                       uronic acid metabolic process
## GO:0006901                                                                                                                                     vesicle coating
## GO:0019081                                                                                                                                   viral translation
## GO:0046033                                                                                                                               AMP metabolic process
## GO:0006978                                     DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0051645                                                                                                                                  Golgi localization
## GO:0006896                                                                                                                          Golgi to vacuole transport
## GO:0051938                                                                                                                                  L-glutamate import
## GO:0045342                                                                                                                   MHC class II biosynthetic process
## GO:0071025                                                                                                                                    RNA surveillance
## GO:0033151                                                                                                                                 V(D)J recombination
## GO:0046348                                                                                                                       amino sugar catabolic process
## GO:0060055                                                                                                              angiogenesis involved in wound healing
## GO:0086014                                                                                                         atrial cardiac muscle cell action potential
## GO:0086066                                                                                            atrial cardiac muscle cell to AV node cell communication
## GO:0086026                                                                                                atrial cardiac muscle cell to AV node cell signaling
## GO:0016553                                                                                                             base conversion or substitution editing
## GO:0061430                                                                                                                        bone trabecula morphogenesis
## GO:0009083                                                                                                         branched-chain amino acid catabolic process
## GO:0060442                                                                                                  branching involved in prostate gland morphogenesis
## GO:0061307                                                                             cardiac neural crest cell differentiation involved in heart development
## GO:0006878                                                                                                                     cellular copper ion homeostasis
## GO:0071243                                                                                                   cellular response to arsenic-containing substance
## GO:0071280                                                                                                                     cellular response to copper ion
## GO:0071378                                                                                                        cellular response to growth hormone stimulus
## GO:0071404                                                                                      cellular response to low-density lipoprotein particle stimulus
## GO:0021694                                                                                                            cerebellar Purkinje cell layer formation
## GO:0051131                                                                                                         chaperone-mediated protein complex assembly
## GO:0072567                                                                                                         chemokine (C-X-C motif) ligand 2 production
## GO:0042033                                                                                                                      chemokine biosynthetic process
## GO:0010878                                                                                                                                 cholesterol storage
## GO:0042748                                                                                                           circadian sleep/wake cycle, non-REM sleep
## GO:0031958                                                                                                           corticosteroid receptor signaling pathway
## GO:0070593                                                                                                                             dendrite self-avoidance
## GO:0042416                                                                                                                       dopamine biosynthetic process
## GO:0010172                                                                                                                        embryonic body morphogenesis
## GO:0072498                                                                                                                embryonic skeletal joint development
## GO:0001711                                                                                                                     endodermal cell fate commitment
## GO:0060742                                                                              epithelial cell differentiation involved in prostate gland development
## GO:0043249                                                                                                                              erythrocyte maturation
## GO:0060856                                                                                                                establishment of blood-brain barrier
## GO:0061029                                                                                                               eyelid development in camera-type eye
## GO:0055089                                                                                                                              fatty acid homeostasis
## GO:0035337                                                                                                                    fatty-acyl-CoA metabolic process
## GO:0015669                                                                                                                                       gas transport
## GO:0021781                                                                                                                          glial cell fate commitment
## GO:0072010                                                                                                                   glomerular epithelium development
## GO:0006704                                                                                                                 glucocorticoid biosynthetic process
## GO:0019377                                                                                                                        glycolipid catabolic process
## GO:0060396                                                                                                           growth hormone receptor signaling pathway
## GO:0003128                                                                                                                           heart field specification
## GO:0060347                                                                                                                           heart trabecula formation
## GO:0003188                                                                                                                               heart valve formation
## GO:0043981                                                                                                                           histone H4-K5 acetylation
## GO:0043982                                                                                                                           histone H4-K8 acetylation
## GO:0001771                                                                                                                     immunological synapse formation
## GO:0050930                                                                                                                    induction of positive chemotaxis
## GO:0036159                                                                                                                           inner dynein arm assembly
## GO:0046855                                                                                                                inositol phosphate dephosphorylation
## GO:0042095                                                                                                               interferon-gamma biosynthetic process
## GO:0070102                                                                                                            interleukin-6-mediated signaling pathway
## GO:0060576                                                                                                              intestinal epithelial cell development
## GO:0034755                                                                                                                    iron ion transmembrane transport
## GO:0072074                                                                                                                       kidney mesenchyme development
## GO:0051382                                                                                                                                kinetochore assembly
## GO:0021819                                                                                                                  layer formation in cerebral cortex
## GO:0070307                                                                                                                         lens fiber cell development
## GO:0030259                                                                                                                                 lipid glycosylation
## GO:0042159                                                                                                                       lipoprotein catabolic process
## GO:0044872                                                                                                                            lipoprotein localization
## GO:0042953                                                                                                                               lipoprotein transport
## GO:0035641                                                                                                                     locomotory exploration behavior
## GO:0042759                                                                                                          long-chain fatty acid biosynthetic process
## GO:0010960                                                                                                                           magnesium ion homeostasis
## GO:0015693                                                                                                                             magnesium ion transport
## GO:0000212                                                                                                                        meiotic spindle organization
## GO:0072283                                                                                                             metanephric renal vesicle morphogenesis
## GO:0007076                                                                                                                     mitotic chromosome condensation
## GO:0044827                                                                                                      modulation by host of viral genome replication
## GO:0070254                                                                                                                                     mucus secretion
## GO:0043217                                                                                                                                  myelin maintenance
## GO:0034471                                                                                                                             ncRNA 5'-end processing
## GO:0043383                                                                                                                           negative T cell selection
## GO:0032785                                                                                      negative regulation of DNA-templated transcription, elongation
## GO:1902430                                                                                                       negative regulation of amyloid-beta formation
## GO:2000811                                                                                                                      negative regulation of anoikis
## GO:0048681                                                                                                            negative regulation of axon regeneration
## GO:0010523                                                                                           negative regulation of calcium ion transport into cytosol
## GO:0031280                                                                                                             negative regulation of cyclase activity
## GO:0061000                                                                                                  negative regulation of dendritic spine development
## GO:0045605                                                                                               negative regulation of epidermal cell differentiation
## GO:2000252                                                                                                             negative regulation of feeding behavior
## GO:0060965                                                                                                      negative regulation of gene silencing by miRNA
## GO:0002862                                                                                  negative regulation of inflammatory response to antigenic stimulus
## GO:0032717                                                                                                     negative regulation of interleukin-8 production
## GO:0045835                                                                                                     negative regulation of meiotic nuclear division
## GO:0031115                                                                                                   negative regulation of microtubule polymerization
## GO:0010917                                                                                             negative regulation of mitochondrial membrane potential
## GO:1902894                                                                                 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:1901386                                                                                       negative regulation of voltage-gated calcium channel activity
## GO:0000291                                                                                          nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0009143                                                                                                           nucleoside triphosphate catabolic process
## GO:0006337                                                                                                                              nucleosome disassembly
## GO:0009312                                                                                                                oligosaccharide biosynthetic process
## GO:0071599                                                                                                                            otic vesicle development
## GO:0030157                                                                                                                          pancreatic juice secretion
## GO:0015919                                                                                                                      peroxisomal membrane transport
## GO:1904294                                                                                                                 positive regulation of ERAD pathway
## GO:0070234                                                                                                     positive regulation of T cell apoptotic process
## GO:0033089                                                                                             positive regulation of T cell differentiation in thymus
## GO:0050862                                                                                            positive regulation of T cell receptor signaling pathway
## GO:0051127                                                                                                             positive regulation of actin nucleation
## GO:0045760                                                                                                             positive regulation of action potential
## GO:0061051                                                                      positive regulation of cell growth involved in cardiac muscle cell development
## GO:0090197                                                                                                          positive regulation of chemokine secretion
## GO:1903543                                                                                                           positive regulation of exosomal secretion
## GO:2001241                                                                   positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902043                                                             positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0014049                                                                                                          positive regulation of glutamate secretion
## GO:0051571                                                                                                    positive regulation of histone H3-K4 methylation
## GO:0051712                                                                                           positive regulation of killing of cells of other organism
## GO:0051044                                                                                      positive regulation of membrane protein ectodomain proteolysis
## GO:0070572                                                                                               positive regulation of neuron projection regeneration
## GO:0033235                                                                                                          positive regulation of protein sumoylation
## GO:1900029                                                                                                              positive regulation of ruffle assembly
## GO:0034393                                                                                         positive regulation of smooth muscle cell apoptotic process
## GO:1903423                                                                                                   positive regulation of synaptic vesicle recycling
## GO:0043117                                                                                                        positive regulation of vascular permeability
## GO:1903818                                                                                     positive regulation of voltage-gated potassium channel activity
## GO:0099527                                                                                                            postsynapse to nucleus signaling pathway
## GO:0098926                                                                                                                    postsynaptic signal transduction
## GO:0031054                                                                                                                                pre-miRNA processing
## GO:0060134                                                                                                                                 prepulse inhibition
## GO:1902570                                                                                                                   protein localization to nucleolus
## GO:0017014                                                                                                                               protein nitrosylation
## GO:0031268                                                                                                                           pseudopodium organization
## GO:0009151                                                                                                        purine deoxyribonucleotide metabolic process
## GO:0035587                                                                                                               purinergic receptor signaling pathway
## GO:0006206                                                                                                             pyrimidine nucleobase metabolic process
## GO:0009220                                                                                                      pyrimidine ribonucleotide biosynthetic process
## GO:1903358                                                                                                                    regulation of Golgi organization
## GO:0039535                                                                                                               regulation of RIG-I signaling pathway
## GO:0010819                                                                                                                     regulation of T cell chemotaxis
## GO:2000095                                                                                   regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0045073                                                                                                        regulation of chemokine biosynthetic process
## GO:0003352                                                                                                                       regulation of cilium movement
## GO:2000369                                                                                                        regulation of clathrin-dependent endocytosis
## GO:2001267                                                          regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0048070                                                                                                            regulation of developmental pigmentation
## GO:0090178                                                                      regulation of establishment of planar polarity involved in neural tube closure
## GO:0010715                                                                                                      regulation of extracellular matrix disassembly
## GO:2000194                                                                                                              regulation of female gonad development
## GO:1901317                                                                                                            regulation of flagellated sperm motility
## GO:0031650                                                                                                                       regulation of heat generation
## GO:0090083                                                                                                               regulation of inclusion body assembly
## GO:0033623                                                                                                                   regulation of integrin activation
## GO:0060334                                                                                           regulation of interferon-gamma-mediated signaling pathway
## GO:0045414                                                                                                    regulation of interleukin-8 biosynthetic process
## GO:1902165                                                 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0051547                                                                                                                regulation of keratinocyte migration
## GO:0051004                                                                                                           regulation of lipoprotein lipase activity
## GO:0010935                                                                                                        regulation of macrophage cytokine production
## GO:2000628                                                                                                               regulation of miRNA metabolic process
## GO:1903978                                                                                                            regulation of microglial cell activation
## GO:0032530                                                                                                              regulation of microvillus organization
## GO:1903729                                                                                                          regulation of plasma membrane organization
## GO:0098962                                                                                       regulation of postsynaptic neurotransmitter receptor activity
## GO:1904814                                                                                  regulation of protein localization to chromosome, telomeric region
## GO:1901077                                                                                                                  regulation of relaxation of muscle
## GO:0060330                                                                                                          regulation of response to interferon-gamma
## GO:0048385                                                                                              regulation of retinoic acid receptor signaling pathway
## GO:0060700                                                                                                                 regulation of ribonuclease activity
## GO:0043455                                                                                                           regulation of secondary metabolic process
## GO:0014857                                                                                                    regulation of skeletal muscle cell proliferation
## GO:2001256                                                                                                          regulation of store-operated calcium entry
## GO:0032222                                                                                                    regulation of synaptic transmission, cholinergic
## GO:1901213                                                           regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:0030656                                                                                                             regulation of vitamin metabolic process
## GO:0070293                                                                                                                                    renal absorption
## GO:0034698                                                                                                                            response to gonadotropin
## GO:0071731                                                                                                                            response to nitric oxide
## GO:0098917                                                                                                                 retrograde trans-synaptic signaling
## GO:0046541                                                                                                                                    saliva secretion
## GO:0007379                                                                                                                               segment specification
## GO:0030730                                                                                                                        sequestering of triglyceride
## GO:0009070                                                                                                       serine family amino acid biosynthetic process
## GO:0042428                                                                                                                         serotonin metabolic process
## GO:1902402                                                                                       signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403                                                                                    signal transduction involved in mitotic DNA integrity checkpoint
## GO:0072413                                                                                       signal transduction involved in mitotic cell cycle checkpoint
## GO:0002566                                                                                    somatic diversification of immune receptors via somatic mutation
## GO:0051923                                                                                                                                           sulfation
## GO:0000097                                                                                                              sulfur amino acid biosynthetic process
## GO:0043129                                                                                                                              surfactant homeostasis
## GO:0000722                                                                                                              telomere maintenance via recombination
## GO:0016114                                                                                                                      terpenoid biosynthetic process
## GO:0006590                                                                                                                          thyroid hormone generation
## GO:0034162                                                                                                              toll-like receptor 9 signaling pathway
## GO:0097050                                                                                                            type B pancreatic cell apoptotic process
## GO:0035461                                                                                                                     vitamin transmembrane transport
## GO:0050872                                                                                                                      white fat cell differentiation
## GO:0006103                                                                                                                    2-oxoglutarate metabolic process
## GO:0043374                                                                                                     CD8-positive, alpha-beta T cell differentiation
## GO:0042772                                                                                 DNA damage response, signal transduction resulting in transcription
## GO:0000729                                                                                                                  DNA double-strand break processing
## GO:0006271                                                                                                   DNA strand elongation involved in DNA replication
## GO:0002431                                                                                                  Fc receptor mediated stimulatory signaling pathway
## GO:0006044                                                                                                               N-acetylglucosamine metabolic process
## GO:0002295                                                                                                                    T-helper cell lineage commitment
## GO:0007250                                                                                                    activation of NF-kappaB-inducing kinase activity
## GO:0007512                                                                                                                             adult heart development
## GO:1990000                                                                                                                            amyloid fibril formation
## GO:0042640                                                                                                                                              anagen
## GO:0099640                                                                                                                     axo-dendritic protein transport
## GO:0009081                                                                                                         branched-chain amino acid metabolic process
## GO:0098703                                                                                                           calcium ion import across plasma membrane
## GO:0046835                                                                                                                        carbohydrate phosphorylation
## GO:0003161                                                                                                               cardiac conduction system development
## GO:0060581                                                                                              cell fate commitment involved in pattern specification
## GO:0033631                                                                                                             cell-cell adhesion mediated by integrin
## GO:0006968                                                                                                                           cellular defense response
## GO:0071498                                                                                                             cellular response to fluid shear stress
## GO:0044320                                                                                                                cellular response to leptin stimulus
## GO:0071379                                                                                                         cellular response to prostaglandin stimulus
## GO:0036315                                                                                                                         cellular response to sterol
## GO:0090171                                                                                                                           chondrocyte morphogenesis
## GO:0003414                                                                               chondrocyte morphogenesis involved in endochondral bone morphogenesis
## GO:0002544                                                                                                                       chronic inflammatory response
## GO:0060026                                                                                                                                convergent extension
## GO:0055070                                                                                                                              copper ion homeostasis
## GO:0006825                                                                                                                                copper ion transport
## GO:0097094                                                                                                                   craniofacial suture morphogenesis
## GO:0042407                                                                                                                                   cristae formation
## GO:0006534                                                                                                                          cysteine metabolic process
## GO:0002407                                                                                                                           dendritic cell chemotaxis
## GO:0016045                                                                                                                              detection of bacterium
## GO:0098543                                                                                                                         detection of other organism
## GO:0051852                                                                                                                disruption by host of symbiont cells
## GO:0070166                                                                                                                               enamel mineralization
## GO:0099638                                                                                                       endosome to plasma membrane protein transport
## GO:0001886                                                                                                                      endothelial cell morphogenesis
## GO:0061154                                                                                                                      endothelial tube morphogenesis
## GO:0043652                                                                                                                        engulfment of apoptotic cell
## GO:0002070                                                                                                                          epithelial cell maturation
## GO:0090177                                                                                    establishment of planar polarity involved in neural tube closure
## GO:0070200                                                                                                   establishment of protein localization to telomere
## GO:0018904                                                                                                                             ether metabolic process
## GO:0046629                                                                                                                       gamma-delta T cell activation
## GO:0061548                                                                                                                                ganglion development
## GO:0035112                                                                                                                             genitalia morphogenesis
## GO:0002467                                                                                                                           germinal center formation
## GO:0072109                                                                                                                    glomerular mesangium development
## GO:0009084                                                                                                    glutamine family amino acid biosynthetic process
## GO:0019682                                                                                                        glyceraldehyde-3-phosphate metabolic process
## GO:0003429                                                                                                    growth plate cartilage chondrocyte morphogenesis
## GO:0097284                                                                                                                        hepatocyte apoptotic process
## GO:0001821                                                                                                                                 histamine secretion
## GO:0070932                                                                                                                            histone H3 deacetylation
## GO:0002327                                                                                                                     immature B cell differentiation
## GO:0042228                                                                                                                  interleukin-8 biosynthetic process
## GO:0098856                                                                                                                         intestinal lipid absorption
## GO:0035235                                                                                                     ionotropic glutamate receptor signaling pathway
## GO:0051873                                                                                                                   killing by host of symbiont cells
## GO:0072673                                                                                                                         lamellipodium morphogenesis
## GO:0044241                                                                                                                                     lipid digestion
## GO:0002281                                                                                                   macrophage activation involved in immune response
## GO:0030011                                                                                                                        maintenance of cell polarity
## GO:0030238                                                                                                                              male sex determination
## GO:0006828                                                                                                                             manganese ion transport
## GO:0007638                                                                                                                             mechanosensory behavior
## GO:0061952                                                                                                                                  midbody abscission
## GO:0098885                                                                                                     modification of postsynaptic actin cytoskeleton
## GO:0044068                                                                                                     modulation by symbiont of host cellular process
## GO:0003159                                                                                                                     morphogenesis of an endothelium
## GO:0043518                                                               negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0060766                                                                                          negative regulation of androgen receptor signaling pathway
## GO:0070885                                                                                           negative regulation of calcineurin-NFAT signaling cascade
## GO:0106057                                                                                               negative regulation of calcineurin-mediated signaling
## GO:0090051                                                                            negative regulation of cell migration involved in sprouting angiogenesis
## GO:1900016                                                                        negative regulation of cytokine production involved in inflammatory response
## GO:0032688                                                                                                   negative regulation of interferon-beta production
## GO:0002689                                                                                                         negative regulation of leukocyte chemotaxis
## GO:0060192                                                                                                              negative regulation of lipase activity
## GO:0048715                                                                                              negative regulation of oligodendrocyte differentiation
## GO:0014067                                                                                      negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0032105                                                                                           negative regulation of response to extracellular stimulus
## GO:0032108                                                                                                  negative regulation of response to nutrient levels
## GO:2001015                                                                                         negative regulation of skeletal muscle cell differentiation
## GO:0051151                                                                                           negative regulation of smooth muscle cell differentiation
## GO:2000647                                                                                                      negative regulation of stem cell proliferation
## GO:0045947                                                                                                     negative regulation of translational initiation
## GO:1902187                                                                                                 negative regulation of viral release from host cell
## GO:0055057                                                                                                                                 neuroblast division
## GO:0016322                                                                                                                                   neuron remodeling
## GO:0036445                                                                                                                         neuronal stem cell division
## GO:0002283                                                                                                   neutrophil activation involved in immune response
## GO:0072672                                                                                                                            neutrophil extravasation
## GO:0043584                                                                                                                                    nose development
## GO:0046112                                                                                                                     nucleobase biosynthetic process
## GO:0036035                                                                                                                              osteoclast development
## GO:0043084                                                                                                                                     penile erection
## GO:0018027                                                                                                                       peptidyl-lysine dimethylation
## GO:0070262                                                                                                                   peptidyl-serine dephosphorylation
## GO:0043923                                                                                                  positive regulation by host of viral transcription
## GO:0002866                                                                            positive regulation of acute inflammatory response to antigenic stimulus
## GO:1902004                                                                                                       positive regulation of amyloid-beta formation
## GO:0010875                                                                                                           positive regulation of cholesterol efflux
## GO:1900119                                                                                                 positive regulation of execution phase of apoptosis
## GO:1904996                                                                              positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905155                                                                                                        positive regulation of membrane invagination
## GO:0062033                                                                                         positive regulation of mitotic sister chromatid segregation
## GO:0060100                                                                                                     positive regulation of phagocytosis, engulfment
## GO:1901881                                                                                                     positive regulation of protein depolymerization
## GO:2000651                                                                                positive regulation of sodium ion transmembrane transporter activity
## GO:0032230                                                                                             positive regulation of synaptic transmission, GABAergic
## GO:0002830                                                                                                       positive regulation of type 2 immune response
## GO:1905564                                                                                      positive regulation of vascular endothelial cell proliferation
## GO:1902188                                                                                                 positive regulation of viral release from host cell
## GO:0045059                                                                                                                    positive thymic T cell selection
## GO:0098974                                                                                                        postsynaptic actin cytoskeleton organization
## GO:0099188                                                                                                              postsynaptic cytoskeleton organization
## GO:1901160                                                                                                            primary amino compound metabolic process
## GO:0042448                                                                                                                      progesterone metabolic process
## GO:0016540                                                                                                                              protein autoprocessing
## GO:1902414                                                                                                               protein localization to cell junction
## GO:0009147                                                                                                pyrimidine nucleoside triphosphate metabolic process
## GO:0009218                                                                                                         pyrimidine ribonucleotide metabolic process
## GO:0072529                                                                                                    pyrimidine-containing compound catabolic process
## GO:0015697                                                                                                                 quaternary ammonium group transport
## GO:0034315                                                                                              regulation of Arp2/3 complex-mediated actin nucleation
## GO:0045898                                                                      regulation of RNA polymerase II transcriptional preinitiation complex assembly
## GO:0106070                                                             regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902337                                                                                           regulation of apoptotic process involved in morphogenesis
## GO:0090335                                                                                                        regulation of brown fat cell differentiation
## GO:2000479                                                                                                regulation of cAMP-dependent protein kinase activity
## GO:0010752                                                                                                               regulation of cGMP-mediated signaling
## GO:1903779                                                                                                                    regulation of cardiac conduction
## GO:0042659                                                                                                               regulation of cell fate specification
## GO:1901722                                                                                     regulation of cell proliferation involved in kidney development
## GO:1900037                                                                                                          regulation of cellular response to hypoxia
## GO:0090196                                                                                                                   regulation of chemokine secretion
## GO:0030449                                                                                                                 regulation of complement activation
## GO:0002739                                                                                        regulation of cytokine secretion involved in immune response
## GO:0040034                                                                                                            regulation of development, heterochronic
## GO:1903541                                                                                                                    regulation of exosomal secretion
## GO:0010310                                                                                                   regulation of hydrogen peroxide metabolic process
## GO:0048302                                                                                                     regulation of isotype switching to IgG isotypes
## GO:0051709                                                                                                    regulation of killing of cells of other organism
## GO:2001053                                                                                                    regulation of mesenchymal cell apoptotic process
## GO:1901524                                                                                                                             regulation of mitophagy
## GO:0045655                                                                                                              regulation of monocyte differentiation
## GO:2000291                                                                                                                regulation of myoblast proliferation
## GO:0098696                                                        regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0051386                                                                                           regulation of neurotrophin TRK receptor signaling pathway
## GO:0032239                                                                                              regulation of nucleobase-containing compound transport
## GO:0044065                                                                                                            regulation of respiratory system process
## GO:0060314                                                                                  regulation of ryanodine-sensitive calcium-release channel activity
## GO:0014733                                                                                                            regulation of skeletal muscle adaptation
## GO:0090231                                                                                                                    regulation of spindle checkpoint
## GO:0090128                                                                                                                    regulation of synapse maturation
## GO:0006359                                                                                                   regulation of transcription by RNA polymerase III
## GO:0001977                                                                                         renal system process involved in regulation of blood volume
## GO:0010224                                                                                                                                    response to UV-B
## GO:0097329                                                                                                                          response to antimetabolite
## GO:0031000                                                                                                                                response to caffeine
## GO:0036270                                                                                                                                response to diuretic
## GO:0032570                                                                                                                            response to progesterone
## GO:0032252                                                                                                                      secretory granule localization
## GO:0014856                                                                                                                  skeletal muscle cell proliferation
## GO:0046519                                                                                                                         sphingoid metabolic process
## GO:0006684                                                                                                                     sphingomyelin metabolic process
## GO:0030322                                                                                                                 stabilization of membrane potential
## GO:0008272                                                                                                                                   sulfate transport
## GO:0021978                                                                                                                       telencephalon regionalization
## GO:0034134                                                                                                              toll-like receptor 2 signaling pathway
## GO:0019985                                                                                                                               translesion synthesis
## GO:0060979                                                                                          vasculogenesis involved in coronary vascular morphogenesis
## GO:0060579                                                                                                     ventral spinal cord interneuron fate commitment
## GO:0003222                                                                                                      ventricular trabecula myocardium morphogenesis
## GO:0042359                                                                                                                         vitamin D metabolic process
## GO:0061158                                                                                                                3'-UTR-mediated mRNA destabilization
## GO:0043373                                                                                                  CD4-positive, alpha-beta T cell lineage commitment
## GO:0007216                                                                                              G protein-coupled glutamate receptor signaling pathway
## GO:0006474                                                                                                           N-terminal protein amino acid acetylation
## GO:0000966                                                                                                                               RNA 5'-end processing
## GO:0090502                                                                                                 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006614                                                                                         SRP-dependent cotranslational protein targeting to membrane
## GO:0045064                                                                                                                     T-helper 2 cell differentiation
## GO:0007202                                                                                                              activation of phospholipase C activity
## GO:0044406                                                                                                                        adhesion of symbiont to host
## GO:0060413                                                                                                                         atrial septum morphogenesis
## GO:0015701                                                                                                                               bicarbonate transport
## GO:0007350                                                                                                                             blastoderm segmentation
## GO:1902656                                                                                                                     calcium ion import into cytosol
## GO:0048739                                                                                                                    cardiac muscle fiber development
## GO:0035459                                                                                                                          cargo loading into vesicle
## GO:0034331                                                                                                                           cell junction maintenance
## GO:0042074                                                                                                             cell migration involved in gastrulation
## GO:0060973                                                                                                        cell migration involved in heart development
## GO:0071360                                                                                                                cellular response to exogenous dsRNA
## GO:0035729                                                                                              cellular response to hepatocyte growth factor stimulus
## GO:0098761                                                                                                                  cellular response to interleukin-7
## GO:0036120                                                                                        cellular response to platelet-derived growth factor stimulus
## GO:0021681                                                                                                               cerebellar granular layer development
## GO:0048875                                                                                                                chemical homeostasis within a tissue
## GO:0050755                                                                                                                         chemokine metabolic process
## GO:0090195                                                                                                                                 chemokine secretion
## GO:0035988                                                                                                                           chondrocyte proliferation
## GO:0031498                                                                                                                               chromatin disassembly
## GO:0009109                                                                                                                          coenzyme catabolic process
## GO:0002024                                                                                                                          diet induced thermogenesis
## GO:0042756                                                                                                                                   drinking behavior
## GO:0060788                                                                                                                        ectodermal placode formation
## GO:0071697                                                                                                                    ectodermal placode morphogenesis
## GO:0071786                                                                                                  endoplasmic reticulum tubular network organization
## GO:0003198                                                                      epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0072663                                                                                                 establishment of protein localization to peroxisome
## GO:0048853                                                                                                                             forebrain morphogenesis
## GO:0036065                                                                                                                                        fucosylation
## GO:0014051                                                                                                                   gamma-aminobutyric acid secretion
## GO:0034349                                                                                                                        glial cell apoptotic process
## GO:0006677                                                                                                                  glycosylceramide metabolic process
## GO:0003422                                                                                                                growth plate cartilage morphogenesis
## GO:0043968                                                                                                                             histone H2A acetylation
## GO:0080182                                                                                                                        histone H3-K4 trimethylation
## GO:0036124                                                                                                                        histone H3-K9 trimethylation
## GO:0008334                                                                                                                      histone mRNA metabolic process
## GO:0050665                                                                                                              hydrogen peroxide biosynthetic process
## GO:0021854                                                                                                                            hypothalamus development
## GO:0000188                                                                                                                       inactivation of MAPK activity
## GO:0071545                                                                                                                inositol phosphate catabolic process
## GO:0048291                                                                                                                   isotype switching to IgG isotypes
## GO:0048368                                                                                                                        lateral mesoderm development
## GO:0010934                                                                                                                      macrophage cytokine production
## GO:0030277                                                                                                          maintenance of gastrointestinal epithelium
## GO:0060644                                                                                                       mammary gland epithelial cell differentiation
## GO:0000463                                                            maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0032438                                                                                                                             melanosome organization
## GO:0032402                                                                                                                                melanosome transport
## GO:0086012                                                                                 membrane depolarization during cardiac muscle cell action potential
## GO:0060081                                                                                                                          membrane hyperpolarization
## GO:0097152                                                                                                                  mesenchymal cell apoptotic process
## GO:0072234                                                                                                              metanephric nephron tubule development
## GO:0006555                                                                                                                        methionine metabolic process
## GO:0030033                                                                                                                                microvillus assembly
## GO:2001170                                                                                                     negative regulation of ATP biosynthetic process
## GO:1902992                                                                                  negative regulation of amyloid precursor protein catabolic process
## GO:1903960                                                                                                negative regulation of anion transmembrane transport
## GO:0010454                                                                                                         negative regulation of cell fate commitment
## GO:2000042                                                                      negative regulation of double-strand break repair via homologous recombination
## GO:0051895                                                                                                      negative regulation of focal adhesion assembly
## GO:0060967                                                                                                        negative regulation of gene silencing by RNA
## GO:0060253                                                                                                     negative regulation of glial cell proliferation
## GO:1903019                                                                                               negative regulation of glycoprotein metabolic process
## GO:0035067                                                                                                          negative regulation of histone acetylation
## GO:0061179                                                          negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0090185                                                                                                           negative regulation of kidney development
## GO:0010888                                                                                                                negative regulation of lipid storage
## GO:0051350                                                                                                               negative regulation of lyase activity
## GO:0045653                                                                                                negative regulation of megakaryocyte differentiation
## GO:1905331                                                                                               negative regulation of morphogenesis of an epithelium
## GO:0040015                                                                                                negative regulation of multicellular organism growth
## GO:0070571                                                                                               negative regulation of neuron projection regeneration
## GO:1902176                                                               negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0060149                                                                                           negative regulation of posttranscriptional gene silencing
## GO:0032460                                                                                                      negative regulation of protein oligomerization
## GO:0042135                                                                                                                  neurotransmitter catabolic process
## GO:0038092                                                                                                                             nodal signaling pathway
## GO:0030575                                                                                                                           nuclear body organization
## GO:0009164                                                                                                                        nucleoside catabolic process
## GO:0043574                                                                                                                               peroxisomal transport
## GO:0046337                                                                                                          phosphatidylethanolamine metabolic process
## GO:0046838                                                                                                       phosphorylated carbohydrate dephosphorylation
## GO:0045026                                                                                                                              plasma membrane fusion
## GO:0045579                                                                                                       positive regulation of B cell differentiation
## GO:0070886                                                                                           positive regulation of calcineurin-NFAT signaling cascade
## GO:0106058                                                                                               positive regulation of calcineurin-mediated signaling
## GO:0045793                                                                                                                    positive regulation of cell size
## GO:2001028                                                                                                  positive regulation of endothelial cell chemotaxis
## GO:0045603                                                                                             positive regulation of endothelial cell differentiation
## GO:0045725                                                                                                positive regulation of glycogen biosynthetic process
## GO:0002922                                                                                                      positive regulation of humoral immune response
## GO:0032305                                                                                                          positive regulation of icosanoid secretion
## GO:0002839                                                                                                positive regulation of immune response to tumor cell
## GO:0032740                                                                                                    positive regulation of interleukin-17 production
## GO:0045410                                                                                           positive regulation of interleukin-6 biosynthetic process
## GO:0140131                                                                                                        positive regulation of lymphocyte chemotaxis
## GO:0045836                                                                                                     positive regulation of meiotic nuclear division
## GO:0051000                                                                                               positive regulation of nitric-oxide synthase activity
## GO:0032516                                                                                          positive regulation of phosphoprotein phosphatase activity
## GO:0001921                                                                                                           positive regulation of receptor recycling
## GO:0002836                                                                                                       positive regulation of response to tumor cell
## GO:0045989                                                                                                  positive regulation of striated muscle contraction
## GO:1904355                                                                                                             positive regulation of telomere capping
## GO:0071636                                                                                   positive regulation of transforming growth factor beta production
## GO:0010867                                                                                            positive regulation of triglyceride biosynthetic process
## GO:0009886                                                                                                                 post-embryonic animal morphogenesis
## GO:0099171                                                                                            presynaptic modulation of chemical synaptic transmission
## GO:0032310                                                                                                                             prostaglandin secretion
## GO:0035269                                                                                                                      protein O-linked mannosylation
## GO:0034501                                                                                                                 protein localization to kinetochore
## GO:0035372                                                                                                                 protein localization to microtubule
## GO:0072662                                                                                                                  protein localization to peroxisome
## GO:0006625                                                                                                                     protein targeting to peroxisome
## GO:0032986                                                                                                                     protein-DNA complex disassembly
## GO:0001522                                                                                                                             pseudouridine synthesis
## GO:0003184                                                                                                                       pulmonary valve morphogenesis
## GO:1901663                                                                                                                        quinone biosynthetic process
## GO:0050855                                                                                                     regulation of B cell receptor signaling pathway
## GO:2001185                                                                                            regulation of CD8-positive, alpha-beta T cell activation
## GO:2000001                                                                                                                 regulation of DNA damage checkpoint
## GO:0060628                                                                                                regulation of ER to Golgi vesicle-mediated transport
## GO:0035020                                                                                                       regulation of Rac protein signal transduction
## GO:0060046                                                                                                                     regulation of acrosome reaction
## GO:1904748                                                                                             regulation of apoptotic process involved in development
## GO:0045540                                                                                                      regulation of cholesterol biosynthetic process
## GO:0007096                                                                                                                     regulation of exit from mitosis
## GO:0090192                                                                                                                regulation of glomerulus development
## GO:0002883                                                                                                                      regulation of hypersensitivity
## GO:0010919                                                                                               regulation of inositol phosphate biosynthetic process
## GO:1902713                                                                                                            regulation of interferon-gamma secretion
## GO:1900452                                                                                                         regulation of long-term synaptic depression
## GO:1900363                                                                                                                  regulation of mRNA polyadenylation
## GO:2000380                                                                                                                  regulation of mesoderm development
## GO:1905244                                                                                                    regulation of modification of synaptic structure
## GO:0060544                                                                                                                   regulation of necroptotic process
## GO:0042487                                                                                              regulation of odontogenesis of dentin-containing tooth
## GO:0071071                                                                                                     regulation of phospholipid biosynthetic process
## GO:2000257                                                                                                            regulation of protein activation cascade
## GO:0106118                                                                                                           regulation of sterol biosynthetic process
## GO:0032225                                                                                                   regulation of synaptic transmission, dopaminergic
## GO:0070243                                                                                                           regulation of thymocyte apoptotic process
## GO:0043555                                                                                                     regulation of translation in response to stress
## GO:0006448                                                                                                              regulation of translational elongation
## GO:1900746                                                                                  regulation of vascular endothelial growth factor signaling pathway
## GO:0098760                                                                                                                           response to interleukin-7
## GO:0043278                                                                                                                                response to morphine
## GO:0046549                                                                                                                       retinal cone cell development
## GO:0001820                                                                                                                                 serotonin secretion
## GO:0007288                                                                                                                              sperm axoneme assembly
## GO:0001967                                                                                                                                   suckling behavior
## GO:0002098                                                                                                                    tRNA wobble uridine modification
## GO:0006744                                                                                                                     ubiquinone biosynthetic process
## GO:0055012                                                                                                     ventricular cardiac muscle cell differentiation
## GO:0046755                                                                                                                                       viral budding
## GO:0071625                                                                                                                               vocalization behavior
## GO:0006833                                                                                                                                     water transport
## GO:0035313                                                                                                         wound healing, spreading of epidermal cells
## GO:0070935                                                                                                                  3'-UTR-mediated mRNA stabilization
## GO:0006700                                                                                                            C21-steroid hormone biosynthetic process
## GO:0038093                                                                                                                       Fc receptor signaling pathway
## GO:0002031                                                                                                          G protein-coupled receptor internalization
## GO:0007252                                                                                                                            I-kappaB phosphorylation
## GO:0039529                                                                                                                             RIG-I signaling pathway
## GO:0006085                                                                                                                     acetyl-CoA biosynthetic process
## GO:0001675                                                                                                                                   acrosome assembly
## GO:0009309                                                                                                                          amine biosynthetic process
## GO:0048791                                                                                                calcium ion-regulated exocytosis of neurotransmitter
## GO:0060947                                                                                                 cardiac vascular smooth muscle cell differentiation
## GO:0010002                                                                                                                         cardioblast differentiation
## GO:0030002                                                                                                                          cellular anion homeostasis
## GO:0042401                                                                                                        cellular biogenic amine biosynthetic process
## GO:0043094                                                                                                                 cellular metabolic compound salvage
## GO:0042219                                                                                                      cellular modified amino acid catabolic process
## GO:0030320                                                                                                     cellular monovalent inorganic anion homeostasis
## GO:0048268                                                                                                                              clathrin coat assembly
## GO:0022038                                                                                                                         corpus callosum development
## GO:0006613                                                                                                       cotranslational protein targeting to membrane
## GO:0021542                                                                                                                           dentate gyrus development
## GO:0050961                                                                                    detection of temperature stimulus involved in sensory perception
## GO:0050965                                                                            detection of temperature stimulus involved in sensory perception of pain
## GO:0034312                                                                                                                           diol biosynthetic process
## GO:0007398                                                                                                                                ectoderm development
## GO:0071696                                                                                                                      ectodermal placode development
## GO:0072148                                                                                                                     epithelial cell fate commitment
## GO:0035089                                                                                                         establishment of apical/basal cell polarity
## GO:0032401                                                                                                            establishment of melanosome localization
## GO:0042249                                                                                            establishment of planar polarity of embryonic epithelium
## GO:0030952                                                                                               establishment or maintenance of cytoskeleton polarity
## GO:0030540                                                                                                                        female genitalia development
## GO:0015812                                                                                                                   gamma-aminobutyric acid transport
## GO:0009251                                                                                                                            glucan catabolic process
## GO:0051156                                                                                                               glucose 6-phosphate metabolic process
## GO:0005980                                                                                                                          glycogen catabolic process
## GO:0006027                                                                                                                 glycosaminoglycan catabolic process
## GO:0016137                                                                                                                         glycoside metabolic process
## GO:0032274                                                                                                                              gonadotropin secretion
## GO:0020027                                                                                                                        hemoglobin metabolic process
## GO:0051608                                                                                                                                 histamine transport
## GO:0035518                                                                                                                      histone H2A monoubiquitination
## GO:0042447                                                                                                                           hormone catabolic process
## GO:0002524                                                                                                                                    hypersensitivity
## GO:0001833                                                                                                                  inner cell mass cell proliferation
## GO:0045324                                                                                                                  late endosome to vacuole transport
## GO:0034389                                                                                                                          lipid droplet organization
## GO:0042711                                                                                                                                   maternal behavior
## GO:0086011                                                                                                     membrane repolarization during action potential
## GO:0001710                                                                                                                     mesodermal cell fate commitment
## GO:0035278                                                                                                            miRNA mediated inhibition of translation
## GO:0006851                                                                                                   mitochondrial calcium ion transmembrane transport
## GO:0006390                                                                                                                         mitochondrial transcription
## GO:0060572                                                                                                                  morphogenesis of an epithelial bud
## GO:1904262                                                                                                              negative regulation of TORC1 signaling
## GO:0060044                                                                                            negative regulation of cardiac muscle cell proliferation
## GO:0033604                                                                                                      negative regulation of catecholamine secretion
## GO:0042754                                                                                                             negative regulation of circadian rhythm
## GO:0045721                                                                                                              negative regulation of gluconeogenesis
## GO:0032700                                                                                                    negative regulation of interleukin-17 production
## GO:0045837                                                                                                           negative regulation of membrane potential
## GO:0010832                                                                                                      negative regulation of myotube differentiation
## GO:0060547                                                                                                          negative regulation of necrotic cell death
## GO:0045019                                                                                            negative regulation of nitric oxide biosynthetic process
## GO:1904406                                                                                               negative regulation of nitric oxide metabolic process
## GO:0030809                                                                                              negative regulation of nucleotide biosynthetic process
## GO:0010801                                                                                           negative regulation of peptidyl-threonine phosphorylation
## GO:1900372                                                                                       negative regulation of purine nucleotide biosynthetic process
## GO:0051444                                                                                       negative regulation of ubiquitin-protein transferase activity
## GO:1904706                                                                                    negative regulation of vascular smooth muscle cell proliferation
## GO:0072578                                                                                                       neurotransmitter-gated ion channel clustering
## GO:0042415                                                                                                                    norepinephrine metabolic process
## GO:0048243                                                                                                                            norepinephrine secretion
## GO:0042790                                                                                              nucleolar large rRNA transcription by RNA polymerase I
## GO:0016584                                                                                                                              nucleosome positioning
## GO:0002076                                                                                                                              osteoblast development
## GO:0036158                                                                                                                           outer dynein arm assembly
## GO:0016486                                                                                                                          peptide hormone processing
## GO:0006656                                                                                                            phosphatidylcholine biosynthetic process
## GO:0017121                                                                                                                             phospholipid scrambling
## GO:0034587                                                                                                                             piRNA metabolic process
## GO:0048753                                                                                                                        pigment granule organization
## GO:0051904                                                                                                                           pigment granule transport
## GO:0016973                                                                                                                   poly(A)+ mRNA export from nucleus
## GO:0032793                                                                                           positive regulation of CREB transcription factor activity
## GO:1903599                                                                                                   positive regulation of autophagy of mitochondrion
## GO:0031281                                                                                                             positive regulation of cyclase activity
## GO:0046321                                                                                                         positive regulation of fatty acid oxidation
## GO:0010763                                                                                                         positive regulation of fibroblast migration
## GO:0045722                                                                                                              positive regulation of gluconeogenesis
## GO:0070131                                                                                                    positive regulation of mitochondrial translation
## GO:1900153                                                    positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903209                                                                                          positive regulation of oxidative stress-induced cell death
## GO:0071435                                                                                                                                potassium ion export
## GO:0097623                                                                                                         potassium ion export across plasma membrane
## GO:0021783                                                                                                     preganglionic parasympathetic fiber development
## GO:0030150                                                                                                            protein import into mitochondrial matrix
## GO:0006622                                                                                                                       protein targeting to lysosome
## GO:1904424                                                                                                                           regulation of GTP binding
## GO:2000319                                                                                                      regulation of T-helper 17 cell differentiation
## GO:2000810                                                                                                    regulation of bicellular tight junction assembly
## GO:1902547                                                                      regulation of cellular response to vascular endothelial growth factor stimulus
## GO:2000846                                                                                                      regulation of corticosteroid hormone secretion
## GO:2000641                                                                                             regulation of early endosome to late endosome transport
## GO:2000696                                                                        regulation of epithelial cell differentiation involved in kidney development
## GO:0032674                                                                                                              regulation of interleukin-5 production
## GO:0010566                                                                                                           regulation of ketone biosynthetic process
## GO:0014041                                                                                                                     regulation of neuron maturation
## GO:1902855                                                                                                            regulation of non-motile cilium assembly
## GO:0014061                                                                                                              regulation of norepinephrine secretion
## GO:0071801                                                                                                                     regulation of podosome assembly
## GO:0150052                                                                                                                  regulation of postsynapse assembly
## GO:0099150                                                                                                  regulation of postsynaptic specialization assembly
## GO:1903909                                                                                                                   regulation of receptor clustering
## GO:0001991                                                                     regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0060850                                                                                        regulation of transcription involved in cell fate commitment
## GO:0039531                                                              regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0072077                                                                                                                         renal vesicle morphogenesis
## GO:0000712                                                                                                   resolution of meiotic recombination intermediates
## GO:0060416                                                                                                                          response to growth hormone
## GO:0014072                                                                                                                   response to isoquinoline alkaloid
## GO:0044321                                                                                                                                  response to leptin
## GO:0036119                                                                                                          response to platelet-derived growth factor
## GO:0034695                                                                                                                         response to prostaglandin E
## GO:0033574                                                                                                                            response to testosterone
## GO:0042670                                                                                                                   retinal cone cell differentiation
## GO:0043252                                                                                                          sodium-independent organic anion transport
## GO:0060712                                                                                                                spongiotrophoblast layer development
## GO:0021756                                                                                                                                striatum development
## GO:0097091                                                                                                                         synaptic vesicle clustering
## GO:0034138                                                                                                              toll-like receptor 3 signaling pathway
## GO:0060707                                                                                                              trophoblast giant cell differentiation
## GO:0006743                                                                                                                        ubiquinone metabolic process
## GO:0043162                                                           ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0060841                                                                                                                     venous blood vessel development
## GO:0021514                                                                                                     ventral spinal cord interneuron differentiation
## GO:0032011                                                                                                                     ARF protein signal transduction
## GO:0015740                                                                                                                          C4-dicarboxylate transport
## GO:0043046                                                                                                       DNA methylation involved in gamete generation
## GO:0009435                                                                                                                            NAD biosynthetic process
## GO:0010818                                                                                                                                   T cell chemotaxis
## GO:0046184                                                                                                                       aldehyde biosynthetic process
## GO:0002363                                                                                                                alpha-beta T cell lineage commitment
## GO:0008209                                                                                                                          androgen metabolic process
## GO:0002495                                                                             antigen processing and presentation of peptide antigen via MHC class II
## GO:0003180                                                                                                                          aortic valve morphogenesis
## GO:0006309                                                                                                                         apoptotic DNA fragmentation
## GO:0009074                                                                                                        aromatic amino acid family catabolic process
## GO:0060088                                                                                                    auditory receptor cell stereocilium organization
## GO:0002043                                                                      blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0046068                                                                                                                              cGMP metabolic process
## GO:0003214                                                                                                                cardiac left ventricle morphogenesis
## GO:0003215                                                                                                               cardiac right ventricle morphogenesis
## GO:0001502                                                                                                                              cartilage condensation
## GO:0021535                                                                                                                         cell migration in hindbrain
## GO:1904385                                                                                                                    cellular response to angiotensin
## GO:0006883                                                                                                                     cellular sodium ion homeostasis
## GO:0021692                                                                                                        cerebellar Purkinje cell layer morphogenesis
## GO:0035930                                                                                                                    corticosteroid hormone secretion
## GO:0033962                                                                                                           cytoplasmic mRNA processing body assembly
## GO:0051818                                                                             disruption of cells of other organism involved in symbiotic interaction
## GO:0034643                                                                                   establishment of mitochondrion localization, microtubule-mediated
## GO:0051905                                                                                                       establishment of pigment granule localization
## GO:0006071                                                                                                                          glycerol metabolic process
## GO:0032634                                                                                                                            interleukin-5 production
## GO:0051546                                                                                                                              keratinocyte migration
## GO:0051883                                                                                killing of cells in other organism involved in symbiotic interaction
## GO:0042789                                                                                                             mRNA transcription by RNA polymerase II
## GO:0060231                                                                                                                mesenchymal to epithelial transition
## GO:0099118                                                                                                                 microtubule-based protein transport
## GO:0033617                                                                                                 mitochondrial respiratory chain complex IV assembly
## GO:0048311                                                                                                                          mitochondrion distribution
## GO:0047497                                                                                                           mitochondrion transport along microtubule
## GO:0031571                                                                                                                    mitotic G1 DNA damage checkpoint
## GO:0071605                                                                                                           monocyte chemotactic protein-1 production
## GO:1902579                                                                                                                         multi-organism localization
## GO:0044766                                                                                                                            multi-organism transport
## GO:0030889                                                                                                         negative regulation of B cell proliferation
## GO:2000104                                                                                                negative regulation of DNA-dependent DNA replication
## GO:0002710                                                                                                     negative regulation of T cell mediated immunity
## GO:0050860                                                                                            negative regulation of T cell receptor signaling pathway
## GO:0051956                                                                                                         negative regulation of amino acid transport
## GO:0048712                                                                                                    negative regulation of astrocyte differentiation
## GO:0030502                                                                                                          negative regulation of bone mineralization
## GO:2000773                                                                                                          negative regulation of cellular senescence
## GO:0031936                                                                                                          negative regulation of chromatin silencing
## GO:0050774                                                                                                       negative regulation of dendrite morphogenesis
## GO:1902236                                                   negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0040037                                                                          negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0034111                                                                                                 negative regulation of homotypic cell-cell adhesion
## GO:0032695                                                                                                    negative regulation of interleukin-12 production
## GO:0045953                                                                                    negative regulation of natural killer cell mediated cytotoxicity
## GO:0010544                                                                                                          negative regulation of platelet activation
## GO:0010766                                                                                                         negative regulation of sodium ion transport
## GO:0032211                                                                                          negative regulation of telomere maintenance via telomerase
## GO:0040033                                                                                                  negative regulation of translation, ncRNA-mediated
## GO:0010529                                                                                                                negative regulation of transposition
## GO:0050884                                                                                                           neuromuscular process controlling posture
## GO:0034656                                                                                              nucleobase-containing small molecule catabolic process
## GO:0070989                                                                                                                             oxidative demethylation
## GO:0060746                                                                                                                                   parental behavior
## GO:0030220                                                                                                                                  platelet formation
## GO:0030859                                                                                                           polarized epithelial cell differentiation
## GO:0006595                                                                                                                         polyamine metabolic process
## GO:0044794                                                                                                        positive regulation by host of viral process
## GO:0002726                                                                                                   positive regulation of T cell cytokine production
## GO:2000251                                                                                            positive regulation of actin cytoskeleton reorganization
## GO:0060456                                                                                                     positive regulation of digestive system process
## GO:1900451                                                                                         positive regulation of glutamate receptor signaling pathway
## GO:0070875                                                                                                   positive regulation of glycogen metabolic process
## GO:0046886                                                                                                 positive regulation of hormone biosynthetic process
## GO:0051349                                                                                                               positive regulation of lyase activity
## GO:0090026                                                                                                          positive regulation of monocyte chemotaxis
## GO:0061081                                                            positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0046827                                                                                                  positive regulation of protein export from nucleus
## GO:1904754                                                                             positive regulation of vascular associated smooth muscle cell migration
## GO:0010623                                                                                                  programmed cell death involved in cell development
## GO:0070208                                                                                                                         protein heterotrimerization
## GO:0045116                                                                                                                                 protein neddylation
## GO:0098840                                                                                                                 protein transport along microtubule
## GO:0016075                                                                                                                              rRNA catabolic process
## GO:0032012                                                                                                       regulation of ARF protein signal transduction
## GO:1900424                                                                                                         regulation of defense response to bacterium
## GO:1902259                                                                                          regulation of delayed rectifier potassium channel activity
## GO:1905276                                                                                                             regulation of epithelial tube formation
## GO:2000114                                                                                                        regulation of establishment of cell polarity
## GO:0031998                                                                                                             regulation of fatty acid beta-oxidation
## GO:2000269                                                                                                          regulation of fibroblast apoptotic process
## GO:1903975                                                                                                                  regulation of glial cell migration
## GO:0060123                                                                                                              regulation of growth hormone secretion
## GO:2000345                                                                                                              regulation of hepatocyte proliferation
## GO:0032656                                                                                                             regulation of interleukin-13 production
## GO:0045076                                                                                                    regulation of interleukin-2 biosynthetic process
## GO:0010984                                                                                                        regulation of lipoprotein particle clearance
## GO:0071637                                                                                             regulation of monocyte chemotactic protein-1 production
## GO:0032823                                                                                                   regulation of natural killer cell differentiation
## GO:0060099                                                                                                              regulation of phagocytosis, engulfment
## GO:1905874                                                                                                     regulation of postsynaptic density organization
## GO:0090036                                                                                                            regulation of protein kinase C signaling
## GO:1903214                                                                                                    regulation of protein targeting to mitochondrion
## GO:0010880                                                             regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0032095                                                                                                                      regulation of response to food
## GO:0048172                                                                                               regulation of short-term neuronal synaptic plasticity
## GO:0090030                                                                                                  regulation of steroid hormone biosynthetic process
## GO:0002643                                                                                                                   regulation of tolerance induction
## GO:0045974                                                                                                           regulation of translation, ncRNA-mediated
## GO:0010528                                                                                                                         regulation of transposition
## GO:0010447                                                                                                                               response to acidic pH
## GO:0001975                                                                                                                             response to amphetamine
## GO:0070723                                                                                                                             response to cholesterol
## GO:0035728                                                                                                                response to hepatocyte growth factor
## GO:0035994                                                                                                                          response to muscle stretch
## GO:0072520                                                                                                                     seminiferous tubule development
## GO:0051238                                                                                                                           sequestering of metal ion
## GO:0016074                                                                                                                            snoRNA metabolic process
## GO:0034063                                                                                                                             stress granule assembly
## GO:1902644                                                                                                                  tertiary alcohol metabolic process
## GO:0072189                                                                                                                                  ureter development
## GO:0080111                                                                                                                                   DNA demethylation
## GO:0044783                                                                                                                            G1 DNA damage checkpoint
## GO:0002755                                                                                                MyD88-dependent toll-like receptor signaling pathway
## GO:0032148                                                                                                             activation of protein kinase B activity
## GO:0048490                                                                                                              anterograde synaptic vesicle transport
## GO:0002504                                                           antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:0006525                                                                                                                          arginine metabolic process
## GO:0048143                                                                                                                                astrocyte activation
## GO:0006699                                                                                                                      bile acid biosynthetic process
## GO:0035584                                                                                       calcium-mediated signaling using intracellular calcium source
## GO:0098743                                                                                                                                    cell aggregation
## GO:0061323                                                                                                  cell proliferation involved in heart morphogenesis
## GO:0044247                                                                                                           cellular polysaccharide catabolic process
## GO:0046514                                                                                                                          ceramide catabolic process
## GO:0055064                                                                                                                            chloride ion homeostasis
## GO:0060294                                                                                                           cilium movement involved in cell motility
## GO:0046697                                                                                                                                     decidualization
## GO:0036336                                                                                                                            dendritic cell migration
## GO:0009200                                                                                                  deoxyribonucleoside triphosphate metabolic process
## GO:0050966                                                                             detection of mechanical stimulus involved in sensory perception of pain
## GO:0050910                                                                            detection of mechanical stimulus involved in sensory perception of sound
## GO:1990403                                                                                                                         embryonic brain development
## GO:0048557                                                                                                             embryonic digestive tract morphogenesis
## GO:0048245                                                                                                                               eosinophil chemotaxis
## GO:0061162                                                                                                            establishment of monopolar cell polarity
## GO:0008210                                                                                                                          estrogen metabolic process
## GO:1990182                                                                                                                                  exosomal secretion
## GO:0042730                                                                                                                                        fibrinolysis
## GO:0001573                                                                                                                       ganglioside metabolic process
## GO:0001696                                                                                                                              gastric acid secretion
## GO:0006688                                                                                                              glycosphingolipid biosynthetic process
## GO:0070828                                                                                                                        heterochromatin organization
## GO:0070498                                                                                                            interleukin-1-mediated signaling pathway
## GO:0016226                                                                                                                        iron-sulfur cluster assembly
## GO:0051383                                                                                                                            kinetochore organization
## GO:0006089                                                                                                                           lactate metabolic process
## GO:0002523                                                                                               leukocyte migration involved in inflammatory response
## GO:0006691                                                                                                                       leukotriene metabolic process
## GO:0001946                                                                                                                                   lymphangiogenesis
## GO:0006379                                                                                                                                       mRNA cleavage
## GO:0002313                                                                                           mature B cell differentiation involved in immune response
## GO:0035855                                                                                                                           megakaryocyte development
## GO:0031163                                                                                                                     metallo-sulfur cluster assembly
## GO:0072243                                                                                                          metanephric nephron epithelium development
## GO:0044819                                                                                                                  mitotic G1/S transition checkpoint
## GO:0032288                                                                                                                                     myelin assembly
## GO:0043011                                                                                                              myeloid dendritic cell differentiation
## GO:0045623                                                                                                negative regulation of T-helper cell differentiation
## GO:1903392                                                                                               negative regulation of adherens junction organization
## GO:2000726                                                                                          negative regulation of cardiac muscle cell differentiation
## GO:0071157                                                                                                            negative regulation of cell cycle arrest
## GO:0051195                                                                                                   negative regulation of cofactor metabolic process
## GO:0051481                                                                                          negative regulation of cytosolic calcium ion concentration
## GO:1902254                                                                  negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0033033                                                                                               negative regulation of myeloid cell apoptotic process
## GO:0002716                                                                                        negative regulation of natural killer cell mediated immunity
## GO:0048261                                                                                                negative regulation of receptor-mediated endocytosis
## GO:0090201                                                                                    negative regulation of release of cytochrome c from mitochondria
## GO:0045986                                                                                                    negative regulation of smooth muscle contraction
## GO:2000678                                                                                  negative regulation of transcription regulatory region DNA binding
## GO:0072079                                                                                                                            nephron tubule formation
## GO:0043931                                                                                                            ossification involved in bone maturation
## GO:0034377                                                                                                                plasma lipoprotein particle assembly
## GO:0034369                                                                                                              plasma lipoprotein particle remodeling
## GO:0097320                                                                                                                          plasma membrane tubulation
## GO:0036344                                                                                                                              platelet morphogenesis
## GO:1902993                                                                                  positive regulation of amyloid precursor protein catabolic process
## GO:0033605                                                                                                      positive regulation of catecholamine secretion
## GO:0033630                                                                                           positive regulation of cell adhesion mediated by integrin
## GO:1900409                                                                                        positive regulation of cellular response to oxidative stress
## GO:0060252                                                                                                     positive regulation of glial cell proliferation
## GO:0045821                                                                                                           positive regulation of glycolytic process
## GO:0045838                                                                                                           positive regulation of membrane potential
## GO:0045948                                                                                                     positive regulation of translational initiation
## GO:0050434                                                                                                          positive regulation of viral transcription
## GO:0034368                                                                                                                    protein-lipid complex remodeling
## GO:0042451                                                                                                              purine nucleoside biosynthetic process
## GO:0046129                                                                                                          purine ribonucleoside biosynthetic process
## GO:0046131                                                                                                         pyrimidine ribonucleoside metabolic process
## GO:0070269                                                                                                                                          pyroptosis
## GO:0031167                                                                                                                                    rRNA methylation
## GO:0002577                                                                                                   regulation of antigen processing and presentation
## GO:2000136                                                                                    regulation of cell proliferation involved in heart morphogenesis
## GO:0042053                                                                                                            regulation of dopamine metabolic process
## GO:1900101                                                                                       regulation of endoplasmic reticulum unfolded protein response
## GO:1904994                                                                                       regulation of leukocyte adhesion to vascular endothelial cell
## GO:0033599                                                                                           regulation of mammary gland epithelial cell proliferation
## GO:1905153                                                                                                                 regulation of membrane invagination
## GO:1901028                                                 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1900151                                                             regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1903798                                                                              regulation of production of miRNAs involved in gene silencing by miRNA
## GO:0010869                                                                                                         regulation of receptor biosynthetic process
## GO:0034143                                                                                                regulation of toll-like receptor 4 signaling pathway
## GO:0060307                                                                               regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0072087                                                                                                                           renal vesicle development
## GO:0014075                                                                                                                                   response to amine
## GO:1990776                                                                                                                             response to angiotensin
## GO:0010039                                                                                                                                response to iron ion
## GO:0032495                                                                                                                       response to muramyl dipeptide
## GO:0010842                                                                                                                              retina layer formation
## GO:0008090                                                                                                                         retrograde axonal transport
## GO:0034472                                                                                                                             snRNA 3'-end processing
## GO:0099514                                                                                                             synaptic vesicle cytoskeletal transport
## GO:0099517                                                                                                        synaptic vesicle transport along microtubule
## GO:0046653                                                                                                                  tetrahydrofolate metabolic process
## GO:0070633                                                                                                                           transepithelial transport
## GO:0007035                                                                                                                              vacuolar acidification
## GO:0048199                                                                                                         vesicle targeting, to, from or within Golgi
## GO:0042178                                                                                                                        xenobiotic catabolic process
## GO:0043369                                                                                  CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0015813                                                                                                                 L-glutamate transmembrane transport
## GO:0007190                                                                                                            activation of adenylate cyclase activity
## GO:0017000                                                                                                                     antibiotic biosynthetic process
## GO:0008356                                                                                                                            asymmetric cell division
## GO:0003283                                                                                                                           atrial septum development
## GO:0032291                                                                                                         axon ensheathment in central nervous system
## GO:0051016                                                                                                                   barbed-end actin filament capping
## GO:0022010                                                                                                                  central nervous system myelination
## GO:0007635                                                                                                                               chemosensory behavior
## GO:0000469                                                                                                                cleavage involved in rRNA processing
## GO:0051220                                                                                                                 cytoplasmic sequestering of protein
## GO:0050962                                                                                          detection of light stimulus involved in sensory perception
## GO:0050908                                                                                           detection of light stimulus involved in visual perception
## GO:0046339                                                                                                                    diacylglycerol metabolic process
## GO:0061339                                                                                             establishment or maintenance of monopolar cell polarity
## GO:0097734                                                                                                                    extracellular exosome biogenesis
## GO:0044346                                                                                                                        fibroblast apoptotic process
## GO:0003094                                                                                                                               glomerular filtration
## GO:0006541                                                                                                                         glutamine metabolic process
## GO:0006516                                                                                                                      glycoprotein catabolic process
## GO:0007625                                                                                                                                   grooming behavior
## GO:0006783                                                                                                                           heme biosynthetic process
## GO:0043984                                                                                                                          histone H4-K16 acetylation
## GO:0060333                                                                                                         interferon-gamma-mediated signaling pathway
## GO:0042094                                                                                                                  interleukin-2 biosynthetic process
## GO:0045475                                                                                                                                    locomotor rhythm
## GO:0036303                                                                                                                          lymph vessel morphogenesis
## GO:0000466                                                           maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0042438                                                                                                                        melanin biosynthetic process
## GO:0032400                                                                                                                             melanosome localization
## GO:0031579                                                                                                                          membrane raft organization
## GO:0072170                                                                                                                      metanephric tubule development
## GO:0006120                                                                                                mitochondrial electron transport, NADH to ubiquinone
## GO:0008053                                                                                                                                mitochondrial fusion
## GO:0007095                                                                                                                    mitotic G2 DNA damage checkpoint
## GO:0046716                                                                                                                    muscle cell cellular homeostasis
## GO:0051450                                                                                                                              myoblast proliferation
## GO:1901223                                                                                                      negative regulation of NIK/NF-kappaB signaling
## GO:0032682                                                                                                         negative regulation of chemokine production
## GO:0060457                                                                                                     negative regulation of digestive system process
## GO:0046325                                                                                                               negative regulation of glucose import
## GO:0032693                                                                                                    negative regulation of interleukin-10 production
## GO:0051447                                                                                                           negative regulation of meiotic cell cycle
## GO:1901017                                                                             negative regulation of potassium ion transmembrane transporter activity
## GO:0001976                                                              neurological system process involved in regulation of systemic arterial blood pressure
## GO:0140058                                                                                                                      neuron projection arborization
## GO:0098969                                                                                        neurotransmitter receptor transport to postsynaptic membrane
## GO:0048486                                                                                                          parasympathetic nervous system development
## GO:0035357                                                                                        peroxisome proliferator activated receptor signaling pathway
## GO:0006907                                                                                                                                         pinocytosis
## GO:0046174                                                                                                                            polyol catabolic process
## GO:0090050                                                                            positive regulation of cell migration involved in sprouting angiogenesis
## GO:0032332                                                                                                  positive regulation of chondrocyte differentiation
## GO:0051197                                                                                                   positive regulation of coenzyme metabolic process
## GO:1900017                                                                        positive regulation of cytokine production involved in inflammatory response
## GO:2000193                                                                                                         positive regulation of fatty acid transport
## GO:0010560                                                                                            positive regulation of glycoprotein biosynthetic process
## GO:0031065                                                                                                        positive regulation of histone deacetylation
## GO:0002863                                                                                  positive regulation of inflammatory response to antigenic stimulus
## GO:0070230                                                                                                 positive regulation of lymphocyte apoptotic process
## GO:0010759                                                                                                        positive regulation of macrophage chemotaxis
## GO:2001224                                                                                                             positive regulation of neuron migration
## GO:0051770                                                                                   positive regulation of nitric-oxide synthase biosynthetic process
## GO:0030813                                                                                                 positive regulation of nucleotide catabolic process
## GO:0032930                                                                                                  positive regulation of superoxide anion generation
## GO:1901522                             positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:0042535                                                                                   positive regulation of tumor necrosis factor biosynthetic process
## GO:0048569                                                                                                             post-embryonic animal organ development
## GO:0097107                                                                                                                       postsynaptic density assembly
## GO:0015732                                                                                                                             prostaglandin transport
## GO:0000413                                                                                                               protein peptidyl-prolyl isomerization
## GO:0034367                                                                                                               protein-containing complex remodeling
## GO:0003177                                                                                                                         pulmonary valve development
## GO:2000209                                                                                                                               regulation of anoikis
## GO:0042069                                                                                                       regulation of catecholamine metabolic process
## GO:2001032                                                                              regulation of double-strand break repair via nonhomologous end joining
## GO:0006349                                                                                                 regulation of gene expression by genetic imprinting
## GO:0051023                                                                                                              regulation of immunoglobulin secretion
## GO:2000482                                                                                                               regulation of interleukin-8 secretion
## GO:1901623                                                                                                                 regulation of lymphocyte chemotaxis
## GO:0010743                                                                                          regulation of macrophage derived foam cell differentiation
## GO:0051900                                                                                                          regulation of mitochondrial depolarization
## GO:1901673                                                                                                              regulation of mitotic spindle assembly
## GO:0090330                                                                                                                  regulation of platelet aggregation
## GO:1901626                                                                                                    regulation of postsynaptic membrane organization
## GO:0070920                                                                             regulation of production of small RNA involved in gene silencing by RNA
## GO:0010866                                                                                                     regulation of triglyceride biosynthetic process
## GO:1904666                                                                                                     regulation of ubiquitin protein ligase activity
## GO:0014808                                                                           release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0019430                                                                                                                      removal of superoxide radicals
## GO:0098780                                                                                                            response to mitochondrial depolarisation
## GO:0034694                                                                                                                           response to prostaglandin
## GO:0031290                                                                                                                 retinal ganglion cell axon guidance
## GO:0000028                                                                                                                    ribosomal small subunit assembly
## GO:0044273                                                                                                                   sulfur compound catabolic process
## GO:0002097                                                                                                                       tRNA wobble base modification
## GO:0043586                                                                                                                                  tongue development
## GO:0071577                                                                                                                    zinc ion transmembrane transport
## GO:0035510                                                                                                                                    DNA dealkylation
## GO:0006353                                                                                                            DNA-templated transcription, termination
## GO:0035493                                                                                                                              SNARE complex assembly
## GO:0060009                                                                                                                            Sertoli cell development
## GO:0019400                                                                                                                           alditol metabolic process
## GO:0048532                                                                                                                    anatomical structure arrangement
## GO:0009067                                                                                                    aspartate family amino acid biosynthetic process
## GO:0042537                                                                                                       benzene-containing compound metabolic process
## GO:0070977                                                                                                                                     bone maturation
## GO:0060602                                                                                                                  branch elongation of an epithelium
## GO:0072111                                                                                                   cell proliferation involved in kidney development
## GO:0071475                                                                                                             cellular hyperosmotic salinity response
## GO:0071870                                                                                                         cellular response to catecholamine stimulus
## GO:0003433                                                                                 chondrocyte development involved in endochondral bone morphogenesis
## GO:0002374                                                                                                      cytokine secretion involved in immune response
## GO:0002183                                                                                                                cytoplasmic translational initiation
## GO:0097062                                                                                                                         dendritic spine maintenance
## GO:0098581                                                                                                               detection of external biotic stimulus
## GO:0016048                                                                                                                   detection of temperature stimulus
## GO:0021516                                                                                                                      dorsal spinal cord development
## GO:0043153                                                                                                       entrainment of circadian clock by photoperiod
## GO:0051654                                                                                                         establishment of mitochondrion localization
## GO:1903540                                                                                      establishment of protein localization to postsynaptic membrane
## GO:0030252                                                                                                                            growth hormone secretion
## GO:0003418                                                                                                  growth plate cartilage chondrocyte differentiation
## GO:0044851                                                                                                                                    hair cycle phase
## GO:0031649                                                                                                                                     heat generation
## GO:0070734                                                                                                                          histone H3-K27 methylation
## GO:0070841                                                                                                                             inclusion body assembly
## GO:0060080                                                                                                                   inhibitory postsynaptic potential
## GO:0032616                                                                                                                           interleukin-13 production
## GO:0060575                                                                                                          intestinal epithelial cell differentiation
## GO:0032367                                                                                                                 intracellular cholesterol transport
## GO:0032366                                                                                                                      intracellular sterol transport
## GO:0007141                                                                                                                                      male meiosis I
## GO:0060749                                                                                                                  mammary gland alveolus development
## GO:0061377                                                                                                                    mammary gland lobule development
## GO:0072273                                                                                                                   metanephric nephron morphogenesis
## GO:0032042                                                                                                                 mitochondrial DNA metabolic process
## GO:0000423                                                                                                                                           mitophagy
## GO:0032780                                                                                                              negative regulation of ATPase activity
## GO:1901889                                                                                                       negative regulation of cell junction assembly
## GO:0032331                                                                                                  negative regulation of chondrocyte differentiation
## GO:0045683                                                                                                        negative regulation of epidermis development
## GO:0032691                                                                                                negative regulation of interleukin-1 beta production
## GO:0046823                                                                                                  negative regulation of nucleocytoplasmic transport
## GO:2000757                                                                                                  negative regulation of peptidyl-lysine acetylation
## GO:0046597                                                                                                   negative regulation of viral entry into host cell
## GO:0032897                                                                                                          negative regulation of viral transcription
## GO:0048857                                                                                                                          neural nucleus development
## GO:0098877                                                                                              neurotransmitter receptor transport to plasma membrane
## GO:0001780                                                                                                                              neutrophil homeostasis
## GO:0015874                                                                                                                            norepinephrine transport
## GO:0048339                                                                                                                       paraxial mesoderm development
## GO:0018230                                                                                                                peptidyl-L-cysteine S-palmitoylation
## GO:0018231                                                                    peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine
## GO:0090382                                                                                                                                phagosome maturation
## GO:0051875                                                                                                                        pigment granule localization
## GO:0071800                                                                                                                                   podosome assembly
## GO:0045624                                                                                                positive regulation of T-helper cell differentiation
## GO:0046641                                                                                              positive regulation of alpha-beta T cell proliferation
## GO:0050857                                                                                  positive regulation of antigen receptor-mediated signaling pathway
## GO:0010666                                                                                        positive regulation of cardiac muscle cell apoptotic process
## GO:2000353                                                                                           positive regulation of endothelial cell apoptotic process
## GO:0045606                                                                                               positive regulation of epidermal cell differentiation
## GO:1903055                                                                                            positive regulation of extracellular matrix organization
## GO:0046628                                                                                           positive regulation of insulin receptor signaling pathway
## GO:0033145                                                                     positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0010884                                                                                                                positive regulation of lipid storage
## GO:0033008                                                                             positive regulation of mast cell activation involved in immune response
## GO:0043306                                                                                                      positive regulation of mast cell degranulation
## GO:0031643                                                                                                                  positive regulation of myelination
## GO:1901741                                                                                                              positive regulation of myoblast fusion
## GO:2000010                                                                                         positive regulation of protein localization to cell surface
## GO:1902307                                                                                           positive regulation of sodium ion transmembrane transport
## GO:0003084                                                                                             positive regulation of systemic arterial blood pressure
## GO:1904469                                                                                              positive regulation of tumor necrosis factor secretion
## GO:0099170                                                                                           postsynaptic modulation of chemical synaptic transmission
## GO:0071459                                                                                              protein localization to chromosome, centromeric region
## GO:0035268                                                                                                                               protein mannosylation
## GO:0002864                                                                                     regulation of acute inflammatory response to antigenic stimulus
## GO:0032098                                                                                                                              regulation of appetite
## GO:0046599                                                                                                                 regulation of centriole replication
## GO:2001026                                                                                                           regulation of endothelial cell chemotaxis
## GO:0051797                                                                                                             regulation of hair follicle development
## GO:0032303                                                                                                                   regulation of icosanoid secretion
## GO:0002837                                                                                                         regulation of immune response to tumor cell
## GO:0051043                                                                                               regulation of membrane protein ectodomain proteolysis
## GO:0072215                                                                                                               regulation of metanephros development
## GO:1902914                                                                                                            regulation of protein polyubiquitination
## GO:0002834                                                                                                                regulation of response to tumor cell
## GO:0007063                                                                                                             regulation of sister chromatid cohesion
## GO:1905562                                                                                               regulation of vascular endothelial cell proliferation
## GO:1903514                                                                            release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0097205                                                                                                                                    renal filtration
## GO:0008535                                                                                                               respiratory chain complex IV assembly
## GO:0010996                                                                                                                       response to auditory stimulus
## GO:0051602                                                                                                                     response to electrical stimulus
## GO:0034405                                                                                                                      response to fluid shear stress
## GO:0014850                                                                                                                         response to muscle activity
## GO:0036314                                                                                                                                  response to sterol
## GO:0035634                                                                                                                              response to stilbenoid
## GO:0002115                                                                                                                        store-operated calcium entry
## GO:0007130                                                                                                                       synaptonemal complex assembly
## GO:0070242                                                                                                                         thymocyte apoptotic process
## GO:0009404                                                                                                                             toxin metabolic process
## GO:0060438                                                                                                                                 trachea development
## GO:0032196                                                                                                                                       transposition
## GO:0003323                                                                                                                  type B pancreatic cell development
## GO:0101023                                                                                                             vascular endothelial cell proliferation
## GO:0099625                                                                                             ventricular cardiac muscle cell membrane repolarization
## GO:0009110                                                                                                                        vitamin biosynthetic process
## GO:0015986                                                                                                              ATP synthesis coupled proton transport
## GO:0035743                                                                                                 CD4-positive, alpha-beta T cell cytokine production
## GO:0022616                                                                                                                               DNA strand elongation
## GO:0003176                                                                                                                            aortic valve development
## GO:0002093                                                                                                                auditory receptor cell morphogenesis
## GO:0015721                                                                                                                   bile acid and bile salt transport
## GO:0022403                                                                                                                                    cell cycle phase
## GO:0072202                                                                                            cell differentiation involved in metanephros development
## GO:0071276                                                                                                                    cellular response to cadmium ion
## GO:0071359                                                                                                                          cellular response to dsRNA
## GO:0071218                                                                                                              cellular response to misfolded protein
## GO:0071868                                                                                                             cellular response to monoamine stimulus
## GO:0071450                                                                                                                 cellular response to oxygen radical
## GO:0071467                                                                                                                             cellular response to pH
## GO:0071451                                                                                                                     cellular response to superoxide
## GO:0039528                                                                     cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0015985                                                                                      energy coupled proton transport, down electrochemical gradient
## GO:0140112                                                                                                                    extracellular vesicle biogenesis
## GO:0008211                                                                                                                    glucocorticoid metabolic process
## GO:0046475                                                                                                               glycerophospholipid catabolic process
## GO:0032959                                                                                                         inositol trisphosphate biosynthetic process
## GO:0060972                                                                                                                        left/right pattern formation
## GO:0034383                                                                                                          low-density lipoprotein particle clearance
## GO:0002320                                                                                                            lymphoid progenitor cell differentiation
## GO:0051457                                                                                                          maintenance of protein location in nucleus
## GO:0030539                                                                                                                          male genitalia development
## GO:0097502                                                                                                                                       mannosylation
## GO:0006582                                                                                                                           melanin metabolic process
## GO:0048333                                                                                                                     mesodermal cell differentiation
## GO:0006346                                                                                                           methylation-dependent chromatin silencing
## GO:0007020                                                                                                                              microtubule nucleation
## GO:1902410                                                                                                                         mitotic cytokinetic process
## GO:0072337                                                                                                                       modified amino acid transport
## GO:0002903                                                                                                     negative regulation of B cell apoptotic process
## GO:0043371                                                                              negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045736                                                                    negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0002719                                                                              negative regulation of cytokine production involved in immune response
## GO:0001911                                                                                              negative regulation of leukocyte mediated cytotoxicity
## GO:0050765                                                                                                                 negative regulation of phagocytosis
## GO:1903077                                                                                      negative regulation of protein localization to plasma membrane
## GO:1903306                                                                                                  negative regulation of regulated secretory pathway
## GO:0009648                                                                                                                                      photoperiodism
## GO:0000272                                                                                                                    polysaccharide catabolic process
## GO:0046931                                                                                                                               pore complex assembly
## GO:0002827                                                                                              positive regulation of T-helper 1 type immune response
## GO:0090190                                                                             positive regulation of branching involved in ureteric bud morphogenesis
## GO:1903020                                                                                               positive regulation of glycoprotein metabolic process
## GO:0032727                                                                                                  positive regulation of interferon-alpha production
## GO:0010592                                                                                                       positive regulation of lamellipodium assembly
## GO:0031954                                                                                                  positive regulation of protein autophosphorylation
## GO:1902884                                                                                                 positive regulation of response to oxidative stress
## GO:0010663                                                                                       positive regulation of striated muscle cell apoptotic process
## GO:0045943                                                                                            positive regulation of transcription by RNA polymerase I
## GO:0032968                                                                     positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0060261                                                                     positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0043687                                                                                                             post-translational protein modification
## GO:0036010                                                                                                                    protein localization to endosome
## GO:0006144                                                                                                                 purine nucleobase metabolic process
## GO:0009154                                                                                                             purine ribonucleotide catabolic process
## GO:0060390                                                                                                      regulation of SMAD protein signal transduction
## GO:2000316                                                                                                      regulation of T-helper 17 type immune response
## GO:0010874                                                                                                                    regulation of cholesterol efflux
## GO:0099149                                                                                regulation of postsynaptic neurotransmitter receptor internalization
## GO:0010738                                                                                                            regulation of protein kinase A signaling
## GO:0043576                                                                                                          regulation of respiratory gaseous exchange
## GO:2000831                                                                                                             regulation of steroid hormone secretion
## GO:1900242                                                                                                          regulation of synaptic vesicle endocytosis
## GO:0051969                                                                                                         regulation of transmission of nerve impulse
## GO:0071869                                                                                                                           response to catecholamine
## GO:0009261                                                                                                                    ribonucleotide catabolic process
## GO:0006837                                                                                                                                 serotonin transport
## GO:0023019                                                                                       signal transduction involved in regulation of gene expression
## GO:0043501                                                                                                                          skeletal muscle adaptation
## GO:0048485                                                                                                              sympathetic nervous system development
## GO:0045056                                                                                                                                        transcytosis
## GO:0097186                                                                                                                                        amelogenesis
## GO:0003181                                                                                                                atrioventricular valve morphogenesis
## GO:0098869                                                                                                                     cellular oxidant detoxification
## GO:0071392                                                                                                             cellular response to estradiol stimulus
## GO:0006882                                                                                                                       cellular zinc ion homeostasis
## GO:0009190                                                                                                              cyclic nucleotide biosynthetic process
## GO:0052652                                                                                                          cyclic purine nucleotide metabolic process
## GO:0060216                                                                                                                              definitive hemopoiesis
## GO:0034311                                                                                                                              diol metabolic process
## GO:0009048                                                                                                 dosage compensation by inactivation of X chromosome
## GO:0003272                                                                                                                       endocardial cushion formation
## GO:0072677                                                                                                                                eosinophil migration
## GO:0070199                                                                                                 establishment of protein localization to chromosome
## GO:0042044                                                                                                                                     fluid transport
## GO:0009065                                                                                                       glutamine family amino acid catabolic process
## GO:0016578                                                                                                                            histone deubiquitination
## GO:0002418                                                                                                                       immune response to tumor cell
## GO:0033622                                                                                                                                 integrin activation
## GO:0072643                                                                                                                          interferon-gamma secretion
## GO:0072207                                                                                                                  metanephric epithelium development
## GO:0042474                                                                                                                            middle ear morphogenesis
## GO:0051882                                                                                                                        mitochondrial depolarization
## GO:0070584                                                                                                                         mitochondrion morphogenesis
## GO:0006312                                                                                                                               mitotic recombination
## GO:0007064                                                                                                                   mitotic sister chromatid cohesion
## GO:0052472                                                                                                        modulation by host of symbiont transcription
## GO:0043921                                                                                                           modulation by host of viral transcription
## GO:0019048                                                                                                modulation by virus of host morphology or physiology
## GO:0052312                                                                     modulation of transcription in other organism involved in symbiotic interaction
## GO:1905208                                                                                                   negative regulation of cardiocyte differentiation
## GO:0050687                                                                                                    negative regulation of defense response to virus
## GO:0045922                                                                                                 negative regulation of fatty acid metabolic process
## GO:0031061                                                                                                          negative regulation of histone methylation
## GO:0050995                                                                                                      negative regulation of lipid catabolic process
## GO:0048025                                                                                               negative regulation of mRNA splicing, via spliceosome
## GO:1903204                                                                                        negative regulation of oxidative stress-induced neuron death
## GO:1901984                                                                                                          negative regulation of protein acetylation
## GO:0097150                                                                                                           neuronal stem cell population maintenance
## GO:0021889                                                                                                          olfactory bulb interneuron differentiation
## GO:0030728                                                                                                                                           ovulation
## GO:0046856                                                                                                              phosphatidylinositol dephosphorylation
## GO:0002693                                                                                                       positive regulation of cellular extravasation
## GO:0045723                                                                                              positive regulation of fatty acid biosynthetic process
## GO:2000637                                                                                                      positive regulation of gene silencing by miRNA
## GO:0032352                                                                                                    positive regulation of hormone metabolic process
## GO:0032753                                                                                                     positive regulation of interleukin-4 production
## GO:0032770                                                                                                       positive regulation of monooxygenase activity
## GO:0006301                                                                                                                              postreplication repair
## GO:0010499                                                                                         proteasomal ubiquitin-independent protein catabolic process
## GO:0007205                                                                            protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0065005                                                                                                                      protein-lipid complex assembly
## GO:0006221                                                                                                          pyrimidine nucleotide biosynthetic process
## GO:0099623                                                                                           regulation of cardiac muscle cell membrane repolarization
## GO:0035561                                                                                                                     regulation of chromatin binding
## GO:0048670                                                                                                                  regulation of collateral sprouting
## GO:0032878                                                                                         regulation of establishment or maintenance of cell polarity
## GO:0051580                                                                                                               regulation of neurotransmitter uptake
## GO:0043496                                                                                                     regulation of protein homodimerization activity
## GO:0033233                                                                                                                   regulation of protein sumoylation
## GO:1900120                                                                                                                      regulation of receptor binding
## GO:1902683                                                                                                      regulation of receptor localization to synapse
## GO:0035813                                                                                                                regulation of renal sodium excretion
## GO:0032928                                                                                                           regulation of superoxide anion generation
## GO:0046685                                                                                                            response to arsenic-containing substance
## GO:0035455                                                                                                                        response to interferon-alpha
## GO:0071867                                                                                                                               response to monoamine
## GO:0042572                                                                                                                           retinol metabolic process
## GO:0062009                                                                                                                        secondary palate development
## GO:0006706                                                                                                                           steroid catabolic process
## GO:0021544                                                                                                                              subpallium development
## GO:0034505                                                                                                                                tooth mineralization
## GO:0001829                                                                                                                trophectodermal cell differentiation
## GO:0019068                                                                                                                                     virion assembly
## GO:0090114                                                                                                                        COPII-coated vesicle budding
## GO:0095500                                                                                                            acetylcholine receptor signaling pathway
## GO:0071616                                                                                                                       acyl-CoA biosynthetic process
## GO:0030325                                                                                                                           adrenal gland development
## GO:0031100                                                                                                                           animal organ regeneration
## GO:0002478                                                                                    antigen processing and presentation of exogenous peptide antigen
## GO:0007413                                                                                                                                axonal fasciculation
## GO:0071711                                                                                                                      basement membrane organization
## GO:0048148                                                                                                                      behavioral response to cocaine
## GO:0048266                                                                                                                         behavioral response to pain
## GO:0086019                                                                                                  cell-cell signaling involved in cardiac conduction
## GO:0071312                                                                                                                       cellular response to alkaloid
## GO:0071234                                                                                                                  cellular response to phenylalanine
## GO:0021895                                                                                                              cerebral cortex neuron differentiation
## GO:0021801                                                                                                        cerebral cortex radial glia guided migration
## GO:0050832                                                                                                                          defense response to fungus
## GO:0009595                                                                                                                        detection of biotic stimulus
## GO:0032469                                                                                                       endoplasmic reticulum calcium ion homeostasis
## GO:0009649                                                                                                                      entrainment of circadian clock
## GO:0003351                                                                                                                          epithelial cilium movement
## GO:0010669                                                                                                                    epithelial structure maintenance
## GO:0085029                                                                                                                       extracellular matrix assembly
## GO:0006760                                                                                                    folic acid-containing compound metabolic process
## GO:1901658                                                                                                                 glycosyl compound catabolic process
## GO:0019320                                                                                                                            hexose catabolic process
## GO:0043486                                                                                                                                    histone exchange
## GO:0042430                                                                                                        indole-containing compound metabolic process
## GO:0006925                                                                                                                 inflammatory cell apoptotic process
## GO:0072606                                                                                                                             interleukin-8 secretion
## GO:0010742                                                                                                        macrophage derived foam cell differentiation
## GO:0006298                                                                                                                                     mismatch repair
## GO:0046426                                                                                                             negative regulation of JAK-STAT cascade
## GO:0035024                                                                                              negative regulation of Rho protein signal transduction
## GO:0090344                                                                                                                   negative regulation of cell aging
## GO:2001039                                                                                                    negative regulation of cellular response to drug
## GO:1904030                                                                                     negative regulation of cyclin-dependent protein kinase activity
## GO:0042059                                                                           negative regulation of epidermal growth factor receptor signaling pathway
## GO:1903206                                                                                         negative regulation of hydrogen peroxide-induced cell death
## GO:0032703                                                                                                     negative regulation of interleukin-2 production
## GO:1902230                                                              negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0032515                                                                                          negative regulation of phosphoprotein phosphatase activity
## GO:0120033                                                                             negative regulation of plasma membrane bounded cell projection assembly
## GO:1904376                                                                                       negative regulation of protein localization to cell periphery
## GO:1901032                                                                                          negative regulation of response to reactive oxygen species
## GO:1903671                                                                                                       negative regulation of sprouting angiogenesis
## GO:2000737                                                                                                    negative regulation of stem cell differentiation
## GO:0010894                                                                                                 negative regulation of steroid biosynthetic process
## GO:0045939                                                                                                    negative regulation of steroid metabolic process
## GO:1905809                                                                                                         negative regulation of synapse organization
## GO:1904357                                                                                negative regulation of telomere maintenance via telomere lengthening
## GO:0032480                                                                                                 negative regulation of type I interferon production
## GO:0070050                                                                                                                         neuron cellular homeostasis
## GO:0106030                                                                                                                     neuron projection fasciculation
## GO:0098810                                                                                                                           neurotransmitter reuptake
## GO:0030903                                                                                                                               notochord development
## GO:0000289                                                                                                    nuclear-transcribed mRNA poly(A) tail shortening
## GO:0043171                                                                                                                           peptide catabolic process
## GO:0018200                                                                                                                 peptidyl-glutamic acid modification
## GO:0014821                                                                                                                    phasic smooth muscle contraction
## GO:0006817                                                                                                                             phosphate ion transport
## GO:0031639                                                                                                                              plasminogen activation
## GO:0030194                                                                                                            positive regulation of blood coagulation
## GO:0090280                                                                                                           positive regulation of calcium ion import
## GO:0032376                                                                                                        positive regulation of cholesterol transport
## GO:0045737                                                                    positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0045648                                                                                                  positive regulation of erythrocyte differentiation
## GO:0051894                                                                                                      positive regulation of focal adhesion assembly
## GO:1900048                                                                                                                   positive regulation of hemostasis
## GO:0061213                                                                                                      positive regulation of mesonephros development
## GO:0071677                                                                                                   positive regulation of mononuclear cell migration
## GO:0001956                                                                                                   positive regulation of neurotransmitter secretion
## GO:0090023                                                                                                        positive regulation of neutrophil chemotaxis
## GO:0060148                                                                                           positive regulation of posttranscriptional gene silencing
## GO:1901798                                                                                    positive regulation of signal transduction by p53 class mediator
## GO:0032373                                                                                                             positive regulation of sterol transport
## GO:0034123                                                                                         positive regulation of toll-like receptor signaling pathway
## GO:2000679                                                                                  positive regulation of transcription regulatory region DNA binding
## GO:0010575                                                                                positive regulation of vascular endothelial growth factor production
## GO:0001516                                                                                                                  prostaglandin biosynthetic process
## GO:0046457                                                                                                                     prostanoid biosynthetic process
## GO:0018126                                                                                                                               protein hydroxylation
## GO:0051205                                                                                                                     protein insertion into membrane
## GO:0032800                                                                                                                       receptor biosynthetic process
## GO:0060004                                                                                                                                              reflex
## GO:2000765                                                                                                               regulation of cytoplasmic translation
## GO:1903649                                                                                                                 regulation of cytoplasmic transport
## GO:1903747                                                                                regulation of establishment of protein localization to mitochondrion
## GO:0014048                                                                                                                   regulation of glutamate secretion
## GO:1905939                                                                                                                     regulation of gonad development
## GO:0034114                                                                                                        regulation of heterotypic cell-cell adhesion
## GO:0043567                                                                                 regulation of insulin-like growth factor receptor signaling pathway
## GO:0090140                                                                                                                 regulation of mitochondrial fission
## GO:1901739                                                                                                                       regulation of myoblast fusion
## GO:0150077                                                                                                            regulation of neuroinflammatory response
## GO:0010640                                                                             regulation of platelet-derived growth factor receptor signaling pathway
## GO:0032104                                                                                                    regulation of response to extracellular stimulus
## GO:0032107                                                                                                           regulation of response to nutrient levels
## GO:0060338                                                                                          regulation of type I interferon-mediated signaling pathway
## GO:1904752                                                                                      regulation of vascular associated smooth muscle cell migration
## GO:0010165                                                                                                                                   response to X-ray
## GO:0046688                                                                                                                              response to copper ion
## GO:0055094                                                                                                                    response to lipoprotein particle
## GO:0051788                                                                                                                       response to misfolded protein
## GO:0080053                                                                                                                           response to phenylalanine
## GO:0042573                                                                                                                     retinoic acid metabolic process
## GO:0050951                                                                                                          sensory perception of temperature stimulus
## GO:1903831                                                                                   signal transduction involved in cellular response to ammonium ion
## GO:0021513                                                                                                               spinal cord dorsal/ventral patterning
## GO:0031629                                                                                         synaptic vesicle fusion to presynaptic active zone membrane
## GO:0070193                                                                                                                   synaptonemal complex organization
## GO:0022030                                                                                                                  telencephalon glial cell migration
## GO:0035384                                                                                                                      thioester biosynthetic process
## GO:0042403                                                                                                                   thyroid hormone metabolic process
## GO:1904738                                                                                                    vascular associated smooth muscle cell migration
## GO:0055069                                                                                                                                zinc ion homeostasis
## GO:0000737                                                                                                              DNA catabolic process, endonucleolytic
## GO:0051123                                                                                                    RNA polymerase II preinitiation complex assembly
## GO:0089718                                                                                                            amino acid import across plasma membrane
## GO:0006026                                                                                                                       aminoglycan catabolic process
## GO:0048799                                                                                                                             animal organ maturation
## GO:0045117                                                                                                                                     azole transport
## GO:0014898                                                                                                    cardiac muscle hypertrophy in response to stress
## GO:0055003                                                                                                                          cardiac myofibril assembly
## GO:0009713                                                                                                   catechol-containing compound biosynthetic process
## GO:0042423                                                                                                                  catecholamine biosynthetic process
## GO:0071474                                                                                                                      cellular hyperosmotic response
## GO:0071549                                                                                                         cellular response to dexamethasone stimulus
## GO:0007620                                                                                                                                          copulation
## GO:0007549                                                                                                                                 dosage compensation
## GO:0072575                                                                                       epithelial cell proliferation involved in liver morphogenesis
## GO:0061436                                                                                                                       establishment of skin barrier
## GO:0090077                                                                                                                           foam cell differentiation
## GO:0072012                                                                                                                  glomerulus vasculature development
## GO:1901071                                                                                                   glucosamine-containing compound metabolic process
## GO:0071425                                                                                                               hematopoietic stem cell proliferation
## GO:0072574                                                                                                                            hepatocyte proliferation
## GO:0033522                                                                                                                          histone H2A ubiquitination
## GO:0045109                                                                                                                  intermediate filament organization
## GO:0006891                                                                                                              intra-Golgi vesicle-mediated transport
## GO:0060716                                                                                                         labyrinthine layer blood vessel development
## GO:0016556                                                                                                                                   mRNA modification
## GO:0009299                                                                                                                                  mRNA transcription
## GO:0000460                                                                                                                             maturation of 5.8S rRNA
## GO:0034453                                                                                                                               microtubule anchoring
## GO:0032528                                                                                                                            microvillus organization
## GO:0099010                                                                                                              modification of postsynaptic structure
## GO:0003299                                                                                                            muscle hypertrophy in response to stress
## GO:1903579                                                                                                        negative regulation of ATP metabolic process
## GO:1904893                                                                                                                 negative regulation of STAT cascade
## GO:0070233                                                                                                     negative regulation of T cell apoptotic process
## GO:0050858                                                                                  negative regulation of antigen receptor-mediated signaling pathway
## GO:0070168                                                                                                negative regulation of biomineral tissue development
## GO:2000780                                                                                                   negative regulation of double-strand break repair
## GO:0010829                                                                                              negative regulation of glucose transmembrane transport
## GO:1901380                                                                                        negative regulation of potassium ion transmembrane transport
## GO:0048642                                                                                           negative regulation of skeletal muscle tissue development
## GO:0051497                                                                                                        negative regulation of stress fiber assembly
## GO:0007263                                                                                                           nitric oxide mediated signal transduction
## GO:0051767                                                                                                          nitric-oxide synthase biosynthetic process
## GO:0006730                                                                                                                        one-carbon metabolic process
## GO:0006779                                                                                                  porphyrin-containing compound biosynthetic process
## GO:0042104                                                                                               positive regulation of activated T cell proliferation
## GO:1900078                                                                                        positive regulation of cellular response to insulin stimulus
## GO:0045742                                                                           positive regulation of epidermal growth factor receptor signaling pathway
## GO:1900273                                                                                              positive regulation of long-term synaptic potentiation
## GO:1905523                                                                                                         positive regulation of macrophage migration
## GO:0010863                                                                                                     positive regulation of phospholipase C activity
## GO:0050927                                                                                                          positive regulation of positive chemotaxis
## GO:2000738                                                                                                    positive regulation of stem cell differentiation
## GO:0090208                                                                                               positive regulation of triglyceride metabolic process
## GO:0036342                                                                                                                        post-anal tail morphogenesis
## GO:0034067                                                                                                             protein localization to Golgi apparatus
## GO:0006213                                                                                                             pyrimidine nucleoside metabolic process
## GO:0000154                                                                                                                                   rRNA modification
## GO:2000311                                                                                                                regulation of AMPA receptor activity
## GO:0051125                                                                                                                      regulation of actin nucleation
## GO:0045761                                                                                                            regulation of adenylate cyclase activity
## GO:1903010                                                                                                                      regulation of bone development
## GO:0090189                                                                                      regulation of branching involved in ureteric bud morphogenesis
## GO:0098901                                                                                                  regulation of cardiac muscle cell action potential
## GO:0007176                                                                                   regulation of epidermal growth factor-activated receptor activity
## GO:0051570                                                                                                             regulation of histone H3-K9 methylation
## GO:0070129                                                                                                             regulation of mitochondrial translation
## GO:0090025                                                                                                                   regulation of monocyte chemotaxis
## GO:0051769                                                                                            regulation of nitric-oxide synthase biosynthetic process
## GO:2000050                                                                                                   regulation of non-canonical Wnt signaling pathway
## GO:0033688                                                                                                              regulation of osteoblast proliferation
## GO:1902175                                                                        regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1902473                                                                                                       regulation of protein localization to synapse
## GO:0010155                                                                                                                      regulation of proton transport
## GO:1904353                                                                                                                      regulation of telomere capping
## GO:0035809                                                                                                                          regulation of urine volume
## GO:0035812                                                                                                                              renal sodium excretion
## GO:0000303                                                                                                                              response to superoxide
## GO:0016180                                                                                                                                    snRNA processing
## GO:0007289                                                                                                                   spermatid nucleus differentiation
## GO:0035929                                                                                                                           steroid hormone secretion
## GO:0016082                                                                                                                            synaptic vesicle priming
## GO:0019433                                                                                                                      triglyceride catabolic process
## GO:0060065                                                                                                                                  uterus development
## GO:0099500                                                                                                                   vesicle fusion to plasma membrane
## GO:0009394                                                                                                            2'-deoxyribonucleotide metabolic process
## GO:0036037                                                                                                          CD8-positive, alpha-beta T cell activation
## GO:0031365                                                                                                          N-terminal protein amino acid modification
## GO:0060008                                                                                                                        Sertoli cell differentiation
## GO:0003171                                                                                                                  atrioventricular valve development
## GO:0060219                                                                                                  camera-type eye photoreceptor cell differentiation
## GO:0014887                                                                                                                           cardiac muscle adaptation
## GO:0060536                                                                                                                             cartilage morphogenesis
## GO:0021533                                                                                                                   cell differentiation in hindbrain
## GO:1905145                                                                                                                  cellular response to acetylcholine
## GO:0071361                                                                                                                        cellular response to ethanol
## GO:0071402                                                                                                  cellular response to lipoprotein particle stimulus
## GO:0071472                                                                                                                    cellular response to salt stress
## GO:0090103                                                                                                                               cochlea morphogenesis
## GO:0019692                                                                                                             deoxyribose phosphate metabolic process
## GO:0008340                                                                                                                     determination of adult lifespan
## GO:0035987                                                                                                                     endodermal cell differentiation
## GO:0032509                                                                                          endosome transport via multivesicular body sorting pathway
## GO:0021871                                                                                                                           forebrain regionalization
## GO:0007214                                                                                                           gamma-aminobutyric acid signaling pathway
## GO:0016577                                                                                                                               histone demethylation
## GO:0070076                                                                                                                        histone lysine demethylation
## GO:0030212                                                                                                                        hyaluronan metabolic process
## GO:0042538                                                                                                                      hyperosmotic salinity response
## GO:0048305                                                                                                                            immunoglobulin secretion
## GO:0032957                                                                                                            inositol trisphosphate metabolic process
## GO:0032365                                                                                                                       intracellular lipid transport
## GO:0061440                                                                                                                      kidney vasculature development
## GO:0060713                                                                                                                    labyrinthine layer morphogenesis
## GO:0050901                                                                                                                      leukocyte tethering or rolling
## GO:0006376                                                                                                                          mRNA splice site selection
## GO:0000470                                                                                                                              maturation of LSU-rRNA
## GO:0002335                                                                                                                       mature B cell differentiation
## GO:0003338                                                                                                                           metanephros morphogenesis
## GO:0051560                                                                                                               mitochondrial calcium ion homeostasis
## GO:0045738                                                                                                                   negative regulation of DNA repair
## GO:1901185                                                                                                       negative regulation of ERBB signaling pathway
## GO:0046639                                                                                            negative regulation of alpha-beta T cell differentiation
## GO:0050849                                                                                                   negative regulation of calcium-mediated signaling
## GO:0031342                                                                                                                 negative regulation of cell killing
## GO:0051354                                                                                                      negative regulation of oxidoreductase activity
## GO:0061099                                                                                             negative regulation of protein tyrosine kinase activity
## GO:1900543                                                                                          negative regulation of purine nucleotide metabolic process
## GO:2000272                                                                                                  negative regulation of signaling receptor activity
## GO:0003085                                                                                             negative regulation of systemic arterial blood pressure
## GO:0009163                                                                                                                     nucleoside biosynthetic process
## GO:0018195                                                                                                                      peptidyl-arginine modification
## GO:0045332                                                                                                                          phospholipid translocation
## GO:0010971                                                                                        positive regulation of G2/M transition of mitotic cell cycle
## GO:0046852                                                                                                              positive regulation of bone remodeling
## GO:0045780                                                                                                              positive regulation of bone resorption
## GO:0045956                                                                                             positive regulation of calcium ion-dependent exocytosis
## GO:2000727                                                                                          positive regulation of cardiac muscle cell differentiation
## GO:0060045                                                                                            positive regulation of cardiac muscle cell proliferation
## GO:0042753                                                                                                             positive regulation of circadian rhythm
## GO:1903861                                                                                                           positive regulation of dendrite extension
## GO:0061003                                                                                                positive regulation of dendritic spine morphogenesis
## GO:0071624                                                                                                       positive regulation of granulocyte chemotaxis
## GO:0010460                                                                                                                   positive regulation of heart rate
## GO:0045830                                                                                                            positive regulation of isotype switching
## GO:1903489                                                                                                                    positive regulation of lactation
## GO:0050996                                                                                                      positive regulation of lipid catabolic process
## GO:0002052                                                                                                     positive regulation of neuroblast proliferation
## GO:1901018                                                                             positive regulation of potassium ion transmembrane transporter activity
## GO:0010954                                                                                                           positive regulation of protein processing
## GO:0010893                                                                                                 positive regulation of steroid biosynthetic process
## GO:0036003                                                          positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0071108                                                                                                                 protein K48-linked deubiquitination
## GO:0006515                                                                          protein quality control for misfolded or incompletely synthesized proteins
## GO:0072528                                                                                                 pyrimidine-containing compound biosynthetic process
## GO:0032801                                                                                                                          receptor catabolic process
## GO:0032925                                                                                                    regulation of activin receptor signaling pathway
## GO:1901532                                                                                         regulation of hematopoietic progenitor cell differentiation
## GO:0045408                                                                                                    regulation of interleukin-6 biosynthetic process
## GO:0031440                                                                                                                regulation of mRNA 3'-end processing
## GO:0032069                                                                                                                     regulation of nuclease activity
## GO:0050926                                                                                                                   regulation of positive chemotaxis
## GO:0003071                                                                     renal system process involved in regulation of systemic arterial blood pressure
## GO:0061437                                                                                                                renal system vasculature development
## GO:0045730                                                                                                                                   respiratory burst
## GO:1905144                                                                                                                           response to acetylcholine
## GO:0000305                                                                                                                          response to oxygen radical
## GO:0002347                                                                                                                              response to tumor cell
## GO:0061298                                                                                                   retina vasculature development in camera-type eye
## GO:0042455                                                                                                                 ribonucleoside biosynthetic process
## GO:0044550                                                                                                           secondary metabolite biosynthetic process
## GO:0048745                                                                                                                    smooth muscle tissue development
## GO:0021511                                                                                                                              spinal cord patterning
## GO:0033014                                                                                                                   tetrapyrrole biosynthetic process
## GO:0045061                                                                                                                             thymic T cell selection
## GO:0030878                                                                                                                           thyroid gland development
## GO:0060343                                                                                                                                 trabecula formation
## GO:0044342                                                                                                                type B pancreatic cell proliferation
## GO:0039694                                                                                                                        viral RNA genome replication
## GO:0002360                                                                                                                           T cell lineage commitment
## GO:0072539                                                                                                                    T-helper 17 cell differentiation
## GO:0060444                                                                                              branching involved in mammary gland duct morphogenesis
## GO:0060445                                                                                                  branching involved in salivary gland morphogenesis
## GO:0061311                                                                               cell surface receptor signaling pathway involved in heart development
## GO:0021952                                                                                               central nervous system projection neuron axonogenesis
## GO:0034508                                                                                                                         centromere complex assembly
## GO:0021697                                                                                                                         cerebellar cortex formation
## GO:0002029                                                                                     desensitization of G protein-coupled receptor signaling pathway
## GO:0048596                                                                                                             embryonic camera-type eye morphogenesis
## GO:0035162                                                                                                                               embryonic hemopoiesis
## GO:0010458                                                                                                                                   exit from mitosis
## GO:0002068                                                                                                               glandular epithelial cell development
## GO:0048820                                                                                                                            hair follicle maturation
## GO:0060384                                                                                                                                         innervation
## GO:0042226                                                                                                                  interleukin-6 biosynthetic process
## GO:0036297                                                                                                                       interstrand cross-link repair
## GO:0002089                                                                                                               lens morphogenesis in camera-type eye
## GO:0034204                                                                                                                                 lipid translocation
## GO:0072576                                                                                                                                 liver morphogenesis
## GO:0001945                                                                                                                            lymph vessel development
## GO:0051307                                                                                                                       meiotic chromosome separation
## GO:0044003                                                                                           modification by symbiont of host morphology or physiology
## GO:0044788                                                                                                                 modulation by host of viral process
## GO:0022401                                                                                                            negative adaptation of signaling pathway
## GO:0048521                                                                                                                     negative regulation of behavior
## GO:0045992                                                                                                        negative regulation of embryonic development
## GO:0010719                                                                                         negative regulation of epithelial to mesenchymal transition
## GO:0045822                                                                                                            negative regulation of heart contraction
## GO:0032369                                                                                                              negative regulation of lipid transport
## GO:2000178                                                                                          negative regulation of neural precursor cell proliferation
## GO:0051589                                                                                                   negative regulation of neurotransmitter transport
## GO:0045980                                                                                                 negative regulation of nucleotide metabolic process
## GO:0032891                                                                                                       negative regulation of organic acid transport
## GO:0045671                                                                                                   negative regulation of osteoclast differentiation
## GO:0001759                                                                                                                                     organ induction
## GO:0035335                                                                                                                 peptidyl-tyrosine dephosphorylation
## GO:0060039                                                                                                                             pericardium development
## GO:0060037                                                                                                                       pharyngeal system development
## GO:1901186                                                                                                       positive regulation of ERBB signaling pathway
## GO:1902932                                                                                                 positive regulation of alcohol biosynthetic process
## GO:0051957                                                                                                         positive regulation of amino acid transport
## GO:1903846                                                                positive regulation of cellular response to transforming growth factor beta stimulus
## GO:0051984                                                                                                       positive regulation of chromosome segregation
## GO:0045724                                                                                                              positive regulation of cilium assembly
## GO:0050820                                                                                                                  positive regulation of coagulation
## GO:0051194                                                                                                   positive regulation of cofactor metabolic process
## GO:1904031                                                                                     positive regulation of cyclin-dependent protein kinase activity
## GO:0043032                                                                                                        positive regulation of macrophage activation
## GO:0051446                                                                                                           positive regulation of meiotic cell cycle
## GO:0045663                                                                                                     positive regulation of myoblast differentiation
## GO:1900745                                                                                                              positive regulation of p38MAPK cascade
## GO:0090312                                                                                                        positive regulation of protein deacetylation
## GO:0090314                                                                                                positive regulation of protein targeting to membrane
## GO:0030511                                                                   positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0098698                                                                                                                postsynaptic specialization assembly
## GO:0071168                                                                                                                   protein localization to chromatin
## GO:0070198                                                                                                protein localization to chromosome, telomeric region
## GO:0006195                                                                                                                 purine nucleotide catabolic process
## GO:2000310                                                                                                                regulation of NMDA receptor activity
## GO:0060765                                                                                                   regulation of androgen receptor signaling pathway
## GO:0061050                                                                               regulation of cell growth involved in cardiac muscle cell development
## GO:0045187                                                                                                     regulation of circadian sleep/wake cycle, sleep
## GO:0080154                                                                                                                         regulation of fertilization
## GO:0010962                                                                                                           regulation of glucan biosynthetic process
## GO:0005979                                                                                                         regulation of glycogen biosynthetic process
## GO:0031063                                                                                                                 regulation of histone deacetylation
## GO:0032647                                                                                                           regulation of interferon-alpha production
## GO:0061217                                                                                                               regulation of mesonephros development
## GO:0010939                                                                                                                   regulation of necrotic cell death
## GO:0045589                                                                                                     regulation of regulatory T cell differentiation
## GO:0090169                                                                                                                      regulation of spindle assembly
## GO:0033198                                                                                                                                     response to ATP
## GO:0007530                                                                                                                                   sex determination
## GO:0048103                                                                                                                          somatic stem cell division
## GO:0006929                                                                                                                  substrate-dependent cell migration
## GO:0002507                                                                                                                                 tolerance induction
## GO:0086005                                                                                                    ventricular cardiac muscle cell action potential
## GO:0006270                                                                                                                          DNA replication initiation
## GO:0006336                                                                                                     DNA replication-independent nucleosome assembly
## GO:0000731                                                                                                                DNA synthesis involved in DNA repair
## GO:0046039                                                                                                                               GTP metabolic process
## GO:0006734                                                                                                                              NADH metabolic process
## GO:0031295                                                                                                                                T cell costimulation
## GO:0071880                                                                                  adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0043090                                                                                                                                   amino acid import
## GO:0030262                                                                                                                           apoptotic nuclear changes
## GO:0060117                                                                                                                  auditory receptor cell development
## GO:0008206                                                                                                                         bile acid metabolic process
## GO:0099622                                                                                                         cardiac muscle cell membrane repolarization
## GO:0034629                                                                                                    cellular protein-containing complex localization
## GO:0071480                                                                                                                cellular response to gamma radiation
## GO:0071353                                                                                                                  cellular response to interleukin-4
## GO:0071354                                                                                                                  cellular response to interleukin-6
## GO:0003413                                                                             chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0050802                                                                                                                   circadian sleep/wake cycle, sleep
## GO:0006536                                                                                                                         glutamate metabolic process
## GO:0060914                                                                                                                                     heart formation
## GO:0007007                                                                                                           inner mitochondrial membrane organization
## GO:0045292                                                                                                                  mRNA cis splicing, via spliceosome
## GO:0030318                                                                                                                          melanocyte differentiation
## GO:0010586                                                                                                                             miRNA metabolic process
## GO:0097345                                                                                                       mitochondrial outer membrane permeabilization
## GO:0030224                                                                                                                            monocyte differentiation
## GO:1903131                                                                                                                    mononuclear cell differentiation
## GO:0046365                                                                                                                    monosaccharide catabolic process
## GO:0060571                                                                                                                 morphogenesis of an epithelial fold
## GO:0044458                                                                                                                              motile cilium assembly
## GO:0033119                                                                                                                 negative regulation of RNA splicing
## GO:0043951                                                                                                      negative regulation of cAMP-mediated signaling
## GO:1902042                                                             negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0033137                                                                                              negative regulation of peptidyl-serine phosphorylation
## GO:0099637                                                                                                                 neurotransmitter receptor transport
## GO:0042119                                                                                                                               neutrophil activation
## GO:0033687                                                                                                                            osteoblast proliferation
## GO:0003148                                                                                                                  outflow tract septum morphogenesis
## GO:0007602                                                                                                                                   phototransduction
## GO:0002230                                                                                            positive regulation of defense response to virus by host
## GO:0031116                                                                                                   positive regulation of microtubule polymerization
## GO:0033141                                                                              positive regulation of peptidyl-serine phosphorylation of STAT protein
## GO:0010800                                                                                           positive regulation of peptidyl-threonine phosphorylation
## GO:0043552                                                                                       positive regulation of phosphatidylinositol 3-kinase activity
## GO:1903319                                                                                                           positive regulation of protein maturation
## GO:0002092                                                                                                     positive regulation of receptor internalization
## GO:0099632                                                                                                            protein transport within plasma membrane
## GO:0090181                                                                                                         regulation of cholesterol metabolic process
## GO:1902235                                                            regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903487                                                                                                                             regulation of lactation
## GO:0001919                                                                                                                    regulation of receptor recycling
## GO:1900027                                                                                                                       regulation of ruffle assembly
## GO:0034391                                                                                                  regulation of smooth muscle cell apoptotic process
## GO:0060260                                                                              regulation of transcription initiation from RNA polymerase II promoter
## GO:0071548                                                                                                                           response to dexamethasone
## GO:0033273                                                                                                                                 response to vitamin
## GO:1990126                                                                                                   retrograde transport, endosome to plasma membrane
## GO:0070296                                                                                                        sarcoplasmic reticulum calcium ion transport
## GO:0072422                                                                                               signal transduction involved in DNA damage checkpoint
## GO:0072401                                                                                            signal transduction involved in DNA integrity checkpoint
## GO:0072395                                                                                               signal transduction involved in cell cycle checkpoint
## GO:0034390                                                                                                                smooth muscle cell apoptotic process
## GO:0030149                                                                                                                      sphingolipid catabolic process
## GO:0030488                                                                                                                                    tRNA methylation
## GO:0034724                                                                                                 DNA replication-independent nucleosome organization
## GO:0002438                                                                                                   acute inflammatory response to antigenic stimulus
## GO:0023058                                                                                                                     adaptation of signaling pathway
## GO:0008608                                                                                                   attachment of spindle microtubules to kinetochore
## GO:0060317                                                                                                        cardiac epithelial to mesenchymal transition
## GO:0006921                                                                             cellular component disassembly involved in execution phase of apoptosis
## GO:0051085                                                                                                      chaperone cofactor-dependent protein refolding
## GO:0021602                                                                                                                         cranial nerve morphogenesis
## GO:0021904                                                                                                               dorsal/ventral neural tube patterning
## GO:0035767                                                                                                                         endothelial cell chemotaxis
## GO:0090505                                                                                                                   epiboly involved in wound healing
## GO:0000132                                                                                                        establishment of mitotic spindle orientation
## GO:0035640                                                                                                                                exploration behavior
## GO:0022617                                                                                                                    extracellular matrix disassembly
## GO:0042168                                                                                                                              heme metabolic process
## GO:0015012                                                                                                   heparan sulfate proteoglycan biosynthetic process
## GO:0035329                                                                                                                                     hippo signaling
## GO:0010390                                                                                                                          histone monoubiquitination
## GO:0042744                                                                                                                 hydrogen peroxide catabolic process
## GO:0032607                                                                                                                         interferon-alpha production
## GO:0070306                                                                                                                     lens fiber cell differentiation
## GO:0022011                                                                                                            myelination in peripheral nervous system
## GO:0061082                                                                                                               myeloid leukocyte cytokine production
## GO:0070266                                                                                                                                 necroptotic process
## GO:0034260                                                                                                              negative regulation of GTPase activity
## GO:0055022                                                                                                 negative regulation of cardiac muscle tissue growth
## GO:0061037                                                                                                        negative regulation of cartilage development
## GO:0061117                                                                                                                 negative regulation of heart growth
## GO:0032692                                                                                                     negative regulation of interleukin-1 production
## GO:0016242                                                                                                               negative regulation of macroautophagy
## GO:0031645                                                                                                  negative regulation of neurological system process
## GO:0099645                                                                      neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:0032292                                                                                                         peripheral nervous system axon ensheathment
## GO:0043372                                                                              positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:1902751                                                                                             positive regulation of cell cycle G2/M phase transition
## GO:0035066                                                                                                          positive regulation of histone acetylation
## GO:2000778                                                                                                      positive regulation of interleukin-6 secretion
## GO:1902745                                                                                                   positive regulation of lamellipodium organization
## GO:0048026                                                                                               positive regulation of mRNA splicing, via spliceosome
## GO:0033005                                                                                                         positive regulation of mast cell activation
## GO:0048714                                                                                              positive regulation of oligodendrocyte differentiation
## GO:0010922                                                                                                         positive regulation of phosphatase activity
## GO:0048643                                                                                           positive regulation of skeletal muscle tissue development
## GO:0060143                                                                                positive regulation of syncytium formation by plasma membrane fusion
## GO:0008214                                                                                                                                protein dealkylation
## GO:0006482                                                                                                                               protein demethylation
## GO:0099633                                                                                        protein localization to postsynaptic specialization membrane
## GO:0042026                                                                                                                                   protein refolding
## GO:0009303                                                                                                                                  rRNA transcription
## GO:0002902                                                                                                              regulation of B cell apoptotic process
## GO:0002724                                                                                                            regulation of T cell cytokine production
## GO:0002825                                                                                                       regulation of T-helper 1 type immune response
## GO:1902003                                                                                                                regulation of amyloid-beta formation
## GO:1903859                                                                                                                    regulation of dendrite extension
## GO:0044062                                                                                                                             regulation of excretion
## GO:1900117                                                                                                          regulation of execution phase of apoptosis
## GO:0051569                                                                                                             regulation of histone H3-K4 methylation
## GO:0034110                                                                                                          regulation of homotypic cell-cell adhesion
## GO:0032673                                                                                                              regulation of interleukin-4 production
## GO:1902253                                                                           regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0042481                                                                                                                         regulation of odontogenesis
## GO:1900274                                                                                                              regulation of phospholipase C activity
## GO:0042534                                                                                            regulation of tumor necrosis factor biosynthetic process
## GO:0010803                                                                                      regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031297                                                                                                                         replication fork processing
## GO:0010043                                                                                                                                response to zinc ion
## GO:0048384                                                                                                            retinoic acid receptor signaling pathway
## GO:0042533                                                                                                          tumor necrosis factor biosynthetic process
## GO:0003309                                                                                                              type B pancreatic cell differentiation
## GO:0000038                                                                                                        very long-chain fatty acid metabolic process
## GO:0044319                                                                                                                   wound healing, spreading of cells
## GO:0006829                                                                                                                                  zinc ion transport
## GO:0006335                                                                                                       DNA replication-dependent nucleosome assembly
## GO:0034723                                                                                                   DNA replication-dependent nucleosome organization
## GO:0006506                                                                                                                     GPI anchor biosynthetic process
## GO:0071875                                                                                                               adrenergic receptor signaling pathway
## GO:0043276                                                                                                                                             anoikis
## GO:0019884                                                                                            antigen processing and presentation of exogenous antigen
## GO:1903963                                                                                                                              arachidonate transport
## GO:0050482                                                                                                                          arachidonic acid secretion
## GO:0097352                                                                                                                            autophagosome maturation
## GO:0001832                                                                                                                                   blastocyst growth
## GO:0060795                                                                                    cell fate commitment involved in formation of primary germ layer
## GO:0006884                                                                                                                             cell volume homeostasis
## GO:0009584                                                                                                                          detection of visible light
## GO:0001958                                                                                                                           endochondral ossification
## GO:0090504                                                                                                                                             epiboly
## GO:0019373                                                                                                                            epoxygenase P450 pathway
## GO:0090162                                                                                                           establishment of epithelial cell polarity
## GO:1901659                                                                                                              glycosyl compound biosynthetic process
## GO:0060218                                                                                                             hematopoietic stem cell differentiation
## GO:0008299                                                                                                                     isoprenoid biosynthetic process
## GO:0048535                                                                                                                              lymph node development
## GO:0031294                                                                                                                            lymphocyte costimulation
## GO:0061157                                                                                                                                mRNA destabilization
## GO:0001893                                                                                                                       maternal placenta development
## GO:0000462                                                            maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## GO:0086010                                                                                                     membrane depolarization during action potential
## GO:0044818                                                                                                                  mitotic G2/M transition checkpoint
## GO:2000515                                                                                   negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0032232                                                                                               negative regulation of actin filament bundle assembly
## GO:0043537                                                                                      negative regulation of blood vessel endothelial cell migration
## GO:1901020                                                                               negative regulation of calcium ion transmembrane transporter activity
## GO:0010614                                                                                                   negative regulation of cardiac muscle hypertrophy
## GO:0042036                                                                                                negative regulation of cytokine biosynthetic process
## GO:2000352                                                                                           negative regulation of endothelial cell apoptotic process
## GO:0045920                                                                                                                   negative regulation of exocytosis
## GO:0045932                                                                                                           negative regulation of muscle contraction
## GO:0045662                                                                                                     negative regulation of myoblast differentiation
## GO:1905476                                                                                             negative regulation of protein localization to membrane
## GO:1901797                                                                                    negative regulation of signal transduction by p53 class mediator
## GO:0048011                                                                                                         neurotrophin TRK receptor signaling pathway
## GO:0009225                                                                                                                  nucleotide-sugar metabolic process
## GO:0001556                                                                                                                                   oocyte maturation
## GO:2000144                                                                                      positive regulation of DNA-templated transcription, initiation
## GO:1903393                                                                                               positive regulation of adherens junction organization
## GO:0061036                                                                                                        positive regulation of cartilage development
## GO:0032967                                                                                                positive regulation of collagen biosynthetic process
## GO:2000781                                                                                                   positive regulation of double-strand break repair
## GO:0051491                                                                                                          positive regulation of filopodium assembly
## GO:0050718                                                                                                 positive regulation of interleukin-1 beta secretion
## GO:0043302                                                                                                      positive regulation of leukocyte degranulation
## GO:0032816                                                                                               positive regulation of natural killer cell activation
## GO:0140239                                                                                                                            postsynaptic endocytosis
## GO:0098884                                                                                              postsynaptic neurotransmitter receptor internalization
## GO:0055075                                                                                                                           potassium ion homeostasis
## GO:0070979                                                                                                                   protein K11-linked ubiquitination
## GO:0070536                                                                                                                 protein K63-linked deubiquitination
## GO:1901661                                                                                                                           quinone metabolic process
## GO:0044030                                                                                                                       regulation of DNA methylation
## GO:0033081                                                                                                      regulation of T cell differentiation in thymus
## GO:0043457                                                                                                                  regulation of cellular respiration
## GO:0042749                                                                                                            regulation of circadian sleep/wake cycle
## GO:0042634                                                                                                                            regulation of hair cycle
## GO:0010758                                                                                                                 regulation of macrophage chemotaxis
## GO:0045652                                                                                                         regulation of megakaryocyte differentiation
## GO:0060632                                                                                                            regulation of microtubule-based movement
## GO:0090022                                                                                                                 regulation of neutrophil chemotaxis
## GO:0050999                                                                                                        regulation of nitric-oxide synthase activity
## GO:0033139                                                                                       regulation of peptidyl-serine phosphorylation of STAT protein
## GO:2001014                                                                                                  regulation of skeletal muscle cell differentiation
## GO:1903421                                                                                                            regulation of synaptic vesicle recycling
## GO:0002026                                                                                                        regulation of the force of heart contraction
## GO:0002828                                                                                                                regulation of type 2 immune response
## GO:0010574                                                                                         regulation of vascular endothelial growth factor production
## GO:0033561                                                                                                                   regulation of water loss via skin
## GO:0045066                                                                                                                   regulatory T cell differentiation
## GO:0090075                                                                                                                                relaxation of muscle
## GO:0036075                                                                                                                            replacement ossification
## GO:0070670                                                                                                                           response to interleukin-4
## GO:0070741                                                                                                                           response to interleukin-6
## GO:1905314                                                                                                                        semi-lunar valve development
## GO:0000387                                                                                                                         spliceosomal snRNP assembly
## GO:0060074                                                                                                                                  synapse maturation
## GO:0099560                                                                                                                          synaptic membrane adhesion
## GO:0006099                                                                                                                            tricarboxylic acid cycle
## GO:0006767                                                                                                             water-soluble vitamin metabolic process
## GO:0032508                                                                                                                                DNA duplex unwinding
## GO:0031572                                                                                                                            G2 DNA damage checkpoint
## GO:0006505                                                                                                                        GPI anchor metabolic process
## GO:0072538                                                                                                                    T-helper 17 type immune response
## GO:0097242                                                                                                                              amyloid-beta clearance
## GO:0002486                                   antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway, TAP-independent
## GO:0060561                                                                                                         apoptotic process involved in morphogenesis
## GO:0070286                                                                                                                    axonemal dynein complex assembly
## GO:0060706                                                                                     cell differentiation involved in embryonic placenta development
## GO:1904646                                                                                                                   cellular response to amyloid-beta
## GO:0051642                                                                                                                             centrosome localization
## GO:0022410                                                                                                                  circadian sleep/wake cycle process
## GO:0006101                                                                                                                           citrate metabolic process
## GO:0048668                                                                                                                                collateral sprouting
## GO:0060977                                                                                                                  coronary vasculature morphogenesis
## GO:0017004                                                                                                                         cytochrome complex assembly
## GO:0009262                                                                                                               deoxyribonucleotide metabolic process
## GO:0048048                                                                                                                         embryonic eye morphogenesis
## GO:0060669                                                                                                                    embryonic placenta morphogenesis
## GO:0046466                                                                                                                    membrane lipid catabolic process
## GO:0071985                                                                                                                 multivesicular body sorting pathway
## GO:0001779                                                                                                                 natural killer cell differentiation
## GO:0034661                                                                                                                             ncRNA catabolic process
## GO:0032689                                                                                                  negative regulation of interferon-gamma production
## GO:0050686                                                                                                              negative regulation of mRNA processing
## GO:1900181                                                                                              negative regulation of protein localization to nucleus
## GO:0007274                                                                                                                 neuromuscular synaptic transmission
## GO:0036475                                                                                                        neuron death in response to oxidative stress
## GO:0002446                                                                                                                        neutrophil mediated immunity
## GO:0007097                                                                                                                                   nuclear migration
## GO:0007031                                                                                                                             peroxisome organization
## GO:2001171                                                                                                     positive regulation of ATP biosynthetic process
## GO:0035025                                                                                              positive regulation of Rho protein signal transduction
## GO:0032728                                                                                                   positive regulation of interferon-beta production
## GO:0032743                                                                                                     positive regulation of interleukin-2 production
## GO:1902110                                                            positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0045672                                                                                                   positive regulation of osteoclast differentiation
## GO:0043243                                                                                                  positive regulation of protein complex disassembly
## GO:0032212                                                                                          positive regulation of telomere maintenance via telomerase
## GO:0006623                                                                                                                        protein targeting to vacuole
## GO:0042558                                                                                                     pteridine-containing compound metabolic process
## GO:0006220                                                                                                             pyrimidine nucleotide metabolic process
## GO:0045577                                                                                                                regulation of B cell differentiation
## GO:0010453                                                                                                                  regulation of cell fate commitment
## GO:2000191                                                                                                                  regulation of fatty acid transport
## GO:0040036                                                                                   regulation of fibroblast growth factor receptor signaling pathway
## GO:0045616                                                                                                          regulation of keratinocyte differentiation
## GO:0010591                                                                                                                regulation of lamellipodium assembly
## GO:0060306                                                                                                               regulation of membrane repolarization
## GO:1903203                                                                                                 regulation of oxidative stress-induced neuron death
## GO:0051150                                                                                                    regulation of smooth muscle cell differentiation
## GO:0030947                                                                         regulation of vascular endothelial growth factor receptor signaling pathway
## GO:1902186                                                                                                          regulation of viral release from host cell
## GO:0003016                                                                                                                          respiratory system process
## GO:0001964                                                                                                                                    startle response
## GO:0051180                                                                                                                                   vitamin transport
## GO:0034314                                                                                                            Arp2/3 complex-mediated actin nucleation
## GO:0006308                                                                                                                               DNA catabolic process
## GO:0050779                                                                                                                                 RNA destabilization
## GO:0014044                                                                                                                            Schwann cell development
## GO:0006084                                                                                                                        acetyl-CoA metabolic process
## GO:0002484                                                    antigen processing and presentation of endogenous peptide antigen via MHC class I via ER pathway
## GO:0002476                                                                  antigen processing and presentation of endogenous peptide antigen via MHC class Ib
## GO:0021680                                                                                                          cerebellar Purkinje cell layer development
## GO:0048566                                                                                                               embryonic digestive tract development
## GO:0001706                                                                                                                                  endoderm formation
## GO:0035883                                                                                                                enteroendocrine cell differentiation
## GO:0048013                                                                                                                   ephrin receptor signaling pathway
## GO:0040001                                                                                                       establishment of mitotic spindle localization
## GO:0006775                                                                                                               fat-soluble vitamin metabolic process
## GO:0060487                                                                                                                lung epithelial cell differentiation
## GO:0033598                                                                                                         mammary gland epithelial cell proliferation
## GO:0071709                                                                                                                                   membrane assembly
## GO:0061842                                                                                                          microtubule organizing center localization
## GO:0099563                                                                                                                  modification of synaptic structure
## GO:0010667                                                                                        negative regulation of cardiac muscle cell apoptotic process
## GO:2001240                                                                   negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007026                                                                                                 negative regulation of microtubule depolymerization
## GO:0014741                                                                                                           negative regulation of muscle hypertrophy
## GO:1901099                                                                                     negative regulation of signal transduction in absence of ligand
## GO:0045879                                                                                                 negative regulation of smoothened signaling pathway
## GO:0071827                                                                                                            plasma lipoprotein particle organization
## GO:0043950                                                                                                      positive regulation of cAMP-mediated signaling
## GO:1901890                                                                                                       positive regulation of cell junction assembly
## GO:0032467                                                                                                                  positive regulation of cytokinesis
## GO:2000108                                                                                                  positive regulation of leukocyte apoptotic process
## GO:0090218                                                                                                        positive regulation of lipid kinase activity
## GO:0031112                                                                               positive regulation of microtubule polymerization or depolymerization
## GO:0045070                                                                                                     positive regulation of viral genome replication
## GO:0060740                                                                                                             prostate gland epithelium morphogenesis
## GO:0071539                                                                                                                  protein localization to centrosome
## GO:0045047                                                                                                                             protein targeting to ER
## GO:1903146                                                                                                            regulation of autophagy of mitochondrion
## GO:0002691                                                                                                                regulation of cellular extravasation
## GO:0086091                                                                                                      regulation of heart rate by cardiac conduction
## GO:1903205                                                                                                  regulation of hydrogen peroxide-induced cell death
## GO:0032660                                                                                                             regulation of interleukin-17 production
## GO:0010837                                                                                                            regulation of keratinocyte proliferation
## GO:0002082                                                                                                             regulation of oxidative phosphorylation
## GO:0010543                                                                                                                   regulation of platelet activation
## GO:1905606                                                                                                                   regulation of presynapse assembly
## GO:2000036                                                                                                      regulation of stem cell population maintenance
## GO:0003081                                                                                 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:1904467                                                                                                       regulation of tumor necrosis factor secretion
## GO:0046596                                                                                                            regulation of viral entry into host cell
## GO:0035094                                                                                                                                response to nicotine
## GO:0048240                                                                                                                                  sperm capacitation
## GO:0007271                                                                                                                  synaptic transmission, cholinergic
## GO:0034142                                                                                                              toll-like receptor 4 signaling pathway
## GO:0070897                                                                                                        transcription preinitiation complex assembly
## GO:0010573                                                                                                       vascular endothelial growth factor production
## GO:0021591                                                                                                                      ventricular system development
## GO:0006984                                                                                                                        ER-nucleus signaling pathway
## GO:0048194                                                                                                                               Golgi vesicle budding
## GO:0006739                                                                                                                              NADP metabolic process
## GO:0000186                                                                                                                        activation of MAPKK activity
## GO:0002428                                                                             antigen processing and presentation of peptide antigen via MHC class Ib
## GO:0003209                                                                                                                        cardiac atrium morphogenesis
## GO:0044275                                                                                                             cellular carbohydrate catabolic process
## GO:0042832                                                                                                                       defense response to protozoan
## GO:0035116                                                                                                                    embryonic hindlimb morphogenesis
## GO:0003203                                                                                                                   endocardial cushion morphogenesis
## GO:0035890                                                                                                                                      exit from host
## GO:0035891                                                                                                                                 exit from host cell
## GO:0140115                                                                                                                       export across plasma membrane
## GO:0014047                                                                                                                                 glutamate secretion
## GO:0031069                                                                                                                         hair follicle morphogenesis
## GO:0060479                                                                                                                           lung cell differentiation
## GO:0000002                                                                                                                    mitochondrial genome maintenance
## GO:1902686                                                                     mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0008045                                                                                                                          motor neuron axon guidance
## GO:0052192                                                                         movement in environment of other organism involved in symbiotic interaction
## GO:0052126                                                                                                                        movement in host environment
## GO:0001773                                                                                                                   myeloid dendritic cell activation
## GO:0050869                                                                                                            negative regulation of B cell activation
## GO:0032435                                                                    negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0009311                                                                                                                   oligosaccharide metabolic process
## GO:0018208                                                                                                                       peptidyl-proline modification
## GO:2000406                                                                                                             positive regulation of T cell migration
## GO:0010714                                                                                                   positive regulation of collagen metabolic process
## GO:0050716                                                                                                      positive regulation of interleukin-1 secretion
## GO:1902624                                                                                                         positive regulation of neutrophil migration
## GO:2000758                                                                                                  positive regulation of peptidyl-lysine acetylation
## GO:1905898                                                                                     positive regulation of response to endoplasmic reticulum stress
## GO:0099068                                                                                                                                postsynapse assembly
## GO:0060512                                                                                                                        prostate gland morphogenesis
## GO:0010737                                                                                                                          protein kinase A signaling
## GO:1905508                                                                                               protein localization to microtubule organizing center
## GO:0018345                                                                                                                              protein palmitoylation
## GO:2000785                                                                                                                regulation of autophagosome assembly
## GO:0048679                                                                                                                     regulation of axon regeneration
## GO:1901976                                                                                                                 regulation of cell cycle checkpoint
## GO:1903429                                                                                                                       regulation of cell maturation
## GO:0033032                                                                                                        regulation of myeloid cell apoptotic process
## GO:0090313                                                                                                         regulation of protein targeting to membrane
## GO:0090322                                                                                                          regulation of superoxide metabolic process
## GO:0006356                                                                                                     regulation of transcription by RNA polymerase I
## GO:0071634                                                                                            regulation of transforming growth factor beta production
## GO:0031338                                                                                                                        regulation of vesicle fusion
## GO:0097366                                                                                                                          response to bronchodilator
## GO:0002021                                                                                                                          response to dietary excess
## GO:0032094                                                                                                                                    response to food
## GO:0002931                                                                                                                                response to ischemia
## GO:0019076                                                                                                                        viral release from host cell
## GO:0051084                                                                                                         'de novo' posttranslational protein folding
## GO:0046464                                                                                                                      acylglycerol catabolic process
## GO:0055090                                                                                                                            acylglycerol homeostasis
## GO:0035909                                                                                                                                 aorta morphogenesis
## GO:0009072                                                                                                        aromatic amino acid family metabolic process
## GO:0021846                                                                                                                     cell proliferation in forebrain
## GO:1990748                                                                                                                             cellular detoxification
## GO:1990090                                                                                                   cellular response to nerve growth factor stimulus
## GO:0001539                                                                                                         cilium or flagellum-dependent cell motility
## GO:0060285                                                                                                                      cilium-dependent cell motility
## GO:0042745                                                                                                                          circadian sleep/wake cycle
## GO:0009187                                                                                                                 cyclic nucleotide metabolic process
## GO:0019835                                                                                                                                           cytolysis
## GO:0060441                                                                                            epithelial tube branching involved in lung morphogenesis
## GO:0007143                                                                                                                     female meiotic nuclear division
## GO:0036230                                                                                                                              granulocyte activation
## GO:1901068                                                                                                     guanosine-containing compound metabolic process
## GO:0030201                                                                                                      heparan sulfate proteoglycan metabolic process
## GO:0051567                                                                                                                           histone H3-K9 methylation
## GO:0016572                                                                                                                             histone phosphorylation
## GO:0006972                                                                                                                               hyperosmotic response
## GO:0051452                                                                                                                          intracellular pH reduction
## GO:0031424                                                                                                                                      keratinization
## GO:0055083                                                                                                              monovalent inorganic anion homeostasis
## GO:0008156                                                                                                              negative regulation of DNA replication
## GO:2000171                                                                                                         negative regulation of dendrite development
## GO:0048147                                                                                                     negative regulation of fibroblast proliferation
## GO:0045686                                                                                                   negative regulation of glial cell differentiation
## GO:1902116                                                                                                           negative regulation of organelle assembly
## GO:0002701                                                                          negative regulation of production of molecular mediator of immune response
## GO:0035308                                                                                                    negative regulation of protein dephosphorylation
## GO:0032205                                                                                                         negative regulation of telomere maintenance
## GO:0034122                                                                                         negative regulation of toll-like receptor signaling pathway
## GO:0015804                                                                                                                        neutral amino acid transport
## GO:0046461                                                                                                                     neutral lipid catabolic process
## GO:0033866                                                                                                        nucleoside bisphosphate biosynthetic process
## GO:0034381                                                                                                               plasma lipoprotein particle clearance
## GO:0032786                                                                                      positive regulation of DNA-templated transcription, elongation
## GO:0032733                                                                                                    positive regulation of interleukin-10 production
## GO:1902895                                                                                 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0045940                                                                                                    positive regulation of steroid metabolic process
## GO:0051973                                                                                                          positive regulation of telomerase activity
## GO:1904707                                                                                    positive regulation of vascular smooth muscle cell proliferation
## GO:0097106                                                                                                                   postsynaptic density organization
## GO:0006471                                                                                                                            protein ADP-ribosylation
## GO:0009954                                                                                                                   proximal/distal pattern formation
## GO:0034033                                                                                                 purine nucleoside bisphosphate biosynthetic process
## GO:0043516                                                                        regulation of DNA damage response, signal transduction by p53 class mediator
## GO:2000249                                                                                                     regulation of actin cytoskeleton reorganization
## GO:1903959                                                                                                         regulation of anion transmembrane transport
## GO:0048710                                                                                                             regulation of astrocyte differentiation
## GO:0033238                                                                                                      regulation of cellular amine metabolic process
## GO:2001038                                                                                                             regulation of cellular response to drug
## GO:0031279                                                                                                                      regulation of cyclase activity
## GO:0046320                                                                                                                  regulation of fatty acid oxidation
## GO:0070873                                                                                                            regulation of glycogen metabolic process
## GO:0033146                                                                                     regulation of intracellular estrogen receptor signaling pathway
## GO:0043304                                                                                                               regulation of mast cell degranulation
## GO:0032228                                                                                                      regulation of synaptic transmission, GABAergic
## GO:0060142                                                                                         regulation of syncytium formation by plasma membrane fusion
## GO:0043114                                                                                                                 regulation of vascular permeability
## GO:0014823                                                                                                                                response to activity
## GO:0046686                                                                                                                             response to cadmium ion
## GO:1990089                                                                                                                     response to nerve growth factor
## GO:0034030                                                                                                    ribonucleoside bisphosphate biosynthetic process
## GO:0019432                                                                                                                   triglyceride biosynthetic process
## GO:0070328                                                                                                                            triglyceride homeostasis
## GO:1990774                                                                                                                     tumor necrosis factor secretion
## GO:0038084                                                                                                vascular endothelial growth factor signaling pathway
## GO:0006458                                                                                                                           'de novo' protein folding
## GO:0034205                                                                                                                              amyloid-beta formation
## GO:0003401                                                                                                                                     axis elongation
## GO:0098751                                                                                                                               bone cell development
## GO:0071320                                                                                                                           cellular response to cAMP
## GO:0071398                                                                                                                     cellular response to fatty acid
## GO:0072583                                                                                                                      clathrin-dependent endocytosis
## GO:0051181                                                                                                                                  cofactor transport
## GO:0030574                                                                                                                          collagen catabolic process
## GO:0035115                                                                                                                    embryonic forelimb morphogenesis
## GO:0051294                                                                                                                establishment of spindle orientation
## GO:0001702                                                                                                              gastrulation with mouth forming second
## GO:0003417                                                                                                                  growth plate cartilage development
## GO:0061384                                                                                                                       heart trabecula morphogenesis
## GO:0048009                                                                                               insulin-like growth factor receptor signaling pathway
## GO:0007617                                                                                                                                     mating behavior
## GO:0046329                                                                                                                  negative regulation of JNK cascade
## GO:0051953                                                                                                              negative regulation of amine transport
## GO:0060969                                                                                                               negative regulation of gene silencing
## GO:1903427                                                                                 negative regulation of reactive oxygen species biosynthetic process
## GO:0010664                                                                                       negative regulation of striated muscle cell apoptotic process
## GO:0046839                                                                                                                      phospholipid dephosphorylation
## GO:2000516                                                                                   positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0045745                                                                                 positive regulation of G protein-coupled receptor signaling pathway
## GO:1905209                                                                                                   positive regulation of cardiocyte differentiation
## GO:0051482               positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:1904037                                                                                            positive regulation of epithelial cell apoptotic process
## GO:0045815                                                                                                  positive regulation of gene expression, epigenetic
## GO:0032735                                                                                                    positive regulation of interleukin-12 production
## GO:0045987                                                                                                    positive regulation of smooth muscle contraction
## GO:1904358                                                                                positive regulation of telomere maintenance via telomere lengthening
## GO:0070528                                                                                                                          protein kinase C signaling
## GO:0061462                                                                                                                    protein localization to lysosome
## GO:1902991                                                                                           regulation of amyloid precursor protein catabolic process
## GO:0045601                                                                                                      regulation of endothelial cell differentiation
## GO:0002920                                                                                                               regulation of humoral immune response
## GO:0002861                                                                                           regulation of inflammatory response to antigenic stimulus
## GO:0048169                                                                                                regulation of long-term neuronal synaptic plasticity
## GO:0033006                                                                                      regulation of mast cell activation involved in immune response
## GO:0031114                                                                                                          regulation of microtubule depolymerization
## GO:0034243                                                                              regulation of transcription elongation from RNA polymerase II promoter
## GO:0033363                                                                                                                      secretory granule organization
## GO:0042501                                                                                                              serine phosphorylation of STAT protein
## GO:0072348                                                                                                                           sulfur compound transport
## GO:0001963                                                                                                                 synaptic transmission, dopaminergic
## GO:0071604                                                                                                          transforming growth factor beta production
## GO:0035886                                                                                                         vascular smooth muscle cell differentiation
## GO:0042311                                                                                                                                        vasodilation
## GO:0006903                                                                                                                                   vesicle targeting
## GO:0001782                                                                                                                                  B cell homeostasis
## GO:0060071                                                                                                 Wnt signaling pathway, planar cell polarity pathway
## GO:0007340                                                                                                                                   acrosome reaction
## GO:0051693                                                                                                                              actin filament capping
## GO:0019934                                                                                                                             cGMP-mediated signaling
## GO:0086065                                                                                                   cell communication involved in cardiac conduction
## GO:0036474                                                                                                         cell death in response to hydrogen peroxide
## GO:0071391                                                                                                              cellular response to estrogen stimulus
## GO:0021799                                                                                                    cerebral cortex radially oriented cell migration
## GO:0002753                                                                                          cytoplasmic pattern recognition receptor signaling pathway
## GO:0097028                                                                                                                      dendritic cell differentiation
## GO:0035850                                                                                      epithelial cell differentiation involved in kidney development
## GO:0072599                                                                                      establishment of protein localization to endoplasmic reticulum
## GO:0021884                                                                                                                        forebrain neuron development
## GO:0071514                                                                                                                                  genetic imprinting
## GO:0032633                                                                                                                            interleukin-4 production
## GO:0050892                                                                                                                               intestinal absorption
## GO:0061756                                                                                                     leukocyte adhesion to vascular endothelial cell
## GO:0007094                                                                                                                 mitotic spindle assembly checkpoint
## GO:0033028                                                                                                                      myeloid cell apoptotic process
## GO:0045746                                                                                                      negative regulation of Notch signaling pathway
## GO:1903792                                                                                                              negative regulation of anion transport
## GO:0033144                                                                     negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:1903318                                                                                                           negative regulation of protein maturation
## GO:0010955                                                                                                           negative regulation of protein processing
## GO:0048665                                                                                                                           neuron fate specification
## GO:0033260                                                                                                                             nuclear DNA replication
## GO:0000184                                                                                 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0009112                                                                                                                        nucleobase metabolic process
## GO:0051647                                                                                                                                nucleus localization
## GO:0014003                                                                                                                         oligodendrocyte development
## GO:0015695                                                                                                                            organic cation transport
## GO:0046470                                                                                                               phosphatidylcholine metabolic process
## GO:0060674                                                                                                                   placenta blood vessel development
## GO:0002675                                                                                                  positive regulation of acute inflammatory response
## GO:0071158                                                                                                            positive regulation of cell cycle arrest
## GO:0045684                                                                                                        positive regulation of epidermis development
## GO:2000463                                                                                            positive regulation of excitatory postsynaptic potential
## GO:0002053                                                                                               positive regulation of mesenchymal cell proliferation
## GO:0035794                                                                                          positive regulation of mitochondrial membrane permeability
## GO:0045954                                                                                    positive regulation of natural killer cell mediated cytotoxicity
## GO:0002717                                                                                        positive regulation of natural killer cell mediated immunity
## GO:0030810                                                                                              positive regulation of nucleotide biosynthetic process
## GO:1900373                                                                                       positive regulation of purine nucleotide biosynthetic process
## GO:0045880                                                                                                 positive regulation of smoothened signaling pathway
## GO:0071825                                                                                                          protein-lipid complex subunit organization
## GO:1903432                                                                                                                       regulation of TORC1 signaling
## GO:0046640                                                                                                       regulation of alpha-beta T cell proliferation
## GO:1902229                                                                       regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0045191                                                                                                                     regulation of isotype switching
## GO:0040020                                                                                                              regulation of meiotic nuclear division
## GO:0032885                                                                                                   regulation of polysaccharide biosynthetic process
## GO:0099174                                                                                                               regulation of presynapse organization
## GO:1901385                                                                                                regulation of voltage-gated calcium channel activity
## GO:0000027                                                                                                                    ribosomal large subunit assembly
## GO:0007435                                                                                                                        salivary gland morphogenesis
## GO:0071173                                                                                                                         spindle assembly checkpoint
## GO:0000096                                                                                                                 sulfur amino acid metabolic process
## GO:0042554                                                                                                                         superoxide anion generation
## GO:0016233                                                                                                                                    telomere capping
## GO:0006383                                                                                                                 transcription by RNA polymerase III
## GO:0072350                                                                                                                tricarboxylic acid metabolic process
## GO:0042092                                                                                                                              type 2 immune response
## GO:0032392                                                                                                                                DNA geometric change
## GO:0045005                                                                                               DNA-dependent DNA replication maintenance of fidelity
## GO:1902475                                                                                                          L-alpha-amino acid transmembrane transport
## GO:0016601                                                                                                                     Rac protein signal transduction
## GO:0046463                                                                                                                   acylglycerol biosynthetic process
## GO:0002475                                                                                                antigen processing and presentation via MHC class Ib
## GO:0014002                                                                                                                               astrocyte development
## GO:0006284                                                                                                                                base-excision repair
## GO:0016339                                                                    calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0003230                                                                                                                          cardiac atrium development
## GO:0042149                                                                                                             cellular response to glucose starvation
## GO:0007099                                                                                                                               centriole replication
## GO:0032506                                                                                                                                 cytokinetic process
## GO:0000578                                                                                                                        embryonic axis specification
## GO:0007616                                                                                                                                    long-term memory
## GO:0072595                                                                                                    maintenance of protein localization in organelle
## GO:0072210                                                                                                                     metanephric nephron development
## GO:0043628                                                                                                                             ncRNA 3'-end processing
## GO:0001953                                                                                                         negative regulation of cell-matrix adhesion
## GO:0043267                                                                                                      negative regulation of potassium ion transport
## GO:0099590                                                                                                           neurotransmitter receptor internalization
## GO:0046460                                                                                                                  neutral lipid biosynthetic process
## GO:0046854                                                                                                                phosphatidylinositol phosphorylation
## GO:0006778                                                                                                     porphyrin-containing compound metabolic process
## GO:0043368                                                                                                                           positive T cell selection
## GO:0032781                                                                                                              positive regulation of ATPase activity
## GO:0030513                                                                                                        positive regulation of BMP signaling pathway
## GO:0040019                                                                                                        positive regulation of embryonic development
## GO:2000403                                                                                                         positive regulation of lymphocyte migration
## GO:0010831                                                                                                      positive regulation of myotube differentiation
## GO:2001025                                                                                                             positive regulation of response to drug
## GO:1900026                                                                                  positive regulation of substrate adhesion-dependent cell spreading
## GO:0051968                                                                                         positive regulation of synaptic transmission, glutamatergic
## GO:0097300                                                                                                                      programmed necrotic cell death
## GO:0032594                                                                                                              protein transport within lipid bilayer
## GO:0045622                                                                                                         regulation of T-helper cell differentiation
## GO:0046006                                                                                                        regulation of activated T cell proliferation
## GO:0031935                                                                                                                   regulation of chromatin silencing
## GO:0060259                                                                                                                      regulation of feeding behavior
## GO:0010762                                                                                                                  regulation of fibroblast migration
## GO:0051339                                                                                                                        regulation of lyase activity
## GO:0060236                                                                                                          regulation of mitotic spindle organization
## GO:0070570                                                                                                        regulation of neuron projection regeneration
## GO:1904645                                                                                                                            response to amyloid-beta
## GO:0048265                                                                                                                                    response to pain
## GO:0001562                                                                                                                               response to protozoan
## GO:0006636                                                                                                         unsaturated fatty acid biosynthetic process
## GO:0008207                                                                                                               C21-steroid hormone metabolic process
## GO:0043001                                                                                                          Golgi to plasma membrane protein transport
## GO:0007257                                                                                                                   activation of JUN kinase activity
## GO:0030521                                                                                                                 androgen receptor signaling pathway
## GO:0002483                                                                                   antigen processing and presentation of endogenous peptide antigen
## GO:0019885                                                                   antigen processing and presentation of endogenous peptide antigen via MHC class I
## GO:0044331                                                                                                             cell-cell adhesion mediated by cadherin
## GO:0071357                                                                                                              cellular response to type I interferon
## GO:0098534                                                                                                                                  centriole assembly
## GO:1902476                                                                                                                    chloride transmembrane transport
## GO:0044364                                                                                                               disruption of cells of other organism
## GO:0031076                                                                                                               embryonic camera-type eye development
## GO:0097009                                                                                                                                  energy homeostasis
## GO:0048730                                                                                                                             epidermis morphogenesis
## GO:0006826                                                                                                                                  iron ion transport
## GO:0031640                                                                                                                  killing of cells of other organism
## GO:0071174                                                                                                                          mitotic spindle checkpoint
## GO:2001024                                                                                                             negative regulation of response to drug
## GO:0006998                                                                                                                       nuclear envelope organization
## GO:0050931                                                                                                                        pigment cell differentiation
## GO:0021983                                                                                                                         pituitary gland development
## GO:1900087                                                                                        positive regulation of G1/S transition of mitotic cell cycle
## GO:0032008                                                                                                                positive regulation of TOR signaling
## GO:1901021                                                                               positive regulation of calcium ion transmembrane transporter activity
## GO:0010613                                                                                                   positive regulation of cardiac muscle hypertrophy
## GO:1905710                                                                                                        positive regulation of membrane permeability
## GO:0010661                                                                                                positive regulation of muscle cell apoptotic process
## GO:2000142                                                                                               regulation of DNA-templated transcription, initiation
## GO:0090049                                                                                     regulation of cell migration involved in sprouting angiogenesis
## GO:0090175                                                                                                      regulation of establishment of planar polarity
## GO:0060251                                                                                                              regulation of glial cell proliferation
## GO:0046885                                                                                                          regulation of hormone biosynthetic process
## GO:1902108                                                                     regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:1902692                                                                                                              regulation of neuroblast proliferation
## GO:0043551                                                                                                regulation of phosphatidylinositol 3-kinase activity
## GO:0044088                                                                                                                  regulation of vacuole organization
## GO:0009620                                                                                                                                  response to fungus
## GO:0009651                                                                                                                             response to salt stress
## GO:0009069                                                                                                          serine family amino acid metabolic process
## GO:0030431                                                                                                                                               sleep
## GO:0010092                                                                                                              specification of animal organ identity
## GO:1901998                                                                                                                                     toxin transport
## GO:0060337                                                                                                                 type I interferon signaling pathway
## GO:0014037                                                                                                                        Schwann cell differentiation
## GO:0002369                                                                                                                          T cell cytokine production
## GO:0046633                                                                                                                     alpha-beta T cell proliferation
## GO:0007339                                                                                                                  binding of sperm to zona pellucida
## GO:0001835                                                                                                                                 blastocyst hatching
## GO:0042398                                                                                                   cellular modified amino acid biosynthetic process
## GO:0071542                                                                                                                 dopaminergic neuron differentiation
## GO:0045022                                                                                                           early endosome to late endosome transport
## GO:0048821                                                                                                                             erythrocyte development
## GO:0060325                                                                                                                                  face morphogenesis
## GO:0035188                                                                                                                                            hatching
## GO:0046456                                                                                                                      icosanoid biosynthetic process
## GO:0032620                                                                                                                           interleukin-17 production
## GO:0060603                                                                                                                    mammary gland duct morphogenesis
## GO:0044091                                                                                                                                 membrane biogenesis
## GO:0000266                                                                                                                               mitochondrial fission
## GO:0044764                                                                                                                     multi-organism cellular process
## GO:0002323                                                                                          natural killer cell activation involved in immune response
## GO:0110111                                                                                                   negative regulation of animal organ morphogenesis
## GO:0002686                                                                                                          negative regulation of leukocyte migration
## GO:0038179                                                                                                                      neurotrophin signaling pathway
## GO:0071684                                                                                                        organism emergence from protective structure
## GO:0045851                                                                                                                                        pH reduction
## GO:0045911                                                                                                            positive regulation of DNA recombination
## GO:0045747                                                                                                      positive regulation of Notch signaling pathway
## GO:0048520                                                                                                                     positive regulation of behavior
## GO:0031062                                                                                                          positive regulation of histone methylation
## GO:1905332                                                                                               positive regulation of morphogenesis of an epithelium
## GO:0014742                                                                                                           positive regulation of muscle hypertrophy
## GO:0035307                                                                                                    positive regulation of protein dephosphorylation
## GO:2000273                                                                                                  positive regulation of signaling receptor activity
## GO:0034105                                                                                                            positive regulation of tissue remodeling
## GO:0006693                                                                                                                     prostaglandin metabolic process
## GO:0006692                                                                                                                        prostanoid metabolic process
## GO:0070207                                                                                                                           protein homotrimerization
## GO:0044743                                                                                           protein transmembrane import into intracellular organelle
## GO:0072523                                                                                                        purine-containing compound catabolic process
## GO:0001881                                                                                                                                  receptor recycling
## GO:0070884                                                                                                    regulation of calcineurin-NFAT signaling cascade
## GO:0106056                                                                                                        regulation of calcineurin-mediated signaling
## GO:0086004                                                                                                       regulation of cardiac muscle cell contraction
## GO:1903053                                                                                                     regulation of extracellular matrix organization
## GO:0010470                                                                                                                          regulation of gastrulation
## GO:0050706                                                                                                          regulation of interleukin-1 beta secretion
## GO:0046825                                                                                                           regulation of protein export from nucleus
## GO:0098801                                                                                                                  regulation of renal system process
## GO:0009409                                                                                                                                    response to cold
## GO:0009268                                                                                                                                      response to pH
## GO:0003009                                                                                                                         skeletal muscle contraction
## GO:0048741                                                                                                                   skeletal muscle fiber development
## GO:0001783                                                                                                                            B cell apoptotic process
## GO:0006953                                                                                                                                acute-phase response
## GO:0046164                                                                                                                           alcohol catabolic process
## GO:0009066                                                                                                       aspartate family amino acid metabolic process
## GO:0061049                                                                                             cell growth involved in cardiac muscle cell development
## GO:0033059                                                                                                                               cellular pigmentation
## GO:0071364                                                                                               cellular response to epidermal growth factor stimulus
## GO:0021955                                                                                                          central nervous system neuron axonogenesis
## GO:0021696                                                                                                                     cerebellar cortex morphogenesis
## GO:0033344                                                                                                                                  cholesterol efflux
## GO:0097484                                                                                                                                  dendrite extension
## GO:0042417                                                                                                                          dopamine metabolic process
## GO:0045197                                                                               establishment or maintenance of epithelial cell apical/basal polarity
## GO:0060122                                                                                                   inner ear receptor cell stereocilium organization
## GO:0006509                                                                                                             membrane protein ectodomain proteolysis
## GO:0086009                                                                                                                             membrane repolarization
## GO:2000279                                                                                                     negative regulation of DNA biosynthetic process
## GO:0010972                                                                                        negative regulation of G2/M transition of mitotic cell cycle
## GO:1903170                                                                                          negative regulation of calcium ion transmembrane transport
## GO:0055026                                                                                            negative regulation of cardiac muscle tissue development
## GO:2001258                                                                                                      negative regulation of cation channel activity
## GO:0001937                                                                                               negative regulation of endothelial cell proliferation
## GO:0046627                                                                                           negative regulation of insulin receptor signaling pathway
## GO:1905953                                                                                                           negative regulation of lipid localization
## GO:0045841                                                                                        negative regulation of mitotic metaphase/anaphase transition
## GO:0051154                                                                                         negative regulation of striated muscle cell differentiation
## GO:0038083                                                                                                               peptidyl-tyrosine autophosphorylation
## GO:0045494                                                                                                                      photoreceptor cell maintenance
## GO:0003301                                                                                                            physiological cardiac muscle hypertrophy
## GO:0003298                                                                                                                    physiological muscle hypertrophy
## GO:0030501                                                                                                          positive regulation of bone mineralization
## GO:0046326                                                                                                               positive regulation of glucose import
## GO:0035774                                                          positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0050685                                                                                                              positive regulation of mRNA processing
## GO:0051281                                                                              positive regulation of release of sequestered calcium ion into cytosol
## GO:1903672                                                                                                       positive regulation of sprouting angiogenesis
## GO:0099084                                                                                                            postsynaptic specialization organization
## GO:0050856                                                                                                     regulation of T cell receptor signaling pathway
## GO:0033628                                                                                                    regulation of cell adhesion mediated by integrin
## GO:2000772                                                                                                                   regulation of cellular senescence
## GO:0042304                                                                                                       regulation of fatty acid biosynthetic process
## GO:1905521                                                                                                                  regulation of macrophage migration
## GO:1900744                                                                                                                       regulation of p38MAPK cascade
## GO:2000008                                                                                                  regulation of protein localization to cell surface
## GO:0046782                                                                                                                   regulation of viral transcription
## GO:0007431                                                                                                                          salivary gland development
## GO:0031577                                                                                                                                  spindle checkpoint
## GO:0006418                                                                                                         tRNA aminoacylation for protein translation
## GO:0019883                                                                                           antigen processing and presentation of endogenous antigen
## GO:1902742                                                                                                           apoptotic process involved in development
## GO:0001709                                                                                                                             cell fate determination
## GO:0034198                                                                                                          cellular response to amino acid starvation
## GO:0030866                                                                                                            cortical actin cytoskeleton organization
## GO:0006687                                                                                                                 glycosphingolipid metabolic process
## GO:0048873                                                                                                      homeostasis of number of cells within a tissue
## GO:0032958                                                                                                             inositol phosphate biosynthetic process
## GO:0048255                                                                                                                                  mRNA stabilization
## GO:0000959                                                                                                                 mitochondrial RNA metabolic process
## GO:0007080                                                                                                                 mitotic metaphase plate congression
## GO:0030835                                                                                              negative regulation of actin filament depolymerization
## GO:0002823    negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0046636                                                                                                 negative regulation of alpha-beta T cell activation
## GO:1903523                                                                                                            negative regulation of blood circulation
## GO:2000816                                                                                          negative regulation of mitotic sister chromatid separation
## GO:0046621                                                                                                                 negative regulation of organ growth
## GO:0045740                                                                                                              positive regulation of DNA replication
## GO:0055023                                                                                                 positive regulation of cardiac muscle tissue growth
## GO:0045923                                                                                                 positive regulation of fatty acid metabolic process
## GO:0010518                                                                                                       positive regulation of phospholipase activity
## GO:0010765                                                                                                         positive regulation of sodium ion transport
## GO:1900015                                                                                 regulation of cytokine production involved in inflammatory response
## GO:0050691                                                                                                     regulation of defense response to virus by host
## GO:0010559                                                                                                     regulation of glycoprotein biosynthetic process
## GO:2000826                                                                                                                   regulation of heart morphogenesis
## GO:1902743                                                                                                            regulation of lamellipodium organization
## GO:0010883                                                                                                                         regulation of lipid storage
## GO:0032768                                                                                                                regulation of monooxygenase activity
## GO:1902622                                                                                                                  regulation of neutrophil migration
## GO:0090224                                                                                                                  regulation of spindle organization
## GO:0042220                                                                                                                                 response to cocaine
## GO:0097178                                                                                                                                     ruffle assembly
## GO:0021522                                                                                                            spinal cord motor neuron differentiation
## GO:0098927                                                                                           vesicle-mediated transport between endosomal compartments
## GO:0038202                                                                                                                                     TORC1 signaling
## GO:0032924                                                                                                                  activin receptor signaling pathway
## GO:0006040                                                                                                                       amino sugar metabolic process
## GO:0043277                                                                                                                            apoptotic cell clearance
## GO:0048854                                                                                                                                 brain morphogenesis
## GO:0086002                                                                                        cardiac muscle cell action potential involved in contraction
## GO:0031670                                                                                                                       cellular response to nutrient
## GO:0031128                                                                                                                             developmental induction
## GO:0003416                                                                                                                            endochondral bone growth
## GO:0072666                                                                                                    establishment of protein localization to vacuole
## GO:0051293                                                                                                               establishment of spindle localization
## GO:0042462                                                                                                                  eye photoreceptor cell development
## GO:0009250                                                                                                                         glucan biosynthetic process
## GO:0005978                                                                                                                       glycogen biosynthetic process
## GO:0042771                                                               intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0008631                                                                               intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0048246                                                                                                                               macrophage chemotaxis
## GO:0030490                                                                                                                              maturation of SSU-rRNA
## GO:0051673                                                                                                               membrane disruption in other organism
## GO:0031057                                                                                                         negative regulation of histone modification
## GO:1902100                                                                                  negative regulation of metaphase/anaphase transition of cell cycle
## GO:0009395                                                                                                                      phospholipid catabolic process
## GO:0010907                                                                                                    positive regulation of glucose metabolic process
## GO:0045823                                                                                                            positive regulation of heart contraction
## GO:0040018                                                                                                positive regulation of multicellular organism growth
## GO:1901381                                                                                        positive regulation of potassium ion transmembrane transport
## GO:1901985                                                                                                          positive regulation of protein acetylation
## GO:0042307                                                                                                  positive regulation of protein import into nucleus
## GO:1990573                                                                                                         potassium ion import across plasma membrane
## GO:0016925                                                                                                                                 protein sumoylation
## GO:0070232                                                                                                              regulation of T cell apoptotic process
## GO:0010824                                                                                                                regulation of centrosome duplication
## GO:0032374                                                                                                                 regulation of cholesterol transport
## GO:0060964                                                                                                               regulation of gene silencing by miRNA
## GO:1901031                                                                                                   regulation of response to reactive oxygen species
## GO:0032371                                                                                                                      regulation of sterol transport
## GO:0006890                                                                                                  retrograde vesicle-mediated transport, Golgi to ER
## GO:0043403                                                                                                                 skeletal muscle tissue regeneration
## GO:0016073                                                                                                                             snRNA metabolic process
## GO:0043044                                                                                                                  ATP-dependent chromatin remodeling
## GO:0070830                                                                                                                  bicellular tight junction assembly
## GO:0001569                                                                                                    branching involved in blood vessel morphogenesis
## GO:0071385                                                                                                        cellular response to glucocorticoid stimulus
## GO:0043616                                                                                                                          keratinocyte proliferation
## GO:0042181                                                                                                                         ketone biosynthetic process
## GO:0014904                                                                                                                            myotube cell development
## GO:0098781                                                                                                                                 ncRNA transcription
## GO:0043124                                                                                          negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905819                                                                                                        negative regulation of chromosome separation
## GO:0051898                                                                                                   negative regulation of protein kinase B signaling
## GO:0032873                                                                                                negative regulation of stress-activated MAPK cascade
## GO:0070303                                                                            negative regulation of stress-activated protein kinase signaling cascade
## GO:0070527                                                                                                                                platelet aggregation
## GO:0050918                                                                                                                                 positive chemotaxis
## GO:0061098                                                                                             positive regulation of protein tyrosine kinase activity
## GO:0003156                                                                                                                regulation of animal organ formation
## GO:0010569                                                                               regulation of double-strand break repair via homologous recombination
## GO:0032881                                                                                                      regulation of polysaccharide metabolic process
## GO:0070849                                                                                                                 response to epidermal growth factor
## GO:0034340                                                                                                                       response to type I interferon
## GO:0043039                                                                                                                                 tRNA aminoacylation
## GO:0006904                                                                                                              vesicle docking involved in exocytosis
## GO:0019083                                                                                                                                 viral transcription
## GO:0010257                                                                                                                 NADH dehydrogenase complex assembly
## GO:0043038                                                                                                                               amino acid activation
## GO:0042987                                                                                                         amyloid precursor protein catabolic process
## GO:0002063                                                                                                                             chondrocyte development
## GO:0002534                                                                                               cytokine production involved in inflammatory response
## GO:0050974                                                                                     detection of mechanical stimulus involved in sensory perception
## GO:0007212                                                                                                                 dopamine receptor signaling pathway
## GO:0014046                                                                                                                                  dopamine secretion
## GO:0061028                                                                                                                establishment of endothelial barrier
## GO:0035136                                                                                                                              forelimb morphogenesis
## GO:0061647                                                                                                                          histone H3-K9 modification
## GO:0002269                                                                                              leukocyte activation involved in inflammatory response
## GO:0006378                                                                                                                                mRNA polyadenylation
## GO:0060135                                                                                                       maternal process involved in female pregnancy
## GO:0001774                                                                                                                          microglial cell activation
## GO:0032981                                                                                                  mitochondrial respiratory chain complex I assembly
## GO:0051646                                                                                                                          mitochondrion localization
## GO:0010259                                                                                                                        multicellular organism aging
## GO:1900077                                                                                        negative regulation of cellular response to insulin stimulus
## GO:0033048                                                                                         negative regulation of mitotic sister chromatid segregation
## GO:0019228                                                                                                                           neuronal action potential
## GO:0018023                                                                                                                      peptidyl-lysine trimethylation
## GO:1903580                                                                                                        positive regulation of ATP metabolic process
## GO:0001961                                                                                          positive regulation of cytokine-mediated signaling pathway
## GO:0060421                                                                                                                 positive regulation of heart growth
## GO:0090184                                                                                                           positive regulation of kidney development
## GO:0002888                                                                                          positive regulation of myeloid leukocyte mediated immunity
## GO:0035196                                                                                            production of miRNAs involved in gene silencing by miRNA
## GO:0032965                                                                                                         regulation of collagen biosynthetic process
## GO:0014059                                                                                                                    regulation of dopamine secretion
## GO:0003254                                                                                                               regulation of membrane depolarization
## GO:0010464                                                                                                        regulation of mesenchymal cell proliferation
## GO:1902893                                                                                          regulation of pri-miRNA transcription by RNA polymerase II
## GO:0031952                                                                                                           regulation of protein autophosphorylation
## GO:0090207                                                                                                        regulation of triglyceride metabolic process
## GO:0000245                                                                                                                       spliceosomal complex assembly
## GO:0120192                                                                                                                             tight junction assembly
## GO:0019674                                                                                                                               NAD metabolic process
## GO:0043029                                                                                                                                  T cell homeostasis
## GO:0045010                                                                                                                                    actin nucleation
## GO:0050798                                                                                                                      activated T cell proliferation
## GO:0007628                                                                                                                              adult walking behavior
## GO:0098868                                                                                                                                         bone growth
## GO:0006576                                                                                                           cellular biogenic amine metabolic process
## GO:0071384                                                                                                        cellular response to corticosteroid stimulus
## GO:0035458                                                                                                                cellular response to interferon-beta
## GO:0006695                                                                                                                    cholesterol biosynthetic process
## GO:0098754                                                                                                                                      detoxification
## GO:0032456                                                                                                                                 endocytic recycling
## GO:0003382                                                                                                                       epithelial cell morphogenesis
## GO:0060323                                                                                                                                  head morphogenesis
## GO:0072604                                                                                                                             interleukin-6 secretion
## GO:0042073                                                                                                                              intraciliary transport
## GO:0032007                                                                                                                negative regulation of TOR signaling
## GO:0010677                                                                                      negative regulation of cellular carbohydrate metabolic process
## GO:0002707                                                                                                 negative regulation of lymphocyte mediated immunity
## GO:0031111                                                                               negative regulation of microtubule polymerization or depolymerization
## GO:0021772                                                                                                                          olfactory bulb development
## GO:0018198                                                                                                                      peptidyl-cysteine modification
## GO:0033120                                                                                                                 positive regulation of RNA splicing
## GO:0032757                                                                                                     positive regulation of interleukin-8 production
## GO:1903727                                                                                               positive regulation of phospholipid metabolic process
## GO:0001941                                                                                                                  postsynaptic membrane organization
## GO:2000404                                                                                                                      regulation of T cell migration
## GO:0090279                                                                                                                    regulation of calcium ion import
## GO:0060966                                                                                                                 regulation of gene silencing by RNA
## GO:0006110                                                                                                                    regulation of glycolytic process
## GO:0030811                                                                                                          regulation of nucleotide catabolic process
## GO:0010799                                                                                                    regulation of peptidyl-threonine phosphorylation
## GO:0060147                                                                                                    regulation of posttranscriptional gene silencing
## GO:1990928                                                                                                                   response to amino acid starvation
## GO:0035036                                                                                                                               sperm-egg recognition
## GO:0048536                                                                                                                                  spleen development
## GO:0033013                                                                                                                      tetrapyrrole metabolic process
## GO:0043631                                                                                                                                 RNA polyadenylation
## GO:0071300                                                                                                                  cellular response to retinoic acid
## GO:0030261                                                                                                                             chromosome condensation
## GO:0031050                                                                                                                                    dsRNA processing
## GO:0003197                                                                                                                     endocardial cushion development
## GO:0003179                                                                                                                           heart valve morphogenesis
## GO:0016574                                                                                                                              histone ubiquitination
## GO:0032309                                                                                                                                 icosanoid secretion
## GO:0050702                                                                                                                        interleukin-1 beta secretion
## GO:0030520                                                                                                   intracellular estrogen receptor signaling pathway
## GO:0045581                                                                                                       negative regulation of T cell differentiation
## GO:0002820                                                                                                     negative regulation of adaptive immune response
## GO:0120163                                                                                                   negative regulation of cold-induced thermogenesis
## GO:0033046                                                                                                 negative regulation of sister chromatid segregation
## GO:0021532                                                                                                                              neural tube patterning
## GO:0001504                                                                                                                             neurotransmitter uptake
## GO:0010718                                                                                         positive regulation of epithelial to mesenchymal transition
## GO:0002639                                                                                                    positive regulation of immunoglobulin production
## GO:0045429                                                                                            positive regulation of nitric oxide biosynthetic process
## GO:0070918                                                                                           production of small RNA involved in gene silencing by RNA
## GO:2001239                                                                            regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:1902041                                                                      regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0051489                                                                                                                   regulation of filopodium assembly
## GO:1903018                                                                                                        regulation of glycoprotein metabolic process
## GO:0050704                                                                                                               regulation of interleukin-1 secretion
## GO:0001990                                                                                           regulation of systemic arterial blood pressure by hormone
## GO:1902653                                                                                                              secondary alcohol biosynthetic process
## GO:0006368                                                                                            transcription elongation from RNA polymerase II promoter
## GO:0048010                                                                                       vascular endothelial growth factor receptor signaling pathway
## GO:0043489                                                                                                                                   RNA stabilization
## GO:0050435                                                                                                                      amyloid-beta metabolic process
## GO:0008089                                                                                                                        anterograde axonal transport
## GO:0048483                                                                                                                autonomic nervous system development
## GO:0044848                                                                                                                                    biological phase
## GO:0050873                                                                                                                      brown fat cell differentiation
## GO:0044786                                                                                                                          cell cycle DNA replication
## GO:0061005                                                                                                 cell differentiation involved in kidney development
## GO:0001580                                                                       detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0042755                                                                                                                                     eating behavior
## GO:0007157                                                                         heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0045104                                                                                                     intermediate filament cytoskeleton organization
## GO:0043303                                                                                                                             mast cell degranulation
## GO:0007520                                                                                                                                     myoblast fusion
## GO:0045910                                                                                                            negative regulation of DNA recombination
## GO:0030857                                                                                              negative regulation of epithelial cell differentiation
## GO:0021988                                                                                                                          olfactory lobe development
## GO:0022602                                                                                                                             ovulation cycle process
## GO:0038066                                                                                                                                     p38MAPK cascade
## GO:0002714                                                                                                     positive regulation of B cell mediated immunity
## GO:0050850                                                                                                   positive regulation of calcium-mediated signaling
## GO:1902808                                                                                             positive regulation of cell cycle G1/S phase transition
## GO:0002891                                                                                      positive regulation of immunoglobulin mediated immune response
## GO:0032731                                                                                                positive regulation of interleukin-1 beta production
## GO:0051590                                                                                                   positive regulation of neurotransmitter transport
## GO:1904407                                                                                               positive regulation of nitric oxide metabolic process
## GO:0032892                                                                                                       positive regulation of organic acid transport
## GO:0010862                                                                              positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904591                                                                                                               positive regulation of protein import
## GO:0010107                                                                                                                                potassium ion import
## GO:0070534                                                                                                                   protein K63-linked ubiquitination
## GO:0031648                                                                                                                             protein destabilization
## GO:0007131                                                                                                                    reciprocal meiotic recombination
## GO:1903115                                                                                                         regulation of actin filament-based movement
## GO:2000725                                                                                                   regulation of cardiac muscle cell differentiation
## GO:0090342                                                                                                                            regulation of cell aging
## GO:0043550                                                                                                                 regulation of lipid kinase activity
## GO:0090311                                                                                                                 regulation of protein deacetylation
## GO:0051972                                                                                                                   regulation of telomerase activity
## GO:0051653                                                                                                                                spindle localization
## GO:0047496                                                                                                                 vesicle transport along microtubule
## GO:0090659                                                                                                                                    walking behavior
## GO:0017001                                                                                                                        antibiotic catabolic process
## GO:0002474                                                                              antigen processing and presentation of peptide antigen via MHC class I
## GO:0033173                                                                                                                  calcineurin-NFAT signaling cascade
## GO:0071470                                                                                                                 cellular response to osmotic stress
## GO:0098586                                                                                                                          cellular response to virus
## GO:0090102                                                                                                                                 cochlea development
## GO:0021545                                                                                                                           cranial nerve development
## GO:0035088                                                                                          establishment or maintenance of apical/basal cell polarity
## GO:0061245                                                                                               establishment or maintenance of bipolar cell polarity
## GO:0035825                                                                                                                            homologous recombination
## GO:0045103                                                                                                                 intermediate filament-based process
## GO:0046834                                                                                                                               lipid phosphorylation
## GO:0002279                                                                                                    mast cell activation involved in immune response
## GO:0002448                                                                                                                         mast cell mediated immunity
## GO:0030195                                                                                                            negative regulation of blood coagulation
## GO:1904036                                                                                            negative regulation of epithelial cell apoptotic process
## GO:0070229                                                                                                 negative regulation of lymphocyte apoptotic process
## GO:0048599                                                                                                                                  oocyte development
## GO:0001916                                                                                                 positive regulation of T cell mediated cytotoxicity
## GO:0046638                                                                                            positive regulation of alpha-beta T cell differentiation
## GO:0070169                                                                                                positive regulation of biomineral tissue development
## GO:0051955                                                                                                                  regulation of amino acid transport
## GO:0045646                                                                                                           regulation of erythrocyte differentiation
## GO:0043300                                                                                                               regulation of leukocyte degranulation
## GO:0032941                                                                                                                                 secretion by tissue
## GO:0061912                                                                                                                                 selective autophagy
## GO:0014888                                                                                                                          striated muscle adaptation
## GO:0060612                                                                                                                          adipose tissue development
## GO:0030865                                                                                                                  cortical cytoskeleton organization
## GO:0006303                                                                                            double-strand break repair via nonhomologous end joining
## GO:0048701                                                                                                            embryonic cranial skeleton morphogenesis
## GO:0010761                                                                                                                                fibroblast migration
## GO:0035137                                                                                                                              hindlimb morphogenesis
## GO:0042491                                                                                                    inner ear auditory receptor cell differentiation
## GO:0006406                                                                                                                            mRNA export from nucleus
## GO:0071427                                                                                       mRNA-containing ribonucleoprotein complex export from nucleus
## GO:0050891                                                                                                          multicellular organismal water homeostasis
## GO:0051985                                                                                                       negative regulation of chromosome segregation
## GO:0010596                                                                                                   negative regulation of endothelial cell migration
## GO:1900047                                                                                                                   negative regulation of hemostasis
## GO:0032715                                                                                                     negative regulation of interleukin-6 production
## GO:0051055                                                                                                   negative regulation of lipid biosynthetic process
## GO:1902373                                                                                                       negative regulation of mRNA catabolic process
## GO:2000059                                                                                negative regulation of ubiquitin-dependent protein catabolic process
## GO:0008038                                                                                                                                  neuron recognition
## GO:0000288                                                                           nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0046189                                                                                                     phenol-containing compound biosynthetic process
## GO:0010828                                                                                              positive regulation of glucose transmembrane transport
## GO:0061014                                                                                                       positive regulation of mRNA catabolic process
## GO:0045981                                                                                                 positive regulation of nucleotide metabolic process
## GO:1900544                                                                                          positive regulation of purine nucleotide metabolic process
## GO:0099054                                                                                                                                 presynapse assembly
## GO:0043370                                                                                       regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0090329                                                                                                         regulation of DNA-dependent DNA replication
## GO:1902930                                                                                                          regulation of alcohol biosynthetic process
## GO:0060043                                                                                                     regulation of cardiac muscle cell proliferation
## GO:0032330                                                                                                           regulation of chondrocyte differentiation
## GO:0071622                                                                                                                regulation of granulocyte chemotaxis
## GO:0033003                                                                                                                  regulation of mast cell activation
## GO:0071675                                                                                                            regulation of mononuclear cell migration
## GO:0010332                                                                                                                         response to gamma radiation
## GO:0007129                                                                                                                                            synapsis
## GO:0120193                                                                                                                         tight junction organization
## GO:0006360                                                                                                                   transcription by RNA polymerase I
## GO:0031146                                                                             SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:0031103                                                                                                                                   axon regeneration
## GO:0001974                                                                                                                             blood vessel remodeling
## GO:0009583                                                                                                                         detection of light stimulus
## GO:0031018                                                                                                                      endocrine pancreas development
## GO:0007032                                                                                                                               endosome organization
## GO:0048806                                                                                                                               genitalia development
## GO:0060428                                                                                                                         lung epithelium development
## GO:0007140                                                                                                                       male meiotic nuclear division
## GO:0033619                                                                                                                        membrane protein proteolysis
## GO:0072132                                                                                                                            mesenchyme morphogenesis
## GO:0030901                                                                                                                                midbrain development
## GO:0070265                                                                                                                                 necrotic cell death
## GO:0045912                                                                                               negative regulation of carbohydrate metabolic process
## GO:0050819                                                                                                                  negative regulation of coagulation
## GO:0051954                                                                                                              positive regulation of amine transport
## GO:0051353                                                                                                      positive regulation of oxidoreductase activity
## GO:0060760                                                                                                positive regulation of response to cytokine stimulus
## GO:0032206                                                                                                         positive regulation of telomere maintenance
## GO:0032784                                                                                               regulation of DNA-templated transcription, elongation
## GO:0030834                                                                                                       regulation of actin filament depolymerization
## GO:0061001                                                                                                         regulation of dendritic spine morphogenesis
## GO:0044058                                                                                                              regulation of digestive system process
## GO:0006111                                                                                                                       regulation of gluconeogenesis
## GO:0032648                                                                                                            regulation of interferon-beta production
## GO:2000649                                                                                         regulation of sodium ion transmembrane transporter activity
## GO:0043618                                                                   regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0019098                                                                                                                               reproductive behavior
## GO:0032355                                                                                                                               response to estradiol
## GO:0070542                                                                                                                              response to fatty acid
## GO:0050913                                                                                                                  sensory perception of bitter taste
## GO:0017145                                                                                                                                  stem cell division
## GO:0060412                                                                                                                    ventricular septum morphogenesis
## GO:0001662                                                                                                                            behavioral fear response
## GO:0097720                                                                                                                      calcineurin-mediated signaling
## GO:0060351                                                                                   cartilage development involved in endochondral bone morphogenesis
## GO:0035924                                                                                    cellular response to vascular endothelial growth factor stimulus
## GO:0021587                                                                                                                            cerebellum morphogenesis
## GO:0061077                                                                                                                  chaperone-mediated protein folding
## GO:0050912                                                                              detection of chemical stimulus involved in sensory perception of taste
## GO:1901570                                                                                                          fatty acid derivative biosynthetic process
## GO:0048247                                                                                                                               lymphocyte chemotaxis
## GO:0007019                                                                                                                        microtubule depolymerization
## GO:1902750                                                                                             negative regulation of cell cycle G2/M phase transition
## GO:0001960                                                                                          negative regulation of cytokine-mediated signaling pathway
## GO:1903202                                                                                          negative regulation of oxidative stress-induced cell death
## GO:0046148                                                                                                                        pigment biosynthetic process
## GO:0001954                                                                                                         positive regulation of cell-matrix adhesion
## GO:0043268                                                                                                      positive regulation of potassium ion transport
## GO:0032481                                                                                                 positive regulation of type I interferon production
## GO:0061614                                                                                                        pri-miRNA transcription by RNA polymerase II
## GO:0072698                                                                                                    protein localization to microtubule cytoskeleton
## GO:0072527                                                                                                    pyrimidine-containing compound metabolic process
## GO:0010712                                                                                                            regulation of collagen metabolic process
## GO:1900271                                                                                                       regulation of long-term synaptic potentiation
## GO:0097035                                                                                                           regulation of membrane lipid distribution
## GO:2001222                                                                                                                      regulation of neuron migration
## GO:0048713                                                                                                       regulation of oligodendrocyte differentiation
## GO:2000677                                                                                           regulation of transcription regulatory region DNA binding
## GO:0001895                                                                                                                                  retina homeostasis
## GO:0031529                                                                                                                                 ruffle organization
## GO:0016126                                                                                                                         sterol biosynthetic process
## GO:0009948                                                                                                               anterior/posterior axis specification
## GO:0002209                                                                                                                         behavioral defense response
## GO:0071242                                                                                                                   cellular response to ammonium ion
## GO:0048546                                                                                                                       digestive tract morphogenesis
## GO:1901571                                                                                                                     fatty acid derivative transport
## GO:0061900                                                                                                                               glial cell activation
## GO:0034113                                                                                                                      heterotypic cell-cell adhesion
## GO:0071715                                                                                                                                 icosanoid transport
## GO:0032608                                                                                                                          interferon-beta production
## GO:0051703                                                                                                          intraspecies interaction between organisms
## GO:0045190                                                                                                                                   isotype switching
## GO:0030219                                                                                                                       megakaryocyte differentiation
## GO:0098815                                                                                                     modulation of excitatory postsynaptic potential
## GO:0030514                                                                                                        negative regulation of BMP signaling pathway
## GO:0043392                                                                                                                  negative regulation of DNA binding
## GO:1900408                                                                                        negative regulation of cellular response to oxidative stress
## GO:0014014                                                                                                                  negative regulation of gliogenesis
## GO:0009994                                                                                                                              oocyte differentiation
## GO:0045777                                                                                                               positive regulation of blood pressure
## GO:0002720                                                                              positive regulation of cytokine production involved in immune response
## GO:0045933                                                                                                           positive regulation of muscle contraction
## GO:0030850                                                                                                                          prostate gland development
## GO:0031113                                                                                                            regulation of microtubule polymerization
## GO:0046902                                                                                                   regulation of mitochondrial membrane permeability
## GO:0030071                                                                                                 regulation of mitotic metaphase/anaphase transition
## GO:0042269                                                                                             regulation of natural killer cell mediated cytotoxicity
## GO:0010517                                                                                                                regulation of phospholipase activity
## GO:0043666                                                                                                   regulation of phosphoprotein phosphatase activity
## GO:0051930                                                                                                            regulation of sensory perception of pain
## GO:1900024                                                                                           regulation of substrate adhesion-dependent cell spreading
## GO:0032210                                                                                                   regulation of telomere maintenance via telomerase
## GO:1904705                                                                                             regulation of vascular smooth muscle cell proliferation
## GO:0045214                                                                                                                              sarcomere organization
## GO:0035176                                                                                                                                     social behavior
## GO:0055078                                                                                                                              sodium ion homeostasis
## GO:0002208                                                                              somatic diversification of immunoglobulins involved in immune response
## GO:0002204                                                                           somatic recombination of immunoglobulin genes involved in immune response
## GO:0051932                                                                                                                    synaptic transmission, GABAergic
## GO:0061383                                                                                                                             trabecula morphogenesis
## GO:1990874                                                                                                           vascular smooth muscle cell proliferation
## GO:0055010                                                                                                     ventricular cardiac muscle tissue morphogenesis
## GO:0099518                                                                                                                    vesicle cytoskeletal trafficking
## GO:0043297                                                                                                                            apical junction assembly
## GO:0086001                                                                                                                cardiac muscle cell action potential
## GO:0032964                                                                                                                       collagen biosynthetic process
## GO:0030199                                                                                                                        collagen fibril organization
## GO:0035272                                                                                                                         exocrine system development
## GO:0042738                                                                                                                    exogenous drug catabolic process
## GO:0014009                                                                                                                            glial cell proliferation
## GO:0046503                                                                                                                      glycerolipid catabolic process
## GO:0051568                                                                                                                           histone H3-K4 methylation
## GO:0045599                                                                                                     negative regulation of fat cell differentiation
## GO:0006289                                                                                                                          nucleotide-excision repair
## GO:0055025                                                                                            positive regulation of cardiac muscle tissue development
## GO:0045687                                                                                                   positive regulation of glial cell differentiation
## GO:0060193                                                                                                              positive regulation of lipase activity
## GO:2000648                                                                                                      positive regulation of stem cell proliferation
## GO:0051496                                                                                                        positive regulation of stress fiber assembly
## GO:0051290                                                                                                                       protein heterotetramerization
## GO:0001914                                                                                                          regulation of T cell mediated cytotoxicity
## GO:0044060                                                                                                                     regulation of endocrine process
## GO:2000351                                                                                                    regulation of endothelial cell apoptotic process
## GO:0045604                                                                                                        regulation of epidermal cell differentiation
## GO:0035065                                                                                                                   regulation of histone acetylation
## GO:0032350                                                                                                             regulation of hormone metabolic process
## GO:0043030                                                                                                                 regulation of macrophage activation
## GO:0002715                                                                                                 regulation of natural killer cell mediated immunity
## GO:1903533                                                                                                                     regulation of protein targeting
## GO:0051931                                                                                                                    regulation of sensory perception
## GO:0007585                                                                                                                        respiratory gaseous exchange
## GO:0046718                                                                                                                          viral entry into host cell
## GO:0045058                                                                                                                                    T cell selection
## GO:0030042                                                                                                                     actin filament depolymerization
## GO:0002042                                                                                                   cell migration involved in sprouting angiogenesis
## GO:0046513                                                                                                                       ceramide biosynthetic process
## GO:0021795                                                                                                                      cerebral cortex cell migration
## GO:0048066                                                                                                                          developmental pigmentation
## GO:0035315                                                                                                                           hair cell differentiation
## GO:0050701                                                                                                                             interleukin-1 secretion
## GO:0002548                                                                                                                                 monocyte chemotaxis
## GO:0046580                                                                                              negative regulation of Ras protein signal transduction
## GO:0046676                                                                                                            negative regulation of insulin secretion
## GO:0010823                                                                                                   negative regulation of mitochondrion organization
## GO:0045839                                                                                                     negative regulation of mitotic nuclear division
## GO:0050732                                                                                            negative regulation of peptidyl-tyrosine phosphorylation
## GO:0007528                                                                                                                  neuromuscular junction development
## GO:0045773                                                                                                               positive regulation of axon extension
## GO:0050775                                                                                                       positive regulation of dendrite morphogenesis
## GO:0035306                                                                                                            positive regulation of dephosphorylation
## GO:0002833                                                                                                  positive regulation of response to biotic stimulus
## GO:0042531                                                                                     positive regulation of tyrosine phosphorylation of STAT protein
## GO:0061512                                                                                                                      protein localization to cilium
## GO:1903539                                                                                                       protein localization to postsynaptic membrane
## GO:0043470                                                                                                        regulation of carbohydrate catabolic process
## GO:0010665                                                                                                 regulation of cardiac muscle cell apoptotic process
## GO:0032653                                                                                                             regulation of interleukin-10 production
## GO:0032655                                                                                                             regulation of interleukin-12 production
## GO:0003044                                                                        regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0001523                                                                                                                          retinoid metabolic process
## GO:0035019                                                                                                            somatic stem cell population maintenance
## GO:0006900                                                                                                                       vesicle budding from membrane
## GO:0019369                                                                                                                  arachidonic acid metabolic process
## GO:0009712                                                                                                      catechol-containing compound metabolic process
## GO:0006584                                                                                                                     catecholamine metabolic process
## GO:0008333                                                                                                                      endosome to lysosome transport
## GO:0007588                                                                                                                                           excretion
## GO:0042596                                                                                                                                       fear response
## GO:0021575                                                                                                                             hindbrain morphogenesis
## GO:0042743                                                                                                                 hydrogen peroxide metabolic process
## GO:0002227                                                                                                                    innate immune response in mucosa
## GO:0065002                                                                                                       intracellular protein transmembrane transport
## GO:1905517                                                                                                                                macrophage migration
## GO:0007618                                                                                                                                              mating
## GO:0044773                                                                                                                       mitotic DNA damage checkpoint
## GO:0002704                                                                                                  negative regulation of leukocyte mediated immunity
## GO:0045620                                                                                                   negative regulation of lymphocyte differentiation
## GO:0060761                                                                                                negative regulation of response to cytokine stimulus
## GO:1902883                                                                                                 negative regulation of response to oxidative stress
## GO:0035567                                                                                                                 non-canonical Wnt signaling pathway
## GO:0043536                                                                                      positive regulation of blood vessel endothelial cell migration
## GO:0032732                                                                                                     positive regulation of interleukin-1 production
## GO:0090303                                                                                                                positive regulation of wound healing
## GO:0043620                                                                                     regulation of DNA-templated transcription in response to stress
## GO:0051196                                                                                                            regulation of coenzyme metabolic process
## GO:1900449                                                                                                  regulation of glutamate receptor signaling pathway
## GO:1902099                                                                                           regulation of metaphase/anaphase transition of cell cycle
## GO:0031641                                                                                                                           regulation of myelination
## GO:0072347                                                                                                                              response to anesthetic
## GO:0035456                                                                                                                         response to interferon-beta
## GO:0007062                                                                                                                           sister chromatid cohesion
## GO:0048538                                                                                                                                  thymus development
## GO:0030104                                                                                                                                   water homeostasis
## GO:0001825                                                                                                                                blastocyst formation
## GO:0006879                                                                                                                       cellular iron ion homeostasis
## GO:0016101                                                                                                                       diterpenoid metabolic process
## GO:0072577                                                                                                                  endothelial cell apoptotic process
## GO:0001736                                                                                                                    establishment of planar polarity
## GO:0001754                                                                                                              eye photoreceptor cell differentiation
## GO:0002067                                                                                                           glandular epithelial cell differentiation
## GO:0009247                                                                                                                     glycolipid biosynthetic process
## GO:0003170                                                                                                                             heart valve development
## GO:0048016                                                                                                               inositol phosphate-mediated signaling
## GO:0010463                                                                                                                      mesenchymal cell proliferation
## GO:0051310                                                                                                                         metaphase plate congression
## GO:0007091                                                                                                 metaphase/anaphase transition of mitotic cell cycle
## GO:0042775                                                                                              mitochondrial ATP synthesis coupled electron transport
## GO:0090307                                                                                                                            mitotic spindle assembly
## GO:0050879                                                                                                                   multicellular organismal movement
## GO:0050881                                                                                                                            musculoskeletal movement
## GO:0045071                                                                                                     negative regulation of viral genome replication
## GO:0042551                                                                                                                                   neuron maturation
## GO:0000726                                                                                                                          non-recombinational repair
## GO:0046622                                                                                                                 positive regulation of organ growth
## GO:0048260                                                                                                positive regulation of receptor-mediated endocytosis
## GO:0099172                                                                                                                             presynapse organization
## GO:0071806                                                                                                                     protein transmembrane transport
## GO:0050854                                                                                           regulation of antigen receptor-mediated signaling pathway
## GO:0090109                                                                                                      regulation of cell-substrate junction assembly
## GO:0051893                                                                                                               regulation of focal adhesion assembly
## GO:0050994                                                                                                               regulation of lipid catabolic process
## GO:0019080                                                                                                                               viral gene expression
## GO:0090501                                                                                                                  RNA phosphodiester bond hydrolysis
## GO:0070231                                                                                                                            T cell apoptotic process
## GO:0072678                                                                                                                                    T cell migration
## GO:0098930                                                                                                                                    axonal transport
## GO:0061337                                                                                                                                  cardiac conduction
## GO:0043954                                                                                                                      cellular component maintenance
## GO:0051187                                                                                                                          cofactor catabolic process
## GO:0051806                                                                                 entry into cell of other organism involved in symbiotic interaction
## GO:0044409                                                                                                                                     entry into host
## GO:0030260                                                                                                                                entry into host cell
## GO:0051828                                                                                         entry into other organism involved in symbiotic interaction
## GO:0007164                                                                                                                    establishment of tissue polarity
## GO:0032835                                                                                                                              glomerulus development
## GO:0032615                                                                                                                           interleukin-12 production
## GO:0015909                                                                                                                     long-chain fatty acid transport
## GO:0060443                                                                                                                         mammary gland morphogenesis
## GO:0002011                                                                                                                morphogenesis of an epithelial sheet
## GO:1902369                                                                                                        negative regulation of RNA catabolic process
## GO:0010656                                                                                                negative regulation of muscle cell apoptotic process
## GO:1901616                                                                                                          organic hydroxy compound catabolic process
## GO:1903902                                                                                                             positive regulation of viral life cycle
## GO:0044380                                                                                                                protein localization to cytoskeleton
## GO:0072665                                                                                                                     protein localization to vacuole
## GO:0046128                                                                                                             purine ribonucleoside metabolic process
## GO:0098900                                                                                                                      regulation of action potential
## GO:0046605                                                                                                                      regulation of centrosome cycle
## GO:0032663                                                                                                              regulation of interleukin-2 production
## GO:0051445                                                                                                                    regulation of meiotic cell cycle
## GO:0010965                                                                                                   regulation of mitotic sister chromatid separation
## GO:0010662                                                                                                regulation of striated muscle cell apoptotic process
## GO:0043330                                                                                                                         response to exogenous dsRNA
## GO:0016447                                                                                               somatic recombination of immunoglobulin gene segments
## GO:0021517                                                                                                                     ventral spinal cord development
## GO:0015807                                                                                                                              L-amino acid transport
## GO:0010659                                                                                                               cardiac muscle cell apoptotic process
## GO:0031122                                                                                                                cytoplasmic microtubule organization
## GO:0050907                                                                                       detection of chemical stimulus involved in sensory perception
## GO:0015872                                                                                                                                  dopamine transport
## GO:0060986                                                                                                                         endocrine hormone secretion
## GO:0007029                                                                                                                  endoplasmic reticulum organization
## GO:0008347                                                                                                                                glial cell migration
## GO:0006749                                                                                                                       glutathione metabolic process
## GO:0060119                                                                                                                 inner ear receptor cell development
## GO:0098661                                                                                                             inorganic anion transmembrane transport
## GO:0032613                                                                                                                           interleukin-10 production
## GO:0060711                                                                                                                      labyrinthine layer development
## GO:0031124                                                                                                                              mRNA 3'-end processing
## GO:0045806                                                                                                                  negative regulation of endocytosis
## GO:0051148                                                                                                  negative regulation of muscle cell differentiation
## GO:0006661                                                                                                           phosphatidylinositol biosynthetic process
## GO:0010524                                                                                           positive regulation of calcium ion transport into cytosol
## GO:2001238                                                                                        positive regulation of extrinsic apoptotic signaling pathway
## GO:1903078                                                                                      positive regulation of protein localization to plasma membrane
## GO:0070936                                                                                                                   protein K48-linked ubiquitination
## GO:0070972                                                                                                       protein localization to endoplasmic reticulum
## GO:2000401                                                                                                                  regulation of lymphocyte migration
## GO:1901016                                                                                      regulation of potassium ion transmembrane transporter activity
## GO:1901607                                                                                                               alpha-amino acid biosynthetic process
## GO:0042982                                                                                                         amyloid precursor protein metabolic process
## GO:0070098                                                                                                                chemokine-mediated signaling pathway
## GO:0050982                                                                                                                    detection of mechanical stimulus
## GO:0060324                                                                                                                                    face development
## GO:0046847                                                                                                                                 filopodium assembly
## GO:0001947                                                                                                                                       heart looping
## GO:0007595                                                                                                                                           lactation
## GO:0044784                                                                                                         metaphase/anaphase transition of cell cycle
## GO:0045744                                                                                 negative regulation of G protein-coupled receptor signaling pathway
## GO:2000134                                                                                        negative regulation of G1/S transition of mitotic cell cycle
## GO:0030837                                                                                                negative regulation of actin filament polymerization
## GO:0045776                                                                                                               negative regulation of blood pressure
## GO:0045824                                                                                                       negative regulation of innate immune response
## GO:0031102                                                                                                                      neuron projection regeneration
## GO:0071156                                                                                                                     regulation of cell cycle arrest
## GO:1902017                                                                                                                       regulation of cilium assembly
## GO:0090183                                                                                                                    regulation of kidney development
## GO:0006446                                                                                                              regulation of translational initiation
## GO:0033209                                                                                                    tumor necrosis factor-mediated signaling pathway
## GO:0042773                                                                                                            ATP synthesis coupled electron transport
## GO:0021515                                                                                                                 cell differentiation in spinal cord
## GO:0048512                                                                                                                                  circadian behavior
## GO:0045143                                                                                                                   homologous chromosome segregation
## GO:0048286                                                                                                                           lung alveolus development
## GO:0007040                                                                                                                               lysosome organization
## GO:0080171                                                                                                                          lytic vacuole organization
## GO:0010812                                                                                                      negative regulation of cell-substrate adhesion
## GO:0051058                                                                                    negative regulation of small GTPase mediated signal transduction
## GO:0042698                                                                                                                                     ovulation cycle
## GO:0042461                                                                                                                      photoreceptor cell development
## GO:0045600                                                                                                     positive regulation of fat cell differentiation
## GO:0045840                                                                                                     positive regulation of mitotic nuclear division
## GO:1903428                                                                                 positive regulation of reactive oxygen species biosynthetic process
## GO:1903307                                                                                                  positive regulation of regulated secretory pathway
## GO:0006493                                                                                                                      protein O-linked glycosylation
## GO:1905207                                                                                                            regulation of cardiocyte differentiation
## GO:0042058                                                                                    regulation of epidermal growth factor receptor signaling pathway
## GO:0097006                                                                                                    regulation of plasma lipoprotein particle levels
## GO:1902305                                                                                                    regulation of sodium ion transmembrane transport
## GO:0051591                                                                                                                                    response to cAMP
## GO:0015800                                                                                                                         acidic amino acid transport
## GO:0010171                                                                                                                                  body morphogenesis
## GO:0086003                                                                                                                     cardiac muscle cell contraction
## GO:0060038                                                                                                                   cardiac muscle cell proliferation
## GO:0071260                                                                                                            cellular response to mechanical stimulus
## GO:0021695                                                                                                                       cerebellar cortex development
## GO:0070988                                                                                                                                       demethylation
## GO:0061951                                                                                            establishment of protein localization to plasma membrane
## GO:0043966                                                                                                                              histone H3 acetylation
## GO:0002437                                                                                                         inflammatory response to antigenic stimulus
## GO:0051306                                                                                                                 mitotic sister chromatid separation
## GO:1905268                                                                                                       negative regulation of chromatin organization
## GO:0045668                                                                                                   negative regulation of osteoblast differentiation
## GO:0032720                                                                                             negative regulation of tumor necrosis factor production
## GO:0018149                                                                                                                               peptide cross-linking
## GO:0048008                                                                                           platelet-derived growth factor receptor signaling pathway
## GO:0030858                                                                                              positive regulation of epithelial cell differentiation
## GO:0014911                                                                                                 positive regulation of smooth muscle cell migration
## GO:0034308                                                                                                                   primary alcohol metabolic process
## GO:0070206                                                                                                                               protein trimerization
## GO:0042278                                                                                                                 purine nucleoside metabolic process
## GO:0043949                                                                                                               regulation of cAMP-mediated signaling
## GO:0060393                                                                                       regulation of pathway-restricted SMAD protein phosphorylation
## GO:1904356                                                                                         regulation of telomere maintenance via telomere lengthening
## GO:0010658                                                                                                              striated muscle cell apoptotic process
## GO:0006721                                                                                                                         terpenoid metabolic process
## GO:0006367                                                                                            transcription initiation from RNA polymerase II promoter
## GO:0003229                                                                                                       ventricular cardiac muscle tissue development
## GO:0030330                                                                                      DNA damage response, signal transduction by p53 class mediator
## GO:0006278                                                                                                              RNA-dependent DNA biosynthetic process
## GO:0035904                                                                                                                                   aorta development
## GO:0045454                                                                                                                              cell redox homeostasis
## GO:0008652                                                                                                            cellular amino acid biosynthetic process
## GO:0043967                                                                                                                              histone H4 acetylation
## GO:0070059                                                                   intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1903556                                                                        negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0015914                                                                                                                              phospholipid transport
## GO:0043388                                                                                                                  positive regulation of DNA binding
## GO:0046579                                                                                              positive regulation of Ras protein signal transduction
## GO:0032722                                                                                                         positive regulation of chemokine production
## GO:0060999                                                                                                  positive regulation of dendritic spine development
## GO:0140238                                                                                                                             presynaptic endocytosis
## GO:2001169                                                                                                              regulation of ATP biosynthetic process
## GO:0043462                                                                                                                       regulation of ATPase activity
## GO:0002712                                                                                                              regulation of B cell mediated immunity
## GO:0002889                                                                                               regulation of immunoglobulin mediated immune response
## GO:0032677                                                                                                              regulation of interleukin-8 production
## GO:0045661                                                                                                              regulation of myoblast differentiation
## GO:0010830                                                                                                               regulation of myotube differentiation
## GO:0099601                                                                                                    regulation of neurotransmitter receptor activity
## GO:2000756                                                                                                           regulation of peptidyl-lysine acetylation
## GO:0034121                                                                                                  regulation of toll-like receptor signaling pathway
## GO:0007622                                                                                                                                   rhythmic behavior
## GO:0048488                                                                                                                        synaptic vesicle endocytosis
## GO:0007004                                                                                                                 telomere maintenance via telomerase
## GO:0042246                                                                                                                                 tissue regeneration
## GO:0001658                                                                                                    branching involved in ureteric bud morphogenesis
## GO:1901264                                                                                                                   carbohydrate derivative transport
## GO:0009988                                                                                                                               cell-cell recognition
## GO:0034605                                                                                                                           cellular response to heat
## GO:0071479                                                                                                             cellular response to ionizing radiation
## GO:0090398                                                                                                                                 cellular senescence
## GO:0007566                                                                                                                                 embryo implantation
## GO:0009880                                                                                                                     embryonic pattern specification
## GO:0044774                                                                                                                    mitotic DNA integrity checkpoint
## GO:0042267                                                                                                           natural killer cell mediated cytotoxicity
## GO:0051926                                                                                                        negative regulation of calcium ion transport
## GO:1902807                                                                                             negative regulation of cell cycle G1/S phase transition
## GO:0030512                                                                   negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0032233                                                                                               positive regulation of actin filament bundle assembly
## GO:0010676                                                                                      positive regulation of cellular carbohydrate metabolic process
## GO:0046824                                                                                                  positive regulation of nucleocytoplasmic transport
## GO:2000514                                                                                            regulation of CD4-positive, alpha-beta T cell activation
## GO:1903391                                                                                                        regulation of adherens junction organization
## GO:0000381                                                                                            regulation of alternative mRNA splicing, via spliceosome
## GO:1905818                                                                                                                 regulation of chromosome separation
## GO:0042306                                                                                                           regulation of protein import into nucleus
## GO:2000736                                                                                                             regulation of stem cell differentiation
## GO:0043331                                                                                                                                   response to dsRNA
## GO:0060042                                                                                                             retina morphogenesis in camera-type eye
## GO:0048278                                                                                                                                     vesicle docking
## GO:0006354                                                                                                             DNA-templated transcription, elongation
## GO:0006893                                                                                                                  Golgi to plasma membrane transport
## GO:0001510                                                                                                                                     RNA methylation
## GO:0000422                                                                                                                          autophagy of mitochondrion
## GO:0033627                                                                                                                  cell adhesion mediated by integrin
## GO:0045123                                                                                                                              cellular extravasation
## GO:0009064                                                                                                       glutamine family amino acid metabolic process
## GO:0002381                                                                       immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0043647                                                                                                                inositol phosphate metabolic process
## GO:0030032                                                                                                                              lamellipodium assembly
## GO:0060425                                                                                                                                  lung morphogenesis
## GO:0001707                                                                                                                                  mesoderm formation
## GO:0061726                                                                                                                           mitochondrion disassembly
## GO:2000242                                                                                                         negative regulation of reproductive process
## GO:0003407                                                                                                                           neural retina development
## GO:0150076                                                                                                                          neuroinflammatory response
## GO:0060389                                                                                                     pathway-restricted SMAD protein phosphorylation
## GO:0042440                                                                                                                           pigment metabolic process
## GO:1903793                                                                                                              positive regulation of anion transport
## GO:0090559                                                                                                                 regulation of membrane permeability
## GO:0002886                                                                                                   regulation of myeloid leukocyte mediated immunity
## GO:0019748                                                                                                                         secondary metabolic process
## GO:0016445                                                                                                          somatic diversification of immunoglobulins
## GO:0031638                                                                                                                                  zymogen activation
## GO:1904322                                                                                                                      cellular response to forskolin
## GO:0032922                                                                                                             circadian regulation of gene expression
## GO:0032623                                                                                                                            interleukin-2 production
## GO:0002228                                                                                                               natural killer cell mediated immunity
## GO:1903845                                                                negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0090278                                                                                                    negative regulation of peptide hormone secretion
## GO:0045739                                                                                                                   positive regulation of DNA repair
## GO:1904377                                                                                       positive regulation of protein localization to cell periphery
## GO:0034394                                                                                                                protein localization to cell surface
## GO:1901184                                                                                                                regulation of ERBB signaling pathway
## GO:0046324                                                                                                                        regulation of glucose import
## GO:1904321                                                                                                                               response to forskolin
## GO:0071426                                                                                                       ribonucleoprotein complex export from nucleus
## GO:0042274                                                                                                                  ribosomal small subunit biogenesis
## GO:0140253                                                                                                                                    cell-cell fusion
## GO:0033692                                                                                                        cellular polysaccharide biosynthetic process
## GO:0051298                                                                                                                              centrosome duplication
## GO:0061371                                                                                                         determination of heart left/right asymmetry
## GO:0003143                                                                                                                  embryonic heart tube morphogenesis
## GO:0001885                                                                                                                        endothelial cell development
## GO:0097194                                                                                                                        execution phase of apoptosis
## GO:0006635                                                                                                                           fatty acid beta-oxidation
## GO:0050710                                                                                                           negative regulation of cytokine secretion
## GO:0051784                                                                                                             negative regulation of nuclear division
## GO:2000378                                                                                    negative regulation of reactive oxygen species metabolic process
## GO:1905515                                                                                                                          non-motile cilium assembly
## GO:0016239                                                                                                               positive regulation of macroautophagy
## GO:2000179                                                                                          positive regulation of neural precursor cell proliferation
## GO:0043113                                                                                                                                 receptor clustering
## GO:0002673                                                                                                           regulation of acute inflammatory response
## GO:0060688                                                                                                regulation of morphogenesis of a branching structure
## GO:0048168                                                                                                          regulation of neuronal synaptic plasticity
## GO:0006940                                                                                                             regulation of smooth muscle contraction
## GO:0048678                                                                                                                             response to axon injury
## GO:0061478                                                                                                          response to platelet aggregation inhibitor
## GO:0071166                                                                                                              ribonucleoprotein complex localization
## GO:0016444                                                                                                                      somatic cell DNA recombination
## GO:0002562                                                        somatic diversification of immune receptors via germline recombination within a single locus
## GO:0006801                                                                                                                        superoxide metabolic process
## GO:0000768                                                                                                       syncytium formation by plasma membrane fusion
## GO:0032482                                                                                                                     Rab protein signal transduction
## GO:0055081                                                                                                                                   anion homeostasis
## GO:0048002                                                                                              antigen processing and presentation of peptide antigen
## GO:0035082                                                                                                                                    axoneme assembly
## GO:1904888                                                                                                                 cranial skeletal system development
## GO:0006855                                                                                                                        drug transmembrane transport
## GO:0034109                                                                                                                        homotypic cell-cell adhesion
## GO:2001244                                                                                        positive regulation of intrinsic apoptotic signaling pathway
## GO:0045669                                                                                                   positive regulation of osteoblast differentiation
## GO:0006513                                                                                                                          protein monoubiquitination
## GO:0046637                                                                                                     regulation of alpha-beta T cell differentiation
## GO:0051453                                                                                                                      regulation of intracellular pH
## GO:0045428                                                                                                     regulation of nitric oxide biosynthetic process
## GO:0006305                                                                                                                                      DNA alkylation
## GO:0006306                                                                                                                                     DNA methylation
## GO:0060997                                                                                                                       dendritic spine morphogenesis
## GO:0021536                                                                                                                            diencephalon development
## GO:0007492                                                                                                                                endoderm development
## GO:0032637                                                                                                                            interleukin-8 production
## GO:0043299                                                                                                                             leukocyte degranulation
## GO:0045576                                                                                                                                mast cell activation
## GO:0048332                                                                                                                              mesoderm morphogenesis
## GO:0000281                                                                                                                                 mitotic cytokinesis
## GO:0043407                                                                                                          negative regulation of MAP kinase activity
## GO:0010633                                                                                                    negative regulation of epithelial cell migration
## GO:2000107                                                                                                  negative regulation of leukocyte apoptotic process
## GO:0007405                                                                                                                            neuroblast proliferation
## GO:0050885                                                                                                           neuromuscular process controlling balance
## GO:0001541                                                                                                                        ovarian follicle development
## GO:0046635                                                                                                 positive regulation of alpha-beta T cell activation
## GO:0048146                                                                                                     positive regulation of fibroblast proliferation
## GO:0032370                                                                                                              positive regulation of lipid transport
## GO:0055117                                                                                                            regulation of cardiac muscle contraction
## GO:0061035                                                                                                                 regulation of cartilage development
## GO:0033047                                                                                                  regulation of mitotic sister chromatid segregation
## GO:1904589                                                                                                                        regulation of protein import
## GO:1903670                                                                                                                regulation of sprouting angiogenesis
## GO:0006949                                                                                                                                 syncytium formation
## GO:0008542                                                                                                                                     visual learning
## GO:0006766                                                                                                                           vitamin metabolic process
## GO:0006081                                                                                                                 cellular aldehyde metabolic process
## GO:1990869                                                                                                                      cellular response to chemokine
## GO:0003341                                                                                                                                     cilium movement
## GO:0019915                                                                                                                                       lipid storage
## GO:0002385                                                                                                                             mucosal immune response
## GO:0042130                                                                                                         negative regulation of T cell proliferation
## GO:2001021                                                                                              negative regulation of response to DNA damage stimulus
## GO:0046173                                                                                                                         polyol biosynthetic process
## GO:0051057                                                                                    positive regulation of small GTPase mediated signal transduction
## GO:1903725                                                                                                        regulation of phospholipid metabolic process
## GO:0002090                                                                                                              regulation of receptor internalization
## GO:1901796                                                                                             regulation of signal transduction by p53 class mediator
## GO:0048641                                                                                                    regulation of skeletal muscle tissue development
## GO:1990868                                                                                                                               response to chemokine
## GO:0009119                                                                                                                    ribonucleoside metabolic process
## GO:0050909                                                                                                                         sensory perception of taste
## GO:0022029                                                                                                                        telencephalon cell migration
## GO:0070192                                                                                              chromosome organization involved in meiotic cell cycle
## GO:0042733                                                                                                                       embryonic digit morphogenesis
## GO:0032413                                                                                       negative regulation of ion transmembrane transporter activity
## GO:0061045                                                                                                                negative regulation of wound healing
## GO:0002711                                                                                                     positive regulation of T cell mediated immunity
## GO:0014068                                                                                      positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0097120                                                                                                                    receptor localization to synapse
## GO:0010611                                                                                                            regulation of cardiac muscle hypertrophy
## GO:0050433                                                                                                               regulation of catecholamine secretion
## GO:0042509                                                                                              regulation of tyrosine phosphorylation of STAT protein
## GO:0042255                                                                                                                                   ribosome assembly
## GO:0060675                                                                                                                          ureteric bud morphogenesis
## GO:0048645                                                                                                                              animal organ formation
## GO:0016575                                                                                                                               histone deacetylation
## GO:0072171                                                                                                                    mesonephric tubule morphogenesis
## GO:0030239                                                                                                                                  myofibril assembly
## GO:0002251                                                                                                            organ or tissue specific immune response
## GO:0097755                                                                                                        positive regulation of blood vessel diameter
## GO:0000079                                                                             regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0043627                                                                                                                                response to estrogen
## GO:0006400                                                                                                                                   tRNA modification
## GO:0007632                                                                                                                                     visual behavior
## GO:0009060                                                                                                                                 aerobic respiration
## GO:0019731                                                                                                                      antibacterial humoral response
## GO:0021885                                                                                                                            forebrain cell migration
## GO:0006094                                                                                                                                     gluconeogenesis
## GO:1990542                                                                                                               mitochondrial transmembrane transport
## GO:0051851                                                                                           modification by host of symbiont morphology or physiology
## GO:0031397                                                                                                       negative regulation of protein ubiquitination
## GO:0007422                                                                                                               peripheral nervous system development
## GO:1903036                                                                                                         positive regulation of response to wounding
## GO:0051155                                                                                         positive regulation of striated muscle cell differentiation
## GO:0051865                                                                                                                          protein autoubiquitination
## GO:0006626                                                                                                                  protein targeting to mitochondrion
## GO:2000779                                                                                                            regulation of double-strand break repair
## GO:0031060                                                                                                                   regulation of histone methylation
## GO:0002637                                                                                                             regulation of immunoglobulin production
## GO:0060191                                                                                                                       regulation of lipase activity
## GO:0045670                                                                                                            regulation of osteoclast differentiation
## GO:0050810                                                                                                          regulation of steroid biosynthetic process
## GO:0051145                                                                                                                  smooth muscle cell differentiation
## GO:0006414                                                                                                                            translational elongation
## GO:0006919                                                                    activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0007193                                                                           adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:0003333                                                                                                                  amino acid transmembrane transport
## GO:0050432                                                                                                                             catecholamine secretion
## GO:0002066                                                                                                       columnar/cuboidal epithelial cell development
## GO:0008543                                                                                                 fibroblast growth factor receptor signaling pathway
## GO:0021766                                                                                                                             hippocampus development
## GO:0010507                                                                                                                    negative regulation of autophagy
## GO:1901880                                                                                                     negative regulation of protein depolymerization
## GO:2000573                                                                                                     positive regulation of DNA biosynthetic process
## GO:1901224                                                                                                      positive regulation of NIK/NF-kappaB signaling
## GO:0042108                                                                                                positive regulation of cytokine biosynthetic process
## GO:0002532                                                                                  production of molecular mediator involved in inflammatory response
## GO:0032651                                                                                                         regulation of interleukin-1 beta production
## GO:0014743                                                                                                                    regulation of muscle hypertrophy
## GO:1903201                                                                                                   regulation of oxidative stress-induced cell death
## GO:1901983                                                                                                                   regulation of protein acetylation
## GO:0097327                                                                                                                    response to antineoplastic agent
## GO:0036465                                                                                                                          synaptic vesicle recycling
## GO:0051303                                                                                                            establishment of chromosome localization
## GO:0008625                                                                                    extrinsic apoptotic signaling pathway via death domain receptors
## GO:0046323                                                                                                                                      glucose import
## GO:0042446                                                                                                                        hormone biosynthetic process
## GO:0032418                                                                                                                               lysosome localization
## GO:0032507                                                                                                             maintenance of protein location in cell
## GO:0032543                                                                                                                           mitochondrial translation
## GO:0051705                                                                                                                             multi-organism behavior
## GO:0070373                                                                                                        negative regulation of ERK1 and ERK2 cascade
## GO:0032272                                                                                                       negative regulation of protein polymerization
## GO:0045843                                                                                           negative regulation of striated muscle tissue development
## GO:0060563                                                                                                                neuroepithelial cell differentiation
## GO:0140056                                                                                                        organelle localization by membrane tethering
## GO:0000271                                                                                                                 polysaccharide biosynthetic process
## GO:1900182                                                                                              positive regulation of protein localization to nucleus
## GO:0030641                                                                                                                           regulation of cellular pH
## GO:0051193                                                                                                            regulation of cofactor metabolic process
## GO:0046626                                                                                                    regulation of insulin receptor signaling pathway
## GO:0030808                                                                                                       regulation of nucleotide biosynthetic process
## GO:0061097                                                                                                      regulation of protein tyrosine kinase activity
## GO:1900371                                                                                                regulation of purine nucleotide biosynthetic process
## GO:0002200                                                                                                         somatic diversification of immune receptors
## GO:0007260                                                                                                            tyrosine phosphorylation of STAT protein
## GO:0006405                                                                                                                             RNA export from nucleus
## GO:0001913                                                                                                                        T cell mediated cytotoxicity
## GO:1901606                                                                                                                  alpha-amino acid catabolic process
## GO:0000380                                                                                                          alternative mRNA splicing, via spliceosome
## GO:0048844                                                                                                                                artery morphogenesis
## GO:0008088                                                                                                                             axo-dendritic transport
## GO:0055008                                                                                                                 cardiac muscle tissue morphogenesis
## GO:0007045                                                                                                           cell-substrate adherens junction assembly
## GO:0050000                                                                                                                             chromosome localization
## GO:0060350                                                                                                                     endochondral bone morphogenesis
## GO:0048041                                                                                                                             focal adhesion assembly
## GO:0021879                                                                                                                    forebrain neuron differentiation
## GO:0019319                                                                                                                         hexose biosynthetic process
## GO:0006809                                                                                                                   nitric oxide biosynthetic process
## GO:0030168                                                                                                                                 platelet activation
## GO:1904029                                                                                              regulation of cyclin-dependent protein kinase activity
## GO:0070228                                                                                                          regulation of lymphocyte apoptotic process
## GO:0071277                                                                                                                    cellular response to calcium ion
## GO:0071347                                                                                                                  cellular response to interleukin-1
## GO:0030301                                                                                                                               cholesterol transport
## GO:0006835                                                                                                                         dicarboxylic acid transport
## GO:0072332                                                                                         intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0061180                                                                                                                mammary gland epithelium development
## GO:0033108                                                                                                    mitochondrial respiratory chain complex assembly
## GO:0001738                                                                                                             morphogenesis of a polarized epithelium
## GO:0032088                                                                                      negative regulation of NF-kappaB transcription factor activity
## GO:0048635                                                                                                     negative regulation of muscle organ development
## GO:2001259                                                                                                      positive regulation of cation channel activity
## GO:0032729                                                                                                  positive regulation of interferon-gamma production
## GO:0051785                                                                                                             positive regulation of nuclear division
## GO:0050766                                                                                                                 positive regulation of phagocytosis
## GO:0030193                                                                                                                     regulation of blood coagulation
## GO:0055021                                                                                                          regulation of cardiac muscle tissue growth
## GO:0050688                                                                                                             regulation of defense response to virus
## GO:0051966                                                                                                  regulation of synaptic transmission, glutamatergic
## GO:0001756                                                                                                                                       somitogenesis
## GO:0030148                                                                                                                   sphingolipid biosynthetic process
## GO:0015918                                                                                                                                    sterol transport
## GO:0014855                                                                                                                  striated muscle cell proliferation
## GO:0010833                                                                                                       telomere maintenance via telomere lengthening
## GO:0034637                                                                                                          cellular carbohydrate biosynthetic process
## GO:0006073                                                                                                                   cellular glucan metabolic process
## GO:0034644                                                                                                                             cellular response to UV
## GO:0060976                                                                                                                    coronary vasculature development
## GO:0044042                                                                                                                            glucan metabolic process
## GO:0005977                                                                                                                          glycogen metabolic process
## GO:0046785                                                                                                                          microtubule polymerization
## GO:0061515                                                                                                                            myeloid cell development
## GO:1901862                                                                                                    negative regulation of muscle tissue development
## GO:0043507                                                                                                          positive regulation of JUN kinase activity
## GO:0010389                                                                                                 regulation of G2/M transition of mitotic cell cycle
## GO:1900046                                                                                                                            regulation of hemostasis
## GO:0051881                                                                                                      regulation of mitochondrial membrane potential
## GO:0045471                                                                                                                                 response to ethanol
## GO:0003208                                                                                                                     cardiac ventricle morphogenesis
## GO:0097192                                                                                          extrinsic apoptotic signaling pathway in absence of ligand
## GO:0051702                                                                                                                           interaction with symbiont
## GO:0048663                                                                                                                              neuron fate commitment
## GO:0051781                                                                                                                positive regulation of cell division
## GO:0043525                                                                                                     positive regulation of neuron apoptotic process
## GO:1902117                                                                                                           positive regulation of organelle assembly
## GO:0032465                                                                                                                           regulation of cytokinesis
## GO:0033143                                                                              regulation of intracellular steroid hormone receptor signaling pathway
## GO:0032890                                                                                                                regulation of organic acid transport
## GO:0051279                                                                                       regulation of release of sequestered calcium ion into cytosol
## GO:0042147                                                                                                             retrograde transport, endosome to Golgi
## GO:0038034                                                                                                            signal transduction in absence of ligand
## GO:0002312                                                                                                       B cell activation involved in immune response
## GO:0060113                                                                                                             inner ear receptor cell differentiation
## GO:0022406                                                                                                                                    membrane docking
## GO:0043154                                                           negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0010923                                                                                                         negative regulation of phosphatase activity
## GO:0032410                                                                                                         negative regulation of transporter activity
## GO:0072078                                                                                                                        nephron tubule morphogenesis
## GO:0021675                                                                                                                                   nerve development
## GO:0046209                                                                                                                      nitric oxide metabolic process
## GO:1904427                                                                                          positive regulation of calcium ion transmembrane transport
## GO:0030500                                                                                                                   regulation of bone mineralization
## GO:0045682                                                                                                                 regulation of epidermis development
## GO:0070613                                                                                                                    regulation of protein processing
## GO:0044106                                                                                                                    cellular amine metabolic process
## GO:0006664                                                                                                                        glycolipid metabolic process
## GO:1903312                                                                                                       negative regulation of mRNA metabolic process
## GO:0007218                                                                                                                      neuropeptide signaling pathway
## GO:0072384                                                                                                               organelle transport along microtubule
## GO:0046530                                                                                                                  photoreceptor cell differentiation
## GO:0031646                                                                                                  positive regulation of neurological system process
## GO:2000243                                                                                                         positive regulation of reproductive process
## GO:0050818                                                                                                                           regulation of coagulation
## GO:0061178                                                                   regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0032479                                                                                                          regulation of type I interferon production
## GO:0022904                                                                                                                respiratory electron transport chain
## GO:0043279                                                                                                                                response to alkaloid
## GO:0042273                                                                                                                  ribosomal large subunit biogenesis
## GO:0090630                                                                                                                       activation of GTPase activity
## GO:0006637                                                                                                                          acyl-CoA metabolic process
## GO:0035050                                                                                                                    embryonic heart tube development
## GO:0006720                                                                                                                        isoprenoid metabolic process
## GO:1903509                                                                                                                    liposaccharide metabolic process
## GO:0051899                                                                                                                             membrane depolarization
## GO:0046364                                                                                                                 monosaccharide biosynthetic process
## GO:0048747                                                                                                                            muscle fiber development
## GO:1903901                                                                                                             negative regulation of viral life cycle
## GO:0072088                                                                                                                    nephron epithelium morphogenesis
## GO:0015748                                                                                                                     organophosphate ester transport
## GO:0002718                                                                                       regulation of cytokine production involved in immune response
## GO:1903317                                                                                                                    regulation of protein maturation
## GO:0032204                                                                                                                  regulation of telomere maintenance
## GO:0035383                                                                                                                         thioester metabolic process
## GO:0006672                                                                                                                          ceramide metabolic process
## GO:0097581                                                                                                                          lamellipodium organization
## GO:0071674                                                                                                                          mononuclear cell migration
## GO:0043242                                                                                                  negative regulation of protein complex disassembly
## GO:1903321                                                                 negative regulation of protein modification by small protein conjugation or removal
## GO:0072028                                                                                                                               nephron morphogenesis
## GO:1901992                                                                                          positive regulation of mitotic cell cycle phase transition
## GO:1901019                                                                                        regulation of calcium ion transmembrane transporter activity
## GO:1901888                                                                                                                regulation of cell junction assembly
## GO:0033045                                                                                                          regulation of sister chromatid segregation
## GO:0006942                                                                                                           regulation of striated muscle contraction
## GO:0044728                                                                                                                    DNA methylation or demethylation
## GO:0006342                                                                                                                                 chromatin silencing
## GO:0050672                                                                                                     negative regulation of lymphocyte proliferation
## GO:0032945                                                                                               negative regulation of mononuclear cell proliferation
## GO:0003151                                                                                                                         outflow tract morphogenesis
## GO:0045913                                                                                               positive regulation of carbohydrate metabolic process
## GO:0048636                                                                                                     positive regulation of muscle organ development
## GO:0045844                                                                                           positive regulation of striated muscle tissue development
## GO:0048524                                                                                                                positive regulation of viral process
## GO:2001057                                                                                                         reactive nitrogen species metabolic process
## GO:0060420                                                                                                                          regulation of heart growth
## GO:1901379                                                                                                 regulation of potassium ion transmembrane transport
## GO:0008589                                                                                                          regulation of smoothened signaling pathway
## GO:0006970                                                                                                                          response to osmotic stress
## GO:0034333                                                                                                                          adherens junction assembly
## GO:0048708                                                                                                                           astrocyte differentiation
## GO:0042632                                                                                                                             cholesterol homeostasis
## GO:0022900                                                                                                                            electron transport chain
## GO:0098659                                                                                                      inorganic cation import across plasma membrane
## GO:0099587                                                                                                         inorganic ion import across plasma membrane
## GO:0002088                                                                                                                 lens development in camera-type eye
## GO:0002275                                                                                                 myeloid cell activation involved in immune response
## GO:1901863                                                                                                    positive regulation of muscle tissue development
## GO:0034502                                                                                                                  protein localization to chromosome
## GO:0035418                                                                                                                     protein localization to synapse
## GO:1900407                                                                                                 regulation of cellular response to oxidative stress
## GO:0051341                                                                                                               regulation of oxidoreductase activity
## GO:0051384                                                                                                                          response to glucocorticoid
## GO:0032606                                                                                                                        type I interferon production
## GO:0070509                                                                                                                                  calcium ion import
## GO:0060411                                                                                                                        cardiac septum morphogenesis
## GO:0007044                                                                                                                    cell-substrate junction assembly
## GO:0009593                                                                                                                      detection of chemical stimulus
## GO:0043648                                                                                                                 dicarboxylic acid metabolic process
## GO:0060079                                                                                                                   excitatory postsynaptic potential
## GO:0015908                                                                                                                                fatty acid transport
## GO:0032611                                                                                                                       interleukin-1 beta production
## GO:0055072                                                                                                                                iron ion homeostasis
## GO:0042490                                                                                                                     mechanoreceptor differentiation
## GO:0001912                                                                                              positive regulation of leukocyte mediated cytotoxicity
## GO:0008593                                                                                                               regulation of Notch signaling pathway
## GO:0010827                                                                                                       regulation of glucose transmembrane transport
## GO:0035304                                                                                                             regulation of protein dephosphorylation
## GO:0061333                                                                                                                          renal tubule morphogenesis
## GO:0055092                                                                                                                                  sterol homeostasis
## GO:0003281                                                                                                                      ventricular septum development
## GO:0070252                                                                                                                     actin-mediated cell contraction
## GO:2000117                                                                                         negative regulation of cysteine-type endopeptidase activity
## GO:0042475                                                                                                            odontogenesis of dentin-containing tooth
## GO:0002690                                                                                                         positive regulation of leukocyte chemotaxis
## GO:0010717                                                                                                  regulation of epithelial to mesenchymal transition
## GO:1901879                                                                                                              regulation of protein depolymerization
## GO:0072091                                                                                                               regulation of stem cell proliferation
## GO:0033077                                                                                                                    T cell differentiation in thymus
## GO:0044344                                                                                              cellular response to fibroblast growth factor stimulus
## GO:0006112                                                                                                                    energy reserve metabolic process
## GO:0070664                                                                                                      negative regulation of leukocyte proliferation
## GO:1903035                                                                                                         negative regulation of response to wounding
## GO:0009116                                                                                                                        nucleoside metabolic process
## GO:0051149                                                                                                  positive regulation of muscle cell differentiation
## GO:0032642                                                                                                                  regulation of chemokine production
## GO:0019217                                                                                                          regulation of fatty acid metabolic process
## GO:0031110                                                                                        regulation of microtubule polymerization or depolymerization
## GO:0051492                                                                                                                 regulation of stress fiber assembly
## GO:0035914                                                                                                                skeletal muscle cell differentiation
## GO:0051937                                                                                                                             catecholamine transport
## GO:0070301                                                                                                              cellular response to hydrogen peroxide
## GO:0021872                                                                                                                     forebrain generation of neurons
## GO:0035773                                                                                 insulin secretion involved in cellular response to glucose stimulus
## GO:0007229                                                                                                                 integrin-mediated signaling pathway
## GO:0001656                                                                                                                             metanephros development
## GO:0060415                                                                                                                         muscle tissue morphogenesis
## GO:1904063                                                                                               negative regulation of cation transmembrane transport
## GO:1903008                                                                                                                               organelle disassembly
## GO:0031016                                                                                                                                pancreas development
## GO:0014015                                                                                                                  positive regulation of gliogenesis
## GO:1905954                                                                                                           positive regulation of lipid localization
## GO:1900076                                                                                                 regulation of cellular response to insulin stimulus
## GO:1904035                                                                                                     regulation of epithelial cell apoptotic process
## GO:0031960                                                                                                                          response to corticosteroid
## GO:0000041                                                                                                                      transition metal ion transport
## GO:0019226                                                                                                                       transmission of nerve impulse
## GO:0060395                                                                                                                    SMAD protein signal transduction
## GO:0009063                                                                                                               cellular amino acid catabolic process
## GO:0072655                                                                                              establishment of protein localization to mitochondrion
## GO:0006096                                                                                                                                  glycolytic process
## GO:0045814                                                                                                  negative regulation of gene expression, epigenetic
## GO:0045833                                                                                                      negative regulation of lipid metabolic process
## GO:1903313                                                                                                       positive regulation of mRNA metabolic process
## GO:0006497                                                                                                                                  protein lipidation
## GO:1902600                                                                                                                      proton transmembrane transport
## GO:0043535                                                                                               regulation of blood vessel endothelial cell migration
## GO:0040014                                                                                                         regulation of multicellular organism growth
## GO:0071774                                                                                                                response to fibroblast growth factor
## GO:0032526                                                                                                                           response to retinoic acid
## GO:0042770                                                                                                       signal transduction in response to DNA damage
## GO:0006757                                                                                                                             ATP generation from ADP
## GO:0009308                                                                                                                             amine metabolic process
## GO:0009798                                                                                                                                  axis specification
## GO:0021954                                                                                                           central nervous system neuron development
## GO:0001938                                                                                               positive regulation of endothelial cell proliferation
## GO:1903578                                                                                                                 regulation of ATP metabolic process
## GO:0045685                                                                                                            regulation of glial cell differentiation
## GO:0032652                                                                                                              regulation of interleukin-1 production
## GO:0002028                                                                                                                  regulation of sodium ion transport
## GO:0046683                                                                                                                        response to organophosphorus
## GO:0032602                                                                                                                                chemokine production
## GO:0030838                                                                                                positive regulation of actin filament polymerization
## GO:0006476                                                                                                                               protein deacetylation
## GO:0060998                                                                                                           regulation of dendritic spine development
## GO:0006885                                                                                                                                    regulation of pH
## GO:0000045                                                                                                                              autophagosome assembly
## GO:0036473                                                                                                          cell death in response to oxidative stress
## GO:0061640                                                                                                                  cytoskeleton-dependent cytokinesis
## GO:0009062                                                                                                                        fatty acid catabolic process
## GO:0007215                                                                                                                glutamate receptor signaling pathway
## GO:0001676                                                                                                             long-chain fatty acid metabolic process
## GO:0042116                                                                                                                               macrophage activation
## GO:0051817                                                        modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0045445                                                                                                                            myoblast differentiation
## GO:0035305                                                                                                            negative regulation of dephosphorylation
## GO:0046889                                                                                                   positive regulation of lipid biosynthetic process
## GO:0043506                                                                                                                   regulation of JUN kinase activity
## GO:0002027                                                                                                                            regulation of heart rate
## GO:0061844                                                                             antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:0002181                                                                                                                             cytoplasmic translation
## GO:0097061                                                                                                                        dendritic spine organization
## GO:0042866                                                                                                                       pyruvate biosynthetic process
## GO:0002709                                                                                                              regulation of T cell mediated immunity
## GO:1902749                                                                                                      regulation of cell cycle G2/M phase transition
## GO:0060968                                                                                                                        regulation of gene silencing
## GO:1902882                                                                                                          regulation of response to oxidative stress
## GO:0045069                                                                                                              regulation of viral genome replication
## GO:0070555                                                                                                                           response to interleukin-1
## GO:0060021                                                                                                                           roof of mouth development
## GO:0001570                                                                                                                                      vasculogenesis
## GO:0006906                                                                                                                                      vesicle fusion
## GO:0046916                                                                                                           cellular transition metal ion homeostasis
## GO:0051304                                                                                                                               chromosome separation
## GO:0007173                                                                                                  epidermal growth factor receptor signaling pathway
## GO:0001704                                                                                                                     formation of primary germ layer
## GO:0042158                                                                                                                    lipoprotein biosynthetic process
## GO:0046888                                                                                                            negative regulation of hormone secretion
## GO:0048477                                                                                                                                           oogenesis
## GO:0045582                                                                                                       positive regulation of T cell differentiation
## GO:0070585                                                                                                               protein localization to mitochondrion
## GO:0006352                                                                                                             DNA-templated transcription, initiation
## GO:0030004                                                                                                    cellular monovalent inorganic cation homeostasis
## GO:0071456                                                                                                                        cellular response to hypoxia
## GO:0099565                                                                                                        chemical synaptic transmission, postsynaptic
## GO:0140029                                                                                                                                    exocytic process
## GO:0030279                                                                                                                 negative regulation of ossification
## GO:0007200                                                                             phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:1901989                                                                                                  positive regulation of cell cycle phase transition
## GO:0120162                                                                                                   positive regulation of cold-induced thermogenesis
## GO:0050795                                                                                                                              regulation of behavior
## GO:0014066                                                                                               regulation of phosphatidylinositol 3-kinase signaling
## GO:0099072                                                                                regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0061053                                                                                                                                  somite development
## GO:0006304                                                                                                                                    DNA modification
## GO:1905037                                                                                                                          autophagosome organization
## GO:0072676                                                                                                                                lymphocyte migration
## GO:0045132                                                                                                                      meiotic chromosome segregation
## GO:0048644                                                                                                                          muscle organ morphogenesis
## GO:0002444                                                                                                                 myeloid leukocyte mediated immunity
## GO:2001243                                                                                        negative regulation of intrinsic apoptotic signaling pathway
## GO:0048525                                                                                                                negative regulation of viral process
## GO:0006334                                                                                                                                 nucleosome assembly
## GO:0006119                                                                                                                           oxidative phosphorylation
## GO:0010595                                                                                                   positive regulation of endothelial cell migration
## GO:0031058                                                                                                         positive regulation of histone modification
## GO:0030510                                                                                                                 regulation of BMP signaling pathway
## GO:0070167                                                                                                         regulation of biomineral tissue development
## GO:0043502                                                                                                                     regulation of muscle adaptation
## GO:0046031                                                                                                                               ADP metabolic process
## GO:0071482                                                                                                                 cellular response to light stimulus
## GO:0019395                                                                                                                                fatty acid oxidation
## GO:0021761                                                                                                                           limbic system development
## GO:0070227                                                                                                                        lymphocyte apoptotic process
## GO:0007041                                                                                                                                 lysosomal transport
## GO:0007006                                                                                                                 mitochondrial membrane organization
## GO:2001237                                                                                        negative regulation of extrinsic apoptotic signaling pathway
## GO:0072080                                                                                                                          nephron tubule development
## GO:0042102                                                                                                         positive regulation of T cell proliferation
## GO:0032760                                                                                             positive regulation of tumor necrosis factor production
## GO:0043488                                                                                                                        regulation of mRNA stability
## GO:0010660                                                                                                         regulation of muscle cell apoptotic process
## GO:0006821                                                                                                                                  chloride transport
## GO:0060993                                                                                                                                kidney morphogenesis
## GO:0033555                                                                                                         multicellular organismal response to stress
## GO:0062014                                                                                             negative regulation of small molecule metabolic process
## GO:0033865                                                                                                           nucleoside bisphosphate metabolic process
## GO:0045921                                                                                                                   positive regulation of exocytosis
## GO:0032755                                                                                                     positive regulation of interleukin-6 production
## GO:1903557                                                                        positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0006892                                                                                                               post-Golgi vesicle-mediated transport
## GO:0034032                                                                                                    purine nucleoside bisphosphate metabolic process
## GO:0033875                                                                                                       ribonucleoside bisphosphate metabolic process
## GO:0006641                                                                                                                      triglyceride metabolic process
## GO:0098876                                                                                                   vesicle-mediated transport to the plasma membrane
## GO:0055013                                                                                                                     cardiac muscle cell development
## GO:0034440                                                                                                                                     lipid oxidation
## GO:0001578                                                                                                                        microtubule bundle formation
## GO:0030593                                                                                                                               neutrophil chemotaxis
## GO:0090174                                                                                                                           organelle membrane fusion
## GO:0031343                                                                                                                 positive regulation of cell killing
## GO:0045778                                                                                                                 positive regulation of ossification
## GO:0002702                                                                          positive regulation of production of molecular mediator of immune response
## GO:0032006                                                                                                                         regulation of TOR signaling
## GO:0110020                                                                                                     regulation of actomyosin structure organization
## GO:0060359                                                                                                                            response to ammonium ion
## GO:0007584                                                                                                                                response to nutrient
## GO:0000077                                                                                                                               DNA damage checkpoint
## GO:0031532                                                                                                                   actin cytoskeleton reorganization
## GO:0003300                                                                                                                          cardiac muscle hypertrophy
## GO:0051651                                                                                                                     maintenance of location in cell
## GO:0110110                                                                                                   positive regulation of animal organ morphogenesis
## GO:0090263                                                                                              positive regulation of canonical Wnt signaling pathway
## GO:2001022                                                                                              positive regulation of response to DNA damage stimulus
## GO:1901222                                                                                                               regulation of NIK/NF-kappaB signaling
## GO:0050848                                                                                                            regulation of calcium-mediated signaling
## GO:0055024                                                                                                     regulation of cardiac muscle tissue development
## GO:2000300                                                                                                           regulation of synaptic vesicle exocytosis
## GO:0034446                                                                                                         substrate adhesion-dependent cell spreading
## GO:0033559                                                                                                            unsaturated fatty acid metabolic process
## GO:0031123                                                                                                                               RNA 3'-end processing
## GO:0002367                                                                                                     cytokine production involved in immune response
## GO:0050886                                                                                                                                   endocrine process
## GO:0106027                                                                                                                      neuron projection organization
## GO:0046427                                                                                                             positive regulation of JAK-STAT cascade
## GO:0050772                                                                                                                 positive regulation of axonogenesis
## GO:0051897                                                                                                   positive regulation of protein kinase B signaling
## GO:1905477                                                                                             positive regulation of protein localization to membrane
## GO:0010522                                                                                                    regulation of calcium ion transport into cytosol
## GO:0019218                                                                                                             regulation of steroid metabolic process
## GO:0021510                                                                                                                             spinal cord development
## GO:0051225                                                                                                                                    spindle assembly
## GO:0001708                                                                                                                             cell fate specification
## GO:0030038                                                                                                          contractile actin filament bundle assembly
## GO:0009953                                                                                                                    dorsal/ventral pattern formation
## GO:0030317                                                                                                                          flagellated sperm motility
## GO:0098732                                                                                                                           macromolecule deacylation
## GO:0140053                                                                                                                       mitochondrial gene expression
## GO:0010657                                                                                                                       muscle cell apoptotic process
## GO:0006165                                                                                                              nucleoside diphosphate phosphorylation
## GO:0048709                                                                                                                     oligodendrocyte differentiation
## GO:0035601                                                                                                                                 protein deacylation
## GO:0051289                                                                                                                         protein homotetramerization
## GO:0009135                                                                                                     purine nucleoside diphosphate metabolic process
## GO:0009179                                                                                                 purine ribonucleoside diphosphate metabolic process
## GO:0000018                                                                                                                     regulation of DNA recombination
## GO:0032231                                                                                                        regulation of actin filament bundle assembly
## GO:0043255                                                                                                     regulation of carbohydrate biosynthetic process
## GO:1900542                                                                                                   regulation of purine nucleotide metabolic process
## GO:1903426                                                                                          regulation of reactive oxygen species biosynthetic process
## GO:0017015                                                                            regulation of transforming growth factor beta receptor signaling pathway
## GO:0009408                                                                                                                                    response to heat
## GO:0043149                                                                                                                               stress fiber assembly
## GO:0002224                                                                                                                toll-like receptor signaling pathway
## GO:1905039                                                                                                             carboxylic acid transmembrane transport
## GO:0044264                                                                                                           cellular polysaccharide metabolic process
## GO:0021549                                                                                                                              cerebellum development
## GO:0032612                                                                                                                            interleukin-1 production
## GO:0030518                                                                                            intracellular steroid hormone receptor signaling pathway
## GO:0072163                                                                                                                  mesonephric epithelium development
## GO:0072164                                                                                                                      mesonephric tubule development
## GO:0042136                                                                                                               neurotransmitter biosynthetic process
## GO:1903825                                                                                                                organic acid transmembrane transport
## GO:0007009                                                                                                                        plasma membrane organization
## GO:0046634                                                                                                          regulation of alpha-beta T cell activation
## GO:0051983                                                                                                                regulation of chromosome segregation
## GO:0061326                                                                                                                            renal tubule development
## GO:0097722                                                                                                                                      sperm motility
## GO:0006413                                                                                                                            translational initiation
## GO:0001657                                                                                                                            ureteric bud development
## GO:0038127                                                                                                                              ERBB signaling pathway
## GO:0008306                                                                                                                                associative learning
## GO:0055017                                                                                                                        cardiac muscle tissue growth
## GO:0034754                                                                                                                  cellular hormone metabolic process
## GO:0048704                                                                                                             embryonic skeletal system morphogenesis
## GO:0007052                                                                                                                        mitotic spindle organization
## GO:0034766                                                                                                  negative regulation of ion transmembrane transport
## GO:0000956                                                                                                          nuclear-transcribed mRNA catabolic process
## GO:0046939                                                                                                                          nucleotide phosphorylation
## GO:0043473                                                                                                                                        pigmentation
## GO:1903844                                                                         regulation of cellular response to transforming growth factor beta stimulus
## GO:0048024                                                                                                        regulation of mRNA splicing, via spliceosome
## GO:0016241                                                                                                                        regulation of macroautophagy
## GO:0050764                                                                                                                          regulation of phagocytosis
## GO:0043266                                                                                                               regulation of potassium ion transport
## GO:0019236                                                                                                                               response to pheromone
## GO:0035282                                                                                                                                        segmentation
## GO:0014897                                                                                                                         striated muscle hypertrophy
## GO:0035249                                                                                                                synaptic transmission, glutamatergic
## GO:0060840                                                                                                                                  artery development
## GO:0055006                                                                                                                            cardiac cell development
## GO:0022600                                                                                                                            digestive system process
## GO:0045446                                                                                                                    endothelial cell differentiation
## GO:0046474                                                                                                            glycerophospholipid biosynthetic process
## GO:0045185                                                                                                                     maintenance of protein location
## GO:0032091                                                                                                              negative regulation of protein binding
## GO:0019359                                                                                                        nicotinamide nucleotide biosynthetic process
## GO:1904894                                                                                                                 positive regulation of STAT cascade
## GO:0120034                                                                             positive regulation of plasma membrane bounded cell projection assembly
## GO:0048661                                                                                             positive regulation of smooth muscle cell proliferation
## GO:1902803                                                                                                            regulation of synaptic vesicle transport
## GO:0038061                                                                                                                             NIK/NF-kappaB signaling
## GO:0007043                                                                                                                         cell-cell junction assembly
## GO:0001823                                                                                                                             mesonephros development
## GO:0014896                                                                                                                                  muscle hypertrophy
## GO:0006275                                                                                                                       regulation of DNA replication
## GO:0043487                                                                                                                         regulation of RNA stability
## GO:0048145                                                                                                              regulation of fibroblast proliferation
## GO:0006140                                                                                                          regulation of nucleotide metabolic process
## GO:0003014                                                                                                                                renal system process
## GO:0014074                                                                                                              response to purine-containing compound
## GO:0009185                                                                                                        ribonucleoside diphosphate metabolic process
## GO:0030048                                                                                                                       actin filament-based movement
## GO:1904659                                                                                                                     glucose transmembrane transport
## GO:0051028                                                                                                                                      mRNA transport
## GO:0030316                                                                                                                          osteoclast differentiation
## GO:1900006                                                                                                         positive regulation of dendrite development
## GO:0045621                                                                                                   positive regulation of lymphocyte differentiation
## GO:0001959                                                                                                   regulation of cytokine-mediated signaling pathway
## GO:2000106                                                                                                           regulation of leukocyte apoptotic process
## GO:0035725                                                                                                                  sodium ion transmembrane transport
## GO:0008344                                                                                                                           adult locomotory behavior
## GO:0021987                                                                                                                         cerebral cortex development
## GO:0032963                                                                                                                          collagen metabolic process
## GO:0050829                                                                                                         defense response to Gram-negative bacterium
## GO:0048144                                                                                                                            fibroblast proliferation
## GO:0008645                                                                                                                      hexose transmembrane transport
## GO:0034968                                                                                                                          histone lysine methylation
## GO:0015844                                                                                                                                 monoamine transport
## GO:0072009                                                                                                                      nephron epithelium development
## GO:0018958                                                                                                        phenol-containing compound metabolic process
## GO:0032092                                                                                                              positive regulation of protein binding
## GO:2000379                                                                                    positive regulation of reactive oxygen species metabolic process
## GO:0006612                                                                                                                       protein targeting to membrane
## GO:0019363                                                                                                            pyridine nucleotide biosynthetic process
## GO:0042035                                                                                                         regulation of cytokine biosynthetic process
## GO:0032649                                                                                                           regulation of interferon-gamma production
## GO:0001910                                                                                                       regulation of leukocyte mediated cytotoxicity
## GO:1903076                                                                                               regulation of protein localization to plasma membrane
## GO:0048259                                                                                                         regulation of receptor-mediated endocytosis
## GO:0000086                                                                                                               G2/M transition of mitotic cell cycle
## GO:0019882                                                                                                                 antigen processing and presentation
## GO:1901657                                                                                                                 glycosyl compound metabolic process
## GO:0007156                                                                                     homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0006690                                                                                                                         icosanoid metabolic process
## GO:0001843                                                                                                                                 neural tube closure
## GO:0090100                                                     positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0031570                                                                                                                            DNA integrity checkpoint
## GO:0021782                                                                                                                              glial cell development
## GO:0001942                                                                                                                           hair follicle development
## GO:0007127                                                                                                                                           meiosis I
## GO:0015749                                                                                                              monosaccharide transmembrane transport
## GO:0071901                                                                                     negative regulation of protein serine/threonine kinase activity
## GO:0002688                                                                                                                  regulation of leukocyte chemotaxis
## GO:0043401                                                                                                          steroid hormone mediated signaling pathway
## GO:0060606                                                                                                                                        tube closure
## GO:0019079                                                                                                                            viral genome replication
## GO:0007589                                                                                                                                body fluid secretion
## GO:0034219                                                                                                                carbohydrate transmembrane transport
## GO:0001892                                                                                                                      embryonic placenta development
## GO:0008630                                                                                     intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0072329                                                                                                               monocarboxylic acid catabolic process
## GO:0043123                                                                                          positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1905269                                                                                                       positive regulation of chromatin organization
## GO:1905330                                                                                                        regulation of morphogenesis of an epithelium
## GO:0046822                                                                                                           regulation of nucleocytoplasmic transport
## GO:0060078                                                                                                       regulation of postsynaptic membrane potential
## GO:0006805                                                                                                                        xenobiotic metabolic process
## GO:1904019                                                                                                                   epithelial cell apoptotic process
## GO:0008585                                                                                                                            female gonad development
## GO:0090101                                                     negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0090305                                                                                                         nucleic acid phosphodiester bond hydrolysis
## GO:0072525                                                                                                   pyridine-containing compound biosynthetic process
## GO:0001952                                                                                                                  regulation of cell-matrix adhesion
## GO:2000177                                                                                                   regulation of neural precursor cell proliferation
## GO:0098773                                                                                                                          skin epidermis development
## GO:0043534                                                                                                             blood vessel endothelial cell migration
## GO:0022405                                                                                                                                  hair cycle process
## GO:0060419                                                                                                                                        heart growth
## GO:0042472                                                                                                                             inner ear morphogenesis
## GO:0046467                                                                                                                 membrane lipid biosynthetic process
## GO:0022404                                                                                                                               molting cycle process
## GO:0032414                                                                                       positive regulation of ion transmembrane transporter activity
## GO:2000045                                                                                                 regulation of G1/S transition of mitotic cell cycle
## GO:0048814                                                                                                                regulation of dendrite morphogenesis
## GO:0000187                                                                                                                         activation of MAPK activity
## GO:0019730                                                                                                                      antimicrobial humoral response
## GO:0071346                                                                                                               cellular response to interferon-gamma
## GO:0005976                                                                                                                    polysaccharide metabolic process
## GO:0016579                                                                                                                            protein deubiquitination
## GO:0032368                                                                                                                       regulation of lipid transport
## GO:0043244                                                                                                           regulation of protein complex disassembly
## GO:2001023                                                                                                                      regulation of response to drug
## GO:0051209                                                                                                     release of sequestered calcium ion into cytosol
## GO:0008033                                                                                                                                     tRNA processing
## GO:0030282                                                                                                                                 bone mineralization
## GO:0010927                                                                                               cellular component assembly involved in morphogenesis
## GO:0046545                                                                                                development of primary female sexual characteristics
## GO:0098739                                                                                                                       import across plasma membrane
## GO:0061982                                                                                                                        meiosis I cell cycle process
## GO:0022037                                                                                                                           metencephalon development
## GO:0051261                                                                                                                            protein depolymerization
## GO:0002040                                                                                                                              sprouting angiogenesis
## GO:0051701                                                                                                                               interaction with host
## GO:0007498                                                                                                                                mesoderm development
## GO:0043500                                                                                                                                   muscle adaptation
## GO:0051283                                                                                                  negative regulation of sequestering of calcium ion
## GO:0014020                                                                                                                       primary neural tube formation
## GO:0006282                                                                                                                            regulation of DNA repair
## GO:0060349                                                                                                                                  bone morphogenesis
## GO:0042476                                                                                                                                       odontogenesis
## GO:0019751                                                                                                                            polyol metabolic process
## GO:0006090                                                                                                                          pyruvate metabolic process
## GO:0051952                                                                                                                       regulation of amine transport
## GO:0046620                                                                                                                          regulation of organ growth
## GO:0060759                                                                                                         regulation of response to cytokine stimulus
## GO:0031929                                                                                                                                       TOR signaling
## GO:0003158                                                                                                                             endothelium development
## GO:0050868                                                                                                            negative regulation of T cell activation
## GO:0090090                                                                                              negative regulation of canonical Wnt signaling pathway
## GO:1990266                                                                                                                                neutrophil migration
## GO:0043280                                                           positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:2000278                                                                                                              regulation of DNA biosynthetic process
## GO:0051282                                                                                                           regulation of sequestering of calcium ion
## GO:0003073                                                                                                      regulation of systemic arterial blood pressure
## GO:1901136                                                                                                           carbohydrate derivative catabolic process
## GO:0002062                                                                                                                         chondrocyte differentiation
## GO:0031109                                                                                                      microtubule polymerization or depolymerization
## GO:0010508                                                                                                                    positive regulation of autophagy
## GO:1901216                                                                                                                 positive regulation of neuron death
## GO:0045727                                                                                                                  positive regulation of translation
## GO:0044070                                                                                                                       regulation of anion transport
## GO:0051208                                                                                                                         sequestering of calcium ion
## GO:0007030                                                                                                                                  Golgi organization
## GO:0046717                                                                                                                                      acid secretion
## GO:0036294                                                                                                        cellular response to decreased oxygen levels
## GO:0031497                                                                                                                                  chromatin assembly
## GO:0042089                                                                                                                       cytokine biosynthetic process
## GO:0048565                                                                                                                         digestive tract development
## GO:0008286                                                                                                                  insulin receptor signaling pathway
## GO:0001889                                                                                                                                   liver development
## GO:0009132                                                                                                            nucleoside diphosphate metabolic process
## GO:0032411                                                                                                         positive regulation of transporter activity
## GO:0006611                                                                                                                         protein export from nucleus
## GO:1903409                                                                                                        reactive oxygen species biosynthetic process
## GO:0010906                                                                                                             regulation of glucose metabolic process
## GO:1900180                                                                                                       regulation of protein localization to nucleus
## GO:0042542                                                                                                                       response to hydrogen peroxide
## GO:0002526                                                                                                                         acute inflammatory response
## GO:0006639                                                                                                                      acylglycerol metabolic process
## GO:0015837                                                                                                                                     amine transport
## GO:0007098                                                                                                                                    centrosome cycle
## GO:0060996                                                                                                                         dendritic spine development
## GO:0007586                                                                                                                                           digestion
## GO:0032609                                                                                                                         interferon-gamma production
## GO:0006997                                                                                                                                nucleus organization
## GO:0048284                                                                                                                                    organelle fusion
## GO:0018022                                                                                                                         peptidyl-lysine methylation
## GO:0042752                                                                                                                      regulation of circadian rhythm
## GO:0061013                                                                                                                regulation of mRNA catabolic process
## GO:0006888                                                                                                              ER to Golgi vesicle-mediated transport
## GO:0071621                                                                                                                              granulocyte chemotaxis
## GO:0042157                                                                                                                       lipoprotein metabolic process
## GO:0010921                                                                                                                  regulation of phosphatase activity
## GO:0051153                                                                                                  regulation of striated muscle cell differentiation
## GO:0006665                                                                                                                      sphingolipid metabolic process
## GO:0060048                                                                                                                          cardiac muscle contraction
## GO:0007368                                                                                                                determination of left/right symmetry
## GO:0061008                                                                                                                  hepaticobiliary system development
## GO:0014902                                                                                                                             myotube differentiation
## GO:0006638                                                                                                                     neutral lipid metabolic process
## GO:0033138                                                                                              positive regulation of peptidyl-serine phosphorylation
## GO:0000723                                                                                                                                telomere maintenance
## GO:0042107                                                                                                                          cytokine metabolic process
## GO:0007631                                                                                                                                    feeding behavior
## GO:0018107                                                                                                                  peptidyl-threonine phosphorylation
## GO:0032273                                                                                                       positive regulation of protein polymerization
## GO:0099175                                                                                                              regulation of postsynapse organization
## GO:0010212                                                                                                                      response to ionizing radiation
## GO:0050852                                                                                                                   T cell receptor signaling pathway
## GO:0034332                                                                                                                      adherens junction organization
## GO:0008203                                                                                                                       cholesterol metabolic process
## GO:0009582                                                                                                                       detection of abiotic stimulus
## GO:0031623                                                                                                                            receptor internalization
## GO:0032200                                                                                                                               telomere organization
## GO:0055076                                                                                                                    transition metal ion homeostasis
## GO:0044839                                                                                                                    cell cycle G2/M phase transition
## GO:0009581                                                                                                                      detection of external stimulus
## GO:0000724                                                                                             double-strand break repair via homologous recombination
## GO:0014065                                                                                                             phosphatidylinositol 3-kinase signaling
## GO:0010811                                                                                                      positive regulation of cell-substrate adhesion
## GO:0000725                                                                                                                              recombinational repair
## GO:0010565                                                                                                     regulation of cellular ketone metabolic process
## GO:0043467                                                                                        regulation of generation of precursor metabolites and energy
## GO:0051592                                                                                                                             response to calcium ion
## GO:0003279                                                                                                                          cardiac septum development
## GO:0035195                                                                                                                             gene silencing by miRNA
## GO:0051092                                                                                      positive regulation of NF-kappaB transcription factor activity
## GO:1902806                                                                                                      regulation of cell cycle G1/S phase transition
## GO:0050830                                                                                                         defense response to Gram-positive bacterium
## GO:0046488                                                                                                              phosphatidylinositol metabolic process
## GO:0051101                                                                                                                           regulation of DNA binding
## GO:0045995                                                                                                                 regulation of embryonic development
## GO:0001936                                                                                                        regulation of endothelial cell proliferation
## GO:0007189                                                                           adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1902850                                                                                           microtubule cytoskeleton organization involved in mitosis
## GO:0031023                                                                                                          microtubule organizing center organization
## GO:0007093                                                                                                                       mitotic cell cycle checkpoint
## GO:0008277                                                                                          regulation of G protein-coupled receptor signaling pathway
## GO:0015696                                                                                                                                  ammonium transport
## GO:0030218                                                                                                                         erythrocyte differentiation
## GO:0042633                                                                                                                                          hair cycle
## GO:0042303                                                                                                                                       molting cycle
## GO:1903038                                                                                                 negative regulation of leukocyte cell-cell adhesion
## GO:0090316                                                                                              positive regulation of intracellular protein transport
## GO:0031341                                                                                                                          regulation of cell killing
## GO:0010469                                                                                                           regulation of signaling receptor activity
## GO:1902652                                                                                                                 secondary alcohol metabolic process
## GO:0001508                                                                                                                                    action potential
## GO:0071887                                                                                                                         leukocyte apoptotic process
## GO:0001841                                                                                                                               neural tube formation
## GO:0030177                                                                                                        positive regulation of Wnt signaling pathway
## GO:0016999                                                                                                                        antibiotic metabolic process
## GO:1901655                                                                                                                         cellular response to ketone
## GO:0050906                                                                                                detection of stimulus involved in sensory perception
## GO:0009855                                                                                                                 determination of bilateral symmetry
## GO:0001837                                                                                                                epithelial to mesenchymal transition
## GO:1901568                                                                                                             fatty acid derivative metabolic process
## GO:0061025                                                                                                                                     membrane fusion
## GO:0034763                                                                                                      negative regulation of transmembrane transport
## GO:0018210                                                                                                                     peptidyl-threonine modification
## GO:0046928                                                                                                            regulation of neurotransmitter secretion
## GO:0007034                                                                                                                                  vacuolar transport
## GO:0055123                                                                                                                        digestive system development
## GO:0006633                                                                                                                     fatty acid biosynthetic process
## GO:0002698                                                                                                      negative regulation of immune effector process
## GO:0051928                                                                                                        positive regulation of calcium ion transport
## GO:0035194                                                                                                           posttranscriptional gene silencing by RNA
## GO:1904375                                                                                                regulation of protein localization to cell periphery
## GO:0009799                                                                                                                           specification of symmetry
## GO:0006261                                                                                                                       DNA-dependent DNA replication
## GO:0071453                                                                                                                  cellular response to oxygen levels
## GO:0051168                                                                                                                                      nuclear export
## GO:0070646                                                                                                       protein modification by small protein removal
## GO:0035023                                                                                                       regulation of Rho protein signal transduction
## GO:0045598                                                                                                              regulation of fat cell differentiation
## GO:0072331                                                                                                           signal transduction by p53 class mediator
## GO:0016125                                                                                                                            sterol metabolic process
## GO:0097553                                                                                                       calcium ion transmembrane import into cytosol
## GO:0043624                                                                                                                cellular protein complex disassembly
## GO:0097306                                                                                                                        cellular response to alcohol
## GO:0042471                                                                                                                                   ear morphogenesis
## GO:0035270                                                                                                                        endocrine system development
## GO:0017148                                                                                                                  negative regulation of translation
## GO:0050905                                                                                                                               neuromuscular process
## GO:0009166                                                                                                                        nucleotide catabolic process
## GO:2001056                                                                                         positive regulation of cysteine-type endopeptidase activity
## GO:0009791                                                                                                                          post-embryonic development
## GO:0017158                                                                                                      regulation of calcium ion-dependent exocytosis
## GO:0006754                                                                                                                            ATP biosynthetic process
## GO:0002456                                                                                                                            T cell mediated immunity
## GO:0048593                                                                                                                       camera-type eye morphogenesis
## GO:0034728                                                                                                                             nucleosome organization
## GO:0002221                                                                                                      pattern recognition receptor signaling pathway
## GO:0016441                                                                                                                  posttranscriptional gene silencing
## GO:0009411                                                                                                                                      response to UV
## GO:0034341                                                                                                                        response to interferon-gamma
## GO:0009451                                                                                                                                    RNA modification
## GO:0007050                                                                                                                                   cell cycle arrest
## GO:0030010                                                                                                                      establishment of cell polarity
## GO:0016571                                                                                                                                 histone methylation
## GO:0016079                                                                                                                         synaptic vesicle exocytosis
## GO:0048706                                                                                                               embryonic skeletal system development
## GO:0016573                                                                                                                                 histone acetylation
## GO:0002758                                                                                               innate immune response-activating signal transduction
## GO:0015698                                                                                                                           inorganic anion transport
## GO:0030216                                                                                                                        keratinocyte differentiation
## GO:0043484                                                                                                                          regulation of RNA splicing
## GO:0007338                                                                                                                                single fertilization
## GO:0071333                                                                                                               cellular response to glucose stimulus
## GO:0002824    positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0050921                                                                                                                   positive regulation of chemotaxis
## GO:0072089                                                                                                                             stem cell proliferation
## GO:0046165                                                                                                                        alcohol biosynthetic process
## GO:0006338                                                                                                                                chromatin remodeling
## GO:0045017                                                                                                                   glycerolipid biosynthetic process
## GO:0001909                                                                                                                     leukocyte mediated cytotoxicity
## GO:0055088                                                                                                                                   lipid homeostasis
## GO:0035637                                                                                                                  multicellular organismal signaling
## GO:0061041                                                                                                                         regulation of wound healing
## GO:0016052                                                                                                                      carbohydrate catabolic process
## GO:0071331                                                                                                                cellular response to hexose stimulus
## GO:0106106                                                                                                                          cold-induced thermogenesis
## GO:0034101                                                                                                                             erythrocyte homeostasis
## GO:0050680                                                                                                negative regulation of epithelial cell proliferation
## GO:0050729                                                                                                        positive regulation of inflammatory response
## GO:0120161                                                                                                            regulation of cold-induced thermogenesis
## GO:0045667                                                                                                            regulation of osteoblast differentiation
## GO:0055007                                                                                                                 cardiac muscle cell differentiation
## GO:0071326                                                                                                        cellular response to monosaccharide stimulus
## GO:0009267                                                                                                                     cellular response to starvation
## GO:0035113                                                                                                                   embryonic appendage morphogenesis
## GO:0030326                                                                                                                        embryonic limb morphogenesis
## GO:0001935                                                                                                                      endothelial cell proliferation
## GO:0072073                                                                                                                       kidney epithelium development
## GO:0090288                                                                                  negative regulation of cellular response to growth factor stimulus
## GO:1901991                                                                                          negative regulation of mitotic cell cycle phase transition
## GO:0031333                                                                                                     negative regulation of protein complex assembly
## GO:0046330                                                                                                                  positive regulation of JNK cascade
## GO:0010634                                                                                                    positive regulation of epithelial cell migration
## GO:0019233                                                                                                                          sensory perception of pain
## GO:0007224                                                                                                                        smoothened signaling pathway
## GO:0006333                                                                                                                   chromatin assembly or disassembly
## GO:0002065                                                                                                   columnar/cuboidal epithelial cell differentiation
## GO:0018393                                                                                                                internal peptidyl-lysine acetylation
## GO:0007613                                                                                                                                              memory
## GO:0034250                                                                                             positive regulation of cellular amide metabolic process
## GO:0002687                                                                                                          positive regulation of leukocyte migration
## GO:0002708                                                                                                 positive regulation of lymphocyte mediated immunity
## GO:0050684                                                                                                                       regulation of mRNA processing
## GO:0098693                                                                                                                regulation of synaptic vesicle cycle
## GO:0045216                                                                                                                     cell-cell junction organization
## GO:0007292                                                                                                                            female gamete generation
## GO:0031099                                                                                                                                        regeneration
## GO:1905952                                                                                                                    regulation of lipid localization
## GO:1903900                                                                                                                      regulation of viral life cycle
## GO:0097530                                                                                                                               granulocyte migration
## GO:0000070                                                                                                                mitotic sister chromatid segregation
## GO:2001251                                                                                                      negative regulation of chromosome organization
## GO:0072006                                                                                                                                 nephron development
## GO:0008643                                                                                                                              carbohydrate transport
## GO:0016482                                                                                                                                 cytosolic transport
## GO:0046660                                                                                                                          female sex differentiation
## GO:0006475                                                                                                             internal protein amino acid acetylation
## GO:1902904                                                                                            negative regulation of supramolecular fiber organization
## GO:0042133                                                                                                                  neurotransmitter metabolic process
## GO:0002821                                                                                                     positive regulation of adaptive immune response
## GO:0009206                                                                                             purine ribonucleoside triphosphate biosynthetic process
## GO:0030856                                                                                                       regulation of epithelial cell differentiation
## GO:0050658                                                                                                                                       RNA transport
## GO:0003206                                                                                                                       cardiac chamber morphogenesis
## GO:0003231                                                                                                                       cardiac ventricle development
## GO:0055067                                                                                                             monovalent inorganic cation homeostasis
## GO:0050657                                                                                                                              nucleic acid transport
## GO:1901292                                                                                                              nucleoside phosphate catabolic process
## GO:0009145                                                                                                 purine nucleoside triphosphate biosynthetic process
## GO:0002700                                                                                   regulation of production of molecular mediator of immune response
## GO:0030183                                                                                                                              B cell differentiation
## GO:0001824                                                                                                                              blastocyst development
## GO:0050728                                                                                                        negative regulation of inflammatory response
## GO:0006865                                                                                                                                amino acid transport
## GO:0071322                                                                                                          cellular response to carbohydrate stimulus
## GO:0034614                                                                                                        cellular response to reactive oxygen species
## GO:0022612                                                                                                                                 gland morphogenesis
## GO:0015718                                                                                                                       monocarboxylic acid transport
## GO:0050715                                                                                                           positive regulation of cytokine secretion
## GO:0045580                                                                                                                regulation of T cell differentiation
## GO:0014013                                                                                                                           regulation of gliogenesis
## GO:0009201                                                                                                    ribonucleoside triphosphate biosynthetic process
## GO:0051236                                                                                                                   establishment of RNA localization
## GO:0030178                                                                                                        negative regulation of Wnt signaling pathway
## GO:0006910                                                                                                                           phagocytosis, recognition
## GO:0006606                                                                                                                         protein import into nucleus
## GO:0042737                                                                                                                              drug catabolic process
## GO:0051250                                                                                                        negative regulation of lymphocyte activation
## GO:0050709                                                                                                            negative regulation of protein secretion
## GO:0010675                                                                                               regulation of cellular carbohydrate metabolic process
## GO:0051053                                                                                                        negative regulation of DNA metabolic process
## GO:0010950                                                                                                       positive regulation of endopeptidase activity
## GO:0006457                                                                                                                                     protein folding
## GO:0031056                                                                                                                  regulation of histone modification
## GO:0032675                                                                                                              regulation of interleukin-6 production
## GO:0071248                                                                                                                      cellular response to metal ion
## GO:0071478                                                                                                                      cellular response to radiation
## GO:0001838                                                                                                                 embryonic epithelial tube formation
## GO:0006937                                                                                                                    regulation of muscle contraction
## GO:0007569                                                                                                                                          cell aging
## GO:0051170                                                                                                                                 import into nucleus
## GO:0051494                                                                                                    negative regulation of cytoskeleton organization
## GO:0018394                                                                                                                         peptidyl-lysine acetylation
## GO:0062013                                                                                             positive regulation of small molecule metabolic process
## GO:0051896                                                                                                            regulation of protein kinase B signaling
## GO:1990845                                                                                                                              adaptive thermogenesis
## GO:0007596                                                                                                                                   blood coagulation
## GO:0071383                                                                                                       cellular response to steroid hormone stimulus
## GO:0034249                                                                                             negative regulation of cellular amide metabolic process
## GO:0051302                                                                                                                         regulation of cell division
## GO:0006694                                                                                                                        steroid biosynthetic process
## GO:0060402                                                                                                                  calcium ion transport into cytosol
## GO:0071466                                                                                                            cellular response to xenobiotic stimulus
## GO:0000910                                                                                                                                         cytokinesis
## GO:0048015                                                                                                             phosphatidylinositol-mediated signaling
## GO:0045834                                                                                                      positive regulation of lipid metabolic process
## GO:0033135                                                                                                       regulation of peptidyl-serine phosphorylation
## GO:0002244                                                                                                       hematopoietic progenitor cell differentiation
## GO:0007599                                                                                                                                          hemostasis
## GO:0009755                                                                                                                  hormone-mediated signaling pathway
## GO:0050777                                                                                                              negative regulation of immune response
## GO:0046496                                                                                                           nicotinamide nucleotide metabolic process
## GO:0021543                                                                                                                                 pallium development
## GO:0008654                                                                                                                   phospholipid biosynthetic process
## GO:0009127                                                                                                purine nucleoside monophosphate biosynthetic process
## GO:0009168                                                                                            purine ribonucleoside monophosphate biosynthetic process
## GO:0006941                                                                                                                         striated muscle contraction
## GO:0007601                                                                                                                                   visual perception
## GO:0001678                                                                                                                        cellular glucose homeostasis
## GO:0050817                                                                                                                                         coagulation
## GO:0099111                                                                                                                         microtubule-based transport
## GO:0042552                                                                                                                                         myelination
## GO:0030833                                                                                                         regulation of actin filament polymerization
## GO:0010970                                                                                                                         transport along microtubule
## GO:0031214                                                                                                                       biomineral tissue development
## GO:0007565                                                                                                                                    female pregnancy
## GO:0048017                                                                                                                   inositol lipid-mediated signaling
## GO:0035821                                                                                          modification of morphology or physiology of other organism
## GO:1901988                                                                                                  negative regulation of cell cycle phase transition
## GO:0009142                                                                                                        nucleoside triphosphate biosynthetic process
## GO:0051291                                                                                                                       protein heterooligomerization
## GO:0019362                                                                                                               pyridine nucleotide metabolic process
## GO:1903169                                                                                                   regulation of calcium ion transmembrane transport
## GO:0072175                                                                                                                           epithelial tube formation
## GO:2001236                                                                                                 regulation of extrinsic apoptotic signaling pathway
## GO:0051147                                                                                                           regulation of muscle cell differentiation
## GO:0008366                                                                                                                                   axon ensheathment
## GO:0071356                                                                                                          cellular response to tumor necrosis factor
## GO:0007272                                                                                                                             ensheathment of neurons
## GO:0031047                                                                                                                               gene silencing by RNA
## GO:0032635                                                                                                                            interleukin-6 production
## GO:0002792                                                                                                            negative regulation of peptide secretion
## GO:0010952                                                                                                           positive regulation of peptidase activity
## GO:0009156                                                                                                   ribonucleoside monophosphate biosynthetic process
## GO:0050953                                                                                                                sensory perception of light stimulus
## GO:0007033                                                                                                                                vacuole organization
## GO:0045333                                                                                                                                cellular respiration
## GO:0030879                                                                                                                           mammary gland development
## GO:1904064                                                                                               positive regulation of cation transmembrane transport
## GO:0007088                                                                                                              regulation of mitotic nuclear division
## GO:0009266                                                                                                                    response to temperature stimulus
## GO:0060041                                                                                                               retina development in camera-type eye
## GO:0002218                                                                                                                activation of innate immune response
## GO:0030902                                                                                                                               hindbrain development
## GO:0006643                                                                                                                    membrane lipid metabolic process
## GO:0032680                                                                                                      regulation of tumor necrosis factor production
## GO:0051017                                                                                                                      actin filament bundle assembly
## GO:0006958                                                                                                            complement activation, classical pathway
## GO:0072524                                                                                                      pyridine-containing compound metabolic process
## GO:0043122                                                                                                   regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0046425                                                                                                                      regulation of JAK-STAT cascade
## GO:0007051                                                                                                                                spindle organization
## GO:0019827                                                                                                                    stem cell population maintenance
## GO:0007179                                                                                          transforming growth factor beta receptor signaling pathway
## GO:0045931                                                                                                           positive regulation of mitotic cell cycle
## GO:1903555                                                                                 regulation of tumor necrosis factor superfamily cytokine production
## GO:0042594                                                                                                                              response to starvation
## GO:0071897                                                                                                                            DNA biosynthetic process
## GO:0035303                                                                                                                     regulation of dephosphorylation
## GO:0006399                                                                                                                              tRNA metabolic process
## GO:0032640                                                                                                                    tumor necrosis factor production
## GO:0030509                                                                                                                               BMP signaling pathway
## GO:0061572                                                                                                                  actin filament bundle organization
## GO:0097164                                                                                                                      ammonium ion metabolic process
## GO:0009124                                                                                                       nucleoside monophosphate biosynthetic process
## GO:2001257                                                                                                               regulation of cation channel activity
## GO:0006323                                                                                                                                       DNA packaging
## GO:0098727                                                                                                                          maintenance of cell number
## GO:0050821                                                                                                                               protein stabilization
## GO:2001242                                                                                                 regulation of intrinsic apoptotic signaling pathway
## GO:0097237                                                                                                                cellular response to toxic substance
## GO:0060401                                                                                                                     cytosolic calcium ion transport
## GO:0007369                                                                                                                                        gastrulation
## GO:0001890                                                                                                                                placenta development
## GO:1904892                                                                                                                          regulation of STAT cascade
## GO:0042129                                                                                                                  regulation of T cell proliferation
## GO:0046890                                                                                                            regulation of lipid biosynthetic process
## GO:0071706                                                                                               tumor necrosis factor superfamily cytokine production
## GO:0000082                                                                                                               G1/S transition of mitotic cell cycle
## GO:0030705                                                                                                      cytoskeleton-dependent intracellular transport
## GO:0007612                                                                                                                                            learning
## GO:0043409                                                                                                                 negative regulation of MAPK cascade
## GO:0043271                                                                                                                negative regulation of ion transport
## GO:0032874                                                                                                positive regulation of stress-activated MAPK cascade
## GO:0006403                                                                                                                                    RNA localization
## GO:0071230                                                                                                            cellular response to amino acid stimulus
## GO:0034404                                                                                           nucleobase-containing small molecule biosynthetic process
## GO:0070304                                                                            positive regulation of stress-activated protein kinase signaling cascade
## GO:0065004                                                                                                                        protein-DNA complex assembly
## GO:2000241                                                                                                                  regulation of reproductive process
## GO:1901654                                                                                                                                  response to ketone
## GO:0051100                                                                                                                      negative regulation of binding
## GO:0031644                                                                                                           regulation of neurological system process
## GO:0030041                                                                                                                       actin filament polymerization
## GO:0006575                                                                                                      cellular modified amino acid metabolic process
## GO:0035107                                                                                                                             appendage morphogenesis
## GO:0017156                                                                                                                    calcium ion regulated exocytosis
## GO:0035108                                                                                                                                  limb morphogenesis
## GO:0045807                                                                                                                  positive regulation of endocytosis
## GO:0043902                                                                                                       positive regulation of multi-organism process
## GO:0097480                                                                                                      establishment of synaptic vesicle localization
## GO:0048592                                                                                                                                   eye morphogenesis
## GO:0002262                                                                                                                            myeloid cell homeostasis
## GO:0002705                                                                                                  positive regulation of leukocyte mediated immunity
## GO:0008213                                                                                                                                  protein alkylation
## GO:0006479                                                                                                                                 protein methylation
## GO:0008064                                                                                              regulation of actin polymerization or depolymerization
## GO:0016202                                                                                                    regulation of striated muscle tissue development
## GO:0009612                                                                                                                     response to mechanical stimulus
## GO:0048489                                                                                                                          synaptic vesicle transport
## GO:0035148                                                                                                                                      tube formation
## GO:0007219                                                                                                                             Notch signaling pathway
## GO:0006733                                                                                                           oxidoreduction coenzyme metabolic process
## GO:0008016                                                                                                                     regulation of heart contraction
## GO:0000075                                                                                                                               cell cycle checkpoint
## GO:0048813                                                                                                                              dendrite morphogenesis
## GO:0010951                                                                                                       negative regulation of endopeptidase activity
## GO:0043524                                                                                                     negative regulation of neuron apoptotic process
## GO:0051588                                                                                                            regulation of neurotransmitter transport
## GO:0019933                                                                                                                             cAMP-mediated signaling
## GO:0001906                                                                                                                                        cell killing
## GO:0071773                                                                                                                   cellular response to BMP stimulus
## GO:0140013                                                                                                                            meiotic nuclear division
## GO:0006839                                                                                                                             mitochondrial transport
## GO:0034767                                                                                                  positive regulation of ion transmembrane transport
## GO:0030832                                                                                                                 regulation of actin filament length
## GO:1901861                                                                                                             regulation of muscle tissue development
## GO:1903034                                                                                                                  regulation of response to wounding
## GO:0071772                                                                                                                                     response to BMP
## GO:0034612                                                                                                                   response to tumor necrosis factor
## GO:0001659                                                                                                                             temperature homeostasis
## GO:0002455                                                                                      humoral immune response mediated by circulating immunoglobulin
## GO:0048634                                                                                                              regulation of muscle organ development
## GO:0000819                                                                                                                        sister chromatid segregation
## GO:0098656                                                                                                                       anion transmembrane transport
## GO:0015931                                                                                                            nucleobase-containing compound transport
## GO:0009749                                                                                                                                 response to glucose
## GO:0007259                                                                                                                                    JAK-STAT cascade
## GO:0035051                                                                                                                          cardiocyte differentiation
## GO:0016331                                                                                                               morphogenesis of embryonic epithelium
## GO:0002695                                                                                                         negative regulation of leukocyte activation
## GO:2001252                                                                                                      positive regulation of chromosome organization
## GO:0045619                                                                                                            regulation of lymphocyte differentiation
## GO:0120032                                                                                      regulation of plasma membrane bounded cell projection assembly
## GO:0061351                                                                                                                 neural precursor cell proliferation
## GO:0051262                                                                                                                             protein tetramerization
## GO:0050792                                                                                                                         regulation of viral process
## GO:0048754                                                                                                       branching morphogenesis of an epithelial tube
## GO:0060491                                                                                                              regulation of cell projection assembly
## GO:0009746                                                                                                                                  response to hexose
## GO:0044843                                                                                                                    cell cycle G1/S phase transition
## GO:0009566                                                                                                                                       fertilization
## GO:0051668                                                                                                                        localization within membrane
## GO:0001764                                                                                                                                    neuron migration
## GO:0007269                                                                                                                          neurotransmitter secretion
## GO:0045766                                                                                                                 positive regulation of angiogenesis
## GO:0010770                                                                               positive regulation of cell morphogenesis involved in differentiation
## GO:0043200                                                                                                                              response to amino acid
## GO:0034284                                                                                                                          response to monosaccharide
## GO:0043491                                                                                                                          protein kinase B signaling
## GO:0006109                                                                                                        regulation of carbohydrate metabolic process
## GO:1905475                                                                                                      regulation of protein localization to membrane
## GO:1903305                                                                                                           regulation of regulated secretory pathway
## GO:0099643                                                                                                                         signal release from synapse
## GO:0097696                                                                                                                                        STAT cascade
## GO:0030534                                                                                                                                      adult behavior
## GO:0006956                                                                                                                               complement activation
## GO:0022408                                                                                                           negative regulation of cell-cell adhesion
## GO:0050870                                                                                                            positive regulation of T cell activation
## GO:0006473                                                                                                                                 protein acetylation
## GO:0097479                                                                                                                       synaptic vesicle localization
## GO:0046328                                                                                                                           regulation of JNK cascade
## GO:0006911                                                                                                                            phagocytosis, engulfment
## GO:0002822             regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0071695                                                                                                                     anatomical structure maturation
## GO:0044706                                                                                                                multi-multicellular organism process
## GO:0071804                                                                                                                    cellular potassium ion transport
## GO:0021915                                                                                                                             neural tube development
## GO:0071805                                                                                                               potassium ion transmembrane transport
## GO:0050773                                                                                                                  regulation of dendrite development
## GO:0007249                                                                                                                 I-kappaB kinase/NF-kappaB signaling
## GO:1901605                                                                                                                  alpha-amino acid metabolic process
## GO:0032869                                                                                                               cellular response to insulin stimulus
## GO:0055002                                                                                                                    striated muscle cell development
## GO:0016051                                                                                                                   carbohydrate biosynthetic process
## GO:0031669                                                                                                                cellular response to nutrient levels
## GO:0009108                                                                                                                       coenzyme biosynthetic process
## GO:0006006                                                                                                                           glucose metabolic process
## GO:0016236                                                                                                                                      macroautophagy
## GO:0099173                                                                                                                            postsynapse organization
## GO:0000209                                                                                                                          protein polyubiquitination
## GO:0007266                                                                                                                     Rho protein signal transduction
## GO:0003205                                                                                                                         cardiac chamber development
## GO:0042180                                                                                                                   cellular ketone metabolic process
## GO:0050731                                                                                            positive regulation of peptidyl-tyrosine phosphorylation
## GO:1902905                                                                                            positive regulation of supramolecular fiber organization
## GO:0002706                                                                                                          regulation of lymphocyte mediated immunity
## GO:0051783                                                                                                                      regulation of nuclear division
## GO:1902275                                                                                                                regulation of chromatin organization
## GO:0007519                                                                                                                  skeletal muscle tissue development
## GO:0048469                                                                                                                                     cell maturation
## GO:1903046                                                                                                                          meiotic cell cycle process
## GO:0099024                                                                                                                        plasma membrane invagination
## GO:0006364                                                                                                                                     rRNA processing
## GO:0043903                                                                                  regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009743                                                                                                                            response to carbohydrate
## GO:0044242                                                                                                                    cellular lipid catabolic process
## GO:0071236                                                                                                                     cellular response to antibiotic
## GO:0030522                                                                                                            intracellular receptor signaling pathway
## GO:0001649                                                                                                                          osteoblast differentiation
## GO:0050679                                                                                                positive regulation of epithelial cell proliferation
## GO:0072376                                                                                                                          protein activation cascade
## GO:0070507                                                                                                 regulation of microtubule cytoskeleton organization
## GO:0019058                                                                                                                                    viral life cycle
## GO:0032388                                                                                                      positive regulation of intracellular transport
## GO:0008217                                                                                                                        regulation of blood pressure
## GO:2000377                                                                                             regulation of reactive oxygen species metabolic process
## GO:0008154                                                                                                            actin polymerization or depolymerization
## GO:0048736                                                                                                                               appendage development
## GO:0060173                                                                                                                                    limb development
## GO:0043281                                                                    regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0002685                                                                                                                   regulation of leukocyte migration
## GO:0000302                                                                                                                 response to reactive oxygen species
## GO:0098742                                                                                           cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0050866                                                                                                              negative regulation of cell activation
## GO:1903039                                                                                                 positive regulation of leukocyte cell-cell adhesion
## GO:0031032                                                                                                                   actomyosin structure organization
## GO:0007188                                                                           adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0007160                                                                                                                                cell-matrix adhesion
## GO:0071560                                                                                       cellular response to transforming growth factor beta stimulus
## GO:0016197                                                                                                                                 endosomal transport
## GO:1904018                                                                                                      positive regulation of vasculature development
## GO:0042098                                                                                                                                T cell proliferation
## GO:0010324                                                                                                                               membrane invagination
## GO:0051099                                                                                                                      positive regulation of binding
## GO:0043112                                                                                                                          receptor metabolic process
## GO:0002819                                                                                                              regulation of adaptive immune response
## GO:0034329                                                                                                                              cell junction assembly
## GO:1902115                                                                                                                    regulation of organelle assembly
## GO:0060538                                                                                                                   skeletal muscle organ development
## GO:0015893                                                                                                                                      drug transport
## GO:0006402                                                                                                                              mRNA catabolic process
## GO:0055001                                                                                                                             muscle cell development
## GO:0097529                                                                                                                         myeloid leukocyte migration
## GO:0007623                                                                                                                                    circadian rhythm
## GO:0071559                                                                                                         response to transforming growth factor beta
## GO:0019722                                                                                                                          calcium-mediated signaling
## GO:0017038                                                                                                                                      protein import
## GO:2000027                                                                                                            regulation of animal organ morphogenesis
## GO:2001020                                                                                                       regulation of response to DNA damage stimulus
## GO:0097305                                                                                                                                 response to alcohol
## GO:0071103                                                                                                                             DNA conformation change
## GO:0019935                                                                                                                cyclic-nucleotide-mediated signaling
## GO:0046434                                                                                                                   organophosphate catabolic process
## GO:0051216                                                                                                                               cartilage development
## GO:0060047                                                                                                                                   heart contraction
## GO:0048839                                                                                                                               inner ear development
## GO:0030595                                                                                                                                leukocyte chemotaxis
## GO:0010810                                                                                                               regulation of cell-substrate adhesion
## GO:0006814                                                                                                                                sodium ion transport
## GO:0035264                                                                                                                       multicellular organism growth
## GO:0032984                                                                                                              protein-containing complex disassembly
## GO:0046395                                                                                                                   carboxylic acid catabolic process
## GO:0009913                                                                                                                      epidermal cell differentiation
## GO:0016054                                                                                                                      organic acid catabolic process
## GO:0050707                                                                                                                    regulation of cytokine secretion
## GO:0048639                                                                                                         positive regulation of developmental growth
## GO:0002274                                                                                                                        myeloid leukocyte activation
## GO:0035265                                                                                                                                        organ growth
## GO:0071824                                                                                                            protein-DNA complex subunit organization
## GO:0032271                                                                                                                regulation of protein polymerization
## GO:0007163                                                                                                       establishment or maintenance of cell polarity
## GO:0048545                                                                                                                         response to steroid hormone
## GO:0043547                                                                                                              positive regulation of GTPase activity
## GO:0042445                                                                                                                           hormone metabolic process
## GO:0030258                                                                                                                                  lipid modification
## GO:0070374                                                                                                        positive regulation of ERK1 and ERK2 cascade
## GO:0051495                                                                                                    positive regulation of cytoskeleton organization
## GO:0007286                                                                                                                               spermatid development
## GO:0030324                                                                                                                                    lung development
## GO:0006302                                                                                                                          double-strand break repair
## GO:0031348                                                                                                             negative regulation of defense response
## GO:0043406                                                                                                          positive regulation of MAP kinase activity
## GO:0003015                                                                                                                                       heart process
## GO:0061138                                                                                                             morphogenesis of a branching epithelium
## GO:0006898                                                                                                                       receptor-mediated endocytosis
## GO:0030323                                                                                                                        respiratory tube development
## GO:0031668                                                                                                         cellular response to extracellular stimulus
## GO:0090150                                                                                                   establishment of protein localization to membrane
## GO:0019318                                                                                                                            hexose metabolic process
## GO:0009152                                                                                                          purine ribonucleotide biosynthetic process
## GO:0022618                                                                                                                  ribonucleoprotein complex assembly
## GO:0099504                                                                                                                              synaptic vesicle cycle
## GO:0060828                                                                                                       regulation of canonical Wnt signaling pathway
## GO:0071241                                                                                                            cellular response to inorganic substance
## GO:0021953                                                                                                       central nervous system neuron differentiation
## GO:0006650                                                                                                               glycerophospholipid metabolic process
## GO:0032868                                                                                                                                 response to insulin
## GO:0010948                                                                                                           negative regulation of cell cycle process
## GO:2000116                                                                                                  regulation of cysteine-type endopeptidase activity
## GO:0051607                                                                                                                           defense response to virus
## GO:0048515                                                                                                                           spermatid differentiation
## GO:0051606                                                                                                                               detection of stimulus
## GO:0046578                                                                                                       regulation of Ras protein signal transduction
## GO:0097191                                                                                                               extrinsic apoptotic signaling pathway
## GO:1901617                                                                                                       organic hydroxy compound biosynthetic process
## GO:0016072                                                                                                                              rRNA metabolic process
## GO:0009952                                                                                                            anterior/posterior pattern specification
## GO:0060348                                                                                                                                    bone development
## GO:2001234                                                                                                  negative regulation of apoptotic signaling pathway
## GO:0043543                                                                                                                                   protein acylation
## GO:1903531                                                                                                            negative regulation of secretion by cell
## GO:0045089                                                                                                       positive regulation of innate immune response
## GO:0032872                                                                                                         regulation of stress-activated MAPK cascade
## GO:0009410                                                                                                                     response to xenobiotic stimulus
## GO:0009260                                                                                                                 ribonucleotide biosynthetic process
## GO:0007187                                                         G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0045930                                                                                                           negative regulation of mitotic cell cycle
## GO:0034764                                                                                                      positive regulation of transmembrane transport
## GO:0030278                                                                                                                          regulation of ossification
## GO:0090092                                                              regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0006813                                                                                                                             potassium ion transport
## GO:0070302                                                                                     regulation of stress-activated protein kinase signaling cascade
## GO:0032886                                                                                                             regulation of microtubule-based process
## GO:0071826                                                                                                      ribonucleoprotein complex subunit organization
## GO:0006401                                                                                                                               RNA catabolic process
## GO:0045444                                                                                                                            fat cell differentiation
## GO:0006470                                                                                                                           protein dephosphorylation
## GO:0010001                                                                                                                          glial cell differentiation
## GO:0015850                                                                                                                  organic hydroxy compound transport
## GO:0016485                                                                                                                                  protein processing
## GO:0090257                                                                                                                 regulation of muscle system process
## GO:0046390                                                                                                               ribose phosphate biosynthetic process
## GO:0001763                                                                                                              morphogenesis of a branching structure
## GO:0046777                                                                                                                         protein autophosphorylation
## GO:0006164                                                                                                              purine nucleotide biosynthetic process
## GO:0043393                                                                                                                       regulation of protein binding
## GO:0043583                                                                                                                                     ear development
## GO:0010466                                                                                                           negative regulation of peptidase activity
## GO:0022409                                                                                                           positive regulation of cell-cell adhesion
## GO:0006260                                                                                                                                     DNA replication
## GO:0071375                                                                                                       cellular response to peptide hormone stimulus
## GO:0050663                                                                                                                                  cytokine secretion
## GO:1901215                                                                                                                 negative regulation of neuron death
## GO:0051091                                                                                    positive regulation of DNA-binding transcription factor activity
## GO:0017157                                                                                                                            regulation of exocytosis
## GO:0060291                                                                                                                     long-term synaptic potentiation
## GO:0051054                                                                                                        positive regulation of DNA metabolic process
## GO:0072522                                                                                                     purine-containing compound biosynthetic process
## GO:0099003                                                                                                               vesicle-mediated transport in synapse
## GO:0046034                                                                                                                               ATP metabolic process
## GO:0007568                                                                                                                                               aging
## GO:0002064                                                                                                                         epithelial cell development
## GO:0010506                                                                                                                             regulation of autophagy
## GO:0032147                                                                                                               activation of protein kinase activity
## GO:0090068                                                                                                           positive regulation of cell cycle process
## GO:0031503                                                                                                             protein-containing complex localization
## GO:0021537                                                                                                                           telencephalon development
## GO:0002703                                                                                                           regulation of leukocyte mediated immunity
## GO:0051188                                                                                                                       cofactor biosynthetic process
## GO:0060541                                                                                                                      respiratory system development
## GO:0002377                                                                                                                           immunoglobulin production
## GO:0005996                                                                                                                    monosaccharide metabolic process
## GO:1903311                                                                                                                regulation of mRNA metabolic process
## GO:0015980                                                                                                 energy derivation by oxidation of organic compounds
## GO:0007626                                                                                                                                 locomotory behavior
## GO:0032412                                                                                                regulation of ion transmembrane transporter activity
## GO:0034330                                                                                                                          cell junction organization
## GO:0110053                                                                                                           regulation of actin filament organization
## GO:0000375                                                                                                     RNA splicing, via transesterification reactions
## GO:0000377                                                                RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398                                                                                                                      mRNA splicing, via spliceosome
## GO:0006605                                                                                                                                   protein targeting
## GO:0045055                                                                                                                                regulated exocytosis
## GO:0140014                                                                                                                            mitotic nuclear division
## GO:0051650                                                                                                               establishment of vesicle localization
## GO:0098813                                                                                                                      nuclear chromosome segregation
## GO:0016064                                                                                                             immunoglobulin mediated immune response
## GO:0001818                                                                                                          negative regulation of cytokine production
## GO:0002699                                                                                                      positive regulation of immune effector process
## GO:1901990                                                                                                   regulation of mitotic cell cycle phase transition
## GO:0051056                                                                                             regulation of small GTPase mediated signal transduction
## GO:0016050                                                                                                                                vesicle organization
## GO:0048738                                                                                                                   cardiac muscle tissue development
## GO:0016458                                                                                                                                      gene silencing
## GO:0006520                                                                                                               cellular amino acid metabolic process
## GO:0051048                                                                                                                    negative regulation of secretion
## GO:0022898                                                                                                    regulation of transmembrane transporter activity
## GO:0048705                                                                                                                       skeletal system morphogenesis
## GO:0019724                                                                                                                            B cell mediated immunity
## GO:0048193                                                                                                                             Golgi vesicle transport
## GO:0050730                                                                                                     regulation of peptidyl-tyrosine phosphorylation
## GO:0072330                                                                                                            monocarboxylic acid biosynthetic process
## GO:0043523                                                                                                              regulation of neuron apoptotic process
## GO:0042593                                                                                                                                 glucose homeostasis
## GO:0033500                                                                                                                            carbohydrate homeostasis
## GO:0007605                                                                                                                         sensory perception of sound
## GO:0008037                                                                                                                                    cell recognition
## GO:0034599                                                                                                               cellular response to oxidative stress
## GO:0010038                                                                                                                               response to metal ion
## GO:0009615                                                                                                                                   response to virus
## GO:0030198                                                                                                                   extracellular matrix organization
## GO:0090287                                                                                           regulation of cellular response to growth factor stimulus
## GO:0034504                                                                                                                     protein localization to nucleus
## GO:0009167                                                                                               purine ribonucleoside monophosphate metabolic process
## GO:0009205                                                                                                purine ribonucleoside triphosphate metabolic process
## GO:0051924                                                                                                                 regulation of calcium ion transport
## GO:0032409                                                                                                                  regulation of transporter activity
## GO:0009126                                                                                                   purine nucleoside monophosphate metabolic process
## GO:0051258                                                                                                                              protein polymerization
## GO:0007018                                                                                                                          microtubule-based movement
## GO:0031647                                                                                                                     regulation of protein stability
## GO:0009161                                                                                                      ribonucleoside monophosphate metabolic process
## GO:0009199                                                                                                       ribonucleoside triphosphate metabolic process
## GO:0051648                                                                                                                                vesicle localization
## GO:0071229                                                                                                                  cellular response to acid chemical
## GO:0060070                                                                                                                     canonical Wnt signaling pathway
## GO:0071902                                                                                     positive regulation of protein serine/threonine kinase activity
## GO:0072659                                                                                                             protein localization to plasma membrane
## GO:0006310                                                                                                                                   DNA recombination
## GO:0070588                                                                                                                 calcium ion transmembrane transport
## GO:0003007                                                                                                                                 heart morphogenesis
## GO:0001822                                                                                                                                  kidney development
## GO:0009144                                                                                                    purine nucleoside triphosphate metabolic process
## GO:0016032                                                                                                                                       viral process
## GO:0045165                                                                                                                                cell fate commitment
## GO:0044262                                                                                                             cellular carbohydrate metabolic process
## GO:0007162                                                                                                                negative regulation of cell adhesion
## GO:0040029                                                                                                           regulation of gene expression, epigenetic
## GO:0071496                                                                                                              cellular response to external stimulus
## GO:0061448                                                                                                                       connective tissue development
## GO:0009123                                                                                                          nucleoside monophosphate metabolic process
## GO:0009165                                                                                                                     nucleotide biosynthetic process
## GO:0043414                                                                                                                           macromolecule methylation
## GO:1901653                                                                                                                        cellular response to peptide
## GO:1903037                                                                                                          regulation of leukocyte cell-cell adhesion
## GO:0072593                                                                                                           reactive oxygen species metabolic process
## GO:0051169                                                                                                                                   nuclear transport
## GO:0006913                                                                                                                         nucleocytoplasmic transport
## GO:0045088                                                                                                                regulation of innate immune response
## GO:1901987                                                                                                           regulation of cell cycle phase transition
## GO:0009416                                                                                                                          response to light stimulus
## GO:1901293                                                                                                           nucleoside phosphate biosynthetic process
## GO:0048511                                                                                                                                    rhythmic process
## GO:0071214                                                                                                               cellular response to abiotic stimulus
## GO:0104004                                                                                                         cellular response to environmental stimulus
## GO:0097193                                                                                                               intrinsic apoptotic signaling pathway
## GO:0007611                                                                                                                                  learning or memory
## GO:0030111                                                                                                                 regulation of Wnt signaling pathway
## GO:0051402                                                                                                                            neuron apoptotic process
## GO:0030100                                                                                                                           regulation of endocytosis
## GO:0043588                                                                                                                                    skin development
## GO:0016358                                                                                                                                dendrite development
## GO:0042254                                                                                                                                 ribosome biogenesis
## GO:0043087                                                                                                                       regulation of GTPase activity
## GO:0050954                                                                                                           sensory perception of mechanical stimulus
## GO:0006836                                                                                                                          neurotransmitter transport
## GO:1903829                                                                                                positive regulation of cellular protein localization
## GO:0009141                                                                                                           nucleoside triphosphate metabolic process
## GO:0060326                                                                                                                                     cell chemotaxis
## GO:0060271                                                                                                                                     cilium assembly
## GO:0051604                                                                                                                                  protein maturation
## GO:0046942                                                                                                                           carboxylic acid transport
## GO:0090596                                                                                                                         sensory organ morphogenesis
## GO:0008202                                                                                                                           steroid metabolic process
## GO:0015849                                                                                                                              organic acid transport
## GO:0072001                                                                                                                            renal system development
## GO:0050863                                                                                                                     regulation of T cell activation
## GO:0046677                                                                                                                              response to antibiotic
## GO:0016042                                                                                                                             lipid catabolic process
## GO:0070372                                                                                                                 regulation of ERK1 and ERK2 cascade
## GO:1990830                                                                                                     cellular response to leukemia inhibitory factor
## GO:1990823                                                                                                              response to leukemia inhibitory factor
## GO:0044282                                                                                                                    small molecule catabolic process
## GO:0032103                                                                                                positive regulation of response to external stimulus
## GO:0006066                                                                                                                           alcohol metabolic process
## GO:0051321                                                                                                                                  meiotic cell cycle
## GO:0043062                                                                                                                extracellular structure organization
## GO:0051146                                                                                                                striated muscle cell differentiation
## GO:0007059                                                                                                                              chromosome segregation
## GO:0021700                                                                                                                            developmental maturation
## GO:0048562                                                                                                                       embryonic organ morphogenesis
## GO:0018105                                                                                                                     peptidyl-serine phosphorylation
## GO:0007159                                                                                                                        leukocyte cell-cell adhesion
## GO:0018108                                                                                                                   peptidyl-tyrosine phosphorylation
## GO:0051235                                                                                                                             maintenance of location
## GO:0018212                                                                                                                      peptidyl-tyrosine modification
## GO:0043270                                                                                                                positive regulation of ion transport
## GO:0070371                                                                                                                               ERK1 and ERK2 cascade
## GO:0042063                                                                                                                                         gliogenesis
## GO:0043434                                                                                                                         response to peptide hormone
## GO:0046486                                                                                                                      glycerolipid metabolic process
## GO:0050890                                                                                                                                           cognition
## GO:0044782                                                                                                                                 cilium organization
## GO:0008544                                                                                                                               epidermis development
## GO:0006869                                                                                                                                     lipid transport
## GO:0006732                                                                                                                          coenzyme metabolic process
## GO:0006417                                                                                                                           regulation of translation
## GO:0006909                                                                                                                                        phagocytosis
## GO:0052548                                                                                                                regulation of endopeptidase activity
## GO:0032259                                                                                                                                         methylation
## GO:0019216                                                                                                               regulation of lipid metabolic process
## GO:0031589                                                                                                                             cell-substrate adhesion
## GO:0007281                                                                                                                               germ cell development
## GO:0050900                                                                                                                                 leukocyte migration
## GO:0019221                                                                                                                 cytokine-mediated signaling pathway
## GO:0050878                                                                                                                     regulation of body fluid levels
## GO:0034470                                                                                                                                    ncRNA processing
## GO:0018209                                                                                                                        peptidyl-serine modification
## GO:0044403                                                                                                                                    symbiont process
## GO:1990778                                                                                                              protein localization to cell periphery
## GO:0032956                                                                                                       regulation of actin cytoskeleton organization
## GO:0009636                                                                                                                         response to toxic substance
## GO:0018205                                                                                                                        peptidyl-lysine modification
## GO:0002440                                                                                                 production of molecular mediator of immune response
## GO:0001655                                                                                                                       urogenital system development
## GO:0043010                                                                                                                         camera-type eye development
## GO:0006644                                                                                                                      phospholipid metabolic process
## GO:1902903                                                                                                     regulation of supramolecular fiber organization
## GO:0045787                                                                                                                   positive regulation of cell cycle
## GO:1904062                                                                                                        regulation of cation transmembrane transport
## GO:0050806                                                                                                        positive regulation of synaptic transmission
## GO:0050727                                                                                                                 regulation of inflammatory response
## GO:0006959                                                                                                                             humoral immune response
## GO:0044772                                                                                                                 mitotic cell cycle phase transition
## GO:0033044                                                                                                               regulation of chromosome organization
## GO:0022411                                                                                                                      cellular component disassembly
## GO:0007178                                                                            transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0050678                                                                                                         regulation of epithelial cell proliferation
## GO:0062012                                                                                                      regulation of small molecule metabolic process
## GO:0042060                                                                                                                                       wound healing
## GO:0046394                                                                                                                carboxylic acid biosynthetic process
## GO:0010976                                                                                                positive regulation of neuron projection development
## GO:0016053                                                                                                                   organic acid biosynthetic process
## GO:0008380                                                                                                                                        RNA splicing
## GO:0001101                                                                                                                           response to acid chemical
## GO:0016311                                                                                                                                   dephosphorylation
## GO:1901214                                                                                                                          regulation of neuron death
## GO:0010876                                                                                                                                  lipid localization
## GO:0031349                                                                                                             positive regulation of defense response
## GO:0031667                                                                                                                         response to nutrient levels
## GO:0001505                                                                                                               regulation of neurotransmitter levels
## GO:0003002                                                                                                                                     regionalization
## GO:0072594                                                                                                  establishment of protein localization to organelle
## GO:0006887                                                                                                                                          exocytosis
## GO:0006631                                                                                                                        fatty acid metabolic process
## GO:0006091                                                                                                      generation of precursor metabolites and energy
## GO:0035690                                                                                                                           cellular response to drug
## GO:0060562                                                                                                                       epithelial tube morphogenesis
## GO:0001503                                                                                                                                        ossification
## GO:0034248                                                                                                      regulation of cellular amide metabolic process
## GO:0010256                                                                                                                    endomembrane system organization
## GO:1901652                                                                                                                                 response to peptide
## GO:0006914                                                                                                                                           autophagy
## GO:0030900                                                                                                                               forebrain development
## GO:0061919                                                                                                              process utilizing autophagic mechanism
## GO:0032970                                                                                                          regulation of actin filament-based process
## GO:0044770                                                                                                                         cell cycle phase transition
## GO:0042692                                                                                                                         muscle cell differentiation
## GO:0022407                                                                                                                    regulation of cell-cell adhesion
## GO:0009314                                                                                                                               response to radiation
## GO:0001654                                                                                                                                     eye development
## GO:0007015                                                                                                                         actin filament organization
## GO:0150063                                                                                                                           visual system development
## GO:0009991                                                                                                                  response to extracellular stimulus
## GO:0051346                                                                                                           negative regulation of hydrolase activity
## GO:0010639                                                                                                       negative regulation of organelle organization
## GO:0051098                                                                                                                               regulation of binding
## GO:0048880                                                                                                                          sensory system development
## GO:0070997                                                                                                                                        neuron death
## GO:0044419                                                                                                          interspecies interaction between organisms
## GO:0000280                                                                                                                                    nuclear division
## GO:0045785                                                                                                                positive regulation of cell adhesion
## GO:0052547                                                                                                                    regulation of peptidase activity
## GO:0007265                                                                                                                     Ras protein signal transduction
## GO:0015711                                                                                                                             organic anion transport
## GO:0002697                                                                                                               regulation of immune effector process
## GO:0010959                                                                                                                   regulation of metal ion transport
## GO:0006816                                                                                                                               calcium ion transport
## GO:0009150                                                                                                             purine ribonucleotide metabolic process
## GO:0007517                                                                                                                            muscle organ development
## GO:0050673                                                                                                                       epithelial cell proliferation
## GO:0002449                                                                                                                        lymphocyte mediated immunity
## GO:0034655                                                                                                    nucleobase-containing compound catabolic process
## GO:0016570                                                                                                                                histone modification
## GO:0019932                                                                                                                 second-messenger-mediated signaling
## GO:0016055                                                                                                                               Wnt signaling pathway
## GO:0042742                                                                                                                       defense response to bacterium
## GO:0198738                                                                                                                          cell-cell signaling by wnt
## GO:0009259                                                                                                                    ribonucleotide metabolic process
## GO:0022412                                                                                 cellular process involved in reproduction in multicellular organism
## GO:0045860                                                                                                      positive regulation of protein kinase activity
## GO:0042391                                                                                                                    regulation of membrane potential
## GO:0022613                                                                                                                ribonucleoprotein complex biogenesis
## GO:0051052                                                                                                                 regulation of DNA metabolic process
## GO:0016569                                                                                                                     covalent chromatin modification
## GO:0006163                                                                                                                 purine nucleotide metabolic process
## GO:0006397                                                                                                                                     mRNA processing
## GO:0001819                                                                                                          positive regulation of cytokine production
## GO:0014706                                                                                                                  striated muscle tissue development
## GO:0019693                                                                                                                  ribose phosphate metabolic process
## GO:0045786                                                                                                                   negative regulation of cell cycle
## GO:0015672                                                                                                               monovalent inorganic cation transport
## GO:0048285                                                                                                                                   organelle fission
## GO:0045666                                                                                                       positive regulation of neuron differentiation
## GO:0044270                                                                                                        cellular nitrogen compound catabolic process
## GO:0006281                                                                                                                                          DNA repair
## GO:0031346                                                                                                 positive regulation of cell projection organization
## GO:0048732                                                                                                                                   gland development
## GO:0034660                                                                                                                             ncRNA metabolic process
## GO:0007389                                                                                                                       pattern specification process
## GO:0046700                                                                                                                       heterocycle catabolic process
## GO:0070838                                                                                                                        divalent metal ion transport
## GO:0060537                                                                                                                           muscle tissue development
## GO:0051656                                                                                                             establishment of organelle localization
## GO:0072511                                                                                                                 divalent inorganic cation transport
## GO:0033674                                                                                                              positive regulation of kinase activity
## GO:0034765                                                                                                           regulation of ion transmembrane transport
## GO:1901615                                                                                                          organic hydroxy compound metabolic process
## GO:0071407                                                                                                        cellular response to organic cyclic compound
## GO:0019439                                                                                                                 aromatic compound catabolic process
## GO:0007264                                                                                                           small GTPase mediated signal transduction
## GO:0120031                                                                                                    plasma membrane bounded cell projection assembly
## GO:0072521                                                                                                        purine-containing compound metabolic process
## GO:0048568                                                                                                                         embryonic organ development
## GO:0007346                                                                                                                    regulation of mitotic cell cycle
## GO:0010035                                                                                                                     response to inorganic substance
## GO:0009611                                                                                                                                response to wounding
## GO:0030031                                                                                                                            cell projection assembly
## GO:0090407                                                                                                                organophosphate biosynthetic process
## GO:0010608                                                                                                   posttranscriptional regulation of gene expression
## GO:0002443                                                                                                                         leukocyte mediated immunity
## GO:0051186                                                                                                                          cofactor metabolic process
## GO:0051345                                                                                                           positive regulation of hydrolase activity
## GO:1901361                                                                                                           organic cyclic compound catabolic process
## GO:0032870                                                                                                               cellular response to hormone stimulus
## GO:0043410                                                                                                                 positive regulation of MAPK cascade
## GO:1905114                                                                             cell surface receptor signaling pathway involved in cell-cell signaling
## GO:1902532                                                                                            negative regulation of intracellular signal transduction
## GO:0001501                                                                                                                         skeletal system development
## GO:0001701                                                                                                                      in utero embryonic development
## GO:0051493                                                                                                             regulation of cytoskeleton organization
## GO:0072657                                                                                                                    protein localization to membrane
## GO:0008610                                                                                                                          lipid biosynthetic process
## GO:0005975                                                                                                                      carbohydrate metabolic process
## GO:0006820                                                                                                                                     anion transport
## GO:0002009                                                                                                                      morphogenesis of an epithelium
## GO:0007169                                                                                    transmembrane receptor protein tyrosine kinase signaling pathway
## GO:0009117                                                                                                                        nucleotide metabolic process
## GO:0006753                                                                                                              nucleoside phosphate metabolic process
## GO:0071417                                                                                                        cellular response to organonitrogen compound
## GO:0000226                                                                                                               microtubule cytoskeleton organization
## GO:0034762                                                                                                               regulation of transmembrane transport
## GO:0060627                                                                                                            regulation of vesicle-mediated transport
## GO:0032787                                                                                                               monocarboxylic acid metabolic process
## GO:0051301                                                                                                                                       cell division
## GO:0050769                                                                                                                 positive regulation of neurogenesis
## GO:0010564                                                                                                                    regulation of cell cycle process
## GO:0051640                                                                                                                              organelle localization
## GO:0071363                                                                                                         cellular response to growth factor stimulus
## GO:0007423                                                                                                                           sensory organ development
## GO:0098662                                                                                                            inorganic cation transmembrane transport
## GO:0006412                                                                                                                                         translation
## GO:0070848                                                                                                                           response to growth factor
## GO:0030855                                                                                                                     epithelial cell differentiation
## GO:0007507                                                                                                                                   heart development
## GO:0055086                                                                                              nucleobase-containing small molecule metabolic process
## GO:1901699                                                                                                              cellular response to nitrogen compound
## GO:0007420                                                                                                                                   brain development
## GO:0043043                                                                                                                        peptide biosynthetic process
## GO:0048598                                                                                                                             embryonic morphogenesis
## GO:0016071                                                                                                                              mRNA metabolic process
## GO:0031347                                                                                                                      regulation of defense response
## GO:1903047                                                                                                                          mitotic cell cycle process
## GO:0044283                                                                                                                 small molecule biosynthetic process
## GO:0098660                                                                                                               inorganic ion transmembrane transport
## GO:0030036                                                                                                                     actin cytoskeleton organization
## GO:0098542                                                                                                                  defense response to other organism
## GO:0048729                                                                                                                                tissue morphogenesis
## GO:0001817                                                                                                                   regulation of cytokine production
## GO:0097435                                                                                                                   supramolecular fiber organization
## GO:0030155                                                                                                                         regulation of cell adhesion
## GO:0060322                                                                                                                                    head development
## GO:0098655                                                                                                                      cation transmembrane transport
## GO:0006954                                                                                                                               inflammatory response
## GO:0061061                                                                                                                        muscle structure development
## GO:0098609                                                                                                                                  cell-cell adhesion
## GO:0017144                                                                                                                              drug metabolic process
## GO:0007610                                                                                                                                            behavior
## GO:0043269                                                                                                                         regulation of ion transport
## GO:0014070                                                                                                                 response to organic cyclic compound
## GO:0006325                                                                                                                              chromatin organization
## GO:0006974                                                                                                            cellular response to DNA damage stimulus
## GO:0043604                                                                                                                          amide biosynthetic process
## GO:0006897                                                                                                                                         endocytosis
## GO:0030029                                                                                                                        actin filament-based process
## GO:0001816                                                                                                                                 cytokine production
## GO:0007017                                                                                                                           microtubule-based process
## GO:0033365                                                                                                                   protein localization to organelle
## GO:0061024                                                                                                                               membrane organization
## GO:0006518                                                                                                                           peptide metabolic process
## GO:0070925                                                                                                                                  organelle assembly
## GO:0000278                                                                                                                                  mitotic cell cycle
## GO:0006396                                                                                                                                      RNA processing
## GO:0043009                                                                                                                      chordate embryonic development
## GO:0030001                                                                                                                                 metal ion transport
## GO:0009792                                                                                                  embryo development ending in birth or egg hatching
## GO:0000122                                                                                           negative regulation of transcription by RNA polymerase II
## GO:0098657                                                                                                                                    import into cell
## GO:0055114                                                                                                                         oxidation-reduction process
## GO:0034220                                                                                                                         ion transmembrane transport
## GO:0007417                                                                                                                  central nervous system development
## GO:0007167                                                                                                    enzyme linked receptor protein signaling pathway
## GO:0019752                                                                                                                   carboxylic acid metabolic process
## GO:0071345                                                                                                              cellular response to cytokine stimulus
## GO:0006259                                                                                                                               DNA metabolic process
## GO:0044255                                                                                                                    cellular lipid metabolic process
## GO:0019637                                                                                                                   organophosphate metabolic process
## GO:0051726                                                                                                                            regulation of cell cycle
## GO:0051336                                                                                                                    regulation of hydrolase activity
## GO:0001934                                                                                                      positive regulation of protein phosphorylation
## GO:0034622                                                                                                        cellular protein-containing complex assembly
## GO:0034097                                                                                                                                response to cytokine
## GO:1902533                                                                                            positive regulation of intracellular signal transduction
## GO:0043603                                                                                                                    cellular amide metabolic process
## GO:0042327                                                                                                              positive regulation of phosphorylation
## GO:0009887                                                                                                                          animal organ morphogenesis
## GO:0006812                                                                                                                                    cation transport
## GO:0051276                                                                                                                             chromosome organization
## GO:0022402                                                                                                                                  cell cycle process
## GO:0045937                                                                                                  positive regulation of phosphate metabolic process
## GO:0010562                                                                                                 positive regulation of phosphorus metabolic process
## GO:0007608                                                                                                                         sensory perception of smell
## GO:0060429                                                                                                                              epithelium development
## GO:0071495                                                                                                            cellular response to endogenous stimulus
## GO:0045944                                                                                           positive regulation of transcription by RNA polymerase II
## GO:0009790                                                                                                                                  embryo development
## GO:0007606                                                                                                             sensory perception of chemical stimulus
## GO:0006629                                                                                                                             lipid metabolic process
## GO:0007155                                                                                                                                       cell adhesion
## GO:0007010                                                                                                                           cytoskeleton organization
## GO:0022610                                                                                                                                 biological adhesion
## GO:0016192                                                                                                                          vesicle-mediated transport
## GO:0006811                                                                                                                                       ion transport
## GO:0007049                                                                                                                                          cell cycle
## GO:0007600                                                                                                                                  sensory perception
## GO:0007186                                                                                                        G protein-coupled receptor signaling pathway
## GO:0006357                                                                                                    regulation of transcription by RNA polymerase II
## GO:0006366                                                                                                                  transcription by RNA polymerase II
## GO:0050877                                                                                                                              nervous system process
##            Ont     N DE         P.DE
## GO:0045659  BP     2  1 0.0007374933
## GO:0045645  BP     2  1 0.0007374933
## GO:1905704  BP     2  1 0.0007374933
## GO:0045643  BP     2  1 0.0007374933
## GO:0002250  BP   583  3 0.0010233787
## GO:1904891  BP     3  1 0.0011060586
## GO:1905702  BP     3  1 0.0011060586
## GO:0045658  BP     3  1 0.0011060586
## GO:0002376  BP  2664  5 0.0013326459
## GO:0010977  BP   175  2 0.0017809118
## GO:0061136  BP   178  2 0.0018416153
## GO:0030222  BP     5  1 0.0018428268
## GO:0006955  BP  1652  4 0.0020004637
## GO:0031345  BP   205  2 0.0024318909
## GO:1903050  BP   208  2 0.0025023278
## GO:0045596  BP   799  3 0.0025335656
## GO:0046649  BP   841  3 0.0029318463
## GO:0031665  BP     8  1 0.0029470734
## GO:1903362  BP   239  2 0.0032862953
## GO:1904153  BP     9  1 0.0033149142
## GO:0030223  BP     9  1 0.0033149142
## GO:0030853  BP    10  1 0.0036826343
## GO:0070862  BP    10  1 0.0036826343
## GO:0030854  BP    10  1 0.0036826343
## GO:0045665  BP   260  2 0.0038748745
## GO:0014824  BP    11  1 0.0040502339
## GO:0030206  BP    11  1 0.0040502339
## GO:1904862  BP    11  1 0.0040502339
## GO:0032464  BP    11  1 0.0040502339
## GO:0009101  BP   278  2 0.0044158195
## GO:1904152  BP    12  1 0.0044177129
## GO:0045321  BP   994  3 0.0047061727
## GO:1904293  BP    13  1 0.0047850714
## GO:0014820  BP    13  1 0.0047850714
## GO:0045651  BP    14  1 0.0051523094
## GO:0051271  BP   316  2 0.0056665908
## GO:0051093  BP  1070  3 0.0057881313
## GO:0045779  BP    16  1 0.0058864240
## GO:0060284  BP  1093  3 0.0061431417
## GO:0001775  BP  1098  3 0.0062220446
## GO:0040013  BP   332  2 0.0062367522
## GO:1904889  BP    17  1 0.0062533007
## GO:0032102  BP   336  2 0.0063832746
## GO:0050768  BP   337  2 0.0064201529
## GO:0009100  BP   338  2 0.0064571303
## GO:0046851  BP    18  1 0.0066200570
## GO:0050650  BP    19  1 0.0069866931
## GO:0030852  BP    19  1 0.0069866931
## GO:0031664  BP    19  1 0.0069866931
## GO:0033194  BP    19  1 0.0069866931
## GO:0048583  BP  3883  5 0.0072940858
## GO:0051961  BP   361  2 0.0073347934
## GO:0018279  BP    20  1 0.0073532088
## GO:0045649  BP    20  1 0.0073532088
## GO:0018196  BP    21  1 0.0077196043
## GO:0042176  BP   378  2 0.0080167051
## GO:0045063  BP    22  1 0.0080858795
## GO:0030204  BP    22  1 0.0080858795
## GO:0014912  BP    22  1 0.0080858795
## GO:0032462  BP    22  1 0.0080858795
## GO:0010721  BP   387  2 0.0083890276
## GO:0032461  BP    23  1 0.0084520346
## GO:0043161  BP   394  2 0.0086839883
## GO:0034104  BP    24  1 0.0088180696
## GO:0051443  BP    25  1 0.0091839844
## GO:0070861  BP    25  1 0.0091839844
## GO:0007165  BP  6028  6 0.0093778364
## GO:1903513  BP    27  1 0.0099154538
## GO:0048843  BP    27  1 0.0099154538
## GO:0030970  BP    27  1 0.0099154538
## GO:0014829  BP    27  1 0.0099154538
## GO:1904861  BP    28  1 0.0102810085
## GO:1902668  BP    28  1 0.0102810085
## GO:0090200  BP    28  1 0.0102810085
## GO:1904292  BP    28  1 0.0102810085
## GO:0001558  BP   431  2 0.0103203583
## GO:0051241  BP  1343  3 0.0108758195
## GO:0050654  BP    30  1 0.0110117580
## GO:0010498  BP   459  2 0.0116438043
## GO:0048841  BP    33  1 0.0121069829
## GO:0060292  BP    35  1 0.0128365338
## GO:0048846  BP    37  1 0.0135656058
## GO:1902284  BP    37  1 0.0135656058
## GO:0030851  BP    38  1 0.0139299623
## GO:0002682  BP  1473  3 0.0140029338
## GO:0032879  BP  2835  4 0.0141375808
## GO:0016049  BP   513  2 0.0143980935
## GO:0030225  BP    40  1 0.0146583163
## GO:0023052  BP  6579  6 0.0147307825
## GO:0002832  BP    41  1 0.0150223140
## GO:0032459  BP    41  1 0.0150223140
## GO:1903573  BP    42  1 0.0153861921
## GO:0007154  BP  6648  6 0.0155373999
## GO:0044089  BP   534  2 0.0155394673
## GO:0006024  BP    43  1 0.0157499508
## GO:0090317  BP    43  1 0.0157499508
## GO:0032527  BP    43  1 0.0157499508
## GO:0050919  BP    44  1 0.0161135899
## GO:0030890  BP    45  1 0.0164771097
## GO:0032814  BP    45  1 0.0164771097
## GO:0071526  BP    45  1 0.0164771097
## GO:0051249  BP   555  2 0.0167193814
## GO:0048585  BP  1576  3 0.0168202928
## GO:0030517  BP    46  1 0.0168405101
## GO:1902667  BP    46  1 0.0168405101
## GO:0090066  BP   561  2 0.0170635053
## GO:0045907  BP    47  1 0.0172037911
## GO:0090199  BP    47  1 0.0172037911
## GO:0002521  BP   567  2 0.0174107204
## GO:0042088  BP    48  1 0.0175669527
## GO:0002762  BP    48  1 0.0175669527
## GO:0051438  BP    48  1 0.0175669527
## GO:0006511  BP   580  2 0.0181735672
## GO:0031663  BP    50  1 0.0182929183
## GO:0045124  BP    50  1 0.0182929183
## GO:0019941  BP   592  2 0.0188904574
## GO:0006023  BP    53  1 0.0193809725
## GO:1901799  BP    53  1 0.0193809725
## GO:0048662  BP    53  1 0.0193809725
## GO:1901137  BP   601  2 0.0194360815
## GO:0043632  BP   602  2 0.0194971254
## GO:0010975  BP   603  2 0.0195582528
## GO:0050922  BP    54  1 0.0197434189
## GO:0030166  BP    55  1 0.0201057463
## GO:1903510  BP    58  1 0.0211920143
## GO:0001755  BP    59  1 0.0215538657
## GO:0050896  BP  9531  7 0.0216979627
## GO:0046850  BP    60  1 0.0219155981
## GO:0001836  BP    60  1 0.0219155981
## GO:0015031  BP  1746  3 0.0221465602
## GO:0002694  BP   652  2 0.0226547477
## GO:0042093  BP    63  1 0.0230000824
## GO:0002294  BP    64  1 0.0233613396
## GO:0002763  BP    64  1 0.0233613396
## GO:0002293  BP    65  1 0.0237224780
## GO:0030968  BP    65  1 0.0237224780
## GO:0006487  BP    65  1 0.0237224780
## GO:0015833  BP  1797  3 0.0239115960
## GO:0002287  BP    66  1 0.0240834977
## GO:0050771  BP    67  1 0.0244443987
## GO:0042886  BP  1817  3 0.0246250431
## GO:0032387  BP    68  1 0.0248051811
## GO:0030888  BP    69  1 0.0251658449
## GO:0050865  BP   693  2 0.0253951403
## GO:0031329  BP   695  2 0.0255322299
## GO:0051603  BP   696  2 0.0256008925
## GO:0002292  BP    71  1 0.0258868168
## GO:1903051  BP    71  1 0.0258868168
## GO:0045184  BP  1856  3 0.0260508689
## GO:0051223  BP   708  2 0.0264309515
## GO:0045453  BP    74  1 0.0269673860
## GO:0010822  BP    74  1 0.0269673860
## GO:0030162  BP   716  2 0.0269905581
## GO:0040008  BP   717  2 0.0270608580
## GO:0030433  BP    75  1 0.0273273389
## GO:0019229  BP    76  1 0.0276871734
## GO:0051965  BP    77  1 0.0280468896
## GO:1905897  BP    77  1 0.0280468896
## GO:0045595  BP  1909  3 0.0280620935
## GO:0002260  BP    78  1 0.0284064874
## GO:0044257  BP   740  2 0.0286990042
## GO:0070201  BP   740  2 0.0286990042
## GO:0006029  BP    79  1 0.0287659670
## GO:0044272  BP    79  1 0.0287659670
## GO:0051240  BP  1929  3 0.0288431340
## GO:0050805  BP    80  1 0.0291253284
## GO:0090087  BP   749  2 0.0293510218
## GO:0043367  BP    81  1 0.0294845716
## GO:0051129  BP   755  2 0.0297891092
## GO:0034620  BP    82  1 0.0298436966
## GO:0032436  BP    82  1 0.0298436966
## GO:0030203  BP    83  1 0.0302027035
## GO:1903363  BP    83  1 0.0302027035
## GO:0034103  BP    84  1 0.0305615923
## GO:0032101  BP   770  2 0.0308961767
## GO:0014032  BP    85  1 0.0309203631
## GO:0014910  BP    85  1 0.0309203631
## GO:0120035  BP   772  2 0.0310450580
## GO:0045664  BP   776  2 0.0313437141
## GO:0031344  BP   781  2 0.0317187057
## GO:0032024  BP    88  1 0.0319959673
## GO:0014031  BP    90  1 0.0327124471
## GO:1903524  BP    90  1 0.0327124471
## GO:0048864  BP    91  1 0.0330705102
## GO:0006950  BP  3640  4 0.0332751579
## GO:0014033  BP    92  1 0.0334284554
## GO:0014909  BP    92  1 0.0334284554
## GO:2000060  BP    93  1 0.0337862829
## GO:0051716  BP  7810  6 0.0347837971
## GO:0009894  BP   821  2 0.0347847408
## GO:0036503  BP    97  1 0.0352164156
## GO:0045638  BP    97  1 0.0352164156
## GO:0010771  BP    99  1 0.0359307761
## GO:0045639  BP    99  1 0.0359307761
## GO:0035710  BP   100  1 0.0362877801
## GO:0006022  BP   101  1 0.0366446664
## GO:0042310  BP   101  1 0.0366446664
## GO:0046849  BP   102  1 0.0370014354
## GO:1902106  BP   102  1 0.0370014354
## GO:0035967  BP   103  1 0.0373580868
## GO:1901800  BP   103  1 0.0373580868
## GO:0071705  BP  2133  3 0.0375041056
## GO:0030101  BP   104  1 0.0377146209
## GO:0014812  BP   106  1 0.0384273368
## GO:0097756  BP   107  1 0.0387835188
## GO:0001776  BP   110  1 0.0398513613
## GO:0006986  BP   110  1 0.0398513613
## GO:2000026  BP  2184  3 0.0398673468
## GO:0008637  BP   111  1 0.0402070743
## GO:0030334  BP   892  2 0.0405086475
## GO:0042100  BP   112  1 0.0405626703
## GO:0046632  BP   112  1 0.0405626703
## GO:0016525  BP   112  1 0.0405626703
## GO:0031398  BP   112  1 0.0405626703
## GO:0030516  BP   112  1 0.0405626703
## GO:0006939  BP   112  1 0.0405626703
## GO:0002286  BP   113  1 0.0409181491
## GO:0030163  BP   898  2 0.0410084203
## GO:2000181  BP   116  1 0.0419838832
## GO:1903828  BP   116  1 0.0419838832
## GO:1903052  BP   116  1 0.0419838832
## GO:0030097  BP   921  2 0.0429468567
## GO:0051963  BP   119  1 0.0430485645
## GO:0008584  BP   120  1 0.0434032245
## GO:0090277  BP   120  1 0.0434032245
## GO:0046546  BP   121  1 0.0437577676
## GO:0051172  BP  2271  3 0.0440814189
## GO:0032434  BP   122  1 0.0441121940
## GO:0051179  BP  5950  5 0.0442437203
## GO:2000145  BP   939  2 0.0444886626
## GO:0050794  BP 10774  7 0.0445826594
## GO:0002761  BP   125  1 0.0451747724
## GO:0044087  BP   948  2 0.0452676230
## GO:0048640  BP   127  1 0.0458825747
## GO:0061387  BP   127  1 0.0458825747
## GO:0050767  BP   956  2 0.0459645033
## GO:1901343  BP   128  1 0.0462363008
## GO:0034645  BP  4022  4 0.0462735597
## GO:0042177  BP   129  1 0.0465899105
## GO:0048534  BP   972  2 0.0473707873
## GO:0035966  BP   133  1 0.0480031838
## GO:1903322  BP   134  1 0.0483562111
## GO:1903364  BP   135  1 0.0487091220
## GO:0050671  BP   136  1 0.0490619165
## GO:0010821  BP   136  1 0.0490619165
## GO:0048675  BP   137  1 0.0494145947
## GO:0032946  BP   138  1 0.0497671567
## GO:0009059  BP  4121  4 0.0500850016
## GO:1901135  BP  1003  2 0.0501423424
## GO:0032269  BP  1003  2 0.0501423424
## GO:0042221  BP  4136  4 0.0506786921
## GO:0044265  BP  1013  2 0.0510494001
## GO:0048468  BP  2406  3 0.0510747983
## GO:0040012  BP  1018  2 0.0515052813
## GO:0070665  BP   145  1 0.0522318377
## GO:0051270  BP  1028  2 0.0524217193
## GO:0002520  BP  1030  2 0.0526057518
## GO:0002831  BP   147  1 0.0529349877
## GO:2000058  BP   148  1 0.0532863888
## GO:0032880  BP  1038  2 0.0533443525
## GO:0031324  BP  2449  3 0.0534177135
## GO:0008360  BP   150  1 0.0539888434
## GO:0046661  BP   152  1 0.0546908346
## GO:0007166  BP  2497  3 0.0560985081
## GO:0051248  BP  1070  2 0.0563378709
## GO:0051960  BP  1071  2 0.0564324164
## GO:0046631  BP   157  1 0.0564437872
## GO:0010594  BP   157  1 0.0564437872
## GO:0002684  BP  1072  2 0.0565270219
## GO:0071702  BP  2505  3 0.0565519984
## GO:1903707  BP   158  1 0.0567940307
## GO:0043433  BP   160  1 0.0574941712
## GO:0031175  BP  1083  2 0.0575716270
## GO:0048660  BP   163  1 0.0585435158
## GO:0046887  BP   164  1 0.0588930665
## GO:0040007  BP  1097  2 0.0589115152
## GO:0043901  BP   165  1 0.0592425018
## GO:0051128  BP  2558  3 0.0596044714
## GO:1902107  BP   168  1 0.0602901158
## GO:0048659  BP   168  1 0.0602901158
## GO:0008104  BP  2578  3 0.0607780028
## GO:0010605  BP  2584  3 0.0611323688
## GO:0097746  BP   173  1 0.0620338350
## GO:0050880  BP   173  1 0.0620338350
## GO:0035296  BP   173  1 0.0620338350
## GO:0035150  BP   174  1 0.0623822335
## GO:1901565  BP  1151  2 0.0641864863
## GO:0007416  BP   180  1 0.0644702099
## GO:0050853  BP   181  1 0.0648178038
## GO:0050789  BP 11520  7 0.0652700873
## GO:2001235  BP   183  1 0.0655126473
## GO:0050796  BP   185  1 0.0662070319
## GO:0002285  BP   193  1 0.0689799860
## GO:1990138  BP   193  1 0.0689799860
## GO:0048771  BP   193  1 0.0689799860
## GO:0030308  BP   194  1 0.0693260901
## GO:0006469  BP   194  1 0.0693260901
## GO:0050793  BP  2721  3 0.0695113067
## GO:0030307  BP   195  1 0.0696720798
## GO:0043413  BP   196  1 0.0700179552
## GO:0006486  BP   196  1 0.0700179552
## GO:0043542  BP   198  1 0.0707093631
## GO:0009057  BP  1218  2 0.0709591038
## GO:0031396  BP   199  1 0.0710548957
## GO:0048666  BP  1222  2 0.0713711580
## GO:0007254  BP   202  1 0.0720908082
## GO:0003018  BP   203  1 0.0724358842
## GO:0051224  BP   204  1 0.0727808460
## GO:0001666  BP   204  1 0.0727808460
## GO:0050770  BP   205  1 0.0731256939
## GO:1903708  BP   208  1 0.0741595534
## GO:1904950  BP   209  1 0.0745039454
## GO:0008361  BP   209  1 0.0745039454
## GO:0070085  BP   210  1 0.0748482235
## GO:0045732  BP   210  1 0.0748482235
## GO:0033157  BP   210  1 0.0748482235
## GO:0048523  BP  4687  4 0.0754874649
## GO:0050920  BP   213  1 0.0758803749
## GO:0008406  BP   214  1 0.0762241978
## GO:0033673  BP   214  1 0.0762241978
## GO:0050871  BP   215  1 0.0765679070
## GO:0045637  BP   215  1 0.0765679070
## GO:0048762  BP   216  1 0.0769115026
## GO:0002573  BP   216  1 0.0769115026
## GO:0009892  BP  2843  3 0.0774306032
## GO:0045137  BP   218  1 0.0775983527
## GO:0048731  BP  4746  4 0.0784931679
## GO:0051130  BP  1290  2 0.0785042761
## GO:0030073  BP   223  1 0.0793134911
## GO:0010632  BP   225  1 0.0799987522
## GO:0050670  BP   225  1 0.0799987522
## GO:0010648  BP  1306  2 0.0802170147
## GO:0023057  BP  1310  2 0.0806471953
## GO:0032944  BP   227  1 0.0806835600
## GO:0090276  BP   228  1 0.0810257940
## GO:0048863  BP   228  1 0.0810257940
## GO:0033036  BP  2901  3 0.0813440899
## GO:1903320  BP   229  1 0.0813679147
## GO:0036293  BP   230  1 0.0817099222
## GO:0001894  BP   232  1 0.0823935976
## GO:0033002  BP   234  1 0.0830768205
## GO:0034976  BP   237  1 0.0841008071
## GO:0070663  BP   238  1 0.0844419100
## GO:1903522  BP   239  1 0.0847829000
## GO:0007411  BP   245  1 0.0868264703
## GO:0065007  BP 12135  7 0.0871504900
## GO:0051348  BP   246  1 0.0871666707
## GO:0097485  BP   246  1 0.0871666707
## GO:0031334  BP   246  1 0.0871666707
## GO:0031330  BP   247  1 0.0875067584
## GO:0044249  BP  4938  4 0.0887432238
## GO:0051403  BP   257  1 0.0909014467
## GO:0045926  BP   258  1 0.0912402973
## GO:0048588  BP   260  1 0.0919176618
## GO:0050864  BP   264  1 0.0932710445
## GO:0010033  BP  3070  3 0.0932808259
## GO:0050807  BP   266  1 0.0939470632
## GO:1901576  BP  5031  4 0.0939651930
## GO:0030336  BP   268  1 0.0946226339
## GO:0030217  BP   269  1 0.0949602513
## GO:0002366  BP   269  1 0.0949602513
## GO:0060560  BP   270  1 0.0952977568
## GO:0016477  BP  1447  2 0.0958421831
## GO:0060485  BP   272  1 0.0959724322
## GO:0006790  BP   272  1 0.0959724322
## GO:0002263  BP   273  1 0.0963096022
## GO:0050803  BP   276  1 0.0973204415
## GO:0030072  BP   278  1 0.0979937758
## GO:0010631  BP   280  1 0.0986666637
## GO:2000146  BP   281  1 0.0990029403
## GO:0071222  BP   282  1 0.0993391053
## GO:0090132  BP   282  1 0.0993391053
## GO:0070482  BP   282  1 0.0993391053
## GO:0009058  BP  5125  4 0.0994129382
## GO:0090130  BP   284  1 0.1000111010
## GO:0030182  BP  1494  2 0.1012507456
## GO:0007548  BP   288  1 0.1013537555
## GO:0006936  BP   289  1 0.1016891407
## GO:0071219  BP   290  1 0.1020244148
## GO:0031098  BP   290  1 0.1020244148
## GO:0009895  BP   294  1 0.1033643988
## GO:1902105  BP   294  1 0.1033643988
## GO:0050851  BP   295  1 0.1036991170
## GO:0043405  BP   295  1 0.1036991170
## GO:0042981  BP  1516  2 0.1038147244
## GO:0120036  BP  1526  2 0.1049868197
## GO:0050714  BP   302  1 0.1060390360
## GO:0046883  BP   302  1 0.1060390360
## GO:0043067  BP  1537  2 0.1062808628
## GO:0051094  BP  1540  2 0.1066346388
## GO:0051239  BP  3248  3 0.1066866738
## GO:0045765  BP   307  1 0.1077070806
## GO:0046651  BP   308  1 0.1080403573
## GO:0045927  BP   308  1 0.1080403573
## GO:0048519  BP  5278  4 0.1086421899
## GO:0032943  BP   310  1 0.1087065789
## GO:0071216  BP   313  1 0.1097050819
## GO:0048872  BP   315  1 0.1103701980
## GO:0030030  BP  1572  2 0.1104307329
## GO:1901700  BP  1589  2 0.1124638619
## GO:0048870  BP  1595  2 0.1131841160
## GO:0051674  BP  1595  2 0.1131841160
## GO:1901566  BP  1599  2 0.1136650554
## GO:0010646  BP  3338  3 0.1137785283
## GO:0007275  BP  5362  4 0.1138984177
## GO:0002429  BP   326  1 0.1140204479
## GO:0007204  BP   327  1 0.1143516277
## GO:0045862  BP   328  1 0.1146826974
## GO:0023051  BP  3360  3 0.1155432712
## GO:0070661  BP   331  1 0.1156752467
## GO:0002793  BP   331  1 0.1156752467
## GO:0002768  BP   338  1 0.1179873495
## GO:0009987  BP 15803  8 0.1180840121
## GO:1901342  BP   341  1 0.1189766047
## GO:0010769  BP   343  1 0.1196355601
## GO:0042127  BP  1649  2 0.1197277897
## GO:0006508  BP  1657  2 0.1207064173
## GO:0048522  BP  5469  4 0.1207860074
## GO:0045861  BP   349  1 0.1216097985
## GO:0048699  BP  1672  2 0.1225475809
## GO:0031331  BP   355  1 0.1235801005
## GO:0010941  BP  1685  2 0.1241497591
## GO:0032496  BP   359  1 0.1248914518
## GO:0048167  BP   361  1 0.1255464731
## GO:0046879  BP   365  1 0.1268552085
## GO:0048513  BP  3504  3 0.1273890183
## GO:0009914  BP   373  1 0.1294674573
## GO:0051480  BP   374  1 0.1297934995
## GO:0002237  BP   377  1 0.1307709747
## GO:0051260  BP   383  1 0.1327229979
## GO:0033554  BP  1763  2 0.1338852491
## GO:0043900  BP   391  1 0.1353196337
## GO:0060249  BP   392  1 0.1356437268
## GO:0003012  BP   392  1 0.1356437268
## GO:0022008  BP  1778  2 0.1357806681
## GO:0051251  BP   394  1 0.1362915891
## GO:0030098  BP   395  1 0.1366153583
## GO:0051090  BP   396  1 0.1369390197
## GO:0032535  BP   397  1 0.1372625732
## GO:0006979  BP   400  1 0.1382325868
## GO:0030099  BP   401  1 0.1385557092
## GO:0048638  BP   401  1 0.1385557092
## GO:0042113  BP   405  1 0.1398471221
## GO:0001667  BP   406  1 0.1401697063
## GO:1903706  BP   407  1 0.1404921830
## GO:0040011  BP  1817  2 0.1407422233
## GO:0001933  BP   408  1 0.1408145522
## GO:2001233  BP   414  1 0.1427465112
## GO:0009896  BP   422  1 0.1453164494
## GO:0010647  BP  1854  2 0.1454926034
## GO:1901575  BP  1857  2 0.1458795636
## GO:0023056  BP  1860  2 0.1462667886
## GO:0071900  BP   427  1 0.1469191809
## GO:0006915  BP  1867  2 0.1471713390
## GO:0048856  BP  5871  4 0.1485413241
## GO:0051222  BP   435  1 0.1494779951
## GO:0042592  BP  1887  2 0.1497635909
## GO:0032386  BP   438  1 0.1504357900
## GO:0002460  BP   441  1 0.1513926261
## GO:0012501  BP  1908  2 0.1524977060
## GO:0002696  BP   446  1 0.1529852244
## GO:0048608  BP   449  1 0.1539395076
## GO:0002757  BP   450  1 0.1542573895
## GO:0043254  BP   451  1 0.1545751653
## GO:0050808  BP   451  1 0.1545751653
## GO:0042326  BP   452  1 0.1548928350
## GO:0061458  BP   453  1 0.1552103985
## GO:1904951  BP   454  1 0.1555278560
## GO:0007005  BP   459  1 0.1571135533
## GO:0051049  BP  1946  2 0.1574761121
## GO:0050867  BP   461  1 0.1577470908
## GO:0002764  BP   463  1 0.1583802049
## GO:0007409  BP   470  1 0.1605927745
## GO:1903532  BP   472  1 0.1612239868
## GO:0006874  BP   473  1 0.1615394348
## GO:0002683  BP   473  1 0.1615394348
## GO:0008283  BP  1994  2 0.1638193194
## GO:0044248  BP  1996  2 0.1640848992
## GO:0008015  BP   484  1 0.1650024085
## GO:0048871  BP   486  1 0.1656306723
## GO:0006928  BP  2014  2 0.1664795991
## GO:0055074  BP   489  1 0.1665722803
## GO:0050708  BP   490  1 0.1668859396
## GO:0042110  BP   491  1 0.1671994940
## GO:0003013  BP   495  1 0.1684526629
## GO:0072503  BP   497  1 0.1690786186
## GO:0048518  BP  6171  4 0.1711085289
## GO:0061564  BP   506  1 0.1718902390
## GO:0008219  BP  2065  2 0.1733071314
## GO:0001525  BP   513  1 0.1740712049
## GO:1903827  BP   520  1 0.1762470636
## GO:0072507  BP   521  1 0.1765574842
## GO:0065008  BP  4051  3 0.1766768279
## GO:0022604  BP   523  1 0.1771780136
## GO:0023061  BP   523  1 0.1771780136
## GO:0032502  BP  6258  4 0.1779348192
## GO:0002253  BP   526  1 0.1781080283
## GO:0051047  BP   527  1 0.1784178255
## GO:0002791  BP   529  1 0.1790371086
## GO:0030335  BP   539  1 0.1821273041
## GO:0051051  BP   540  1 0.1824357542
## GO:0045936  BP   546  1 0.1842842846
## GO:0010563  BP   546  1 0.1842842846
## GO:0051347  BP   551  1 0.1858218876
## GO:0010817  BP   557  1 0.1876636102
## GO:2000147  BP   561  1 0.1888893669
## GO:0007283  BP   561  1 0.1888893669
## GO:0031400  BP   564  1 0.1898076053
## GO:0016567  BP   568  1 0.1910304857
## GO:0030154  BP  4218  3 0.1929285711
## GO:0051272  BP   580  1 0.1946892889
## GO:0048232  BP   581  1 0.1949935241
## GO:0006875  BP   582  1 0.1952976572
## GO:0040017  BP   593  1 0.1986363865
## GO:0010638  BP   595  1 0.1992421035
## GO:0009056  BP  2257  2 0.1995155274
## GO:0044057  BP   596  1 0.1995448094
## GO:0006935  BP   597  1 0.1998474135
## GO:0042330  BP   600  1 0.2007546159
## GO:0097190  BP   605  1 0.2022645883
## GO:0009306  BP   605  1 0.2022645883
## GO:0071396  BP   612  1 0.2043742895
## GO:0048584  BP  2294  2 0.2046466002
## GO:0051259  BP   617  1 0.2058781811
## GO:0032446  BP   620  1 0.2067793027
## GO:0048514  BP   622  1 0.2073795453
## GO:0048667  BP   628  1 0.2091778516
## GO:0007399  BP  2333  2 0.2100795890
## GO:0043065  BP   632  1 0.2103747067
## GO:0006810  BP  4398  3 0.2109902348
## GO:0043068  BP   637  1 0.2118685112
## GO:0030003  BP   641  1 0.2130617456
## GO:0048869  BP  4443  3 0.2155876670
## GO:0051962  BP   651  1 0.2160378092
## GO:0002790  BP   652  1 0.2163348646
## GO:0006873  BP   655  1 0.2172254305
## GO:0051704  BP  2389  2 0.2179218295
## GO:0010720  BP   659  1 0.2184114524
## GO:0050804  BP   661  1 0.2190038641
## GO:0045859  BP   662  1 0.2192999203
## GO:0099177  BP   662  1 0.2192999203
## GO:0055065  BP   664  1 0.2198917333
## GO:0080135  BP   666  1 0.2204831476
## GO:0048812  BP   677  1 0.2237288076
## GO:0071310  BP  2433  2 0.2241149152
## GO:0008285  BP   681  1 0.2249060659
## GO:0043086  BP   682  1 0.2252001324
## GO:0051234  BP  4538  3 0.2253942724
## GO:0120039  BP   691  1 0.2278422715
## GO:0010942  BP   695  1 0.2290139826
## GO:0048858  BP   696  1 0.2293066633
## GO:0009725  BP   697  1 0.2295992452
## GO:0032268  BP  2494  2 0.2327420981
## GO:0032990  BP   718  1 0.2357207026
## GO:0009605  BP  2515  2 0.2357223378
## GO:0001568  BP   719  1 0.2360111190
## GO:0007276  BP   719  1 0.2360111190
## GO:0043549  BP   728  1 0.2386204562
## GO:0055080  BP   732  1 0.2397776166
## GO:0043408  BP   737  1 0.2412218686
## GO:0070647  BP   741  1 0.2423755137
## GO:0098771  BP   746  1 0.2438153774
## GO:0050778  BP   747  1 0.2441030581
## GO:0001944  BP   752  1 0.2455400027
## GO:0072358  BP   765  1 0.2492647017
## GO:0044260  BP  7099  4 0.2497935211
## GO:0048589  BP   787  1 0.2555308148
## GO:0003006  BP   791  1 0.2566650998
## GO:0000165  BP   793  1 0.2572316660
## GO:0051246  BP  2687  2 0.2602960592
## GO:0000904  BP   804  1 0.2603409244
## GO:0055082  BP   810  1 0.2620320025
## GO:0023014  BP   810  1 0.2620320025
## GO:0050801  BP   812  1 0.2625949310
## GO:0033993  BP   822  1 0.2654038520
## GO:1903530  BP   831  1 0.2679237449
## GO:0051338  BP   832  1 0.2682032581
## GO:0045087  BP   842  1 0.2709931776
## GO:0009966  BP  2780  2 0.2736784903
## GO:0006355  BP  2784  2 0.2742552057
## GO:0098916  BP   856  1 0.2748831808
## GO:0007268  BP   856  1 0.2748831808
## GO:1903506  BP  2792  2 0.2754088803
## GO:0048609  BP   858  1 0.2754373866
## GO:2001141  BP  2801  2 0.2767071419
## GO:0099537  BP   865  1 0.2773741433
## GO:0022607  BP  2807  2 0.2775728646
## GO:0032504  BP   869  1 0.2784787941
## GO:0099536  BP   874  1 0.2798574967
## GO:0002252  BP   879  1 0.2812338570
## GO:0006886  BP   882  1 0.2820585503
## GO:0010243  BP   883  1 0.2823332611
## GO:0019953  BP   883  1 0.2823332611
## GO:0042493  BP   894  1 0.2853489192
## GO:0051171  BP  5104  3 0.2862335941
## GO:0006351  BP  2875  2 0.2873950061
## GO:0050776  BP   903  1 0.2878078921
## GO:0035239  BP   905  1 0.2883533081
## GO:0097659  BP  2883  2 0.2885516690
## GO:0009617  BP   907  1 0.2888983528
## GO:0051046  BP   911  1 0.2899873291
## GO:0032774  BP  2896  2 0.2904316680
## GO:0043066  BP   921  1 0.2927032873
## GO:0019725  BP   930  1 0.2951397497
## GO:0043069  BP   939  1 0.2975687489
## GO:0043436  BP   941  1 0.2981075150
## GO:0080090  BP  5248  3 0.3022389750
## GO:0060341  BP   958  1 0.3026722168
## GO:0006082  BP   968  1 0.3053449917
## GO:0008284  BP   972  1 0.3064115492
## GO:0070887  BP  3023  2 0.3088168814
## GO:1901698  BP   982  1 0.3090715776
## GO:0044085  BP  3041  2 0.3114241730
## GO:0051252  BP  3049  2 0.3125829928
## GO:0019538  BP  5344  3 0.3129983579
## GO:0051173  BP  3061  2 0.3143212228
## GO:0044092  BP  1006  1 0.3154186834
## GO:0031323  BP  5401  3 0.3194164190
## GO:0044703  BP  1028  1 0.3211912786
## GO:0009628  BP  1030  1 0.3217139081
## GO:0060548  BP  1049  1 0.3266610787
## GO:0043085  BP  1051  1 0.3271799630
## GO:0060255  BP  5486  3 0.3290238300
## GO:0032940  BP  1070  1 0.3320916656
## GO:0022603  BP  1076  1 0.3336360939
## GO:0031325  BP  3201  2 0.3345906925
## GO:0051050  BP  1081  1 0.3349206917
## GO:0010604  BP  3212  2 0.3361817552
## GO:2000112  BP  3219  2 0.3371940779
## GO:0045597  BP  1097  1 0.3390166254
## GO:0000902  BP  1100  1 0.3397821118
## GO:0035295  BP  1122  1 0.3453716431
## GO:0018193  BP  1137  1 0.3491585302
## GO:0034654  BP  3310  2 0.3503395215
## GO:0010556  BP  3311  2 0.3504838009
## GO:0072359  BP  1143  1 0.3506678244
## GO:0048646  BP  1157  1 0.3541774185
## GO:0019219  BP  3352  2 0.3563953695
## GO:0051707  BP  1172  1 0.3579189775
## GO:0043207  BP  1174  1 0.3584163934
## GO:0009968  BP  1175  1 0.3586649729
## GO:0045892  BP  1177  1 0.3591618750
## GO:0018130  BP  3374  2 0.3595640812
## GO:0032501  BP  8233  4 0.3596454252
## GO:1903507  BP  1181  1 0.3601546527
## GO:0048878  BP  1182  1 0.3604026334
## GO:1902679  BP  1182  1 0.3604026334
## GO:0019438  BP  3386  2 0.3612914074
## GO:1901701  BP  1206  1 0.3663285997
## GO:0009607  BP  1208  1 0.3668202201
## GO:0031401  BP  1210  1 0.3673115014
## GO:0032989  BP  1211  1 0.3675570150
## GO:0006464  BP  3453  2 0.3709205684
## GO:0036211  BP  3453  2 0.3709205684
## GO:0046903  BP  1227  1 0.3714737320
## GO:0031326  BP  3470  2 0.3733593934
## GO:0033043  BP  1242  1 0.3751260568
## GO:0009893  BP  3486  2 0.3756530092
## GO:1901362  BP  3510  2 0.3790901270
## GO:0055085  BP  1266  1 0.3809305470
## GO:0051253  BP  1269  1 0.3816527278
## GO:0019222  BP  5953  3 0.3823522112
## GO:0009889  BP  3542  2 0.3836664867
## GO:0043170  BP  8488  4 0.3856492068
## GO:0043412  BP  3634  2 0.3967786339
## GO:0016043  BP  6083  3 0.3972832471
## GO:0080134  BP  1337  1 0.3978225830
## GO:2000113  BP  1379  1 0.4076210361
## GO:0045934  BP  1395  1 0.4113163358
## GO:0009719  BP  1409  1 0.4145328996
## GO:1901564  BP  6234  3 0.4146281623
## GO:0016070  BP  3761  2 0.4147548705
## GO:0001932  BP  1410  1 0.4147620552
## GO:0010558  BP  1414  1 0.4156778805
## GO:0071840  BP  6266  3 0.4183016774
## GO:0044093  BP  1429  1 0.4191008904
## GO:0031327  BP  1471  1 0.4285906909
## GO:0022414  BP  1471  1 0.4285906909
## GO:0010468  BP  3860  2 0.4286536648
## GO:0000003  BP  1472  1 0.4288149489
## GO:0006807  BP  8923  4 0.4305580696
## GO:0046907  BP  1502  1 0.4355064147
## GO:0009967  BP  1504  1 0.4359500246
## GO:0009890  BP  1509  1 0.4370576939
## GO:0032270  BP  1532  1 0.4421281088
## GO:0042325  BP  1533  1 0.4423476378
## GO:0045893  BP  1536  1 0.4430057641
## GO:1903508  BP  1540  1 0.4438821917
## GO:1902680  BP  1541  1 0.4441011070
## GO:0044271  BP  3993  2 0.4471477529
## GO:0007267  BP  1596  1 0.4560241256
## GO:0006952  BP  1601  1 0.4570966799
## GO:0051254  BP  1638  1 0.4649753364
## GO:0051247  BP  1639  1 0.4651868551
## GO:0034613  BP  1676  1 0.4729609802
## GO:0070727  BP  1686  1 0.4750447764
## GO:0019220  BP  1692  1 0.4762915358
## GO:0051174  BP  1693  1 0.4764990729
## GO:0044237  BP  9374  4 0.4773873828
## GO:1902531  BP  1710  1 0.4800160372
## GO:0065003  BP  1729  1 0.4839218946
## GO:0044238  BP  9443  4 0.4845418595
## GO:0090304  BP  4277  2 0.4858541012
## GO:0044281  BP  1753  1 0.4888183210
## GO:0031399  BP  1760  1 0.4902386450
## GO:0010629  BP  1783  1 0.4948807583
## GO:0010557  BP  1799  1 0.4980878540
## GO:0050790  BP  1807  1 0.4996846039
## GO:0006468  BP  1815  1 0.5012768369
## GO:0045935  BP  1833  1 0.5048429038
## GO:0031328  BP  1903  1 0.5184964615
## GO:0051649  BP  1906  1 0.5190740603
## GO:0044267  BP  4569  2 0.5243654384
## GO:0009891  BP  1943  1 0.5261473110
## GO:0043933  BP  1956  1 0.5286104637
## GO:0009888  BP  1956  1 0.5286104637
## GO:0010628  BP  1981  1 0.5333153288
## GO:0071704  BP 10008  4 0.5426510420
## GO:0006139  BP  4813  2 0.5554197242
## GO:0010467  BP  4814  2 0.5555447560
## GO:0016310  BP  2166  1 0.5668539441
## GO:0046483  BP  4940  2 0.5711474814
## GO:0006725  BP  5012  2 0.5799264353
## GO:0008152  BP 10485  4 0.5905501168
## GO:1901360  BP  5208  2 0.6033064750
## GO:0065009  BP  2477  1 0.6184307993
## GO:0051641  BP  2592  1 0.6360723413
## GO:0008150  BP 23210  9 0.6368752117
## GO:0035556  BP  2608  1 0.6384684547
## GO:0034641  BP  5547  2 0.6418963990
## GO:0009653  BP  2744  1 0.6582760297
## GO:0006796  BP  2933  1 0.6842001818
## GO:0003008  BP  2939  1 0.6849937221
## GO:0006793  BP  2955  1 0.6871011713
## GO:0006996  BP  3568  1 0.7589856957
## GO:0044205  BP     1  0 1.0000000000
## GO:0070060  BP     1  0 1.0000000000
## GO:0006653  BP     1  0 1.0000000000
## GO:0046360  BP     1  0 1.0000000000
## GO:0019606  BP     1  0 1.0000000000
## GO:0046963  BP     1  0 1.0000000000
## GO:0006666  BP     1  0 1.0000000000
## GO:0019470  BP     1  0 1.0000000000
## GO:0042791  BP     1  0 1.0000000000
## GO:0036261  BP     1  0 1.0000000000
## GO:0034463  BP     1  0 1.0000000000
## GO:0046032  BP     1  0 1.0000000000
## GO:0006196  BP     1  0 1.0000000000
## GO:0044209  BP     1  0 1.0000000000
## GO:0080121  BP     1  0 1.0000000000
## GO:0086072  BP     1  0 1.0000000000
## GO:0097323  BP     1  0 1.0000000000
## GO:0035769  BP     1  0 1.0000000000
## GO:0002368  BP     1  0 1.0000000000
## GO:1990117  BP     1  0 1.0000000000
## GO:0002336  BP     1  0 1.0000000000
## GO:0060803  BP     1  0 1.0000000000
## GO:0071893  BP     1  0 1.0000000000
## GO:0061151  BP     1  0 1.0000000000
## GO:0021919  BP     1  0 1.0000000000
## GO:0061149  BP     1  0 1.0000000000
## GO:0038118  BP     1  0 1.0000000000
## GO:0038159  BP     1  0 1.0000000000
## GO:0018166  BP     1  0 1.0000000000
## GO:0008208  BP     1  0 1.0000000000
## GO:0035724  BP     1  0 1.0000000000
## GO:0045222  BP     1  0 1.0000000000
## GO:0002298  BP     1  0 1.0000000000
## GO:0043375  BP     1  0 1.0000000000
## GO:0002300  BP     1  0 1.0000000000
## GO:0035780  BP     1  0 1.0000000000
## GO:0046705  BP     1  0 1.0000000000
## GO:0046704  BP     1  0 1.0000000000
## GO:0061508  BP     1  0 1.0000000000
## GO:0006657  BP     1  0 1.0000000000
## GO:0016024  BP     1  0 1.0000000000
## GO:0009224  BP     1  0 1.0000000000
## GO:0046035  BP     1  0 1.0000000000
## GO:0061566  BP     1  0 1.0000000000
## GO:0006238  BP     1  0 1.0000000000
## GO:0006055  BP     1  0 1.0000000000
## GO:0015782  BP     1  0 1.0000000000
## GO:0038160  BP     1  0 1.0000000000
## GO:0021870  BP     1  0 1.0000000000
## GO:0055130  BP     1  0 1.0000000000
## GO:0046144  BP     1  0 1.0000000000
## GO:0046436  BP     1  0 1.0000000000
## GO:0042941  BP     1  0 1.0000000000
## GO:0046437  BP     1  0 1.0000000000
## GO:0042840  BP     1  0 1.0000000000
## GO:0042839  BP     1  0 1.0000000000
## GO:0019303  BP     1  0 1.0000000000
## GO:0070179  BP     1  0 1.0000000000
## GO:0036088  BP     1  0 1.0000000000
## GO:0042843  BP     1  0 1.0000000000
## GO:1904155  BP     1  0 1.0000000000
## GO:1904156  BP     1  0 1.0000000000
## GO:0098503  BP     1  0 1.0000000000
## GO:0098504  BP     1  0 1.0000000000
## GO:0098502  BP     1  0 1.0000000000
## GO:0051102  BP     1  0 1.0000000000
## GO:0032775  BP     1  0 1.0000000000
## GO:0006274  BP     1  0 1.0000000000
## GO:1902296  BP     1  0 1.0000000000
## GO:1902983  BP     1  0 1.0000000000
## GO:1902319  BP     1  0 1.0000000000
## GO:0001112  BP     1  0 1.0000000000
## GO:0001173  BP     1  0 1.0000000000
## GO:0039695  BP     1  0 1.0000000000
## GO:0106101  BP     1  0 1.0000000000
## GO:0032581  BP     1  0 1.0000000000
## GO:0038133  BP     1  0 1.0000000000
## GO:0038130  BP     1  0 1.0000000000
## GO:0006747  BP     1  0 1.0000000000
## GO:0046443  BP     1  0 1.0000000000
## GO:0009398  BP     1  0 1.0000000000
## GO:0046444  BP     1  0 1.0000000000
## GO:0002542  BP     1  0 1.0000000000
## GO:0002774  BP     1  0 1.0000000000
## GO:0035589  BP     1  0 1.0000000000
## GO:0051318  BP     1  0 1.0000000000
## GO:0021858  BP     1  0 1.0000000000
## GO:0046711  BP     1  0 1.0000000000
## GO:0046712  BP     1  0 1.0000000000
## GO:0061568  BP     1  0 1.0000000000
## GO:0042352  BP     1  0 1.0000000000
## GO:0036085  BP     1  0 1.0000000000
## GO:0015783  BP     1  0 1.0000000000
## GO:0032263  BP     1  0 1.0000000000
## GO:0006507  BP     1  0 1.0000000000
## GO:0032468  BP     1  0 1.0000000000
## GO:0070846  BP     1  0 1.0000000000
## GO:0071612  BP     1  0 1.0000000000
## GO:0006193  BP     1  0 1.0000000000
## GO:0019481  BP     1  0 1.0000000000
## GO:0019449  BP     1  0 1.0000000000
## GO:1903185  BP     1  0 1.0000000000
## GO:1903184  BP     1  0 1.0000000000
## GO:1903803  BP     1  0 1.0000000000
## GO:0089709  BP     1  0 1.0000000000
## GO:1903801  BP     1  0 1.0000000000
## GO:0019474  BP     1  0 1.0000000000
## GO:0033514  BP     1  0 1.0000000000
## GO:0046491  BP     1  0 1.0000000000
## GO:0097640  BP     1  0 1.0000000000
## GO:1904556  BP     1  0 1.0000000000
## GO:0051160  BP     1  0 1.0000000000
## GO:0051164  BP     1  0 1.0000000000
## GO:0002399  BP     1  0 1.0000000000
## GO:0002398  BP     1  0 1.0000000000
## GO:0035660  BP     1  0 1.0000000000
## GO:0006051  BP     1  0 1.0000000000
## GO:0046380  BP     1  0 1.0000000000
## GO:0036071  BP     1  0 1.0000000000
## GO:0016256  BP     1  0 1.0000000000
## GO:0018009  BP     1  0 1.0000000000
## GO:0018011  BP     1  0 1.0000000000
## GO:0018012  BP     1  0 1.0000000000
## GO:0017190  BP     1  0 1.0000000000
## GO:0018013  BP     1  0 1.0000000000
## GO:0018016  BP     1  0 1.0000000000
## GO:0035568  BP     1  0 1.0000000000
## GO:0035572  BP     1  0 1.0000000000
## GO:0035570  BP     1  0 1.0000000000
## GO:0035573  BP     1  0 1.0000000000
## GO:0034355  BP     1  0 1.0000000000
## GO:0043132  BP     1  0 1.0000000000
## GO:1904784  BP     1  0 1.0000000000
## GO:0003270  BP     1  0 1.0000000000
## GO:1903461  BP     1  0 1.0000000000
## GO:0003168  BP     1  0 1.0000000000
## GO:0106005  BP     1  0 1.0000000000
## GO:1990884  BP     1  0 1.0000000000
## GO:0000378  BP     1  0 1.0000000000
## GO:0034337  BP     1  0 1.0000000000
## GO:1990280  BP     1  0 1.0000000000
## GO:1990114  BP     1  0 1.0000000000
## GO:0015805  BP     1  0 1.0000000000
## GO:0019510  BP     1  0 1.0000000000
## GO:0046499  BP     1  0 1.0000000000
## GO:0033477  BP     1  0 1.0000000000
## GO:0036316  BP     1  0 1.0000000000
## GO:0006617  BP     1  0 1.0000000000
## GO:1990751  BP     1  0 1.0000000000
## GO:0014011  BP     1  0 1.0000000000
## GO:0061843  BP     1  0 1.0000000000
## GO:0060010  BP     1  0 1.0000000000
## GO:0060064  BP     1  0 1.0000000000
## GO:0120117  BP     1  0 1.0000000000
## GO:0002419  BP     1  0 1.0000000000
## GO:0033371  BP     1  0 1.0000000000
## GO:0035688  BP     1  0 1.0000000000
## GO:0035687  BP     1  0 1.0000000000
## GO:0035705  BP     1  0 1.0000000000
## GO:0036399  BP     1  0 1.0000000000
## GO:0061571  BP     1  0 1.0000000000
## GO:0035665  BP     1  0 1.0000000000
## GO:0035664  BP     1  0 1.0000000000
## GO:0045553  BP     1  0 1.0000000000
## GO:0034474  BP     1  0 1.0000000000
## GO:0034477  BP     1  0 1.0000000000
## GO:0006225  BP     1  0 1.0000000000
## GO:0046048  BP     1  0 1.0000000000
## GO:0061569  BP     1  0 1.0000000000
## GO:0006049  BP     1  0 1.0000000000
## GO:0006258  BP     1  0 1.0000000000
## GO:0015786  BP     1  0 1.0000000000
## GO:0006065  BP     1  0 1.0000000000
## GO:0015790  BP     1  0 1.0000000000
## GO:0044206  BP     1  0 1.0000000000
## GO:1990731  BP     1  0 1.0000000000
## GO:1904210  BP     1  0 1.0000000000
## GO:1902378  BP     1  0 1.0000000000
## GO:0044333  BP     1  0 1.0000000000
## GO:1904887  BP     1  0 1.0000000000
## GO:1904701  BP     1  0 1.0000000000
## GO:1901639  BP     1  0 1.0000000000
## GO:0009738  BP     1  0 1.0000000000
## GO:0046186  BP     1  0 1.0000000000
## GO:0006117  BP     1  0 1.0000000000
## GO:0043438  BP     1  0 1.0000000000
## GO:0006581  BP     1  0 1.0000000000
## GO:0003069  BP     1  0 1.0000000000
## GO:0090425  BP     1  0 1.0000000000
## GO:1990863  BP     1  0 1.0000000000
## GO:0002077  BP     1  0 1.0000000000
## GO:0061573  BP     1  0 1.0000000000
## GO:0031289  BP     1  0 1.0000000000
## GO:0007014  BP     1  0 1.0000000000
## GO:0002543  BP     1  0 1.0000000000
## GO:0043006  BP     1  0 1.0000000000
## GO:0060520  BP     1  0 1.0000000000
## GO:0036155  BP     1  0 1.0000000000
## GO:0015853  BP     1  0 1.0000000000
## GO:0048855  BP     1  0 1.0000000000
## GO:0071106  BP     1  0 1.0000000000
## GO:0046086  BP     1  0 1.0000000000
## GO:0086030  BP     1  0 1.0000000000
## GO:0007192  BP     1  0 1.0000000000
## GO:0086096  BP     1  0 1.0000000000
## GO:0120179  BP     1  0 1.0000000000
## GO:0044651  BP     1  0 1.0000000000
## GO:0043390  BP     1  0 1.0000000000
## GO:0001315  BP     1  0 1.0000000000
## GO:0009820  BP     1  0 1.0000000000
## GO:0046305  BP     1  0 1.0000000000
## GO:0019428  BP     1  0 1.0000000000
## GO:0000256  BP     1  0 1.0000000000
## GO:0002299  BP     1  0 1.0000000000
## GO:0015742  BP     1  0 1.0000000000
## GO:0061143  BP     1  0 1.0000000000
## GO:0015898  BP     1  0 1.0000000000
## GO:0043041  BP     1  0 1.0000000000
## GO:0032973  BP     1  0 1.0000000000
## GO:0006579  BP     1  0 1.0000000000
## GO:0106074  BP     1  0 1.0000000000
## GO:0021541  BP     1  0 1.0000000000
## GO:0097086  BP     1  0 1.0000000000
## GO:0010021  BP     1  0 1.0000000000
## GO:2000896  BP     1  0 1.0000000000
## GO:0055048  BP     1  0 1.0000000000
## GO:0035935  BP     1  0 1.0000000000
## GO:0035476  BP     1  0 1.0000000000
## GO:0010260  BP     1  0 1.0000000000
## GO:0072165  BP     1  0 1.0000000000
## GO:0060873  BP     1  0 1.0000000000
## GO:0072099  BP     1  0 1.0000000000
## GO:0099087  BP     1  0 1.0000000000
## GO:0098972  BP     1  0 1.0000000000
## GO:0043420  BP     1  0 1.0000000000
## GO:1990262  BP     1  0 1.0000000000
## GO:0002779  BP     1  0 1.0000000000
## GO:0002406  BP     1  0 1.0000000000
## GO:0002404  BP     1  0 1.0000000000
## GO:0002412  BP     1  0 1.0000000000
## GO:0002776  BP     1  0 1.0000000000
## GO:0042868  BP     1  0 1.0000000000
## GO:0071041  BP     1  0 1.0000000000
## GO:0060183  BP     1  0 1.0000000000
## GO:0019544  BP     1  0 1.0000000000
## GO:0019493  BP     1  0 1.0000000000
## GO:0010121  BP     1  0 1.0000000000
## GO:0019546  BP     1  0 1.0000000000
## GO:0009095  BP     1  0 1.0000000000
## GO:1901684  BP     1  0 1.0000000000
## GO:0001984  BP     1  0 1.0000000000
## GO:0006529  BP     1  0 1.0000000000
## GO:0006530  BP     1  0 1.0000000000
## GO:0033345  BP     1  0 1.0000000000
## GO:0006867  BP     1  0 1.0000000000
## GO:0061528  BP     1  0 1.0000000000
## GO:0006422  BP     1  0 1.0000000000
## GO:0030954  BP     1  0 1.0000000000
## GO:0036520  BP     1  0 1.0000000000
## GO:0045167  BP     1  0 1.0000000000
## GO:0086044  BP     1  0 1.0000000000
## GO:0003167  BP     1  0 1.0000000000
## GO:1905222  BP     1  0 1.0000000000
## GO:0060929  BP     1  0 1.0000000000
## GO:0042668  BP     1  0 1.0000000000
## GO:0061910  BP     1  0 1.0000000000
## GO:0061909  BP     1  0 1.0000000000
## GO:0036331  BP     1  0 1.0000000000
## GO:0048321  BP     1  0 1.0000000000
## GO:0048322  BP     1  0 1.0000000000
## GO:0048327  BP     1  0 1.0000000000
## GO:0099088  BP     1  0 1.0000000000
## GO:0060404  BP     1  0 1.0000000000
## GO:0051638  BP     1  0 1.0000000000
## GO:0045175  BP     1  0 1.0000000000
## GO:0097510  BP     1  0 1.0000000000
## GO:0006288  BP     1  0 1.0000000000
## GO:0002575  BP     1  0 1.0000000000
## GO:0002561  BP     1  0 1.0000000000
## GO:0030221  BP     1  0 1.0000000000
## GO:1990960  BP     1  0 1.0000000000
## GO:0002560  BP     1  0 1.0000000000
## GO:0051780  BP     1  0 1.0000000000
## GO:1901787  BP     1  0 1.0000000000
## GO:1901086  BP     1  0 1.0000000000
## GO:0019483  BP     1  0 1.0000000000
## GO:0033396  BP     1  0 1.0000000000
## GO:0019484  BP     1  0 1.0000000000
## GO:0001762  BP     1  0 1.0000000000
## GO:1901810  BP     1  0 1.0000000000
## GO:1904837  BP     1  0 1.0000000000
## GO:1901805  BP     1  0 1.0000000000
## GO:1901804  BP     1  0 1.0000000000
## GO:0015759  BP     1  0 1.0000000000
## GO:0030653  BP     1  0 1.0000000000
## GO:0002152  BP     1  0 1.0000000000
## GO:0002812  BP     1  0 1.0000000000
## GO:0002815  BP     1  0 1.0000000000
## GO:0006768  BP     1  0 1.0000000000
## GO:0015878  BP     1  0 1.0000000000
## GO:0072377  BP     1  0 1.0000000000
## GO:0097497  BP     1  0 1.0000000000
## GO:0002044  BP     1  0 1.0000000000
## GO:0046713  BP     1  0 1.0000000000
## GO:0002936  BP     1  0 1.0000000000
## GO:0061114  BP     1  0 1.0000000000
## GO:0016132  BP     1  0 1.0000000000
## GO:0016131  BP     1  0 1.0000000000
## GO:0060436  BP     1  0 1.0000000000
## GO:0060503  BP     1  0 1.0000000000
## GO:0086054  BP     1  0 1.0000000000
## GO:0046359  BP     1  0 1.0000000000
## GO:0019605  BP     1  0 1.0000000000
## GO:0006198  BP     1  0 1.0000000000
## GO:0010816  BP     1  0 1.0000000000
## GO:0036161  BP     1  0 1.0000000000
## GO:0090676  BP     1  0 1.0000000000
## GO:1903515  BP     1  0 1.0000000000
## GO:0061310  BP     1  0 1.0000000000
## GO:0044335  BP     1  0 1.0000000000
## GO:0060823  BP     1  0 1.0000000000
## GO:0044329  BP     1  0 1.0000000000
## GO:0044328  BP     1  0 1.0000000000
## GO:0044330  BP     1  0 1.0000000000
## GO:1905474  BP     1  0 1.0000000000
## GO:0097310  BP     1  0 1.0000000000
## GO:0070409  BP     1  0 1.0000000000
## GO:0070408  BP     1  0 1.0000000000
## GO:0033231  BP     1  0 1.0000000000
## GO:0098704  BP     1  0 1.0000000000
## GO:0035378  BP     1  0 1.0000000000
## GO:0003210  BP     1  0 1.0000000000
## GO:0060945  BP     1  0 1.0000000000
## GO:0060927  BP     1  0 1.0000000000
## GO:0003259  BP     1  0 1.0000000000
## GO:0042684  BP     1  0 1.0000000000
## GO:0042685  BP     1  0 1.0000000000
## GO:0003260  BP     1  0 1.0000000000
## GO:0060975  BP     1  0 1.0000000000
## GO:0003142  BP     1  0 1.0000000000
## GO:0042413  BP     1  0 1.0000000000
## GO:1902603  BP     1  0 1.0000000000
## GO:0035499  BP     1  0 1.0000000000
## GO:0016117  BP     1  0 1.0000000000
## GO:0061103  BP     1  0 1.0000000000
## GO:0052353  BP     1  0 1.0000000000
## GO:0052356  BP     1  0 1.0000000000
## GO:0052362  BP     1  0 1.0000000000
## GO:0052354  BP     1  0 1.0000000000
## GO:0052342  BP     1  0 1.0000000000
## GO:0052363  BP     1  0 1.0000000000
## GO:0061984  BP     1  0 1.0000000000
## GO:0090667  BP     1  0 1.0000000000
## GO:0035212  BP     1  0 1.0000000000
## GO:1902294  BP     1  0 1.0000000000
## GO:0033301  BP     1  0 1.0000000000
## GO:0043163  BP     1  0 1.0000000000
## GO:0060582  BP     1  0 1.0000000000
## GO:0071976  BP     1  0 1.0000000000
## GO:0061381  BP     1  0 1.0000000000
## GO:0060981  BP     1  0 1.0000000000
## GO:0060980  BP     1  0 1.0000000000
## GO:0090134  BP     1  0 1.0000000000
## GO:0003318  BP     1  0 1.0000000000
## GO:0097231  BP     1  0 1.0000000000
## GO:0090247  BP     1  0 1.0000000000
## GO:0090529  BP     1  0 1.0000000000
## GO:0042546  BP     1  0 1.0000000000
## GO:0006039  BP     1  0 1.0000000000
## GO:0006037  BP     1  0 1.0000000000
## GO:0031506  BP     1  0 1.0000000000
## GO:0044038  BP     1  0 1.0000000000
## GO:0000032  BP     1  0 1.0000000000
## GO:0010383  BP     1  0 1.0000000000
## GO:0021813  BP     1  0 1.0000000000
## GO:0060495  BP     1  0 1.0000000000
## GO:0099156  BP     1  0 1.0000000000
## GO:0120180  BP     1  0 1.0000000000
## GO:0043449  BP     1  0 1.0000000000
## GO:0097275  BP     1  0 1.0000000000
## GO:0006876  BP     1  0 1.0000000000
## GO:0070589  BP     1  0 1.0000000000
## GO:0097276  BP     1  0 1.0000000000
## GO:0140041  BP     1  0 1.0000000000
## GO:0030026  BP     1  0 1.0000000000
## GO:0051692  BP     1  0 1.0000000000
## GO:0051691  BP     1  0 1.0000000000
## GO:0090346  BP     1  0 1.0000000000
## GO:0090345  BP     1  0 1.0000000000
## GO:1904566  BP     1  0 1.0000000000
## GO:1905243  BP     1  0 1.0000000000
## GO:1904682  BP     1  0 1.0000000000
## GO:0071215  BP     1  0 1.0000000000
## GO:0071418  BP     1  0 1.0000000000
## GO:1903718  BP     1  0 1.0000000000
## GO:0072740  BP     1  0 1.0000000000
## GO:0071454  BP     1  0 1.0000000000
## GO:0097185  BP     1  0 1.0000000000
## GO:0072755  BP     1  0 1.0000000000
## GO:0061433  BP     1  0 1.0000000000
## GO:0071244  BP     1  0 1.0000000000
## GO:1902350  BP     1  0 1.0000000000
## GO:0071247  BP     1  0 1.0000000000
## GO:0035874  BP     1  0 1.0000000000
## GO:0071386  BP     1  0 1.0000000000
## GO:0071387  BP     1  0 1.0000000000
## GO:0072749  BP     1  0 1.0000000000
## GO:0071324  BP     1  0 1.0000000000
## GO:1904630  BP     1  0 1.0000000000
## GO:0072721  BP     1  0 1.0000000000
## GO:1905396  BP     1  0 1.0000000000
## GO:1902618  BP     1  0 1.0000000000
## GO:0071231  BP     1  0 1.0000000000
## GO:0071240  BP     1  0 1.0000000000
## GO:0071497  BP     1  0 1.0000000000
## GO:1990792  BP     1  0 1.0000000000
## GO:1904632  BP     1  0 1.0000000000
## GO:1905631  BP     1  0 1.0000000000
## GO:1905430  BP     1  0 1.0000000000
## GO:1904588  BP     1  0 1.0000000000
## GO:0036471  BP     1  0 1.0000000000
## GO:0071486  BP     1  0 1.0000000000
## GO:0071464  BP     1  0 1.0000000000
## GO:0035903  BP     1  0 1.0000000000
## GO:0071348  BP     1  0 1.0000000000
## GO:0097398  BP     1  0 1.0000000000
## GO:0071282  BP     1  0 1.0000000000
## GO:0071284  BP     1  0 1.0000000000
## GO:0071484  BP     1  0 1.0000000000
## GO:0071449  BP     1  0 1.0000000000
## GO:0071373  BP     1  0 1.0000000000
## GO:0072705  BP     1  0 1.0000000000
## GO:0072703  BP     1  0 1.0000000000
## GO:1904609  BP     1  0 1.0000000000
## GO:0035714  BP     1  0 1.0000000000
## GO:0071471  BP     1  0 1.0000000000
## GO:0071400  BP     1  0 1.0000000000
## GO:0071444  BP     1  0 1.0000000000
## GO:1903166  BP     1  0 1.0000000000
## GO:1904586  BP     1  0 1.0000000000
## GO:1905835  BP     1  0 1.0000000000
## GO:0097403  BP     1  0 1.0000000000
## GO:0071489  BP     1  0 1.0000000000
## GO:1904015  BP     1  0 1.0000000000
## GO:0072709  BP     1  0 1.0000000000
## GO:0071329  BP     1  0 1.0000000000
## GO:1905229  BP     1  0 1.0000000000
## GO:0071401  BP     1  0 1.0000000000
## GO:0071228  BP     1  0 1.0000000000
## GO:1904577  BP     1  0 1.0000000000
## GO:0090731  BP     1  0 1.0000000000
## GO:1904568  BP     1  0 1.0000000000
## GO:1990451  BP     1  0 1.0000000000
## GO:0097277  BP     1  0 1.0000000000
## GO:0007349  BP     1  0 1.0000000000
## GO:0071529  BP     1  0 1.0000000000
## GO:0002510  BP     1  0 1.0000000000
## GO:0021956  BP     1  0 1.0000000000
## GO:0002509  BP     1  0 1.0000000000
## GO:1902389  BP     1  0 1.0000000000
## GO:0099040  BP     1  0 1.0000000000
## GO:0021686  BP     1  0 1.0000000000
## GO:0021685  BP     1  0 1.0000000000
## GO:0021688  BP     1  0 1.0000000000
## GO:0021588  BP     1  0 1.0000000000
## GO:0061301  BP     1  0 1.0000000000
## GO:0051086  BP     1  0 1.0000000000
## GO:1904764  BP     1  0 1.0000000000
## GO:0061741  BP     1  0 1.0000000000
## GO:0019988  BP     1  0 1.0000000000
## GO:0036516  BP     1  0 1.0000000000
## GO:0036517  BP     1  0 1.0000000000
## GO:0071610  BP     1  0 1.0000000000
## GO:0036392  BP     1  0 1.0000000000
## GO:0071606  BP     1  0 1.0000000000
## GO:0032600  BP     1  0 1.0000000000
## GO:0033606  BP     1  0 1.0000000000
## GO:0042466  BP     1  0 1.0000000000
## GO:0021793  BP     1  0 1.0000000000
## GO:0034670  BP     1  0 1.0000000000
## GO:0042196  BP     1  0 1.0000000000
## GO:0033488  BP     1  0 1.0000000000
## GO:0033490  BP     1  0 1.0000000000
## GO:0010879  BP     1  0 1.0000000000
## GO:0042426  BP     1  0 1.0000000000
## GO:0030207  BP     1  0 1.0000000000
## GO:0050653  BP     1  0 1.0000000000
## GO:1990141  BP     1  0 1.0000000000
## GO:0031052  BP     1  0 1.0000000000
## GO:0035853  BP     1  0 1.0000000000
## GO:0001300  BP     1  0 1.0000000000
## GO:1905349  BP     1  0 1.0000000000
## GO:0061523  BP     1  0 1.0000000000
## GO:0003243  BP     1  0 1.0000000000
## GO:1990771  BP     1  0 1.0000000000
## GO:0009236  BP     1  0 1.0000000000
## GO:0042366  BP     1  0 1.0000000000
## GO:0015938  BP     1  0 1.0000000000
## GO:0035349  BP     1  0 1.0000000000
## GO:0015880  BP     1  0 1.0000000000
## GO:0048673  BP     1  0 1.0000000000
## GO:0061580  BP     1  0 1.0000000000
## GO:0021528  BP     1  0 1.0000000000
## GO:0038178  BP     1  0 1.0000000000
## GO:0048058  BP     1  0 1.0000000000
## GO:0072027  BP     1  0 1.0000000000
## GO:0051089  BP     1  0 1.0000000000
## GO:0090246  BP     1  0 1.0000000000
## GO:0036404  BP     1  0 1.0000000000
## GO:0033168  BP     1  0 1.0000000000
## GO:0071951  BP     1  0 1.0000000000
## GO:0046814  BP     1  0 1.0000000000
## GO:0060365  BP     1  0 1.0000000000
## GO:0003178  BP     1  0 1.0000000000
## GO:0003182  BP     1  0 1.0000000000
## GO:0021972  BP     1  0 1.0000000000
## GO:0097273  BP     1  0 1.0000000000
## GO:0046449  BP     1  0 1.0000000000
## GO:0006535  BP     1  0 1.0000000000
## GO:1903712  BP     1  0 1.0000000000
## GO:0018063  BP     1  0 1.0000000000
## GO:0009691  BP     1  0 1.0000000000
## GO:0009690  BP     1  0 1.0000000000
## GO:0051838  BP     1  0 1.0000000000
## GO:0051801  BP     1  0 1.0000000000
## GO:0071629  BP     1  0 1.0000000000
## GO:0071026  BP     1  0 1.0000000000
## GO:0010938  BP     1  0 1.0000000000
## GO:0043004  BP     1  0 1.0000000000
## GO:0048789  BP     1  0 1.0000000000
## GO:0021808  BP     1  0 1.0000000000
## GO:0061725  BP     1  0 1.0000000000
## GO:0046057  BP     1  0 1.0000000000
## GO:0006174  BP     1  0 1.0000000000
## GO:0061565  BP     1  0 1.0000000000
## GO:0006175  BP     1  0 1.0000000000
## GO:0006240  BP     1  0 1.0000000000
## GO:0046062  BP     1  0 1.0000000000
## GO:0061570  BP     1  0 1.0000000000
## GO:0061567  BP     1  0 1.0000000000
## GO:0006253  BP     1  0 1.0000000000
## GO:0046065  BP     1  0 1.0000000000
## GO:0006185  BP     1  0 1.0000000000
## GO:0046067  BP     1  0 1.0000000000
## GO:0006186  BP     1  0 1.0000000000
## GO:0046054  BP     1  0 1.0000000000
## GO:0035863  BP     1  0 1.0000000000
## GO:0035862  BP     1  0 1.0000000000
## GO:0046079  BP     1  0 1.0000000000
## GO:0046081  BP     1  0 1.0000000000
## GO:0046080  BP     1  0 1.0000000000
## GO:0043215  BP     1  0 1.0000000000
## GO:1902426  BP     1  0 1.0000000000
## GO:0009816  BP     1  0 1.0000000000
## GO:0009817  BP     1  0 1.0000000000
## GO:0097188  BP     1  0 1.0000000000
## GO:0006157  BP     1  0 1.0000000000
## GO:0046090  BP     1  0 1.0000000000
## GO:0006161  BP     1  0 1.0000000000
## GO:0042453  BP     1  0 1.0000000000
## GO:0006149  BP     1  0 1.0000000000
## GO:0046094  BP     1  0 1.0000000000
## GO:0009192  BP     1  0 1.0000000000
## GO:0030209  BP     1  0 1.0000000000
## GO:0035906  BP     1  0 1.0000000000
## GO:0072022  BP     1  0 1.0000000000
## GO:0035921  BP     1  0 1.0000000000
## GO:0072421  BP     1  0 1.0000000000
## GO:0009589  BP     1  0 1.0000000000
## GO:0060245  BP     1  0 1.0000000000
## GO:0060246  BP     1  0 1.0000000000
## GO:0060248  BP     1  0 1.0000000000
## GO:0090429  BP     1  0 1.0000000000
## GO:0016046  BP     1  0 1.0000000000
## GO:0003029  BP     1  0 1.0000000000
## GO:0002007  BP     1  0 1.0000000000
## GO:0070392  BP     1  0 1.0000000000
## GO:0032498  BP     1  0 1.0000000000
## GO:0070994  BP     1  0 1.0000000000
## GO:0072394  BP     1  0 1.0000000000
## GO:0050960  BP     1  0 1.0000000000
## GO:0002355  BP     1  0 1.0000000000
## GO:0014822  BP     1  0 1.0000000000
## GO:0001879  BP     1  0 1.0000000000
## GO:0050894  BP     1  0 1.0000000000
## GO:0071908  BP     1  0 1.0000000000
## GO:0071909  BP     1  0 1.0000000000
## GO:0048264  BP     1  0 1.0000000000
## GO:0071585  BP     1  0 1.0000000000
## GO:0010312  BP     1  0 1.0000000000
## GO:0044111  BP     1  0 1.0000000000
## GO:0044115  BP     1  0 1.0000000000
## GO:0015964  BP     1  0 1.0000000000
## GO:0015962  BP     1  0 1.0000000000
## GO:0060540  BP     1  0 1.0000000000
## GO:0090472  BP     1  0 1.0000000000
## GO:0019341  BP     1  0 1.0000000000
## GO:0018900  BP     1  0 1.0000000000
## GO:0060678  BP     1  0 1.0000000000
## GO:0007502  BP     1  0 1.0000000000
## GO:0051066  BP     1  0 1.0000000000
## GO:0051068  BP     1  0 1.0000000000
## GO:0140206  BP     1  0 1.0000000000
## GO:0071544  BP     1  0 1.0000000000
## GO:0046352  BP     1  0 1.0000000000
## GO:0052338  BP     1  0 1.0000000000
## GO:0052367  BP     1  0 1.0000000000
## GO:0052339  BP     1  0 1.0000000000
## GO:0052368  BP     1  0 1.0000000000
## GO:0014828  BP     1  0 1.0000000000
## GO:0000917  BP     1  0 1.0000000000
## GO:0043048  BP     1  0 1.0000000000
## GO:0006585  BP     1  0 1.0000000000
## GO:1900753  BP     1  0 1.0000000000
## GO:1990962  BP     1  0 1.0000000000
## GO:0061772  BP     1  0 1.0000000000
## GO:0036497  BP     1  0 1.0000000000
## GO:0007499  BP     1  0 1.0000000000
## GO:0001715  BP     1  0 1.0000000000
## GO:0048567  BP     1  0 1.0000000000
## GO:0048894  BP     1  0 1.0000000000
## GO:0048613  BP     1  0 1.0000000000
## GO:0036306  BP     1  0 1.0000000000
## GO:0003144  BP     1  0 1.0000000000
## GO:1990402  BP     1  0 1.0000000000
## GO:0060957  BP     1  0 1.0000000000
## GO:0061444  BP     1  0 1.0000000000
## GO:0061445  BP     1  0 1.0000000000
## GO:0038002  BP     1  0 1.0000000000
## GO:1905267  BP     1  0 1.0000000000
## GO:0000461  BP     1  0 1.0000000000
## GO:0000472  BP     1  0 1.0000000000
## GO:0061163  BP     1  0 1.0000000000
## GO:0071788  BP     1  0 1.0000000000
## GO:0002264  BP     1  0 1.0000000000
## GO:0090668  BP     1  0 1.0000000000
## GO:0090674  BP     1  0 1.0000000000
## GO:0097102  BP     1  0 1.0000000000
## GO:0034959  BP     1  0 1.0000000000
## GO:0061736  BP     1  0 1.0000000000
## GO:0035645  BP     1  0 1.0000000000
## GO:0043354  BP     1  0 1.0000000000
## GO:0090601  BP     1  0 1.0000000000
## GO:0018323  BP     1  0 1.0000000000
## GO:0018192  BP     1  0 1.0000000000
## GO:0000455  BP     1  0 1.0000000000
## GO:0072682  BP     1  0 1.0000000000
## GO:1990959  BP     1  0 1.0000000000
## GO:0060802  BP     1  0 1.0000000000
## GO:0055113  BP     1  0 1.0000000000
## GO:0007174  BP     1  0 1.0000000000
## GO:0038168  BP     1  0 1.0000000000
## GO:0038167  BP     1  0 1.0000000000
## GO:1990134  BP     1  0 1.0000000000
## GO:0060691  BP     1  0 1.0000000000
## GO:0060517  BP     1  0 1.0000000000
## GO:0060940  BP     1  0 1.0000000000
## GO:0070987  BP     1  0 1.0000000000
## GO:1902217  BP     1  0 1.0000000000
## GO:0034102  BP     1  0 1.0000000000
## GO:0043131  BP     1  0 1.0000000000
## GO:0048773  BP     1  0 1.0000000000
## GO:0051686  BP     1  0 1.0000000000
## GO:0048561  BP     1  0 1.0000000000
## GO:1990963  BP     1  0 1.0000000000
## GO:0071964  BP     1  0 1.0000000000
## GO:0099089  BP     1  0 1.0000000000
## GO:0071516  BP     1  0 1.0000000000
## GO:0075713  BP     1  0 1.0000000000
## GO:0061966  BP     1  0 1.0000000000
## GO:0051296  BP     1  0 1.0000000000
## GO:0034640  BP     1  0 1.0000000000
## GO:0072046  BP     1  0 1.0000000000
## GO:0042247  BP     1  0 1.0000000000
## GO:0035592  BP     1  0 1.0000000000
## GO:0071206  BP     1  0 1.0000000000
## GO:0090152  BP     1  0 1.0000000000
## GO:0032254  BP     1  0 1.0000000000
## GO:0016334  BP     1  0 1.0000000000
## GO:0035937  BP     1  0 1.0000000000
## GO:0060206  BP     1  0 1.0000000000
## GO:0006580  BP     1  0 1.0000000000
## GO:0030683  BP     1  0 1.0000000000
## GO:0051807  BP     1  0 1.0000000000
## GO:0030682  BP     1  0 1.0000000000
## GO:0020012  BP     1  0 1.0000000000
## GO:0051805  BP     1  0 1.0000000000
## GO:0098817  BP     1  0 1.0000000000
## GO:0061670  BP     1  0 1.0000000000
## GO:1903259  BP     1  0 1.0000000000
## GO:0021816  BP     1  0 1.0000000000
## GO:0045229  BP     1  0 1.0000000000
## GO:0072680  BP     1  0 1.0000000000
## GO:0060082  BP     1  0 1.0000000000
## GO:0008057  BP     1  0 1.0000000000
## GO:0042441  BP     1  0 1.0000000000
## GO:0098746  BP     1  0 1.0000000000
## GO:0061040  BP     1  0 1.0000000000
## GO:0019101  BP     1  0 1.0000000000
## GO:0097707  BP     1  0 1.0000000000
## GO:1903988  BP     1  0 1.0000000000
## GO:1902178  BP     1  0 1.0000000000
## GO:0035603  BP     1  0 1.0000000000
## GO:0035602  BP     1  0 1.0000000000
## GO:0035604  BP     1  0 1.0000000000
## GO:2000699  BP     1  0 1.0000000000
## GO:1905590  BP     1  0 1.0000000000
## GO:0072681  BP     1  0 1.0000000000
## GO:1905285  BP     1  0 1.0000000000
## GO:0036058  BP     1  0 1.0000000000
## GO:0072388  BP     1  0 1.0000000000
## GO:0072389  BP     1  0 1.0000000000
## GO:0042728  BP     1  0 1.0000000000
## GO:0051552  BP     1  0 1.0000000000
## GO:0018917  BP     1  0 1.0000000000
## GO:0120181  BP     1  0 1.0000000000
## GO:0002316  BP     1  0 1.0000000000
## GO:0021905  BP     1  0 1.0000000000
## GO:0046293  BP     1  0 1.0000000000
## GO:0043606  BP     1  0 1.0000000000
## GO:0015942  BP     1  0 1.0000000000
## GO:0015724  BP     1  0 1.0000000000
## GO:0010160  BP     1  0 1.0000000000
## GO:0048689  BP     1  0 1.0000000000
## GO:0043056  BP     1  0 1.0000000000
## GO:0050751  BP     1  0 1.0000000000
## GO:0050756  BP     1  0 1.0000000000
## GO:0032603  BP     1  0 1.0000000000
## GO:0032445  BP     1  0 1.0000000000
## GO:1990539  BP     1  0 1.0000000000
## GO:0019402  BP     1  0 1.0000000000
## GO:0015757  BP     1  0 1.0000000000
## GO:0051939  BP     1  0 1.0000000000
## GO:0002365  BP     1  0 1.0000000000
## GO:0007402  BP     1  0 1.0000000000
## GO:1905572  BP     1  0 1.0000000000
## GO:1901148  BP     1  0 1.0000000000
## GO:0051867  BP     1  0 1.0000000000
## GO:0071515  BP     1  0 1.0000000000
## GO:0036321  BP     1  0 1.0000000000
## GO:2000701  BP     1  0 1.0000000000
## GO:0001576  BP     1  0 1.0000000000
## GO:0072139  BP     1  0 1.0000000000
## GO:1903210  BP     1  0 1.0000000000
## GO:0006042  BP     1  0 1.0000000000
## GO:1901073  BP     1  0 1.0000000000
## GO:0042946  BP     1  0 1.0000000000
## GO:0006064  BP     1  0 1.0000000000
## GO:0006539  BP     1  0 1.0000000000
## GO:0006540  BP     1  0 1.0000000000
## GO:1905962  BP     1  0 1.0000000000
## GO:0006542  BP     1  0 1.0000000000
## GO:0010585  BP     1  0 1.0000000000
## GO:0036531  BP     1  0 1.0000000000
## GO:0015794  BP     1  0 1.0000000000
## GO:0031456  BP     1  0 1.0000000000
## GO:0019285  BP     1  0 1.0000000000
## GO:0031455  BP     1  0 1.0000000000
## GO:0031460  BP     1  0 1.0000000000
## GO:1904983  BP     1  0 1.0000000000
## GO:0072579  BP     1  0 1.0000000000
## GO:0061536  BP     1  0 1.0000000000
## GO:0061537  BP     1  0 1.0000000000
## GO:0060709  BP     1  0 1.0000000000
## GO:0046295  BP     1  0 1.0000000000
## GO:0046296  BP     1  0 1.0000000000
## GO:0034203  BP     1  0 1.0000000000
## GO:0093001  BP     1  0 1.0000000000
## GO:0061619  BP     1  0 1.0000000000
## GO:0006426  BP     1  0 1.0000000000
## GO:1903189  BP     1  0 1.0000000000
## GO:0060016  BP     1  0 1.0000000000
## GO:1990739  BP     1  0 1.0000000000
## GO:0035746  BP     1  0 1.0000000000
## GO:0033380  BP     1  0 1.0000000000
## GO:0014843  BP     1  0 1.0000000000
## GO:0003421  BP     1  0 1.0000000000
## GO:0046099  BP     1  0 1.0000000000
## GO:0006147  BP     1  0 1.0000000000
## GO:0106044  BP     1  0 1.0000000000
## GO:0106046  BP     1  0 1.0000000000
## GO:0106045  BP     1  0 1.0000000000
## GO:0006178  BP     1  0 1.0000000000
## GO:0015854  BP     1  0 1.0000000000
## GO:0046115  BP     1  0 1.0000000000
## GO:0008617  BP     1  0 1.0000000000
## GO:0015971  BP     1  0 1.0000000000
## GO:0015969  BP     1  0 1.0000000000
## GO:0042197  BP     1  0 1.0000000000
## GO:0035704  BP     1  0 1.0000000000
## GO:0035397  BP     1  0 1.0000000000
## GO:0060217  BP     1  0 1.0000000000
## GO:0097241  BP     1  0 1.0000000000
## GO:0048034  BP     1  0 1.0000000000
## GO:0048033  BP     1  0 1.0000000000
## GO:0030211  BP     1  0 1.0000000000
## GO:0061011  BP     1  0 1.0000000000
## GO:0002384  BP     1  0 1.0000000000
## GO:1990922  BP     1  0 1.0000000000
## GO:0002194  BP     1  0 1.0000000000
## GO:0048175  BP     1  0 1.0000000000
## GO:0032605  BP     1  0 1.0000000000
## GO:1902605  BP     1  0 1.0000000000
## GO:0046458  BP     1  0 1.0000000000
## GO:0019406  BP     1  0 1.0000000000
## GO:0019407  BP     1  0 1.0000000000
## GO:0021576  BP     1  0 1.0000000000
## GO:0001695  BP     1  0 1.0000000000
## GO:0051615  BP     1  0 1.0000000000
## GO:0001697  BP     1  0 1.0000000000
## GO:0019556  BP     1  0 1.0000000000
## GO:0036351  BP     1  0 1.0000000000
## GO:0036352  BP     1  0 1.0000000000
## GO:0043977  BP     1  0 1.0000000000
## GO:0043990  BP     1  0 1.0000000000
## GO:1990245  BP     1  0 1.0000000000
## GO:0043980  BP     1  0 1.0000000000
## GO:0043979  BP     1  0 1.0000000000
## GO:0043972  BP     1  0 1.0000000000
## GO:0043973  BP     1  0 1.0000000000
## GO:0044648  BP     1  0 1.0000000000
## GO:0097692  BP     1  0 1.0000000000
## GO:0034972  BP     1  0 1.0000000000
## GO:0035407  BP     1  0 1.0000000000
## GO:2000751  BP     1  0 1.0000000000
## GO:0035409  BP     1  0 1.0000000000
## GO:1990679  BP     1  0 1.0000000000
## GO:1990678  BP     1  0 1.0000000000
## GO:0071110  BP     1  0 1.0000000000
## GO:0001207  BP     1  0 1.0000000000
## GO:0035406  BP     1  0 1.0000000000
## GO:0048877  BP     1  0 1.0000000000
## GO:1902000  BP     1  0 1.0000000000
## GO:1901999  BP     1  0 1.0000000000
## GO:0051758  BP     1  0 1.0000000000
## GO:0031619  BP     1  0 1.0000000000
## GO:0035852  BP     1  0 1.0000000000
## GO:0034050  BP     1  0 1.0000000000
## GO:0048874  BP     1  0 1.0000000000
## GO:1990384  BP     1  0 1.0000000000
## GO:0034589  BP     1  0 1.0000000000
## GO:0002149  BP     1  0 1.0000000000
## GO:0002148  BP     1  0 1.0000000000
## GO:0021566  BP     1  0 1.0000000000
## GO:0021618  BP     1  0 1.0000000000
## GO:0009114  BP     1  0 1.0000000000
## GO:0006150  BP     1  0 1.0000000000
## GO:0035344  BP     1  0 1.0000000000
## GO:0020021  BP     1  0 1.0000000000
## GO:0097281  BP     1  0 1.0000000000
## GO:0002383  BP     1  0 1.0000000000
## GO:0002379  BP     1  0 1.0000000000
## GO:0071707  BP     1  0 1.0000000000
## GO:0060820  BP     1  0 1.0000000000
## GO:0009682  BP     1  0 1.0000000000
## GO:0052251  BP     1  0 1.0000000000
## GO:0052263  BP     1  0 1.0000000000
## GO:0052558  BP     1  0 1.0000000000
## GO:0052063  BP     1  0 1.0000000000
## GO:0052559  BP     1  0 1.0000000000
## GO:0039520  BP     1  0 1.0000000000
## GO:0006948  BP     1  0 1.0000000000
## GO:0050929  BP     1  0 1.0000000000
## GO:0031129  BP     1  0 1.0000000000
## GO:1905317  BP     1  0 1.0000000000
## GO:0055111  BP     1  0 1.0000000000
## GO:0021806  BP     1  0 1.0000000000
## GO:0021993  BP     1  0 1.0000000000
## GO:0030505  BP     1  0 1.0000000000
## GO:0006148  BP     1  0 1.0000000000
## GO:0006021  BP     1  0 1.0000000000
## GO:0019310  BP     1  0 1.0000000000
## GO:0017143  BP     1  0 1.0000000000
## GO:0038016  BP     1  0 1.0000000000
## GO:0038020  BP     1  0 1.0000000000
## GO:0048219  BP     1  0 1.0000000000
## GO:0052213  BP     1  0 1.0000000000
## GO:0043063  BP     1  0 1.0000000000
## GO:0050719  BP     1  0 1.0000000000
## GO:0035772  BP     1  0 1.0000000000
## GO:0042235  BP     1  0 1.0000000000
## GO:0097400  BP     1  0 1.0000000000
## GO:0072616  BP     1  0 1.0000000000
## GO:0038155  BP     1  0 1.0000000000
## GO:0070106  BP     1  0 1.0000000000
## GO:0038172  BP     1  0 1.0000000000
## GO:0035708  BP     1  0 1.0000000000
## GO:0042225  BP     1  0 1.0000000000
## GO:0038112  BP     1  0 1.0000000000
## GO:0032638  BP     1  0 1.0000000000
## GO:0072607  BP     1  0 1.0000000000
## GO:0048391  BP     1  0 1.0000000000
## GO:0048390  BP     1  0 1.0000000000
## GO:0048392  BP     1  0 1.0000000000
## GO:0071831  BP     1  0 1.0000000000
## GO:0120012  BP     1  0 1.0000000000
## GO:0035260  BP     1  0 1.0000000000
## GO:0052097  BP     1  0 1.0000000000
## GO:0044258  BP     1  0 1.0000000000
## GO:0036335  BP     1  0 1.0000000000
## GO:0038185  BP     1  0 1.0000000000
## GO:1990953  BP     1  0 1.0000000000
## GO:1990127  BP     1  0 1.0000000000
## GO:1905877  BP     1  0 1.0000000000
## GO:1905878  BP     1  0 1.0000000000
## GO:1904200  BP     1  0 1.0000000000
## GO:0033212  BP     1  0 1.0000000000
## GO:1903414  BP     1  0 1.0000000000
## GO:0034231  BP     1  0 1.0000000000
## GO:0018153  BP     1  0 1.0000000000
## GO:0018276  BP     1  0 1.0000000000
## GO:0007630  BP     1  0 1.0000000000
## GO:0018146  BP     1  0 1.0000000000
## GO:0042465  BP     1  0 1.0000000000
## GO:1903457  BP     1  0 1.0000000000
## GO:0046722  BP     1  0 1.0000000000
## GO:0001572  BP     1  0 1.0000000000
## GO:0060366  BP     1  0 1.0000000000
## GO:0003363  BP     1  0 1.0000000000
## GO:0042140  BP     1  0 1.0000000000
## GO:0099607  BP     1  0 1.0000000000
## GO:0022018  BP     1  0 1.0000000000
## GO:0021771  BP     1  0 1.0000000000
## GO:0048892  BP     1  0 1.0000000000
## GO:0048925  BP     1  0 1.0000000000
## GO:0031271  BP     1  0 1.0000000000
## GO:0060875  BP     1  0 1.0000000000
## GO:0015692  BP     1  0 1.0000000000
## GO:0098713  BP     1  0 1.0000000000
## GO:0002522  BP     1  0 1.0000000000
## GO:0061737  BP     1  0 1.0000000000
## GO:0071716  BP     1  0 1.0000000000
## GO:0060887  BP     1  0 1.0000000000
## GO:0060007  BP     1  0 1.0000000000
## GO:1901373  BP     1  0 1.0000000000
## GO:0060989  BP     1  0 1.0000000000
## GO:0009107  BP     1  0 1.0000000000
## GO:0009104  BP     1  0 1.0000000000
## GO:0008653  BP     1  0 1.0000000000
## GO:2001306  BP     1  0 1.0000000000
## GO:2001304  BP     1  0 1.0000000000
## GO:0021703  BP     1  0 1.0000000000
## GO:0036116  BP     1  0 1.0000000000
## GO:0060427  BP     1  0 1.0000000000
## GO:0060464  BP     1  0 1.0000000000
## GO:0061100  BP     1  0 1.0000000000
## GO:0060432  BP     1  0 1.0000000000
## GO:0061115  BP     1  0 1.0000000000
## GO:0035471  BP     1  0 1.0000000000
## GO:0003017  BP     1  0 1.0000000000
## GO:1904977  BP     1  0 1.0000000000
## GO:0042109  BP     1  0 1.0000000000
## GO:0032641  BP     1  0 1.0000000000
## GO:0035752  BP     1  0 1.0000000000
## GO:0006430  BP     1  0 1.0000000000
## GO:0090625  BP     1  0 1.0000000000
## GO:0070054  BP     1  0 1.0000000000
## GO:0002472  BP     1  0 1.0000000000
## GO:0061519  BP     1  0 1.0000000000
## GO:0010931  BP     1  0 1.0000000000
## GO:0072024  BP     1  0 1.0000000000
## GO:0051685  BP     1  0 1.0000000000
## GO:0033382  BP     1  0 1.0000000000
## GO:0034090  BP     1  0 1.0000000000
## GO:0035875  BP     1  0 1.0000000000
## GO:0071960  BP     1  0 1.0000000000
## GO:0048790  BP     1  0 1.0000000000
## GO:0033379  BP     1  0 1.0000000000
## GO:0033373  BP     1  0 1.0000000000
## GO:0033377  BP     1  0 1.0000000000
## GO:0033370  BP     1  0 1.0000000000
## GO:0085018  BP     1  0 1.0000000000
## GO:0001192  BP     1  0 1.0000000000
## GO:0001193  BP     1  0 1.0000000000
## GO:0036098  BP     1  0 1.0000000000
## GO:0051308  BP     1  0 1.0000000000
## GO:0007112  BP     1  0 1.0000000000
## GO:0007065  BP     1  0 1.0000000000
## GO:0035039  BP     1  0 1.0000000000
## GO:0019102  BP     1  0 1.0000000000
## GO:0090410  BP     1  0 1.0000000000
## GO:2001295  BP     1  0 1.0000000000
## GO:2001294  BP     1  0 1.0000000000
## GO:0060649  BP     1  0 1.0000000000
## GO:0060611  BP     1  0 1.0000000000
## GO:0002174  BP     1  0 1.0000000000
## GO:0061374  BP     1  0 1.0000000000
## GO:0018924  BP     1  0 1.0000000000
## GO:0061978  BP     1  0 1.0000000000
## GO:0055071  BP     1  0 1.0000000000
## GO:0046355  BP     1  0 1.0000000000
## GO:0010412  BP     1  0 1.0000000000
## GO:0015797  BP     1  0 1.0000000000
## GO:0006057  BP     1  0 1.0000000000
## GO:0006056  BP     1  0 1.0000000000
## GO:0006050  BP     1  0 1.0000000000
## GO:0019309  BP     1  0 1.0000000000
## GO:0061611  BP     1  0 1.0000000000
## GO:0048047  BP     1  0 1.0000000000
## GO:0000481  BP     1  0 1.0000000000
## GO:0035782  BP     1  0 1.0000000000
## GO:0036114  BP     1  0 1.0000000000
## GO:0021723  BP     1  0 1.0000000000
## GO:0010780  BP     1  0 1.0000000000
## GO:0000707  BP     1  0 1.0000000000
## GO:0098768  BP     1  0 1.0000000000
## GO:0007146  BP     1  0 1.0000000000
## GO:0033316  BP     1  0 1.0000000000
## GO:0044779  BP     1  0 1.0000000000
## GO:0051232  BP     1  0 1.0000000000
## GO:0051257  BP     1  0 1.0000000000
## GO:0097326  BP     1  0 1.0000000000
## GO:1902362  BP     1  0 1.0000000000
## GO:0086052  BP     1  0 1.0000000000
## GO:0086050  BP     1  0 1.0000000000
## GO:0022614  BP     1  0 1.0000000000
## GO:0061485  BP     1  0 1.0000000000
## GO:0009234  BP     1  0 1.0000000000
## GO:0042696  BP     1  0 1.0000000000
## GO:0042697  BP     1  0 1.0000000000
## GO:0015694  BP     1  0 1.0000000000
## GO:1901146  BP     1  0 1.0000000000
## GO:1901706  BP     1  0 1.0000000000
## GO:0060781  BP     1  0 1.0000000000
## GO:0060783  BP     1  0 1.0000000000
## GO:0061235  BP     1  0 1.0000000000
## GO:0072285  BP     1  0 1.0000000000
## GO:0072036  BP     1  0 1.0000000000
## GO:0060496  BP     1  0 1.0000000000
## GO:0060739  BP     1  0 1.0000000000
## GO:0090131  BP     1  0 1.0000000000
## GO:0090133  BP     1  0 1.0000000000
## GO:0048338  BP     1  0 1.0000000000
## GO:0007500  BP     1  0 1.0000000000
## GO:0061215  BP     1  0 1.0000000000
## GO:0061228  BP     1  0 1.0000000000
## GO:0061206  BP     1  0 1.0000000000
## GO:0052406  BP     1  0 1.0000000000
## GO:0052410  BP     1  0 1.0000000000
## GO:0052417  BP     1  0 1.0000000000
## GO:0052407  BP     1  0 1.0000000000
## GO:0052411  BP     1  0 1.0000000000
## GO:0052418  BP     1  0 1.0000000000
## GO:0042040  BP     1  0 1.0000000000
## GO:0072213  BP     1  0 1.0000000000
## GO:0072266  BP     1  0 1.0000000000
## GO:0072265  BP     1  0 1.0000000000
## GO:0072267  BP     1  0 1.0000000000
## GO:0072286  BP     1  0 1.0000000000
## GO:0072220  BP     1  0 1.0000000000
## GO:0072274  BP     1  0 1.0000000000
## GO:0072264  BP     1  0 1.0000000000
## GO:0072255  BP     1  0 1.0000000000
## GO:0072254  BP     1  0 1.0000000000
## GO:0072259  BP     1  0 1.0000000000
## GO:0072258  BP     1  0 1.0000000000
## GO:0072206  BP     1  0 1.0000000000
## GO:0072227  BP     1  0 1.0000000000
## GO:0072209  BP     1  0 1.0000000000
## GO:0072229  BP     1  0 1.0000000000
## GO:0072232  BP     1  0 1.0000000000
## GO:0072230  BP     1  0 1.0000000000
## GO:0072237  BP     1  0 1.0000000000
## GO:0072208  BP     1  0 1.0000000000
## GO:1990949  BP     1  0 1.0000000000
## GO:0009087  BP     1  0 1.0000000000
## GO:0061715  BP     1  0 1.0000000000
## GO:0090172  BP     1  0 1.0000000000
## GO:0099606  BP     1  0 1.0000000000
## GO:0099098  BP     1  0 1.0000000000
## GO:1904693  BP     1  0 1.0000000000
## GO:0021547  BP     1  0 1.0000000000
## GO:0021732  BP     1  0 1.0000000000
## GO:0022004  BP     1  0 1.0000000000
## GO:0060156  BP     1  0 1.0000000000
## GO:0031959  BP     1  0 1.0000000000
## GO:0070843  BP     1  0 1.0000000000
## GO:0070716  BP     1  0 1.0000000000
## GO:0072671  BP     1  0 1.0000000000
## GO:0033955  BP     1  0 1.0000000000
## GO:2000827  BP     1  0 1.0000000000
## GO:0070143  BP     1  0 1.0000000000
## GO:0070145  BP     1  0 1.0000000000
## GO:0006843  BP     1  0 1.0000000000
## GO:0097551  BP     1  0 1.0000000000
## GO:0097552  BP     1  0 1.0000000000
## GO:0070150  BP     1  0 1.0000000000
## GO:0090616  BP     1  0 1.0000000000
## GO:0097222  BP     1  0 1.0000000000
## GO:0035946  BP     1  0 1.0000000000
## GO:0045016  BP     1  0 1.0000000000
## GO:0035945  BP     1  0 1.0000000000
## GO:0090144  BP     1  0 1.0000000000
## GO:0072684  BP     1  0 1.0000000000
## GO:0070899  BP     1  0 1.0000000000
## GO:1990546  BP     1  0 1.0000000000
## GO:0070183  BP     1  0 1.0000000000
## GO:0070184  BP     1  0 1.0000000000
## GO:0034642  BP     1  0 1.0000000000
## GO:0035695  BP     1  0 1.0000000000
## GO:1902977  BP     1  0 1.0000000000
## GO:1902979  BP     1  0 1.0000000000
## GO:0000080  BP     1  0 1.0000000000
## GO:0000085  BP     1  0 1.0000000000
## GO:1903673  BP     1  0 1.0000000000
## GO:1990386  BP     1  0 1.0000000000
## GO:0061780  BP     1  0 1.0000000000
## GO:1990758  BP     1  0 1.0000000000
## GO:1990755  BP     1  0 1.0000000000
## GO:1903087  BP     1  0 1.0000000000
## GO:0052336  BP     1  0 1.0000000000
## GO:0052187  BP     1  0 1.0000000000
## GO:0052183  BP     1  0 1.0000000000
## GO:0052333  BP     1  0 1.0000000000
## GO:0052188  BP     1  0 1.0000000000
## GO:0052185  BP     1  0 1.0000000000
## GO:0099564  BP     1  0 1.0000000000
## GO:1990968  BP     1  0 1.0000000000
## GO:1990969  BP     1  0 1.0000000000
## GO:0052255  BP     1  0 1.0000000000
## GO:0052302  BP     1  0 1.0000000000
## GO:0052552  BP     1  0 1.0000000000
## GO:0052163  BP     1  0 1.0000000000
## GO:0085032  BP     1  0 1.0000000000
## GO:0052031  BP     1  0 1.0000000000
## GO:0052553  BP     1  0 1.0000000000
## GO:0052027  BP     1  0 1.0000000000
## GO:0044495  BP     1  0 1.0000000000
## GO:0044145  BP     1  0 1.0000000000
## GO:0044501  BP     1  0 1.0000000000
## GO:0052250  BP     1  0 1.0000000000
## GO:0015689  BP     1  0 1.0000000000
## GO:0018315  BP     1  0 1.0000000000
## GO:0002280  BP     1  0 1.0000000000
## GO:0016333  BP     1  0 1.0000000000
## GO:0021837  BP     1  0 1.0000000000
## GO:0044041  BP     1  0 1.0000000000
## GO:0044040  BP     1  0 1.0000000000
## GO:0044037  BP     1  0 1.0000000000
## GO:0150089  BP     1  0 1.0000000000
## GO:0150090  BP     1  0 1.0000000000
## GO:0042694  BP     1  0 1.0000000000
## GO:0007518  BP     1  0 1.0000000000
## GO:0014844  BP     1  0 1.0000000000
## GO:0070246  BP     1  0 1.0000000000
## GO:0110008  BP     1  0 1.0000000000
## GO:0043630  BP     1  0 1.0000000000
## GO:0044790  BP     1  0 1.0000000000
## GO:0032013  BP     1  0 1.0000000000
## GO:2000984  BP     1  0 1.0000000000
## GO:2000578  BP     1  0 1.0000000000
## GO:1905290  BP     1  0 1.0000000000
## GO:0045225  BP     1  0 1.0000000000
## GO:1900280  BP     1  0 1.0000000000
## GO:2000565  BP     1  0 1.0000000000
## GO:1902163  BP     1  0 1.0000000000
## GO:0120154  BP     1  0 1.0000000000
## GO:0070377  BP     1  0 1.0000000000
## GO:1902045  BP     1  0 1.0000000000
## GO:0045221  BP     1  0 1.0000000000
## GO:0043105  BP     1  0 1.0000000000
## GO:0043002  BP     1  0 1.0000000000
## GO:1903720  BP     1  0 1.0000000000
## GO:0034128  BP     1  0 1.0000000000
## GO:0060262  BP     1  0 1.0000000000
## GO:0051141  BP     1  0 1.0000000000
## GO:1905215  BP     1  0 1.0000000000
## GO:0017055  BP     1  0 1.0000000000
## GO:1900260  BP     1  0 1.0000000000
## GO:0062026  BP     1  0 1.0000000000
## GO:2000639  BP     1  0 1.0000000000
## GO:1905045  BP     1  0 1.0000000000
## GO:0002668  BP     1  0 1.0000000000
## GO:0002626  BP     1  0 1.0000000000
## GO:2000524  BP     1  0 1.0000000000
## GO:2000408  BP     1  0 1.0000000000
## GO:0046014  BP     1  0 1.0000000000
## GO:0002853  BP     1  0 1.0000000000
## GO:0002841  BP     1  0 1.0000000000
## GO:0002665  BP     1  0 1.0000000000
## GO:2000518  BP     1  0 1.0000000000
## GO:1903940  BP     1  0 1.0000000000
## GO:1903122  BP     1  0 1.0000000000
## GO:1904240  BP     1  0 1.0000000000
## GO:0061358  BP     1  0 1.0000000000
## GO:2000057  BP     1  0 1.0000000000
## GO:1904723  BP     1  0 1.0000000000
## GO:0014058  BP     1  0 1.0000000000
## GO:1901586  BP     1  0 1.0000000000
## GO:1902225  BP     1  0 1.0000000000
## GO:1904617  BP     1  0 1.0000000000
## GO:1904530  BP     1  0 1.0000000000
## GO:1904622  BP     1  0 1.0000000000
## GO:1905403  BP     1  0 1.0000000000
## GO:0002878  BP     1  0 1.0000000000
## GO:0060169  BP     1  0 1.0000000000
## GO:0140194  BP     1  0 1.0000000000
## GO:1904604  BP     1  0 1.0000000000
## GO:1903631  BP     1  0 1.0000000000
## GO:2000798  BP     1  0 1.0000000000
## GO:2000180  BP     1  0 1.0000000000
## GO:1903743  BP     1  0 1.0000000000
## GO:1902613  BP     1  0 1.0000000000
## GO:0002787  BP     1  0 1.0000000000
## GO:1905035  BP     1  0 1.0000000000
## GO:1904283  BP     1  0 1.0000000000
## GO:0008348  BP     1  0 1.0000000000
## GO:0002785  BP     1  0 1.0000000000
## GO:2000657  BP     1  0 1.0000000000
## GO:2000426  BP     1  0 1.0000000000
## GO:1900082  BP     1  0 1.0000000000
## GO:1905652  BP     1  0 1.0000000000
## GO:0045769  BP     1  0 1.0000000000
## GO:0048692  BP     1  0 1.0000000000
## GO:2000986  BP     1  0 1.0000000000
## GO:1904864  BP     1  0 1.0000000000
## GO:1903770  BP     1  0 1.0000000000
## GO:1904171  BP     1  0 1.0000000000
## GO:0110059  BP     1  0 1.0000000000
## GO:0031552  BP     1  0 1.0000000000
## GO:0072096  BP     1  0 1.0000000000
## GO:0072097  BP     1  0 1.0000000000
## GO:0061048  BP     1  0 1.0000000000
## GO:1903444  BP     1  0 1.0000000000
## GO:0070348  BP     1  0 1.0000000000
## GO:1905913  BP     1  0 1.0000000000
## GO:1903611  BP     1  0 1.0000000000
## GO:0051042  BP     1  0 1.0000000000
## GO:1903280  BP     1  0 1.0000000000
## GO:1901296  BP     1  0 1.0000000000
## GO:2000080  BP     1  0 1.0000000000
## GO:1905067  BP     1  0 1.0000000000
## GO:0060829  BP     1  0 1.0000000000
## GO:1905240  BP     1  0 1.0000000000
## GO:2000044  BP     1  0 1.0000000000
## GO:1901211  BP     1  0 1.0000000000
## GO:2000691  BP     1  0 1.0000000000
## GO:1905305  BP     1  0 1.0000000000
## GO:2000723  BP     1  0 1.0000000000
## GO:1904413  BP     1  0 1.0000000000
## GO:0009997  BP     1  0 1.0000000000
## GO:0051945  BP     1  0 1.0000000000
## GO:0106089  BP     1  0 1.0000000000
## GO:1904848  BP     1  0 1.0000000000
## GO:0060806  BP     1  0 1.0000000000
## GO:1905934  BP     1  0 1.0000000000
## GO:0060243  BP     1  0 1.0000000000
## GO:0021822  BP     1  0 1.0000000000
## GO:1903769  BP     1  0 1.0000000000
## GO:1904934  BP     1  0 1.0000000000
## GO:2000607  BP     1  0 1.0000000000
## GO:1900387  BP     1  0 1.0000000000
## GO:0033242  BP     1  0 1.0000000000
## GO:2000283  BP     1  0 1.0000000000
## GO:2001030  BP     1  0 1.0000000000
## GO:0032848  BP     1  0 1.0000000000
## GO:1900035  BP     1  0 1.0000000000
## GO:2001113  BP     1  0 1.0000000000
## GO:2000655  BP     1  0 1.0000000000
## GO:1905892  BP     1  0 1.0000000000
## GO:1905895  BP     1  0 1.0000000000
## GO:1903723  BP     1  0 1.0000000000
## GO:1903126  BP     1  0 1.0000000000
## GO:1903645  BP     1  0 1.0000000000
## GO:0071644  BP     1  0 1.0000000000
## GO:0090198  BP     1  0 1.0000000000
## GO:0060621  BP     1  0 1.0000000000
## GO:0060695  BP     1  0 1.0000000000
## GO:0002875  BP     1  0 1.0000000000
## GO:0002881  BP     1  0 1.0000000000
## GO:1904326  BP     1  0 1.0000000000
## GO:1903249  BP     1  0 1.0000000000
## GO:1905469  BP     1  0 1.0000000000
## GO:0033342  BP     1  0 1.0000000000
## GO:0048698  BP     1  0 1.0000000000
## GO:1903815  BP     1  0 1.0000000000
## GO:0045959  BP     1  0 1.0000000000
## GO:1904597  BP     1  0 1.0000000000
## GO:1903434  BP     1  0 1.0000000000
## GO:1901233  BP     1  0 1.0000000000
## GO:1904797  BP     1  0 1.0000000000
## GO:0051460  BP     1  0 1.0000000000
## GO:1900011  BP     1  0 1.0000000000
## GO:0051463  BP     1  0 1.0000000000
## GO:1904042  BP     1  0 1.0000000000
## GO:0010607  BP     1  0 1.0000000000
## GO:1900248  BP     1  0 1.0000000000
## GO:1904689  BP     1  0 1.0000000000
## GO:1903073  BP     1  0 1.0000000000
## GO:2000509  BP     1  0 1.0000000000
## GO:0002731  BP     1  0 1.0000000000
## GO:2000706  BP     1  0 1.0000000000
## GO:1905414  BP     1  0 1.0000000000
## GO:0061185  BP     1  0 1.0000000000
## GO:2000971  BP     1  0 1.0000000000
## GO:1905788  BP     1  0 1.0000000000
## GO:0044147  BP     1  0 1.0000000000
## GO:0048086  BP     1  0 1.0000000000
## GO:0051585  BP     1  0 1.0000000000
## GO:1901291  BP     1  0 1.0000000000
## GO:1905768  BP     1  0 1.0000000000
## GO:1904336  BP     1  0 1.0000000000
## GO:0042666  BP     1  0 1.0000000000
## GO:0051545  BP     1  0 1.0000000000
## GO:0060311  BP     1  0 1.0000000000
## GO:1904733  BP     1  0 1.0000000000
## GO:2001136  BP     1  0 1.0000000000
## GO:0032078  BP     1  0 1.0000000000
## GO:1904979  BP     1  0 1.0000000000
## GO:1904988  BP     1  0 1.0000000000
## GO:2000545  BP     1  0 1.0000000000
## GO:1904905  BP     1  0 1.0000000000
## GO:1904471  BP     1  0 1.0000000000
## GO:2000536  BP     1  0 1.0000000000
## GO:0043310  BP     1  0 1.0000000000
## GO:2000420  BP     1  0 1.0000000000
## GO:2000795  BP     1  0 1.0000000000
## GO:1905042  BP     1  0 1.0000000000
## GO:0034119  BP     1  0 1.0000000000
## GO:1902251  BP     1  0 1.0000000000
## GO:0034107  BP     1  0 1.0000000000
## GO:1904911  BP     1  0 1.0000000000
## GO:1904445  BP     1  0 1.0000000000
## GO:1903904  BP     1  0 1.0000000000
## GO:1904850  BP     1  0 1.0000000000
## GO:0001100  BP     1  0 1.0000000000
## GO:1901202  BP     1  0 1.0000000000
## GO:0048074  BP     1  0 1.0000000000
## GO:1904736  BP     1  0 1.0000000000
## GO:1903366  BP     1  0 1.0000000000
## GO:0110076  BP     1  0 1.0000000000
## GO:1904439  BP     1  0 1.0000000000
## GO:2000703  BP     1  0 1.0000000000
## GO:1905943  BP     1  0 1.0000000000
## GO:1901194  BP     1  0 1.0000000000
## GO:1903597  BP     1  0 1.0000000000
## GO:2000734  BP     1  0 1.0000000000
## GO:0003106  BP     1  0 1.0000000000
## GO:2000212  BP     1  0 1.0000000000
## GO:2000486  BP     1  0 1.0000000000
## GO:2000466  BP     1  0 1.0000000000
## GO:1904227  BP     1  0 1.0000000000
## GO:0071656  BP     1  0 1.0000000000
## GO:0032685  BP     1  0 1.0000000000
## GO:0002632  BP     1  0 1.0000000000
## GO:1904709  BP     1  0 1.0000000000
## GO:0061914  BP     1  0 1.0000000000
## GO:0031283  BP     1  0 1.0000000000
## GO:0061170  BP     1  0 1.0000000000
## GO:1901320  BP     1  0 1.0000000000
## GO:0003136  BP     1  0 1.0000000000
## GO:1901208  BP     1  0 1.0000000000
## GO:0001985  BP     1  0 1.0000000000
## GO:0031651  BP     1  0 1.0000000000
## GO:0046986  BP     1  0 1.0000000000
## GO:0061875  BP     1  0 1.0000000000
## GO:0070367  BP     1  0 1.0000000000
## GO:0048178  BP     1  0 1.0000000000
## GO:0032686  BP     1  0 1.0000000000
## GO:1902203  BP     1  0 1.0000000000
## GO:1990787  BP     1  0 1.0000000000
## GO:0010987  BP     1  0 1.0000000000
## GO:0071441  BP     1  0 1.0000000000
## GO:1901675  BP     1  0 1.0000000000
## GO:2001161  BP     1  0 1.0000000000
## GO:2000616  BP     1  0 1.0000000000
## GO:2000296  BP     1  0 1.0000000000
## GO:0045355  BP     1  0 1.0000000000
## GO:0045083  BP     1  0 1.0000000000
## GO:1902206  BP     1  0 1.0000000000
## GO:0032712  BP     1  0 1.0000000000
## GO:0045403  BP     1  0 1.0000000000
## GO:1902215  BP     1  0 1.0000000000
## GO:2000663  BP     1  0 1.0000000000
## GO:1902939  BP     1  0 1.0000000000
## GO:0032384  BP     1  0 1.0000000000
## GO:0032378  BP     1  0 1.0000000000
## GO:0032381  BP     1  0 1.0000000000
## GO:1905366  BP     1  0 1.0000000000
## GO:1902239  BP     1  0 1.0000000000
## GO:1904213  BP     1  0 1.0000000000
## GO:1904202  BP     1  0 1.0000000000
## GO:0045827  BP     1  0 1.0000000000
## GO:0048297  BP     1  0 1.0000000000
## GO:2000357  BP     1  0 1.0000000000
## GO:1903488  BP     1  0 1.0000000000
## GO:1902823  BP     1  0 1.0000000000
## GO:1902747  BP     1  0 1.0000000000
## GO:1903634  BP     1  0 1.0000000000
## GO:1904998  BP     1  0 1.0000000000
## GO:0051352  BP     1  0 1.0000000000
## GO:1900131  BP     1  0 1.0000000000
## GO:0110114  BP     1  0 1.0000000000
## GO:0060588  BP     1  0 1.0000000000
## GO:0034443  BP     1  0 1.0000000000
## GO:1904060  BP     1  0 1.0000000000
## GO:1905596  BP     1  0 1.0000000000
## GO:1905598  BP     1  0 1.0000000000
## GO:0061767  BP     1  0 1.0000000000
## GO:0002912  BP     1  0 1.0000000000
## GO:1905672  BP     1  0 1.0000000000
## GO:1904572  BP     1  0 1.0000000000
## GO:1904766  BP     1  0 1.0000000000
## GO:0002617  BP     1  0 1.0000000000
## GO:1901257  BP     1  0 1.0000000000
## GO:0034240  BP     1  0 1.0000000000
## GO:2000719  BP     1  0 1.0000000000
## GO:1905604  BP     1  0 1.0000000000
## GO:0060377  BP     1  0 1.0000000000
## GO:1904145  BP     1  0 1.0000000000
## GO:1900826  BP     1  0 1.0000000000
## GO:1902631  BP     1  0 1.0000000000
## GO:1905032  BP     1  0 1.0000000000
## GO:1905025  BP     1  0 1.0000000000
## GO:1903526  BP     1  0 1.0000000000
## GO:0043381  BP     1  0 1.0000000000
## GO:0061296  BP     1  0 1.0000000000
## GO:0072200  BP     1  0 1.0000000000
## GO:2000005  BP     1  0 1.0000000000
## GO:2000007  BP     1  0 1.0000000000
## GO:0072302  BP     1  0 1.0000000000
## GO:0072299  BP     1  0 1.0000000000
## GO:2000590  BP     1  0 1.0000000000
## GO:2000626  BP     1  0 1.0000000000
## GO:1904140  BP     1  0 1.0000000000
## GO:1903697  BP     1  0 1.0000000000
## GO:0061886  BP     1  0 1.0000000000
## GO:1905447  BP     1  0 1.0000000000
## GO:1902957  BP     1  0 1.0000000000
## GO:0070130  BP     1  0 1.0000000000
## GO:1904924  BP     1  0 1.0000000000
## GO:1904290  BP     1  0 1.0000000000
## GO:1903464  BP     1  0 1.0000000000
## GO:2000438  BP     1  0 1.0000000000
## GO:1904113  BP     1  0 1.0000000000
## GO:1905454  BP     1  0 1.0000000000
## GO:2000818  BP     1  0 1.0000000000
## GO:2000502  BP     1  0 1.0000000000
## GO:0002728  BP     1  0 1.0000000000
## GO:0043322  BP     1  0 1.0000000000
## GO:0072183  BP     1  0 1.0000000000
## GO:0090301  BP     1  0 1.0000000000
## GO:0061855  BP     1  0 1.0000000000
## GO:1902997  BP     1  0 1.0000000000
## GO:1904800  BP     1  0 1.0000000000
## GO:0032900  BP     1  0 1.0000000000
## GO:2000429  BP     1  0 1.0000000000
## GO:1900124  BP     1  0 1.0000000000
## GO:1903996  BP     1  0 1.0000000000
## GO:0051622  BP     1  0 1.0000000000
## GO:1902576  BP     1  0 1.0000000000
## GO:0070429  BP     1  0 1.0000000000
## GO:0070446  BP     1  0 1.0000000000
## GO:0090291  BP     1  0 1.0000000000
## GO:0060280  BP     1  0 1.0000000000
## GO:1902277  BP     1  0 1.0000000000
## GO:2000230  BP     1  0 1.0000000000
## GO:1905090  BP     1  0 1.0000000000
## GO:0060407  BP     1  0 1.0000000000
## GO:0120094  BP     1  0 1.0000000000
## GO:1900085  BP     1  0 1.0000000000
## GO:2001246  BP     1  0 1.0000000000
## GO:2001145  BP     1  0 1.0000000000
## GO:1900737  BP     1  0 1.0000000000
## GO:1904006  BP     1  0 1.0000000000
## GO:2000151  BP     1  0 1.0000000000
## GO:2000162  BP     1  0 1.0000000000
## GO:2000160  BP     1  0 1.0000000000
## GO:2000168  BP     1  0 1.0000000000
## GO:2000164  BP     1  0 1.0000000000
## GO:2000166  BP     1  0 1.0000000000
## GO:2000149  BP     1  0 1.0000000000
## GO:1903889  BP     1  0 1.0000000000
## GO:1905422  BP     1  0 1.0000000000
## GO:0071802  BP     1  0 1.0000000000
## GO:1904246  BP     1  0 1.0000000000
## GO:0050928  BP     1  0 1.0000000000
## GO:1902233  BP     1  0 1.0000000000
## GO:1905875  BP     1  0 1.0000000000
## GO:1901627  BP     1  0 1.0000000000
## GO:2000632  BP     1  0 1.0000000000
## GO:1905607  BP     1  0 1.0000000000
## GO:1901630  BP     1  0 1.0000000000
## GO:2000635  BP     1  0 1.0000000000
## GO:1903704  BP     1  0 1.0000000000
## GO:1902721  BP     1  0 1.0000000000
## GO:0061944  BP     1  0 1.0000000000
## GO:0010734  BP     1  0 1.0000000000
## GO:1903060  BP     1  0 1.0000000000
## GO:1904777  BP     1  0 1.0000000000
## GO:1905872  BP     1  0 1.0000000000
## GO:1903568  BP     1  0 1.0000000000
## GO:1905667  BP     1  0 1.0000000000
## GO:1905341  BP     1  0 1.0000000000
## GO:0150033  BP     1  0 1.0000000000
## GO:1904750  BP     1  0 1.0000000000
## GO:1903217  BP     1  0 1.0000000000
## GO:1905183  BP     1  0 1.0000000000
## GO:1904985  BP     1  0 1.0000000000
## GO:2000233  BP     1  0 1.0000000000
## GO:1903910  BP     1  0 1.0000000000
## GO:1902684  BP     1  0 1.0000000000
## GO:1905601  BP     1  0 1.0000000000
## GO:0003083  BP     1  0 1.0000000000
## GO:1903403  BP     1  0 1.0000000000
## GO:1900134  BP     1  0 1.0000000000
## GO:2001229  BP     1  0 1.0000000000
## GO:0060226  BP     1  0 1.0000000000
## GO:0090260  BP     1  0 1.0000000000
## GO:1900053  BP     1  0 1.0000000000
## GO:1905433  BP     1  0 1.0000000000
## GO:1902891  BP     1  0 1.0000000000
## GO:0060299  BP     1  0 1.0000000000
## GO:1904570  BP     1  0 1.0000000000
## GO:1904574  BP     1  0 1.0000000000
## GO:0048174  BP     1  0 1.0000000000
## GO:1905513  BP     1  0 1.0000000000
## GO:1904394  BP     1  0 1.0000000000
## GO:1904205  BP     1  0 1.0000000000
## GO:0043417  BP     1  0 1.0000000000
## GO:1905900  BP     1  0 1.0000000000
## GO:1903277  BP     1  0 1.0000000000
## GO:2000119  BP     1  0 1.0000000000
## GO:1903407  BP     1  0 1.0000000000
## GO:0090275  BP     1  0 1.0000000000
## GO:1902491  BP     1  0 1.0000000000
## GO:2000910  BP     1  0 1.0000000000
## GO:0061106  BP     1  0 1.0000000000
## GO:1901340  BP     1  0 1.0000000000
## GO:0062030  BP     1  0 1.0000000000
## GO:0032223  BP     1  0 1.0000000000
## GO:2000808  BP     1  0 1.0000000000
## GO:1900243  BP     1  0 1.0000000000
## GO:1905662  BP     1  0 1.0000000000
## GO:0032208  BP     1  0 1.0000000000
## GO:1901581  BP     1  0 1.0000000000
## GO:0061369  BP     1  0 1.0000000000
## GO:2000844  BP     1  0 1.0000000000
## GO:0098736  BP     1  0 1.0000000000
## GO:0003108  BP     1  0 1.0000000000
## GO:0001986  BP     1  0 1.0000000000
## GO:1903124  BP     1  0 1.0000000000
## GO:1903125  BP     1  0 1.0000000000
## GO:0050760  BP     1  0 1.0000000000
## GO:2000399  BP     1  0 1.0000000000
## GO:1904442  BP     1  0 1.0000000000
## GO:0051796  BP     1  0 1.0000000000
## GO:0034148  BP     1  0 1.0000000000
## GO:0061986  BP     1  0 1.0000000000
## GO:2001208  BP     1  0 1.0000000000
## GO:0061987  BP     1  0 1.0000000000
## GO:0010768  BP     1  0 1.0000000000
## GO:1901227  BP     1  0 1.0000000000
## GO:0051038  BP     1  0 1.0000000000
## GO:1904188  BP     1  0 1.0000000000
## GO:1901389  BP     1  0 1.0000000000
## GO:0032913  BP     1  0 1.0000000000
## GO:0032938  BP     1  0 1.0000000000
## GO:0010868  BP     1  0 1.0000000000
## GO:2000077  BP     1  0 1.0000000000
## GO:0001811  BP     1  0 1.0000000000
## GO:0051511  BP     1  0 1.0000000000
## GO:2000062  BP     1  0 1.0000000000
## GO:1903336  BP     1  0 1.0000000000
## GO:0061044  BP     1  0 1.0000000000
## GO:1901609  BP     1  0 1.0000000000
## GO:0070351  BP     1  0 1.0000000000
## GO:0071584  BP     1  0 1.0000000000
## GO:0035849  BP     1  0 1.0000000000
## GO:0021682  BP     1  0 1.0000000000
## GO:0014036  BP     1  0 1.0000000000
## GO:0003147  BP     1  0 1.0000000000
## GO:1903045  BP     1  0 1.0000000000
## GO:0021503  BP     1  0 1.0000000000
## GO:0021990  BP     1  0 1.0000000000
## GO:0021998  BP     1  0 1.0000000000
## GO:0097115  BP     1  0 1.0000000000
## GO:0060234  BP     1  0 1.0000000000
## GO:0014017  BP     1  0 1.0000000000
## GO:0007400  BP     1  0 1.0000000000
## GO:0098529  BP     1  0 1.0000000000
## GO:0106028  BP     1  0 1.0000000000
## GO:0061837  BP     1  0 1.0000000000
## GO:0099627  BP     1  0 1.0000000000
## GO:0019357  BP     1  0 1.0000000000
## GO:0046497  BP     1  0 1.0000000000
## GO:0019358  BP     1  0 1.0000000000
## GO:2001142  BP     1  0 1.0000000000
## GO:0060659  BP     1  0 1.0000000000
## GO:0042128  BP     1  0 1.0000000000
## GO:0043602  BP     1  0 1.0000000000
## GO:0015706  BP     1  0 1.0000000000
## GO:0046210  BP     1  0 1.0000000000
## GO:0038060  BP     1  0 1.0000000000
## GO:0015707  BP     1  0 1.0000000000
## GO:0090294  BP     1  0 1.0000000000
## GO:0001080  BP     1  0 1.0000000000
## GO:0090295  BP     1  0 1.0000000000
## GO:0001081  BP     1  0 1.0000000000
## GO:0038099  BP     1  0 1.0000000000
## GO:1905438  BP     1  0 1.0000000000
## GO:0098038  BP     1  0 1.0000000000
## GO:0070651  BP     1  0 1.0000000000
## GO:0046204  BP     1  0 1.0000000000
## GO:0003359  BP     1  0 1.0000000000
## GO:0060035  BP     1  0 1.0000000000
## GO:0060034  BP     1  0 1.0000000000
## GO:1902317  BP     1  0 1.0000000000
## GO:0030264  BP     1  0 1.0000000000
## GO:0071045  BP     1  0 1.0000000000
## GO:0071765  BP     1  0 1.0000000000
## GO:0071039  BP     1  0 1.0000000000
## GO:0071040  BP     1  0 1.0000000000
## GO:0071037  BP     1  0 1.0000000000
## GO:0071036  BP     1  0 1.0000000000
## GO:0070478  BP     1  0 1.0000000000
## GO:0070481  BP     1  0 1.0000000000
## GO:0090143  BP     1  0 1.0000000000
## GO:1990700  BP     1  0 1.0000000000
## GO:0007576  BP     1  0 1.0000000000
## GO:0006294  BP     1  0 1.0000000000
## GO:0021768  BP     1  0 1.0000000000
## GO:0071678  BP     1  0 1.0000000000
## GO:0021627  BP     1  0 1.0000000000
## GO:0021629  BP     1  0 1.0000000000
## GO:0140205  BP     1  0 1.0000000000
## GO:0070267  BP     1  0 1.0000000000
## GO:0036372  BP     1  0 1.0000000000
## GO:0061360  BP     1  0 1.0000000000
## GO:0003408  BP     1  0 1.0000000000
## GO:0003409  BP     1  0 1.0000000000
## GO:0021634  BP     1  0 1.0000000000
## GO:0101027  BP     1  0 1.0000000000
## GO:0007634  BP     1  0 1.0000000000
## GO:0006592  BP     1  0 1.0000000000
## GO:0006593  BP     1  0 1.0000000000
## GO:0036179  BP     1  0 1.0000000000
## GO:1905040  BP     1  0 1.0000000000
## GO:0072060  BP     1  0 1.0000000000
## GO:0033609  BP     1  0 1.0000000000
## GO:0070407  BP     1  0 1.0000000000
## GO:0071615  BP     1  0 1.0000000000
## GO:0150024  BP     1  0 1.0000000000
## GO:0022013  BP     1  0 1.0000000000
## GO:0003322  BP     1  0 1.0000000000
## GO:0003311  BP     1  0 1.0000000000
## GO:0090104  BP     1  0 1.0000000000
## GO:1990747  BP     1  0 1.0000000000
## GO:0015887  BP     1  0 1.0000000000
## GO:1990227  BP     1  0 1.0000000000
## GO:0048352  BP     1  0 1.0000000000
## GO:0007225  BP     1  0 1.0000000000
## GO:0042316  BP     1  0 1.0000000000
## GO:0019527  BP     1  0 1.0000000000
## GO:0019519  BP     1  0 1.0000000000
## GO:0001519  BP     1  0 1.0000000000
## GO:0002503  BP     1  0 1.0000000000
## GO:0050823  BP     1  0 1.0000000000
## GO:0046968  BP     1  0 1.0000000000
## GO:0050822  BP     1  0 1.0000000000
## GO:0018194  BP     1  0 1.0000000000
## GO:0036527  BP     1  0 1.0000000000
## GO:0030961  BP     1  0 1.0000000000
## GO:0019918  BP     1  0 1.0000000000
## GO:0042265  BP     1  0 1.0000000000
## GO:1990938  BP     1  0 1.0000000000
## GO:0018217  BP     1  0 1.0000000000
## GO:0036526  BP     1  0 1.0000000000
## GO:0098822  BP     1  0 1.0000000000
## GO:0018424  BP     1  0 1.0000000000
## GO:0035971  BP     1  0 1.0000000000
## GO:0036138  BP     1  0 1.0000000000
## GO:0018021  BP     1  0 1.0000000000
## GO:0140067  BP     1  0 1.0000000000
## GO:0036528  BP     1  0 1.0000000000
## GO:0036047  BP     1  0 1.0000000000
## GO:0036049  BP     1  0 1.0000000000
## GO:0018395  BP     1  0 1.0000000000
## GO:0061921  BP     1  0 1.0000000000
## GO:0018400  BP     1  0 1.0000000000
## GO:0018160  BP     1  0 1.0000000000
## GO:0018191  BP     1  0 1.0000000000
## GO:1990579  BP     1  0 1.0000000000
## GO:0002451  BP     1  0 1.0000000000
## GO:0036250  BP     1  0 1.0000000000
## GO:0090389  BP     1  0 1.0000000000
## GO:0042443  BP     1  0 1.0000000000
## GO:0036148  BP     1  0 1.0000000000
## GO:1904562  BP     1  0 1.0000000000
## GO:0036149  BP     1  0 1.0000000000
## GO:0097045  BP     1  0 1.0000000000
## GO:0035644  BP     1  0 1.0000000000
## GO:0071882  BP     1  0 1.0000000000
## GO:0030845  BP     1  0 1.0000000000
## GO:0071619  BP     1  0 1.0000000000
## GO:0071602  BP     1  0 1.0000000000
## GO:0006671  BP     1  0 1.0000000000
## GO:0043480  BP     1  0 1.0000000000
## GO:0043324  BP     1  0 1.0000000000
## GO:0043474  BP     1  0 1.0000000000
## GO:0090627  BP     1  0 1.0000000000
## GO:0090558  BP     1  0 1.0000000000
## GO:0099402  BP     1  0 1.0000000000
## GO:1905392  BP     1  0 1.0000000000
## GO:0044858  BP     1  0 1.0000000000
## GO:0002470  BP     1  0 1.0000000000
## GO:0036345  BP     1  0 1.0000000000
## GO:0070462  BP     1  0 1.0000000000
## GO:0106047  BP     1  0 1.0000000000
## GO:0098507  BP     1  0 1.0000000000
## GO:0015774  BP     1  0 1.0000000000
## GO:0070845  BP     1  0 1.0000000000
## GO:0070844  BP     1  0 1.0000000000
## GO:0043947  BP     1  0 1.0000000000
## GO:0052510  BP     1  0 1.0000000000
## GO:0052345  BP     1  0 1.0000000000
## GO:0052555  BP     1  0 1.0000000000
## GO:0052347  BP     1  0 1.0000000000
## GO:0052509  BP     1  0 1.0000000000
## GO:0052556  BP     1  0 1.0000000000
## GO:0043128  BP     1  0 1.0000000000
## GO:0061903  BP     1  0 1.0000000000
## GO:0090216  BP     1  0 1.0000000000
## GO:1903893  BP     1  0 1.0000000000
## GO:1903082  BP     1  0 1.0000000000
## GO:1905291  BP     1  0 1.0000000000
## GO:2000560  BP     1  0 1.0000000000
## GO:0032834  BP     1  0 1.0000000000
## GO:1900281  BP     1  0 1.0000000000
## GO:2000350  BP     1  0 1.0000000000
## GO:2000454  BP     1  0 1.0000000000
## GO:1905920  BP     1  0 1.0000000000
## GO:1902546  BP     1  0 1.0000000000
## GO:2000003  BP     1  0 1.0000000000
## GO:1904877  BP     1  0 1.0000000000
## GO:0060383  BP     1  0 1.0000000000
## GO:0060566  BP     1  0 1.0000000000
## GO:1905580  BP     1  0 1.0000000000
## GO:1904022  BP     1  0 1.0000000000
## GO:1903452  BP     1  0 1.0000000000
## GO:0071660  BP     1  0 1.0000000000
## GO:1905589  BP     1  0 1.0000000000
## GO:1903197  BP     1  0 1.0000000000
## GO:1903200  BP     1  0 1.0000000000
## GO:1905010  BP     1  0 1.0000000000
## GO:1903007  BP     1  0 1.0000000000
## GO:2000761  BP     1  0 1.0000000000
## GO:1902690  BP     1  0 1.0000000000
## GO:1900370  BP     1  0 1.0000000000
## GO:1904477  BP     1  0 1.0000000000
## GO:2001108  BP     1  0 1.0000000000
## GO:0035543  BP     1  0 1.0000000000
## GO:2000640  BP     1  0 1.0000000000
## GO:1903755  BP     1  0 1.0000000000
## GO:1904268  BP     1  0 1.0000000000
## GO:0010625  BP     1  0 1.0000000000
## GO:2001190  BP     1  0 1.0000000000
## GO:0042103  BP     1  0 1.0000000000
## GO:2000330  BP     1  0 1.0000000000
## GO:0045556  BP     1  0 1.0000000000
## GO:0060804  BP     1  0 1.0000000000
## GO:0009789  BP     1  0 1.0000000000
## GO:1905923  BP     1  0 1.0000000000
## GO:1904699  BP     1  0 1.0000000000
## GO:1904618  BP     1  0 1.0000000000
## GO:1904531  BP     1  0 1.0000000000
## GO:1903920  BP     1  0 1.0000000000
## GO:1905404  BP     1  0 1.0000000000
## GO:1905676  BP     1  0 1.0000000000
## GO:0140196  BP     1  0 1.0000000000
## GO:1904992  BP     1  0 1.0000000000
## GO:1900731  BP     1  0 1.0000000000
## GO:1904605  BP     1  0 1.0000000000
## GO:2001250  BP     1  0 1.0000000000
## GO:2000836  BP     1  0 1.0000000000
## GO:0061881  BP     1  0 1.0000000000
## GO:0006963  BP     1  0 1.0000000000
## GO:0001815  BP     1  0 1.0000000000
## GO:0002591  BP     1  0 1.0000000000
## GO:0002807  BP     1  0 1.0000000000
## GO:1904831  BP     1  0 1.0000000000
## GO:0150072  BP     1  0 1.0000000000
## GO:1904450  BP     1  0 1.0000000000
## GO:0061890  BP     1  0 1.0000000000
## GO:2000464  BP     1  0 1.0000000000
## GO:0045770  BP     1  0 1.0000000000
## GO:1903949  BP     1  0 1.0000000000
## GO:1905128  BP     1  0 1.0000000000
## GO:0006965  BP     1  0 1.0000000000
## GO:0044497  BP     1  0 1.0000000000
## GO:0070349  BP     1  0 1.0000000000
## GO:1904364  BP     1  0 1.0000000000
## GO:1902082  BP     1  0 1.0000000000
## GO:1903235  BP     1  0 1.0000000000
## GO:0046587  BP     1  0 1.0000000000
## GO:0051041  BP     1  0 1.0000000000
## GO:1901297  BP     1  0 1.0000000000
## GO:2000081  BP     1  0 1.0000000000
## GO:1905068  BP     1  0 1.0000000000
## GO:1903676  BP     1  0 1.0000000000
## GO:1903781  BP     1  0 1.0000000000
## GO:0062000  BP     1  0 1.0000000000
## GO:0055020  BP     1  0 1.0000000000
## GO:1904414  BP     1  0 1.0000000000
## GO:1905062  BP     1  0 1.0000000000
## GO:0043946  BP     1  0 1.0000000000
## GO:0010650  BP     1  0 1.0000000000
## GO:1905917  BP     1  0 1.0000000000
## GO:1904935  BP     1  0 1.0000000000
## GO:0003251  BP     1  0 1.0000000000
## GO:1901964  BP     1  0 1.0000000000
## GO:0045795  BP     1  0 1.0000000000
## GO:2000284  BP     1  0 1.0000000000
## GO:2001031  BP     1  0 1.0000000000
## GO:1905959  BP     1  0 1.0000000000
## GO:1900036  BP     1  0 1.0000000000
## GO:0002897  BP     1  0 1.0000000000
## GO:0002648  BP     1  0 1.0000000000
## GO:1904716  BP     1  0 1.0000000000
## GO:0071654  BP     1  0 1.0000000000
## GO:1903886  BP     1  0 1.0000000000
## GO:0070101  BP     1  0 1.0000000000
## GO:1904367  BP     1  0 1.0000000000
## GO:1904056  BP     1  0 1.0000000000
## GO:1902771  BP     1  0 1.0000000000
## GO:0031940  BP     1  0 1.0000000000
## GO:1904501  BP     1  0 1.0000000000
## GO:0002882  BP     1  0 1.0000000000
## GO:0090321  BP     1  0 1.0000000000
## GO:0090319  BP     1  0 1.0000000000
## GO:0003353  BP     1  0 1.0000000000
## GO:1905309  BP     1  0 1.0000000000
## GO:0033343  BP     1  0 1.0000000000
## GO:1903816  BP     1  0 1.0000000000
## GO:1903661  BP     1  0 1.0000000000
## GO:1903435  BP     1  0 1.0000000000
## GO:2000066  BP     1  0 1.0000000000
## GO:1902161  BP     1  0 1.0000000000
## GO:2001272  BP     1  0 1.0000000000
## GO:0060470  BP     1  0 1.0000000000
## GO:1903629  BP     1  0 1.0000000000
## GO:1901835  BP     1  0 1.0000000000
## GO:2000549  BP     1  0 1.0000000000
## GO:1905415  BP     1  0 1.0000000000
## GO:1902955  BP     1  0 1.0000000000
## GO:0140051  BP     1  0 1.0000000000
## GO:2000802  BP     1  0 1.0000000000
## GO:1903917  BP     1  0 1.0000000000
## GO:1904980  BP     1  0 1.0000000000
## GO:1905751  BP     1  0 1.0000000000
## GO:1904472  BP     1  0 1.0000000000
## GO:1905043  BP     1  0 1.0000000000
## GO:0034120  BP     1  0 1.0000000000
## GO:0061931  BP     1  0 1.0000000000
## GO:2000784  BP     1  0 1.0000000000
## GO:2000863  BP     1  0 1.0000000000
## GO:1905537  BP     1  0 1.0000000000
## GO:1904651  BP     1  0 1.0000000000
## GO:1904440  BP     1  0 1.0000000000
## GO:2000415  BP     1  0 1.0000000000
## GO:0120183  BP     1  0 1.0000000000
## GO:2000979  BP     1  0 1.0000000000
## GO:0050754  BP     1  0 1.0000000000
## GO:0032724  BP     1  0 1.0000000000
## GO:0060550  BP     1  0 1.0000000000
## GO:0060552  BP     1  0 1.0000000000
## GO:0072303  BP     1  0 1.0000000000
## GO:1904635  BP     1  0 1.0000000000
## GO:0031948  BP     1  0 1.0000000000
## GO:0031945  BP     1  0 1.0000000000
## GO:1904025  BP     1  0 1.0000000000
## GO:2000753  BP     1  0 1.0000000000
## GO:2000213  BP     1  0 1.0000000000
## GO:0035229  BP     1  0 1.0000000000
## GO:0120008  BP     1  0 1.0000000000
## GO:2000487  BP     1  0 1.0000000000
## GO:1903284  BP     1  0 1.0000000000
## GO:1900925  BP     1  0 1.0000000000
## GO:2000526  BP     1  0 1.0000000000
## GO:1904710  BP     1  0 1.0000000000
## GO:1904197  BP     1  0 1.0000000000
## GO:2000513  BP     1  0 1.0000000000
## GO:1905099  BP     1  0 1.0000000000
## GO:0071338  BP     1  0 1.0000000000
## GO:0003065  BP     1  0 1.0000000000
## GO:0001988  BP     1  0 1.0000000000
## GO:1902038  BP     1  0 1.0000000000
## GO:1905855  BP     1  0 1.0000000000
## GO:1905860  BP     1  0 1.0000000000
## GO:0061874  BP     1  0 1.0000000000
## GO:1904899  BP     1  0 1.0000000000
## GO:1902204  BP     1  0 1.0000000000
## GO:0110090  BP     1  0 1.0000000000
## GO:1901676  BP     1  0 1.0000000000
## GO:2001255  BP     1  0 1.0000000000
## GO:1905437  BP     1  0 1.0000000000
## GO:0070512  BP     1  0 1.0000000000
## GO:1903586  BP     1  0 1.0000000000
## GO:0050668  BP     1  0 1.0000000000
## GO:1903387  BP     1  0 1.0000000000
## GO:1903285  BP     1  0 1.0000000000
## GO:1904828  BP     1  0 1.0000000000
## GO:1902073  BP     1  0 1.0000000000
## GO:0002642  BP     1  0 1.0000000000
## GO:0045609  BP     1  0 1.0000000000
## GO:2000982  BP     1  0 1.0000000000
## GO:0010925  BP     1  0 1.0000000000
## GO:0050726  BP     1  0 1.0000000000
## GO:2000661  BP     1  0 1.0000000000
## GO:0032738  BP     1  0 1.0000000000
## GO:0045380  BP     1  0 1.0000000000
## GO:1903883  BP     1  0 1.0000000000
## GO:2000494  BP     1  0 1.0000000000
## GO:2000572  BP     1  0 1.0000000000
## GO:0045407  BP     1  0 1.0000000000
## GO:1904480  BP     1  0 1.0000000000
## GO:0045797  BP     1  0 1.0000000000
## GO:0060731  BP     1  0 1.0000000000
## GO:1904731  BP     1  0 1.0000000000
## GO:1901254  BP     1  0 1.0000000000
## GO:1902220  BP     1  0 1.0000000000
## GO:1905926  BP     1  0 1.0000000000
## GO:1905929  BP     1  0 1.0000000000
## GO:1901980  BP     1  0 1.0000000000
## GO:0034761  BP     1  0 1.0000000000
## GO:0034758  BP     1  0 1.0000000000
## GO:1905017  BP     1  0 1.0000000000
## GO:0045828  BP     1  0 1.0000000000
## GO:2000358  BP     1  0 1.0000000000
## GO:1902824  BP     1  0 1.0000000000
## GO:1902078  BP     1  0 1.0000000000
## GO:1902748  BP     1  0 1.0000000000
## GO:1904999  BP     1  0 1.0000000000
## GO:0035491  BP     1  0 1.0000000000
## GO:1903002  BP     1  0 1.0000000000
## GO:0110113  BP     1  0 1.0000000000
## GO:0140077  BP     1  0 1.0000000000
## GO:0090326  BP     1  0 1.0000000000
## GO:0140214  BP     1  0 1.0000000000
## GO:1905597  BP     1  0 1.0000000000
## GO:1905599  BP     1  0 1.0000000000
## GO:1901248  BP     1  0 1.0000000000
## GO:1905673  BP     1  0 1.0000000000
## GO:1903839  BP     1  0 1.0000000000
## GO:1905612  BP     1  0 1.0000000000
## GO:0031439  BP     1  0 1.0000000000
## GO:0090366  BP     1  0 1.0000000000
## GO:1902228  BP     1  0 1.0000000000
## GO:0010933  BP     1  0 1.0000000000
## GO:0034096  BP     1  0 1.0000000000
## GO:2000711  BP     1  0 1.0000000000
## GO:1904840  BP     1  0 1.0000000000
## GO:2000103  BP     1  0 1.0000000000
## GO:0038097  BP     1  0 1.0000000000
## GO:0060376  BP     1  0 1.0000000000
## GO:1904303  BP     1  0 1.0000000000
## GO:1904466  BP     1  0 1.0000000000
## GO:0045633  BP     1  0 1.0000000000
## GO:1903343  BP     1  0 1.0000000000
## GO:1905134  BP     1  0 1.0000000000
## GO:1902910  BP     1  0 1.0000000000
## GO:1900827  BP     1  0 1.0000000000
## GO:1905033  BP     1  0 1.0000000000
## GO:1905026  BP     1  0 1.0000000000
## GO:1905904  BP     1  0 1.0000000000
## GO:1905772  BP     1  0 1.0000000000
## GO:0048337  BP     1  0 1.0000000000
## GO:0090096  BP     1  0 1.0000000000
## GO:2000478  BP     1  0 1.0000000000
## GO:2001076  BP     1  0 1.0000000000
## GO:1905188  BP     1  0 1.0000000000
## GO:1902104  BP     1  0 1.0000000000
## GO:1905020  BP     1  0 1.0000000000
## GO:0014008  BP     1  0 1.0000000000
## GO:0090297  BP     1  0 1.0000000000
## GO:1903465  BP     1  0 1.0000000000
## GO:1905406  BP     1  0 1.0000000000
## GO:0045951  BP     1  0 1.0000000000
## GO:1902846  BP     1  0 1.0000000000
## GO:0110028  BP     1  0 1.0000000000
## GO:0032773  BP     1  0 1.0000000000
## GO:1905485  BP     1  0 1.0000000000
## GO:0014739  BP     1  0 1.0000000000
## GO:1904330  BP     1  0 1.0000000000
## GO:1904762  BP     1  0 1.0000000000
## GO:0035505  BP     1  0 1.0000000000
## GO:0035508  BP     1  0 1.0000000000
## GO:2000287  BP     1  0 1.0000000000
## GO:0050924  BP     1  0 1.0000000000
## GO:1902998  BP     1  0 1.0000000000
## GO:1900075  BP     1  0 1.0000000000
## GO:0045660  BP     1  0 1.0000000000
## GO:0070962  BP     1  0 1.0000000000
## GO:0070963  BP     1  0 1.0000000000
## GO:0045848  BP     1  0 1.0000000000
## GO:1901231  BP     1  0 1.0000000000
## GO:0032244  BP     1  0 1.0000000000
## GO:0070430  BP     1  0 1.0000000000
## GO:1901331  BP     1  0 1.0000000000
## GO:1900143  BP     1  0 1.0000000000
## GO:2000476  BP     1  0 1.0000000000
## GO:1903028  BP     1  0 1.0000000000
## GO:2000597  BP     1  0 1.0000000000
## GO:1905593  BP     1  0 1.0000000000
## GO:1904120  BP     1  0 1.0000000000
## GO:1902278  BP     1  0 1.0000000000
## GO:2000231  BP     1  0 1.0000000000
## GO:1904244  BP     1  0 1.0000000000
## GO:0002851  BP     1  0 1.0000000000
## GO:2000470  BP     1  0 1.0000000000
## GO:2000187  BP     1  0 1.0000000000
## GO:1905695  BP     1  0 1.0000000000
## GO:1900163  BP     1  0 1.0000000000
## GO:1901409  BP     1  0 1.0000000000
## GO:2001165  BP     1  0 1.0000000000
## GO:0046534  BP     1  0 1.0000000000
## GO:1900100  BP     1  0 1.0000000000
## GO:1905221  BP     1  0 1.0000000000
## GO:1904247  BP     1  0 1.0000000000
## GO:1905698  BP     1  0 1.0000000000
## GO:0099588  BP     1  0 1.0000000000
## GO:1904453  BP     1  0 1.0000000000
## GO:1905608  BP     1  0 1.0000000000
## GO:1905520  BP     1  0 1.0000000000
## GO:1901631  BP     1  0 1.0000000000
## GO:2000975  BP     1  0 1.0000000000
## GO:2000176  BP     1  0 1.0000000000
## GO:2000184  BP     1  0 1.0000000000
## GO:1902213  BP     1  0 1.0000000000
## GO:0061078  BP     1  0 1.0000000000
## GO:2000363  BP     1  0 1.0000000000
## GO:0090284  BP     1  0 1.0000000000
## GO:1903638  BP     1  0 1.0000000000
## GO:1903572  BP     1  0 1.0000000000
## GO:1904372  BP     1  0 1.0000000000
## GO:1904510  BP     1  0 1.0000000000
## GO:1905873  BP     1  0 1.0000000000
## GO:0120187  BP     1  0 1.0000000000
## GO:1903569  BP     1  0 1.0000000000
## GO:0150032  BP     1  0 1.0000000000
## GO:1902365  BP     1  0 1.0000000000
## GO:2000436  BP     1  0 1.0000000000
## GO:1904808  BP     1  0 1.0000000000
## GO:1904592  BP     1  0 1.0000000000
## GO:1905184  BP     1  0 1.0000000000
## GO:0150074  BP     1  0 1.0000000000
## GO:1905273  BP     1  0 1.0000000000
## GO:0120072  BP     1  0 1.0000000000
## GO:1903168  BP     1  0 1.0000000000
## GO:1904199  BP     1  0 1.0000000000
## GO:1901899  BP     1  0 1.0000000000
## GO:2000534  BP     1  0 1.0000000000
## GO:2001153  BP     1  0 1.0000000000
## GO:1901421  BP     1  0 1.0000000000
## GO:0046670  BP     1  0 1.0000000000
## GO:1900054  BP     1  0 1.0000000000
## GO:2001019  BP     1  0 1.0000000000
## GO:1901956  BP     1  0 1.0000000000
## GO:1905281  BP     1  0 1.0000000000
## GO:2000199  BP     1  0 1.0000000000
## GO:2000208  BP     1  0 1.0000000000
## GO:2000202  BP     1  0 1.0000000000
## GO:0061189  BP     1  0 1.0000000000
## GO:0090340  BP     1  0 1.0000000000
## GO:1904411  BP     1  0 1.0000000000
## GO:1904571  BP     1  0 1.0000000000
## GO:2001262  BP     1  0 1.0000000000
## GO:2000764  BP     1  0 1.0000000000
## GO:0061090  BP     1  0 1.0000000000
## GO:1904792  BP     1  0 1.0000000000
## GO:0060381  BP     1  0 1.0000000000
## GO:1905609  BP     1  0 1.0000000000
## GO:1904320  BP     1  0 1.0000000000
## GO:1905901  BP     1  0 1.0000000000
## GO:1901622  BP     1  0 1.0000000000
## GO:1905382  BP     1  0 1.0000000000
## GO:1903408  BP     1  0 1.0000000000
## GO:1904677  BP     1  0 1.0000000000
## GO:1901307  BP     1  0 1.0000000000
## GO:1902070  BP     1  0 1.0000000000
## GO:2000755  BP     1  0 1.0000000000
## GO:1904050  BP     1  0 1.0000000000
## GO:0120069  BP     1  0 1.0000000000
## GO:0098530  BP     1  0 1.0000000000
## GO:1904460  BP     1  0 1.0000000000
## GO:1904496  BP     1  0 1.0000000000
## GO:0031337  BP     1  0 1.0000000000
## GO:1904034  BP     1  0 1.0000000000
## GO:1901582  BP     1  0 1.0000000000
## GO:1905549  BP     1  0 1.0000000000
## GO:1904535  BP     1  0 1.0000000000
## GO:2001051  BP     1  0 1.0000000000
## GO:1904595  BP     1  0 1.0000000000
## GO:2000806  BP     1  0 1.0000000000
## GO:0003059  BP     1  0 1.0000000000
## GO:0003061  BP     1  0 1.0000000000
## GO:1905023  BP     1  0 1.0000000000
## GO:2000614  BP     1  0 1.0000000000
## GO:0002651  BP     1  0 1.0000000000
## GO:0002845  BP     1  0 1.0000000000
## GO:0034181  BP     1  0 1.0000000000
## GO:0000411  BP     1  0 1.0000000000
## GO:0061586  BP     1  0 1.0000000000
## GO:0000435  BP     1  0 1.0000000000
## GO:0061400  BP     1  0 1.0000000000
## GO:2000763  BP     1  0 1.0000000000
## GO:0090282  BP     1  0 1.0000000000
## GO:0007072  BP     1  0 1.0000000000
## GO:0051039  BP     1  0 1.0000000000
## GO:1904300  BP     1  0 1.0000000000
## GO:1903620  BP     1  0 1.0000000000
## GO:1901390  BP     1  0 1.0000000000
## GO:1901394  BP     1  0 1.0000000000
## GO:0036494  BP     1  0 1.0000000000
## GO:1904075  BP     1  0 1.0000000000
## GO:0090044  BP     1  0 1.0000000000
## GO:0034346  BP     1  0 1.0000000000
## GO:0001809  BP     1  0 1.0000000000
## GO:1903178  BP     1  0 1.0000000000
## GO:2000158  BP     1  0 1.0000000000
## GO:2000063  BP     1  0 1.0000000000
## GO:0050677  BP     1  0 1.0000000000
## GO:1900721  BP     1  0 1.0000000000
## GO:1903337  BP     1  0 1.0000000000
## GO:1905176  BP     1  0 1.0000000000
## GO:1905932  BP     1  0 1.0000000000
## GO:1903947  BP     1  0 1.0000000000
## GO:0010902  BP     1  0 1.0000000000
## GO:0106022  BP     1  0 1.0000000000
## GO:1904973  BP     1  0 1.0000000000
## GO:1903762  BP     1  0 1.0000000000
## GO:1905152  BP     1  0 1.0000000000
## GO:0040032  BP     1  0 1.0000000000
## GO:0003247  BP     1  0 1.0000000000
## GO:0048621  BP     1  0 1.0000000000
## GO:0035128  BP     1  0 1.0000000000
## GO:0035129  BP     1  0 1.0000000000
## GO:0007497  BP     1  0 1.0000000000
## GO:0099630  BP     1  0 1.0000000000
## GO:1990261  BP     1  0 1.0000000000
## GO:0035281  BP     1  0 1.0000000000
## GO:0021501  BP     1  0 1.0000000000
## GO:0099140  BP     1  0 1.0000000000
## GO:0099187  BP     1  0 1.0000000000
## GO:0003138  BP     1  0 1.0000000000
## GO:1990744  BP     1  0 1.0000000000
## GO:1990729  BP     1  0 1.0000000000
## GO:0007285  BP     1  0 1.0000000000
## GO:0060682  BP     1  0 1.0000000000
## GO:0003345  BP     1  0 1.0000000000
## GO:0006709  BP     1  0 1.0000000000
## GO:0031049  BP     1  0 1.0000000000
## GO:0039007  BP     1  0 1.0000000000
## GO:0039008  BP     1  0 1.0000000000
## GO:0015730  BP     1  0 1.0000000000
## GO:0019679  BP     1  0 1.0000000000
## GO:1902860  BP     1  0 1.0000000000
## GO:1902858  BP     1  0 1.0000000000
## GO:0051355  BP     1  0 1.0000000000
## GO:0018964  BP     1  0 1.0000000000
## GO:1905344  BP     1  0 1.0000000000
## GO:0002539  BP     1  0 1.0000000000
## GO:1990767  BP     1  0 1.0000000000
## GO:0090323  BP     1  0 1.0000000000
## GO:0060515  BP     1  0 1.0000000000
## GO:0060514  BP     1  0 1.0000000000
## GO:0033375  BP     1  0 1.0000000000
## GO:0033368  BP     1  0 1.0000000000
## GO:0080129  BP     1  0 1.0000000000
## GO:0044726  BP     1  0 1.0000000000
## GO:1990390  BP     1  0 1.0000000000
## GO:0042543  BP     1  0 1.0000000000
## GO:0018032  BP     1  0 1.0000000000
## GO:0009305  BP     1  0 1.0000000000
## GO:0035611  BP     1  0 1.0000000000
## GO:0140246  BP     1  0 1.0000000000
## GO:0099546  BP     1  0 1.0000000000
## GO:0061698  BP     1  0 1.0000000000
## GO:0036525  BP     1  0 1.0000000000
## GO:0036529  BP     1  0 1.0000000000
## GO:0036046  BP     1  0 1.0000000000
## GO:1990697  BP     1  0 1.0000000000
## GO:0036048  BP     1  0 1.0000000000
## GO:0042125  BP     1  0 1.0000000000
## GO:0033580  BP     1  0 1.0000000000
## GO:0010731  BP     1  0 1.0000000000
## GO:0033575  BP     1  0 1.0000000000
## GO:0044721  BP     1  0 1.0000000000
## GO:0098737  BP     1  0 1.0000000000
## GO:0042313  BP     1  0 1.0000000000
## GO:0090251  BP     1  0 1.0000000000
## GO:1904867  BP     1  0 1.0000000000
## GO:0036309  BP     1  0 1.0000000000
## GO:0033374  BP     1  0 1.0000000000
## GO:0036371  BP     1  0 1.0000000000
## GO:0044379  BP     1  0 1.0000000000
## GO:1904327  BP     1  0 1.0000000000
## GO:1904379  BP     1  0 1.0000000000
## GO:1903420  BP     1  0 1.0000000000
## GO:0033367  BP     1  0 1.0000000000
## GO:1905359  BP     1  0 1.0000000000
## GO:1903096  BP     1  0 1.0000000000
## GO:1902480  BP     1  0 1.0000000000
## GO:0035750  BP     1  0 1.0000000000
## GO:1903405  BP     1  0 1.0000000000
## GO:1903621  BP     1  0 1.0000000000
## GO:1902889  BP     1  0 1.0000000000
## GO:0071988  BP     1  0 1.0000000000
## GO:0015680  BP     1  0 1.0000000000
## GO:0018190  BP     1  0 1.0000000000
## GO:0045234  BP     1  0 1.0000000000
## GO:0044524  BP     1  0 1.0000000000
## GO:0044395  BP     1  0 1.0000000000
## GO:0036290  BP     1  0 1.0000000000
## GO:0032599  BP     1  0 1.0000000000
## GO:0071693  BP     1  0 1.0000000000
## GO:0018322  BP     1  0 1.0000000000
## GO:0032447  BP     1  0 1.0000000000
## GO:0001120  BP     1  0 1.0000000000
## GO:0018293  BP     1  0 1.0000000000
## GO:0090126  BP     1  0 1.0000000000
## GO:0017003  BP     1  0 1.0000000000
## GO:0018352  BP     1  0 1.0000000000
## GO:0018272  BP     1  0 1.0000000000
## GO:0017006  BP     1  0 1.0000000000
## GO:0072019  BP     1  0 1.0000000000
## GO:0072032  BP     1  0 1.0000000000
## GO:0014847  BP     1  0 1.0000000000
## GO:0072020  BP     1  0 1.0000000000
## GO:0031270  BP     1  0 1.0000000000
## GO:0019889  BP     1  0 1.0000000000
## GO:0061155  BP     1  0 1.0000000000
## GO:0009183  BP     1  0 1.0000000000
## GO:0009184  BP     1  0 1.0000000000
## GO:0009170  BP     1  0 1.0000000000
## GO:0090480  BP     1  0 1.0000000000
## GO:0034037  BP     1  0 1.0000000000
## GO:0009207  BP     1  0 1.0000000000
## GO:0032920  BP     1  0 1.0000000000
## GO:0033388  BP     1  0 1.0000000000
## GO:0033389  BP     1  0 1.0000000000
## GO:0009447  BP     1  0 1.0000000000
## GO:0015847  BP     1  0 1.0000000000
## GO:0120065  BP     1  0 1.0000000000
## GO:0019365  BP     1  0 1.0000000000
## GO:0009443  BP     1  0 1.0000000000
## GO:0032361  BP     1  0 1.0000000000
## GO:0008615  BP     1  0 1.0000000000
## GO:0008614  BP     1  0 1.0000000000
## GO:0046127  BP     1  0 1.0000000000
## GO:0009178  BP     1  0 1.0000000000
## GO:0009131  BP     1  0 1.0000000000
## GO:0043097  BP     1  0 1.0000000000
## GO:0032262  BP     1  0 1.0000000000
## GO:0009194  BP     1  0 1.0000000000
## GO:0009193  BP     1  0 1.0000000000
## GO:0010138  BP     1  0 1.0000000000
## GO:0008655  BP     1  0 1.0000000000
## GO:0009444  BP     1  0 1.0000000000
## GO:0034213  BP     1  0 1.0000000000
## GO:0009372  BP     1  0 1.0000000000
## GO:0052106  BP     1  0 1.0000000000
## GO:0070550  BP     1  0 1.0000000000
## GO:0000451  BP     1  0 1.0000000000
## GO:0000967  BP     1  0 1.0000000000
## GO:1990882  BP     1  0 1.0000000000
## GO:1904812  BP     1  0 1.0000000000
## GO:0009956  BP     1  0 1.0000000000
## GO:0036031  BP     1  0 1.0000000000
## GO:0010017  BP     1  0 1.0000000000
## GO:0009585  BP     1  0 1.0000000000
## GO:0043126  BP     1  0 1.0000000000
## GO:0061901  BP     1  0 1.0000000000
## GO:0090215  BP     1  0 1.0000000000
## GO:2000983  BP     1  0 1.0000000000
## GO:2000577  BP     1  0 1.0000000000
## GO:0070926  BP     1  0 1.0000000000
## GO:1903080  BP     1  0 1.0000000000
## GO:2000559  BP     1  0 1.0000000000
## GO:0045223  BP     1  0 1.0000000000
## GO:0032832  BP     1  0 1.0000000000
## GO:1905918  BP     1  0 1.0000000000
## GO:1900022  BP     1  0 1.0000000000
## GO:1904875  BP     1  0 1.0000000000
## GO:0110026  BP     1  0 1.0000000000
## GO:1905578  BP     1  0 1.0000000000
## GO:1902044  BP     1  0 1.0000000000
## GO:0045219  BP     1  0 1.0000000000
## GO:1900128  BP     1  0 1.0000000000
## GO:1903450  BP     1  0 1.0000000000
## GO:0043095  BP     1  0 1.0000000000
## GO:0042999  BP     1  0 1.0000000000
## GO:0071658  BP     1  0 1.0000000000
## GO:1905541  BP     1  0 1.0000000000
## GO:1903195  BP     1  0 1.0000000000
## GO:1903198  BP     1  0 1.0000000000
## GO:1905008  BP     1  0 1.0000000000
## GO:0071701  BP     1  0 1.0000000000
## GO:2000759  BP     1  0 1.0000000000
## GO:0060254  BP     1  0 1.0000000000
## GO:0098906  BP     1  0 1.0000000000
## GO:1905255  BP     1  0 1.0000000000
## GO:1900259  BP     1  0 1.0000000000
## GO:0062025  BP     1  0 1.0000000000
## GO:1903182  BP     1  0 1.0000000000
## GO:1904266  BP     1  0 1.0000000000
## GO:1905044  BP     1  0 1.0000000000
## GO:0002852  BP     1  0 1.0000000000
## GO:2000517  BP     1  0 1.0000000000
## GO:0045554  BP     1  0 1.0000000000
## GO:1904239  BP     1  0 1.0000000000
## GO:2000056  BP     1  0 1.0000000000
## GO:1904711  BP     1  0 1.0000000000
## GO:0009787  BP     1  0 1.0000000000
## GO:1905921  BP     1  0 1.0000000000
## GO:1903048  BP     1  0 1.0000000000
## GO:1904697  BP     1  0 1.0000000000
## GO:0090138  BP     1  0 1.0000000000
## GO:0043538  BP     1  0 1.0000000000
## GO:1904621  BP     1  0 1.0000000000
## GO:0010578  BP     1  0 1.0000000000
## GO:0071877  BP     1  0 1.0000000000
## GO:0140193  BP     1  0 1.0000000000
## GO:1904990  BP     1  0 1.0000000000
## GO:1900729  BP     1  0 1.0000000000
## GO:1905226  BP     1  0 1.0000000000
## GO:1904603  BP     1  0 1.0000000000
## GO:0051941  BP     1  0 1.0000000000
## GO:2001248  BP     1  0 1.0000000000
## GO:2000797  BP     1  0 1.0000000000
## GO:2000834  BP     1  0 1.0000000000
## GO:0061880  BP     1  0 1.0000000000
## GO:1902612  BP     1  0 1.0000000000
## GO:0002808  BP     1  0 1.0000000000
## GO:0001813  BP     1  0 1.0000000000
## GO:1905034  BP     1  0 1.0000000000
## GO:1904282  BP     1  0 1.0000000000
## GO:0002805  BP     1  0 1.0000000000
## GO:1904829  BP     1  0 1.0000000000
## GO:2000656  BP     1  0 1.0000000000
## GO:0060785  BP     1  0 1.0000000000
## GO:0150070  BP     1  0 1.0000000000
## GO:1900081  BP     1  0 1.0000000000
## GO:1904448  BP     1  0 1.0000000000
## GO:0016243  BP     1  0 1.0000000000
## GO:1905126  BP     1  0 1.0000000000
## GO:1904863  BP     1  0 1.0000000000
## GO:0002816  BP     1  0 1.0000000000
## GO:2000266  BP     1  0 1.0000000000
## GO:0110057  BP     1  0 1.0000000000
## GO:0031551  BP     1  0 1.0000000000
## GO:0060683  BP     1  0 1.0000000000
## GO:0060668  BP     1  0 1.0000000000
## GO:1904362  BP     1  0 1.0000000000
## GO:0110097  BP     1  0 1.0000000000
## GO:1903610  BP     1  0 1.0000000000
## GO:0046586  BP     1  0 1.0000000000
## GO:0060827  BP     1  0 1.0000000000
## GO:1905239  BP     1  0 1.0000000000
## GO:1903674  BP     1  0 1.0000000000
## GO:0032113  BP     1  0 1.0000000000
## GO:0043610  BP     1  0 1.0000000000
## GO:1901210  BP     1  0 1.0000000000
## GO:0061999  BP     1  0 1.0000000000
## GO:2000690  BP     1  0 1.0000000000
## GO:0055018  BP     1  0 1.0000000000
## GO:1905304  BP     1  0 1.0000000000
## GO:0042686  BP     1  0 1.0000000000
## GO:0106088  BP     1  0 1.0000000000
## GO:0060305  BP     1  0 1.0000000000
## GO:1905933  BP     1  0 1.0000000000
## GO:0090249  BP     1  0 1.0000000000
## GO:2000606  BP     1  0 1.0000000000
## GO:0060784  BP     1  0 1.0000000000
## GO:0033241  BP     1  0 1.0000000000
## GO:0072365  BP     1  0 1.0000000000
## GO:0072366  BP     1  0 1.0000000000
## GO:2000683  BP     1  0 1.0000000000
## GO:1905957  BP     1  0 1.0000000000
## GO:1905843  BP     1  0 1.0000000000
## GO:2001112  BP     1  0 1.0000000000
## GO:1905802  BP     1  0 1.0000000000
## GO:2000654  BP     1  0 1.0000000000
## GO:1905891  BP     1  0 1.0000000000
## GO:1905894  BP     1  0 1.0000000000
## GO:1905890  BP     1  0 1.0000000000
## GO:0002895  BP     1  0 1.0000000000
## GO:0002646  BP     1  0 1.0000000000
## GO:0071652  BP     1  0 1.0000000000
## GO:1903884  BP     1  0 1.0000000000
## GO:0071643  BP     1  0 1.0000000000
## GO:1904365  BP     1  0 1.0000000000
## GO:1904054  BP     1  0 1.0000000000
## GO:0060694  BP     1  0 1.0000000000
## GO:1902769  BP     1  0 1.0000000000
## GO:1904499  BP     1  0 1.0000000000
## GO:0090318  BP     1  0 1.0000000000
## GO:0044537  BP     1  0 1.0000000000
## GO:1903248  BP     1  0 1.0000000000
## GO:1905468  BP     1  0 1.0000000000
## GO:0106064  BP     1  0 1.0000000000
## GO:0048683  BP     1  0 1.0000000000
## GO:1904596  BP     1  0 1.0000000000
## GO:1901232  BP     1  0 1.0000000000
## GO:1902311  BP     1  0 1.0000000000
## GO:1900010  BP     1  0 1.0000000000
## GO:1904041  BP     1  0 1.0000000000
## GO:1901494  BP     1  0 1.0000000000
## GO:2000431  BP     1  0 1.0000000000
## GO:0140018  BP     1  0 1.0000000000
## GO:1903627  BP     1  0 1.0000000000
## GO:1901834  BP     1  0 1.0000000000
## GO:1903072  BP     1  0 1.0000000000
## GO:1902477  BP     1  0 1.0000000000
## GO:0050690  BP     1  0 1.0000000000
## GO:1905413  BP     1  0 1.0000000000
## GO:2000970  BP     1  0 1.0000000000
## GO:1905787  BP     1  0 1.0000000000
## GO:1905767  BP     1  0 1.0000000000
## GO:1904335  BP     1  0 1.0000000000
## GO:0060735  BP     1  0 1.0000000000
## GO:0042665  BP     1  0 1.0000000000
## GO:0051543  BP     1  0 1.0000000000
## GO:0060310  BP     1  0 1.0000000000
## GO:0140049  BP     1  0 1.0000000000
## GO:2000800  BP     1  0 1.0000000000
## GO:1903916  BP     1  0 1.0000000000
## GO:1905364  BP     1  0 1.0000000000
## GO:1904987  BP     1  0 1.0000000000
## GO:1904904  BP     1  0 1.0000000000
## GO:2000419  BP     1  0 1.0000000000
## GO:1902250  BP     1  0 1.0000000000
## GO:0034106  BP     1  0 1.0000000000
## GO:0061930  BP     1  0 1.0000000000
## GO:1904910  BP     1  0 1.0000000000
## GO:2000782  BP     1  0 1.0000000000
## GO:2000861  BP     1  0 1.0000000000
## GO:1904793  BP     1  0 1.0000000000
## GO:1905535  BP     1  0 1.0000000000
## GO:1904735  BP     1  0 1.0000000000
## GO:0010722  BP     1  0 1.0000000000
## GO:0110075  BP     1  0 1.0000000000
## GO:2000702  BP     1  0 1.0000000000
## GO:2000413  BP     1  0 1.0000000000
## GO:0120182  BP     1  0 1.0000000000
## GO:1905942  BP     1  0 1.0000000000
## GO:1901193  BP     1  0 1.0000000000
## GO:0050752  BP     1  0 1.0000000000
## GO:0032644  BP     1  0 1.0000000000
## GO:0060549  BP     1  0 1.0000000000
## GO:0060551  BP     1  0 1.0000000000
## GO:2000733  BP     1  0 1.0000000000
## GO:1904633  BP     1  0 1.0000000000
## GO:2000752  BP     1  0 1.0000000000
## GO:0051946  BP     1  0 1.0000000000
## GO:0035227  BP     1  0 1.0000000000
## GO:0120006  BP     1  0 1.0000000000
## GO:1903282  BP     1  0 1.0000000000
## GO:1904226  BP     1  0 1.0000000000
## GO:0072362  BP     1  0 1.0000000000
## GO:0002631  BP     1  0 1.0000000000
## GO:1904195  BP     1  0 1.0000000000
## GO:2000511  BP     1  0 1.0000000000
## GO:0060901  BP     1  0 1.0000000000
## GO:0061168  BP     1  0 1.0000000000
## GO:1901207  BP     1  0 1.0000000000
## GO:1905853  BP     1  0 1.0000000000
## GO:1905858  BP     1  0 1.0000000000
## GO:1904897  BP     1  0 1.0000000000
## GO:0048176  BP     1  0 1.0000000000
## GO:0032646  BP     1  0 1.0000000000
## GO:2001173  BP     1  0 1.0000000000
## GO:1905435  BP     1  0 1.0000000000
## GO:0070510  BP     1  0 1.0000000000
## GO:1903584  BP     1  0 1.0000000000
## GO:0050666  BP     1  0 1.0000000000
## GO:1904826  BP     1  0 1.0000000000
## GO:0002640  BP     1  0 1.0000000000
## GO:0042669  BP     1  0 1.0000000000
## GO:0010924  BP     1  0 1.0000000000
## GO:0050721  BP     1  0 1.0000000000
## GO:0032658  BP     1  0 1.0000000000
## GO:0045378  BP     1  0 1.0000000000
## GO:1903881  BP     1  0 1.0000000000
## GO:2000492  BP     1  0 1.0000000000
## GO:1902205  BP     1  0 1.0000000000
## GO:2000571  BP     1  0 1.0000000000
## GO:0045405  BP     1  0 1.0000000000
## GO:1905365  BP     1  0 1.0000000000
## GO:1902238  BP     1  0 1.0000000000
## GO:1905924  BP     1  0 1.0000000000
## GO:1905927  BP     1  0 1.0000000000
## GO:1904212  BP     1  0 1.0000000000
## GO:1904201  BP     1  0 1.0000000000
## GO:1905015  BP     1  0 1.0000000000
## GO:2000356  BP     1  0 1.0000000000
## GO:1902076  BP     1  0 1.0000000000
## GO:0031275  BP     1  0 1.0000000000
## GO:1903633  BP     1  0 1.0000000000
## GO:0035490  BP     1  0 1.0000000000
## GO:1900130  BP     1  0 1.0000000000
## GO:1903000  BP     1  0 1.0000000000
## GO:0140075  BP     1  0 1.0000000000
## GO:1901246  BP     1  0 1.0000000000
## GO:1903837  BP     1  0 1.0000000000
## GO:1905610  BP     1  0 1.0000000000
## GO:0031437  BP     1  0 1.0000000000
## GO:1902629  BP     1  0 1.0000000000
## GO:0002616  BP     1  0 1.0000000000
## GO:0010932  BP     1  0 1.0000000000
## GO:0034094  BP     1  0 1.0000000000
## GO:2000709  BP     1  0 1.0000000000
## GO:2000718  BP     1  0 1.0000000000
## GO:1905603  BP     1  0 1.0000000000
## GO:1904838  BP     1  0 1.0000000000
## GO:2000101  BP     1  0 1.0000000000
## GO:1904301  BP     1  0 1.0000000000
## GO:0031494  BP     1  0 1.0000000000
## GO:1903341  BP     1  0 1.0000000000
## GO:1905000  BP     1  0 1.0000000000
## GO:0061295  BP     1  0 1.0000000000
## GO:0060782  BP     1  0 1.0000000000
## GO:2000004  BP     1  0 1.0000000000
## GO:0090095  BP     1  0 1.0000000000
## GO:2000006  BP     1  0 1.0000000000
## GO:2000477  BP     1  0 1.0000000000
## GO:2001074  BP     1  0 1.0000000000
## GO:1905186  BP     1  0 1.0000000000
## GO:1905018  BP     1  0 1.0000000000
## GO:0014006  BP     1  0 1.0000000000
## GO:0090226  BP     1  0 1.0000000000
## GO:1905405  BP     1  0 1.0000000000
## GO:0032888  BP     1  0 1.0000000000
## GO:0032771  BP     1  0 1.0000000000
## GO:1905483  BP     1  0 1.0000000000
## GO:0010797  BP     1  0 1.0000000000
## GO:0035504  BP     1  0 1.0000000000
## GO:2000290  BP     1  0 1.0000000000
## GO:0070247  BP     1  0 1.0000000000
## GO:0051394  BP     1  0 1.0000000000
## GO:0090299  BP     1  0 1.0000000000
## GO:0061853  BP     1  0 1.0000000000
## GO:1900073  BP     1  0 1.0000000000
## GO:1904799  BP     1  0 1.0000000000
## GO:1902847  BP     1  0 1.0000000000
## GO:0099162  BP     1  0 1.0000000000
## GO:2000428  BP     1  0 1.0000000000
## GO:0080164  BP     1  0 1.0000000000
## GO:1903314  BP     1  0 1.0000000000
## GO:1900123  BP     1  0 1.0000000000
## GO:1901229  BP     1  0 1.0000000000
## GO:1902838  BP     1  0 1.0000000000
## GO:0032242  BP     1  0 1.0000000000
## GO:0097298  BP     1  0 1.0000000000
## GO:1903027  BP     1  0 1.0000000000
## GO:2000595  BP     1  0 1.0000000000
## GO:1905591  BP     1  0 1.0000000000
## GO:1904118  BP     1  0 1.0000000000
## GO:1904242  BP     1  0 1.0000000000
## GO:1905089  BP     1  0 1.0000000000
## GO:0120093  BP     1  0 1.0000000000
## GO:0002849  BP     1  0 1.0000000000
## GO:1905162  BP     1  0 1.0000000000
## GO:2000185  BP     1  0 1.0000000000
## GO:1905693  BP     1  0 1.0000000000
## GO:2001144  BP     1  0 1.0000000000
## GO:1904005  BP     1  0 1.0000000000
## GO:1900161  BP     1  0 1.0000000000
## GO:2001163  BP     1  0 1.0000000000
## GO:2000150  BP     1  0 1.0000000000
## GO:2000161  BP     1  0 1.0000000000
## GO:2000159  BP     1  0 1.0000000000
## GO:2000167  BP     1  0 1.0000000000
## GO:2000163  BP     1  0 1.0000000000
## GO:2000165  BP     1  0 1.0000000000
## GO:2000148  BP     1  0 1.0000000000
## GO:1903888  BP     1  0 1.0000000000
## GO:1905421  BP     1  0 1.0000000000
## GO:1900098  BP     1  0 1.0000000000
## GO:1903906  BP     1  0 1.0000000000
## GO:0097036  BP     1  0 1.0000000000
## GO:1905219  BP     1  0 1.0000000000
## GO:0010967  BP     1  0 1.0000000000
## GO:1904451  BP     1  0 1.0000000000
## GO:2000631  BP     1  0 1.0000000000
## GO:1905518  BP     1  0 1.0000000000
## GO:0099161  BP     1  0 1.0000000000
## GO:2000634  BP     1  0 1.0000000000
## GO:2000174  BP     1  0 1.0000000000
## GO:1902211  BP     1  0 1.0000000000
## GO:0070881  BP     1  0 1.0000000000
## GO:0035565  BP     1  0 1.0000000000
## GO:2000361  BP     1  0 1.0000000000
## GO:0010732  BP     1  0 1.0000000000
## GO:1903636  BP     1  0 1.0000000000
## GO:1903570  BP     1  0 1.0000000000
## GO:1904370  BP     1  0 1.0000000000
## GO:1904508  BP     1  0 1.0000000000
## GO:1902363  BP     1  0 1.0000000000
## GO:1904806  BP     1  0 1.0000000000
## GO:1903216  BP     1  0 1.0000000000
## GO:0080163  BP     1  0 1.0000000000
## GO:1900483  BP     1  0 1.0000000000
## GO:0150073  BP     1  0 1.0000000000
## GO:1900276  BP     1  0 1.0000000000
## GO:1905271  BP     1  0 1.0000000000
## GO:0010849  BP     1  0 1.0000000000
## GO:0120071  BP     1  0 1.0000000000
## GO:1903167  BP     1  0 1.0000000000
## GO:1903302  BP     1  0 1.0000000000
## GO:1904984  BP     1  0 1.0000000000
## GO:0099158  BP     1  0 1.0000000000
## GO:2000532  BP     1  0 1.0000000000
## GO:1903402  BP     1  0 1.0000000000
## GO:2001151  BP     1  0 1.0000000000
## GO:1900062  BP     1  0 1.0000000000
## GO:1902153  BP     1  0 1.0000000000
## GO:1902151  BP     1  0 1.0000000000
## GO:1901419  BP     1  0 1.0000000000
## GO:1902145  BP     1  0 1.0000000000
## GO:0060222  BP     1  0 1.0000000000
## GO:2001017  BP     1  0 1.0000000000
## GO:1901954  BP     1  0 1.0000000000
## GO:1905432  BP     1  0 1.0000000000
## GO:2000206  BP     1  0 1.0000000000
## GO:2000200  BP     1  0 1.0000000000
## GO:2000280  BP     1  0 1.0000000000
## GO:1902890  BP     1  0 1.0000000000
## GO:2000067  BP     1  0 1.0000000000
## GO:0061190  BP     1  0 1.0000000000
## GO:1904409  BP     1  0 1.0000000000
## GO:1904573  BP     1  0 1.0000000000
## GO:1904790  BP     1  0 1.0000000000
## GO:1905512  BP     1  0 1.0000000000
## GO:0038009  BP     1  0 1.0000000000
## GO:1902504  BP     1  0 1.0000000000
## GO:0060380  BP     1  0 1.0000000000
## GO:0014861  BP     1  0 1.0000000000
## GO:1904318  BP     1  0 1.0000000000
## GO:1905899  BP     1  0 1.0000000000
## GO:1905380  BP     1  0 1.0000000000
## GO:1904675  BP     1  0 1.0000000000
## GO:1901304  BP     1  0 1.0000000000
## GO:2000754  BP     1  0 1.0000000000
## GO:0032887  BP     1  0 1.0000000000
## GO:0120068  BP     1  0 1.0000000000
## GO:0061105  BP     1  0 1.0000000000
## GO:0060542  BP     1  0 1.0000000000
## GO:1904458  BP     1  0 1.0000000000
## GO:1904494  BP     1  0 1.0000000000
## GO:1900383  BP     1  0 1.0000000000
## GO:0060092  BP     1  0 1.0000000000
## GO:0098694  BP     1  0 1.0000000000
## GO:0003068  BP     1  0 1.0000000000
## GO:0003026  BP     1  0 1.0000000000
## GO:0003027  BP     1  0 1.0000000000
## GO:0001979  BP     1  0 1.0000000000
## GO:0003070  BP     1  0 1.0000000000
## GO:1904032  BP     1  0 1.0000000000
## GO:0032207  BP     1  0 1.0000000000
## GO:1901580  BP     1  0 1.0000000000
## GO:1905547  BP     1  0 1.0000000000
## GO:2001049  BP     1  0 1.0000000000
## GO:2000730  BP     1  0 1.0000000000
## GO:0090067  BP     1  0 1.0000000000
## GO:1903123  BP     1  0 1.0000000000
## GO:1905021  BP     1  0 1.0000000000
## GO:0050758  BP     1  0 1.0000000000
## GO:2000398  BP     1  0 1.0000000000
## GO:1904441  BP     1  0 1.0000000000
## GO:0060165  BP     1  0 1.0000000000
## GO:0002843  BP     1  0 1.0000000000
## GO:0034179  BP     1  0 1.0000000000
## GO:0034147  BP     1  0 1.0000000000
## GO:0000409  BP     1  0 1.0000000000
## GO:2001207  BP     1  0 1.0000000000
## GO:0000431  BP     1  0 1.0000000000
## GO:0060807  BP     1  0 1.0000000000
## GO:0061216  BP     1  0 1.0000000000
## GO:0021918  BP     1  0 1.0000000000
## GO:1902064  BP     1  0 1.0000000000
## GO:0021920  BP     1  0 1.0000000000
## GO:0044324  BP     1  0 1.0000000000
## GO:1904298  BP     1  0 1.0000000000
## GO:1903618  BP     1  0 1.0000000000
## GO:1904187  BP     1  0 1.0000000000
## GO:1901392  BP     1  0 1.0000000000
## GO:1901398  BP     1  0 1.0000000000
## GO:0043143  BP     1  0 1.0000000000
## GO:0043556  BP     1  0 1.0000000000
## GO:1904803  BP     1  0 1.0000000000
## GO:0036496  BP     1  0 1.0000000000
## GO:1904073  BP     1  0 1.0000000000
## GO:0034344  BP     1  0 1.0000000000
## GO:1903176  BP     1  0 1.0000000000
## GO:0051510  BP     1  0 1.0000000000
## GO:0034255  BP     1  0 1.0000000000
## GO:2000061  BP     1  0 1.0000000000
## GO:0050675  BP     1  0 1.0000000000
## GO:1900719  BP     1  0 1.0000000000
## GO:0032889  BP     1  0 1.0000000000
## GO:1990736  BP     1  0 1.0000000000
## GO:0003117  BP     1  0 1.0000000000
## GO:0003116  BP     1  0 1.0000000000
## GO:1904971  BP     1  0 1.0000000000
## GO:0071581  BP     1  0 1.0000000000
## GO:0032976  BP     1  0 1.0000000000
## GO:0000735  BP     1  0 1.0000000000
## GO:0097018  BP     1  0 1.0000000000
## GO:0061441  BP     1  0 1.0000000000
## GO:0072127  BP     1  0 1.0000000000
## GO:0072129  BP     1  0 1.0000000000
## GO:0072128  BP     1  0 1.0000000000
## GO:0072130  BP     1  0 1.0000000000
## GO:0072055  BP     1  0 1.0000000000
## GO:0035623  BP     1  0 1.0000000000
## GO:0044722  BP     1  0 1.0000000000
## GO:0097291  BP     1  0 1.0000000000
## GO:0061150  BP     1  0 1.0000000000
## GO:0072184  BP     1  0 1.0000000000
## GO:0071932  BP     1  0 1.0000000000
## GO:1990636  BP     1  0 1.0000000000
## GO:1902691  BP     1  0 1.0000000000
## GO:1904565  BP     1  0 1.0000000000
## GO:1903496  BP     1  0 1.0000000000
## GO:1905242  BP     1  0 1.0000000000
## GO:1904681  BP     1  0 1.0000000000
## GO:0036275  BP     1  0 1.0000000000
## GO:1904386  BP     1  0 1.0000000000
## GO:0061481  BP     1  0 1.0000000000
## GO:0009737  BP     1  0 1.0000000000
## GO:1903717  BP     1  0 1.0000000000
## GO:1904550  BP     1  0 1.0000000000
## GO:1905217  BP     1  0 1.0000000000
## GO:0097184  BP     1  0 1.0000000000
## GO:1901561  BP     1  0 1.0000000000
## GO:0070781  BP     1  0 1.0000000000
## GO:1901594  BP     1  0 1.0000000000
## GO:0034465  BP     1  0 1.0000000000
## GO:0106096  BP     1  0 1.0000000000
## GO:0010157  BP     1  0 1.0000000000
## GO:0046687  BP     1  0 1.0000000000
## GO:0120126  BP     1  0 1.0000000000
## GO:0051414  BP     1  0 1.0000000000
## GO:0046898  BP     1  0 1.0000000000
## GO:1901328  BP     1  0 1.0000000000
## GO:0052567  BP     1  0 1.0000000000
## GO:0052550  BP     1  0 1.0000000000
## GO:1903494  BP     1  0 1.0000000000
## GO:1904629  BP     1  0 1.0000000000
## GO:0090648  BP     1  0 1.0000000000
## GO:1901557  BP     1  0 1.0000000000
## GO:1905395  BP     1  0 1.0000000000
## GO:0050826  BP     1  0 1.0000000000
## GO:1990790  BP     1  0 1.0000000000
## GO:1904631  BP     1  0 1.0000000000
## GO:1905630  BP     1  0 1.0000000000
## GO:0014876  BP     1  0 1.0000000000
## GO:1990418  BP     1  0 1.0000000000
## GO:0097396  BP     1  0 1.0000000000
## GO:0070543  BP     1  0 1.0000000000
## GO:0072704  BP     1  0 1.0000000000
## GO:0031427  BP     1  0 1.0000000000
## GO:0072702  BP     1  0 1.0000000000
## GO:1904608  BP     1  0 1.0000000000
## GO:0035713  BP     1  0 1.0000000000
## GO:0010335  BP     1  0 1.0000000000
## GO:1990834  BP     1  0 1.0000000000
## GO:0010193  BP     1  0 1.0000000000
## GO:1905711  BP     1  0 1.0000000000
## GO:1903165  BP     1  0 1.0000000000
## GO:1904585  BP     1  0 1.0000000000
## GO:1905834  BP     1  0 1.0000000000
## GO:1901545  BP     1  0 1.0000000000
## GO:0009639  BP     1  0 1.0000000000
## GO:1904014  BP     1  0 1.0000000000
## GO:0010272  BP     1  0 1.0000000000
## GO:0000304  BP     1  0 1.0000000000
## GO:1904383  BP     1  0 1.0000000000
## GO:1905225  BP     1  0 1.0000000000
## GO:0097068  BP     1  0 1.0000000000
## GO:1990267  BP     1  0 1.0000000000
## GO:0034014  BP     1  0 1.0000000000
## GO:1904576  BP     1  0 1.0000000000
## GO:0034342  BP     1  0 1.0000000000
## GO:0034516  BP     1  0 1.0000000000
## GO:1990785  BP     1  0 1.0000000000
## GO:1904567  BP     1  0 1.0000000000
## GO:0097601  BP     1  0 1.0000000000
## GO:0046551  BP     1  0 1.0000000000
## GO:0097473  BP     1  0 1.0000000000
## GO:0060223  BP     1  0 1.0000000000
## GO:0090242  BP     1  0 1.0000000000
## GO:0098958  BP     1  0 1.0000000000
## GO:0099083  BP     1  0 1.0000000000
## GO:0098925  BP     1  0 1.0000000000
## GO:0000301  BP     1  0 1.0000000000
## GO:0061451  BP     1  0 1.0000000000
## GO:0061452  BP     1  0 1.0000000000
## GO:0046154  BP     1  0 1.0000000000
## GO:0021660  BP     1  0 1.0000000000
## GO:0021666  BP     1  0 1.0000000000
## GO:0021664  BP     1  0 1.0000000000
## GO:0021572  BP     1  0 1.0000000000
## GO:0021594  BP     1  0 1.0000000000
## GO:0009231  BP     1  0 1.0000000000
## GO:0006771  BP     1  0 1.0000000000
## GO:0060461  BP     1  0 1.0000000000
## GO:0003226  BP     1  0 1.0000000000
## GO:0021509  BP     1  0 1.0000000000
## GO:0048364  BP     1  0 1.0000000000
## GO:0010053  BP     1  0 1.0000000000
## GO:0080147  BP     1  0 1.0000000000
## GO:0048765  BP     1  0 1.0000000000
## GO:0048767  BP     1  0 1.0000000000
## GO:0010015  BP     1  0 1.0000000000
## GO:0022622  BP     1  0 1.0000000000
## GO:0060367  BP     1  0 1.0000000000
## GO:1901053  BP     1  0 1.0000000000
## GO:1990654  BP     1  0 1.0000000000
## GO:0016261  BP     1  0 1.0000000000
## GO:0097056  BP     1  0 1.0000000000
## GO:0071527  BP     1  0 1.0000000000
## GO:0060879  BP     1  0 1.0000000000
## GO:0070684  BP     1  0 1.0000000000
## GO:0061108  BP     1  0 1.0000000000
## GO:0061682  BP     1  0 1.0000000000
## GO:0035986  BP     1  0 1.0000000000
## GO:1904937  BP     1  0 1.0000000000
## GO:0008052  BP     1  0 1.0000000000
## GO:0038098  BP     1  0 1.0000000000
## GO:0042137  BP     1  0 1.0000000000
## GO:0038101  BP     1  0 1.0000000000
## GO:0002552  BP     1  0 1.0000000000
## GO:0060096  BP     1  0 1.0000000000
## GO:0071573  BP     1  0 1.0000000000
## GO:0015913  BP     1  0 1.0000000000
## GO:0015912  BP     1  0 1.0000000000
## GO:0019290  BP     1  0 1.0000000000
## GO:0009237  BP     1  0 1.0000000000
## GO:1990256  BP     1  0 1.0000000000
## GO:0035638  BP     1  0 1.0000000000
## GO:0072428  BP     1  0 1.0000000000
## GO:1903759  BP     1  0 1.0000000000
## GO:0003172  BP     1  0 1.0000000000
## GO:0003185  BP     1  0 1.0000000000
## GO:0003235  BP     1  0 1.0000000000
## GO:0003236  BP     1  0 1.0000000000
## GO:0071170  BP     1  0 1.0000000000
## GO:0071171  BP     1  0 1.0000000000
## GO:0014813  BP     1  0 1.0000000000
## GO:0036060  BP     1  0 1.0000000000
## GO:1990832  BP     1  0 1.0000000000
## GO:0032458  BP     1  0 1.0000000000
## GO:0034462  BP     1  0 1.0000000000
## GO:0014806  BP     1  0 1.0000000000
## GO:0014895  BP     1  0 1.0000000000
## GO:0003271  BP     1  0 1.0000000000
## GO:0120049  BP     1  0 1.0000000000
## GO:0016076  BP     1  0 1.0000000000
## GO:0006408  BP     1  0 1.0000000000
## GO:0043251  BP     1  0 1.0000000000
## GO:0070715  BP     1  0 1.0000000000
## GO:1990091  BP     1  0 1.0000000000
## GO:0071720  BP     1  0 1.0000000000
## GO:0021917  BP     1  0 1.0000000000
## GO:0006061  BP     1  0 1.0000000000
## GO:0006062  BP     1  0 1.0000000000
## GO:0072168  BP     1  0 1.0000000000
## GO:0072167  BP     1  0 1.0000000000
## GO:0072169  BP     1  0 1.0000000000
## GO:0072100  BP     1  0 1.0000000000
## GO:0072101  BP     1  0 1.0000000000
## GO:0046692  BP     1  0 1.0000000000
## GO:0007321  BP     1  0 1.0000000000
## GO:0035037  BP     1  0 1.0000000000
## GO:0007291  BP     1  0 1.0000000000
## GO:0048137  BP     1  0 1.0000000000
## GO:0106048  BP     1  0 1.0000000000
## GO:0032919  BP     1  0 1.0000000000
## GO:0006669  BP     1  0 1.0000000000
## GO:0021512  BP     1  0 1.0000000000
## GO:0021519  BP     1  0 1.0000000000
## GO:1905355  BP     1  0 1.0000000000
## GO:0060345  BP     1  0 1.0000000000
## GO:0000388  BP     1  0 1.0000000000
## GO:0048792  BP     1  0 1.0000000000
## GO:0120045  BP     1  0 1.0000000000
## GO:0006463  BP     1  0 1.0000000000
## GO:0046272  BP     1  0 1.0000000000
## GO:0009810  BP     1  0 1.0000000000
## GO:0014825  BP     1  0 1.0000000000
## GO:0120064  BP     1  0 1.0000000000
## GO:0000732  BP     1  0 1.0000000000
## GO:1990170  BP     1  0 1.0000000000
## GO:1990359  BP     1  0 1.0000000000
## GO:1990046  BP     1  0 1.0000000000
## GO:0044345  BP     1  0 1.0000000000
## GO:0060661  BP     1  0 1.0000000000
## GO:0022012  BP     1  0 1.0000000000
## GO:0010814  BP     1  0 1.0000000000
## GO:1990772  BP     1  0 1.0000000000
## GO:1990793  BP     1  0 1.0000000000
## GO:1903701  BP     1  0 1.0000000000
## GO:0061753  BP     1  0 1.0000000000
## GO:0021763  BP     1  0 1.0000000000
## GO:1902358  BP     1  0 1.0000000000
## GO:0019418  BP     1  0 1.0000000000
## GO:0070221  BP     1  0 1.0000000000
## GO:0019417  BP     1  0 1.0000000000
## GO:0071109  BP     1  0 1.0000000000
## GO:0060578  BP     1  0 1.0000000000
## GO:0039521  BP     1  0 1.0000000000
## GO:0036268  BP     1  0 1.0000000000
## GO:0098725  BP     1  0 1.0000000000
## GO:0060386  BP     1  0 1.0000000000
## GO:0008039  BP     1  0 1.0000000000
## GO:0071911  BP     1  0 1.0000000000
## GO:1990656  BP     1  0 1.0000000000
## GO:0001680  BP     1  0 1.0000000000
## GO:0034414  BP     1  0 1.0000000000
## GO:0002939  BP     1  0 1.0000000000
## GO:1990983  BP     1  0 1.0000000000
## GO:0002943  BP     1  0 1.0000000000
## GO:0000968  BP     1  0 1.0000000000
## GO:0000971  BP     1  0 1.0000000000
## GO:0035600  BP     1  0 1.0000000000
## GO:0071528  BP     1  0 1.0000000000
## GO:0009304  BP     1  0 1.0000000000
## GO:0042797  BP     1  0 1.0000000000
## GO:0002926  BP     1  0 1.0000000000
## GO:0002127  BP     1  0 1.0000000000
## GO:0042412  BP     1  0 1.0000000000
## GO:0070075  BP     1  0 1.0000000000
## GO:0032203  BP     1  0 1.0000000000
## GO:0097698  BP     1  0 1.0000000000
## GO:0097393  BP     1  0 1.0000000000
## GO:0097394  BP     1  0 1.0000000000
## GO:0061976  BP     1  0 1.0000000000
## GO:0002932  BP     1  0 1.0000000000
## GO:0038032  BP     1  0 1.0000000000
## GO:0006386  BP     1  0 1.0000000000
## GO:0046901  BP     1  0 1.0000000000
## GO:0016109  BP     1  0 1.0000000000
## GO:0040040  BP     1  0 1.0000000000
## GO:0009229  BP     1  0 1.0000000000
## GO:0009088  BP     1  0 1.0000000000
## GO:0015826  BP     1  0 1.0000000000
## GO:0006214  BP     1  0 1.0000000000
## GO:0050757  BP     1  0 1.0000000000
## GO:0035364  BP     1  0 1.0000000000
## GO:1990789  BP     1  0 1.0000000000
## GO:0038194  BP     1  0 1.0000000000
## GO:0002255  BP     1  0 1.0000000000
## GO:0002462  BP     1  0 1.0000000000
## GO:0002413  BP     1  0 1.0000000000
## GO:0034130  BP     1  0 1.0000000000
## GO:0034150  BP     1  0 1.0000000000
## GO:0034158  BP     1  0 1.0000000000
## GO:1905327  BP     1  0 1.0000000000
## GO:0098629  BP     1  0 1.0000000000
## GO:0006392  BP     1  0 1.0000000000
## GO:0001172  BP     1  0 1.0000000000
## GO:0001113  BP     1  0 1.0000000000
## GO:0001174  BP     1  0 1.0000000000
## GO:1905313  BP     1  0 1.0000000000
## GO:0090010  BP     1  0 1.0000000000
## GO:0036366  BP     1  0 1.0000000000
## GO:0002333  BP     1  0 1.0000000000
## GO:0002332  BP     1  0 1.0000000000
## GO:0009386  BP     1  0 1.0000000000
## GO:0042000  BP     1  0 1.0000000000
## GO:0044053  BP     1  0 1.0000000000
## GO:0051808  BP     1  0 1.0000000000
## GO:0007185  BP     1  0 1.0000000000
## GO:0006313  BP     1  0 1.0000000000
## GO:0005993  BP     1  0 1.0000000000
## GO:0070413  BP     1  0 1.0000000000
## GO:0035674  BP     1  0 1.0000000000
## GO:1904274  BP     1  0 1.0000000000
## GO:0018979  BP     1  0 1.0000000000
## GO:0010054  BP     1  0 1.0000000000
## GO:0048764  BP     1  0 1.0000000000
## GO:0036153  BP     1  0 1.0000000000
## GO:0036510  BP     1  0 1.0000000000
## GO:0021642  BP     1  0 1.0000000000
## GO:0021639  BP     1  0 1.0000000000
## GO:0032023  BP     1  0 1.0000000000
## GO:0003327  BP     1  0 1.0000000000
## GO:0072560  BP     1  0 1.0000000000
## GO:0034343  BP     1  0 1.0000000000
## GO:0006571  BP     1  0 1.0000000000
## GO:0032194  BP     1  0 1.0000000000
## GO:1901006  BP     1  0 1.0000000000
## GO:1901004  BP     1  0 1.0000000000
## GO:0019628  BP     1  0 1.0000000000
## GO:1903118  BP     1  0 1.0000000000
## GO:0072192  BP     1  0 1.0000000000
## GO:0014849  BP     1  0 1.0000000000
## GO:0072105  BP     1  0 1.0000000000
## GO:0006218  BP     1  0 1.0000000000
## GO:0046108  BP     1  0 1.0000000000
## GO:0006780  BP     1  0 1.0000000000
## GO:0050674  BP     1  0 1.0000000000
## GO:1903709  BP     1  0 1.0000000000
## GO:0044558  BP     1  0 1.0000000000
## GO:0043181  BP     1  0 1.0000000000
## GO:0015676  BP     1  0 1.0000000000
## GO:0097699  BP     1  0 1.0000000000
## GO:0036323  BP     1  0 1.0000000000
## GO:0010232  BP     1  0 1.0000000000
## GO:0001987  BP     1  0 1.0000000000
## GO:0002014  BP     1  0 1.0000000000
## GO:1990029  BP     1  0 1.0000000000
## GO:0060843  BP     1  0 1.0000000000
## GO:0007371  BP     1  0 1.0000000000
## GO:0060580  BP     1  0 1.0000000000
## GO:0036113  BP     1  0 1.0000000000
## GO:0061782  BP     1  0 1.0000000000
## GO:0099050  BP     1  0 1.0000000000
## GO:0097712  BP     1  0 1.0000000000
## GO:0090522  BP     1  0 1.0000000000
## GO:0090119  BP     1  0 1.0000000000
## GO:0110077  BP     1  0 1.0000000000
## GO:0060116  BP     1  0 1.0000000000
## GO:0046745  BP     1  0 1.0000000000
## GO:0046786  BP     1  0 1.0000000000
## GO:0007495  BP     1  0 1.0000000000
## GO:0007522  BP     1  0 1.0000000000
## GO:0042820  BP     1  0 1.0000000000
## GO:0010189  BP     1  0 1.0000000000
## GO:0030704  BP     1  0 1.0000000000
## GO:0046111  BP     1  0 1.0000000000
## GO:0016123  BP     1  0 1.0000000000
## GO:1901827  BP     1  0 1.0000000000
## GO:1901825  BP     1  0 1.0000000000
## GO:0022006  BP     1  0 1.0000000000
## GO:0042351  BP     2  0 1.0000000000
## GO:0009257  BP     2  0 1.0000000000
## GO:0009258  BP     2  0 1.0000000000
## GO:0046361  BP     2  0 1.0000000000
## GO:0050428  BP     2  0 1.0000000000
## GO:0018960  BP     2  0 1.0000000000
## GO:0015866  BP     2  0 1.0000000000
## GO:0006756  BP     2  0 1.0000000000
## GO:0002358  BP     2  0 1.0000000000
## GO:0002352  BP     2  0 1.0000000000
## GO:0080120  BP     2  0 1.0000000000
## GO:0071586  BP     2  0 1.0000000000
## GO:0002362  BP     2  0 1.0000000000
## GO:0002302  BP     2  0 1.0000000000
## GO:0035698  BP     2  0 1.0000000000
## GO:0002305  BP     2  0 1.0000000000
## GO:0035781  BP     2  0 1.0000000000
## GO:0046341  BP     2  0 1.0000000000
## GO:0046381  BP     2  0 1.0000000000
## GO:0019478  BP     2  0 1.0000000000
## GO:0046177  BP     2  0 1.0000000000
## GO:0019521  BP     2  0 1.0000000000
## GO:0070178  BP     2  0 1.0000000000
## GO:0090618  BP     2  0 1.0000000000
## GO:0044727  BP     2  0 1.0000000000
## GO:0044028  BP     2  0 1.0000000000
## GO:0042262  BP     2  0 1.0000000000
## GO:0071163  BP     2  0 1.0000000000
## GO:0045004  BP     2  0 1.0000000000
## GO:0036292  BP     2  0 1.0000000000
## GO:1904161  BP     2  0 1.0000000000
## GO:0038129  BP     2  0 1.0000000000
## GO:0045210  BP     2  0 1.0000000000
## GO:1990172  BP     2  0 1.0000000000
## GO:0070315  BP     2  0 1.0000000000
## GO:0051319  BP     2  0 1.0000000000
## GO:0046710  BP     2  0 1.0000000000
## GO:0046038  BP     2  0 1.0000000000
## GO:0032472  BP     2  0 1.0000000000
## GO:0055107  BP     2  0 1.0000000000
## GO:0055108  BP     2  0 1.0000000000
## GO:0048211  BP     2  0 1.0000000000
## GO:0048213  BP     2  0 1.0000000000
## GO:0060932  BP     2  0 1.0000000000
## GO:0046709  BP     2  0 1.0000000000
## GO:0046707  BP     2  0 1.0000000000
## GO:0002192  BP     2  0 1.0000000000
## GO:0046041  BP     2  0 1.0000000000
## GO:0042853  BP     2  0 1.0000000000
## GO:0046373  BP     2  0 1.0000000000
## GO:0015882  BP     2  0 1.0000000000
## GO:0140009  BP     2  0 1.0000000000
## GO:0070778  BP     2  0 1.0000000000
## GO:0019452  BP     2  0 1.0000000000
## GO:0015811  BP     2  0 1.0000000000
## GO:0097052  BP     2  0 1.0000000000
## GO:0019477  BP     2  0 1.0000000000
## GO:0097639  BP     2  0 1.0000000000
## GO:0046440  BP     2  0 1.0000000000
## GO:0045204  BP     2  0 1.0000000000
## GO:0002397  BP     2  0 1.0000000000
## GO:0018008  BP     2  0 1.0000000000
## GO:0017198  BP     2  0 1.0000000000
## GO:0006480  BP     2  0 1.0000000000
## GO:0006500  BP     2  0 1.0000000000
## GO:0006740  BP     2  0 1.0000000000
## GO:0060853  BP     2  0 1.0000000000
## GO:1902359  BP     2  0 1.0000000000
## GO:0016267  BP     2  0 1.0000000000
## GO:0030719  BP     2  0 1.0000000000
## GO:0003165  BP     2  0 1.0000000000
## GO:0001188  BP     2  0 1.0000000000
## GO:0042245  BP     2  0 1.0000000000
## GO:0010265  BP     2  0 1.0000000000
## GO:0035712  BP     2  0 1.0000000000
## GO:0032639  BP     2  0 1.0000000000
## GO:1903241  BP     2  0 1.0000000000
## GO:1990569  BP     2  0 1.0000000000
## GO:0072334  BP     2  0 1.0000000000
## GO:0006011  BP     2  0 1.0000000000
## GO:0046398  BP     2  0 1.0000000000
## GO:0038190  BP     2  0 1.0000000000
## GO:0038018  BP     2  0 1.0000000000
## GO:0044332  BP     2  0 1.0000000000
## GO:0021874  BP     2  0 1.0000000000
## GO:0061289  BP     2  0 1.0000000000
## GO:0021560  BP     2  0 1.0000000000
## GO:0021599  BP     2  0 1.0000000000
## GO:0021598  BP     2  0 1.0000000000
## GO:0033277  BP     2  0 1.0000000000
## GO:0019413  BP     2  0 1.0000000000
## GO:0019427  BP     2  0 1.0000000000
## GO:0046356  BP     2  0 1.0000000000
## GO:0070650  BP     2  0 1.0000000000
## GO:0071846  BP     2  0 1.0000000000
## GO:0051695  BP     2  0 1.0000000000
## GO:0031247  BP     2  0 1.0000000000
## GO:1905397  BP     2  0 1.0000000000
## GO:0060466  BP     2  0 1.0000000000
## GO:0032431  BP     2  0 1.0000000000
## GO:0002541  BP     2  0 1.0000000000
## GO:1990051  BP     2  0 1.0000000000
## GO:0016062  BP     2  0 1.0000000000
## GO:0009955  BP     2  0 1.0000000000
## GO:0006168  BP     2  0 1.0000000000
## GO:0006154  BP     2  0 1.0000000000
## GO:0071881  BP     2  0 1.0000000000
## GO:0061104  BP     2  0 1.0000000000
## GO:0035801  BP     2  0 1.0000000000
## GO:0035802  BP     2  0 1.0000000000
## GO:0007527  BP     2  0 1.0000000000
## GO:0046223  BP     2  0 1.0000000000
## GO:0046176  BP     2  0 1.0000000000
## GO:0019520  BP     2  0 1.0000000000
## GO:0000255  BP     2  0 1.0000000000
## GO:1905069  BP     2  0 1.0000000000
## GO:0071929  BP     2  0 1.0000000000
## GO:0036305  BP     2  0 1.0000000000
## GO:0097272  BP     2  0 1.0000000000
## GO:0120077  BP     2  0 1.0000000000
## GO:0086098  BP     2  0 1.0000000000
## GO:0002033  BP     2  0 1.0000000000
## GO:0021506  BP     2  0 1.0000000000
## GO:0072098  BP     2  0 1.0000000000
## GO:0098964  BP     2  0 1.0000000000
## GO:0061760  BP     2  0 1.0000000000
## GO:0002488  BP     2  0 1.0000000000
## GO:0002489  BP     2  0 1.0000000000
## GO:0002479  BP     2  0 1.0000000000
## GO:0048006  BP     2  0 1.0000000000
## GO:1900204  BP     2  0 1.0000000000
## GO:1900205  BP     2  0 1.0000000000
## GO:0019566  BP     2  0 1.0000000000
## GO:0042450  BP     2  0 1.0000000000
## GO:0019547  BP     2  0 1.0000000000
## GO:0018872  BP     2  0 1.0000000000
## GO:0060844  BP     2  0 1.0000000000
## GO:0072021  BP     2  0 1.0000000000
## GO:0035700  BP     2  0 1.0000000000
## GO:0090164  BP     2  0 1.0000000000
## GO:0003290  BP     2  0 1.0000000000
## GO:0003294  BP     2  0 1.0000000000
## GO:0060928  BP     2  0 1.0000000000
## GO:0060922  BP     2  0 1.0000000000
## GO:0051455  BP     2  0 1.0000000000
## GO:0051316  BP     2  0 1.0000000000
## GO:0042667  BP     2  0 1.0000000000
## GO:0001982  BP     2  0 1.0000000000
## GO:0042595  BP     2  0 1.0000000000
## GO:0030573  BP     2  0 1.0000000000
## GO:0038183  BP     2  0 1.0000000000
## GO:0042710  BP     2  0 1.0000000000
## GO:0070980  BP     2  0 1.0000000000
## GO:0072564  BP     2  0 1.0000000000
## GO:0060846  BP     2  0 1.0000000000
## GO:0097101  BP     2  0 1.0000000000
## GO:0072554  BP     2  0 1.0000000000
## GO:0031989  BP     2  0 1.0000000000
## GO:0000494  BP     2  0 1.0000000000
## GO:0033967  BP     2  0 1.0000000000
## GO:0034963  BP     2  0 1.0000000000
## GO:0000495  BP     2  0 1.0000000000
## GO:0033979  BP     2  0 1.0000000000
## GO:0034964  BP     2  0 1.0000000000
## GO:0000493  BP     2  0 1.0000000000
## GO:0060667  BP     2  0 1.0000000000
## GO:0009082  BP     2  0 1.0000000000
## GO:0060854  BP     2  0 1.0000000000
## GO:0060532  BP     2  0 1.0000000000
## GO:0060434  BP     2  0 1.0000000000
## GO:0070342  BP     2  0 1.0000000000
## GO:0055073  BP     2  0 1.0000000000
## GO:1990408  BP     2  0 1.0000000000
## GO:0099093  BP     2  0 1.0000000000
## GO:1990927  BP     2  0 1.0000000000
## GO:0016340  BP     2  0 1.0000000000
## GO:1990092  BP     2  0 1.0000000000
## GO:0035585  BP     2  0 1.0000000000
## GO:0060220  BP     2  0 1.0000000000
## GO:0044338  BP     2  0 1.0000000000
## GO:0061290  BP     2  0 1.0000000000
## GO:0044337  BP     2  0 1.0000000000
## GO:0061324  BP     2  0 1.0000000000
## GO:0044334  BP     2  0 1.0000000000
## GO:0044343  BP     2  0 1.0000000000
## GO:0036451  BP     2  0 1.0000000000
## GO:0002191  BP     2  0 1.0000000000
## GO:0110017  BP     2  0 1.0000000000
## GO:0097309  BP     2  0 1.0000000000
## GO:0009758  BP     2  0 1.0000000000
## GO:0140074  BP     2  0 1.0000000000
## GO:0060936  BP     2  0 1.0000000000
## GO:0060935  BP     2  0 1.0000000000
## GO:0003218  BP     2  0 1.0000000000
## GO:0003245  BP     2  0 1.0000000000
## GO:0003292  BP     2  0 1.0000000000
## GO:0035498  BP     2  0 1.0000000000
## GO:0016121  BP     2  0 1.0000000000
## GO:0016119  BP     2  0 1.0000000000
## GO:1990079  BP     2  0 1.0000000000
## GO:0052364  BP     2  0 1.0000000000
## GO:0052360  BP     2  0 1.0000000000
## GO:0052361  BP     2  0 1.0000000000
## GO:0052227  BP     2  0 1.0000000000
## GO:0120078  BP     2  0 1.0000000000
## GO:1902298  BP     2  0 1.0000000000
## GO:0090678  BP     2  0 1.0000000000
## GO:0060974  BP     2  0 1.0000000000
## GO:0140039  BP     2  0 1.0000000000
## GO:0045168  BP     2  0 1.0000000000
## GO:0060995  BP     2  0 1.0000000000
## GO:0060764  BP     2  0 1.0000000000
## GO:0072204  BP     2  0 1.0000000000
## GO:0003366  BP     2  0 1.0000000000
## GO:0043605  BP     2  0 1.0000000000
## GO:0071477  BP     2  0 1.0000000000
## GO:0072338  BP     2  0 1.0000000000
## GO:1904613  BP     2  0 1.0000000000
## GO:1903577  BP     2  0 1.0000000000
## GO:0071469  BP     2  0 1.0000000000
## GO:1903413  BP     2  0 1.0000000000
## GO:1904976  BP     2  0 1.0000000000
## GO:0071460  BP     2  0 1.0000000000
## GO:0071279  BP     2  0 1.0000000000
## GO:0072738  BP     2  0 1.0000000000
## GO:1990786  BP     2  0 1.0000000000
## GO:1990859  BP     2  0 1.0000000000
## GO:0036018  BP     2  0 1.0000000000
## GO:0071412  BP     2  0 1.0000000000
## GO:0071377  BP     2  0 1.0000000000
## GO:0071403  BP     2  0 1.0000000000
## GO:0071413  BP     2  0 1.0000000000
## GO:0071352  BP     2  0 1.0000000000
## GO:0098759  BP     2  0 1.0000000000
## GO:0071283  BP     2  0 1.0000000000
## GO:0071395  BP     2  0 1.0000000000
## GO:0072750  BP     2  0 1.0000000000
## GO:0036245  BP     2  0 1.0000000000
## GO:0097238  BP     2  0 1.0000000000
## GO:0071389  BP     2  0 1.0000000000
## GO:0071226  BP     2  0 1.0000000000
## GO:1904009  BP     2  0 1.0000000000
## GO:0071315  BP     2  0 1.0000000000
## GO:0071506  BP     2  0 1.0000000000
## GO:0071874  BP     2  0 1.0000000000
## GO:1905546  BP     2  0 1.0000000000
## GO:0016036  BP     2  0 1.0000000000
## GO:0071393  BP     2  0 1.0000000000
## GO:0072752  BP     2  0 1.0000000000
## GO:0071461  BP     2  0 1.0000000000
## GO:1904482  BP     2  0 1.0000000000
## GO:1904117  BP     2  0 1.0000000000
## GO:0071307  BP     2  0 1.0000000000
## GO:0042631  BP     2  0 1.0000000000
## GO:0034224  BP     2  0 1.0000000000
## GO:0097533  BP     2  0 1.0000000000
## GO:0021551  BP     2  0 1.0000000000
## GO:0002508  BP     2  0 1.0000000000
## GO:0090222  BP     2  0 1.0000000000
## GO:1905373  BP     2  0 1.0000000000
## GO:1905371  BP     2  0 1.0000000000
## GO:0021691  BP     2  0 1.0000000000
## GO:0021693  BP     2  0 1.0000000000
## GO:0021935  BP     2  0 1.0000000000
## GO:0021687  BP     2  0 1.0000000000
## GO:0021589  BP     2  0 1.0000000000
## GO:0061300  BP     2  0 1.0000000000
## GO:0021893  BP     2  0 1.0000000000
## GO:0060067  BP     2  0 1.0000000000
## GO:0071954  BP     2  0 1.0000000000
## GO:0038116  BP     2  0 1.0000000000
## GO:0021842  BP     2  0 1.0000000000
## GO:0021836  BP     2  0 1.0000000000
## GO:0036518  BP     2  0 1.0000000000
## GO:0038188  BP     2  0 1.0000000000
## GO:0072356  BP     2  0 1.0000000000
## GO:0002545  BP     2  0 1.0000000000
## GO:0034378  BP     2  0 1.0000000000
## GO:0036090  BP     2  0 1.0000000000
## GO:0060197  BP     2  0 1.0000000000
## GO:0061386  BP     2  0 1.0000000000
## GO:0048674  BP     2  0 1.0000000000
## GO:1990192  BP     2  0 1.0000000000
## GO:1990765  BP     2  0 1.0000000000
## GO:0048749  BP     2  0 1.0000000000
## GO:1990708  BP     2  0 1.0000000000
## GO:0032601  BP     2  0 1.0000000000
## GO:0098705  BP     2  0 1.0000000000
## GO:0003335  BP     2  0 1.0000000000
## GO:0003169  BP     2  0 1.0000000000
## GO:0061378  BP     2  0 1.0000000000
## GO:0021966  BP     2  0 1.0000000000
## GO:0046226  BP     2  0 1.0000000000
## GO:0006601  BP     2  0 1.0000000000
## GO:0006600  BP     2  0 1.0000000000
## GO:0015881  BP     2  0 1.0000000000
## GO:0038041  BP     2  0 1.0000000000
## GO:0042335  BP     2  0 1.0000000000
## GO:0019343  BP     2  0 1.0000000000
## GO:0042883  BP     2  0 1.0000000000
## GO:0006423  BP     2  0 1.0000000000
## GO:0060327  BP     2  0 1.0000000000
## GO:0019858  BP     2  0 1.0000000000
## GO:0046967  BP     2  0 1.0000000000
## GO:0043316  BP     2  0 1.0000000000
## GO:0046056  BP     2  0 1.0000000000
## GO:0006233  BP     2  0 1.0000000000
## GO:0046072  BP     2  0 1.0000000000
## GO:0071550  BP     2  0 1.0000000000
## GO:0009814  BP     2  0 1.0000000000
## GO:0060232  BP     2  0 1.0000000000
## GO:0044565  BP     2  0 1.0000000000
## GO:0098939  BP     2  0 1.0000000000
## GO:0046092  BP     2  0 1.0000000000
## GO:0009159  BP     2  0 1.0000000000
## GO:0002032  BP     2  0 1.0000000000
## GO:0050911  BP     2  0 1.0000000000
## GO:0001581  BP     2  0 1.0000000000
## GO:0001582  BP     2  0 1.0000000000
## GO:0042496  BP     2  0 1.0000000000
## GO:0009590  BP     2  0 1.0000000000
## GO:0070483  BP     2  0 1.0000000000
## GO:0050973  BP     2  0 1.0000000000
## GO:0003127  BP     2  0 1.0000000000
## GO:0032499  BP     2  0 1.0000000000
## GO:0042495  BP     2  0 1.0000000000
## GO:0035545  BP     2  0 1.0000000000
## GO:0050787  BP     2  0 1.0000000000
## GO:0018894  BP     2  0 1.0000000000
## GO:0060598  BP     2  0 1.0000000000
## GO:0046452  BP     2  0 1.0000000000
## GO:0021840  BP     2  0 1.0000000000
## GO:0072156  BP     2  0 1.0000000000
## GO:0070839  BP     2  0 1.0000000000
## GO:0019408  BP     2  0 1.0000000000
## GO:1904835  BP     2  0 1.0000000000
## GO:0097681  BP     2  0 1.0000000000
## GO:0019085  BP     2  0 1.0000000000
## GO:0007439  BP     2  0 1.0000000000
## GO:0035803  BP     2  0 1.0000000000
## GO:0051542  BP     2  0 1.0000000000
## GO:0048611  BP     2  0 1.0000000000
## GO:1990401  BP     2  0 1.0000000000
## GO:0021831  BP     2  0 1.0000000000
## GO:0061443  BP     2  0 1.0000000000
## GO:0020028  BP     2  0 1.0000000000
## GO:0007493  BP     2  0 1.0000000000
## GO:0007113  BP     2  0 1.0000000000
## GO:0016320  BP     2  0 1.0000000000
## GO:0061857  BP     2  0 1.0000000000
## GO:0097111  BP     2  0 1.0000000000
## GO:0048388  BP     2  0 1.0000000000
## GO:0097750  BP     2  0 1.0000000000
## GO:0097498  BP     2  0 1.0000000000
## GO:0086100  BP     2  0 1.0000000000
## GO:1990775  BP     2  0 1.0000000000
## GO:0034230  BP     2  0 1.0000000000
## GO:0075506  BP     2  0 1.0000000000
## GO:0018307  BP     2  0 1.0000000000
## GO:0035854  BP     2  0 1.0000000000
## GO:1905223  BP     2  0 1.0000000000
## GO:0003349  BP     2  0 1.0000000000
## GO:0060939  BP     2  0 1.0000000000
## GO:0060938  BP     2  0 1.0000000000
## GO:0060983  BP     2  0 1.0000000000
## GO:0036334  BP     2  0 1.0000000000
## GO:0042418  BP     2  0 1.0000000000
## GO:0060690  BP     2  0 1.0000000000
## GO:0060738  BP     2  0 1.0000000000
## GO:0006696  BP     2  0 1.0000000000
## GO:0008204  BP     2  0 1.0000000000
## GO:0042275  BP     2  0 1.0000000000
## GO:0034117  BP     2  0 1.0000000000
## GO:0038162  BP     2  0 1.0000000000
## GO:0014846  BP     2  0 1.0000000000
## GO:0048560  BP     2  0 1.0000000000
## GO:0006343  BP     2  0 1.0000000000
## GO:0060857  BP     2  0 1.0000000000
## GO:0034087  BP     2  0 1.0000000000
## GO:0019043  BP     2  0 1.0000000000
## GO:0016332  BP     2  0 1.0000000000
## GO:0006711  BP     2  0 1.0000000000
## GO:0001927  BP     2  0 1.0000000000
## GO:0035261  BP     2  0 1.0000000000
## GO:0021754  BP     2  0 1.0000000000
## GO:0016488  BP     2  0 1.0000000000
## GO:0016487  BP     2  0 1.0000000000
## GO:0010142  BP     2  0 1.0000000000
## GO:0097156  BP     2  0 1.0000000000
## GO:1904606  BP     2  0 1.0000000000
## GO:0010430  BP     2  0 1.0000000000
## GO:1903173  BP     2  0 1.0000000000
## GO:0036115  BP     2  0 1.0000000000
## GO:0007147  BP     2  0 1.0000000000
## GO:0035038  BP     2  0 1.0000000000
## GO:0030237  BP     2  0 1.0000000000
## GO:0070627  BP     2  0 1.0000000000
## GO:0098707  BP     2  0 1.0000000000
## GO:0060595  BP     2  0 1.0000000000
## GO:0035607  BP     2  0 1.0000000000
## GO:0072387  BP     2  0 1.0000000000
## GO:0042727  BP     2  0 1.0000000000
## GO:0021508  BP     2  0 1.0000000000
## GO:0009397  BP     2  0 1.0000000000
## GO:0002266  BP     2  0 1.0000000000
## GO:0002268  BP     2  0 1.0000000000
## GO:0035922  BP     2  0 1.0000000000
## GO:0021897  BP     2  0 1.0000000000
## GO:0021896  BP     2  0 1.0000000000
## GO:0021592  BP     2  0 1.0000000000
## GO:0060364  BP     2  0 1.0000000000
## GO:0030389  BP     2  0 1.0000000000
## GO:0046370  BP     2  0 1.0000000000
## GO:0006683  BP     2  0 1.0000000000
## GO:0090663  BP     2  0 1.0000000000
## GO:0009450  BP     2  0 1.0000000000
## GO:0061534  BP     2  0 1.0000000000
## GO:0002304  BP     2  0 1.0000000000
## GO:0061552  BP     2  0 1.0000000000
## GO:0010706  BP     2  0 1.0000000000
## GO:0051866  BP     2  0 1.0000000000
## GO:0000349  BP     2  0 1.0000000000
## GO:0000350  BP     2  0 1.0000000000
## GO:0106091  BP     2  0 1.0000000000
## GO:0044467  BP     2  0 1.0000000000
## GO:0001575  BP     2  0 1.0000000000
## GO:0021759  BP     2  0 1.0000000000
## GO:0072011  BP     2  0 1.0000000000
## GO:0006713  BP     2  0 1.0000000000
## GO:0006043  BP     2  0 1.0000000000
## GO:0019255  BP     2  0 1.0000000000
## GO:0044381  BP     2  0 1.0000000000
## GO:0006679  BP     2  0 1.0000000000
## GO:0019391  BP     2  0 1.0000000000
## GO:0019551  BP     2  0 1.0000000000
## GO:0019550  BP     2  0 1.0000000000
## GO:0006425  BP     2  0 1.0000000000
## GO:0006424  BP     2  0 1.0000000000
## GO:0034775  BP     2  0 1.0000000000
## GO:0046166  BP     2  0 1.0000000000
## GO:0046327  BP     2  0 1.0000000000
## GO:0019563  BP     2  0 1.0000000000
## GO:0006127  BP     2  0 1.0000000000
## GO:0019264  BP     2  0 1.0000000000
## GO:0019265  BP     2  0 1.0000000000
## GO:0009441  BP     2  0 1.0000000000
## GO:0046836  BP     2  0 1.0000000000
## GO:0061723  BP     2  0 1.0000000000
## GO:0006097  BP     2  0 1.0000000000
## GO:0038158  BP     2  0 1.0000000000
## GO:0060014  BP     2  0 1.0000000000
## GO:0003430  BP     2  0 1.0000000000
## GO:0097117  BP     2  0 1.0000000000
## GO:1905748  BP     2  0 1.0000000000
## GO:0006784  BP     2  0 1.0000000000
## GO:0046160  BP     2  0 1.0000000000
## GO:0006788  BP     2  0 1.0000000000
## GO:0061872  BP     2  0 1.0000000000
## GO:0061868  BP     2  0 1.0000000000
## GO:0061017  BP     2  0 1.0000000000
## GO:0036333  BP     2  0 1.0000000000
## GO:0070869  BP     2  0 1.0000000000
## GO:0070829  BP     2  0 1.0000000000
## GO:0021577  BP     2  0 1.0000000000
## GO:0001694  BP     2  0 1.0000000000
## GO:0000105  BP     2  0 1.0000000000
## GO:0015817  BP     2  0 1.0000000000
## GO:0006427  BP     2  0 1.0000000000
## GO:0071894  BP     2  0 1.0000000000
## GO:0097676  BP     2  0 1.0000000000
## GO:0034971  BP     2  0 1.0000000000
## GO:0034970  BP     2  0 1.0000000000
## GO:0036413  BP     2  0 1.0000000000
## GO:2000775  BP     2  0 1.0000000000
## GO:0072355  BP     2  0 1.0000000000
## GO:0035408  BP     2  0 1.0000000000
## GO:0035574  BP     2  0 1.0000000000
## GO:1990258  BP     2  0 1.0000000000
## GO:0043418  BP     2  0 1.0000000000
## GO:0042309  BP     2  0 1.0000000000
## GO:0044029  BP     2  0 1.0000000000
## GO:0042539  BP     2  0 1.0000000000
## GO:0043103  BP     2  0 1.0000000000
## GO:0002436  BP     2  0 1.0000000000
## GO:0002380  BP     2  0 1.0000000000
## GO:0002415  BP     2  0 1.0000000000
## GO:0051389  BP     2  0 1.0000000000
## GO:0060821  BP     2  0 1.0000000000
## GO:0060817  BP     2  0 1.0000000000
## GO:0061379  BP     2  0 1.0000000000
## GO:0001544  BP     2  0 1.0000000000
## GO:0098582  BP     2  0 1.0000000000
## GO:0052746  BP     2  0 1.0000000000
## GO:1901143  BP     2  0 1.0000000000
## GO:0052047  BP     2  0 1.0000000000
## GO:0035722  BP     2  0 1.0000000000
## GO:0032618  BP     2  0 1.0000000000
## GO:0038110  BP     2  0 1.0000000000
## GO:0032625  BP     2  0 1.0000000000
## GO:0072619  BP     2  0 1.0000000000
## GO:0045105  BP     2  0 1.0000000000
## GO:0048389  BP     2  0 1.0000000000
## GO:0090675  BP     2  0 1.0000000000
## GO:0060574  BP     2  0 1.0000000000
## GO:0061582  BP     2  0 1.0000000000
## GO:0120054  BP     2  0 1.0000000000
## GO:0060752  BP     2  0 1.0000000000
## GO:0002041  BP     2  0 1.0000000000
## GO:0015688  BP     2  0 1.0000000000
## GO:0048250  BP     2  0 1.0000000000
## GO:0018283  BP     2  0 1.0000000000
## GO:0006550  BP     2  0 1.0000000000
## GO:0006549  BP     2  0 1.0000000000
## GO:0006428  BP     2  0 1.0000000000
## GO:0018262  BP     2  0 1.0000000000
## GO:1902767  BP     2  0 1.0000000000
## GO:0042339  BP     2  0 1.0000000000
## GO:0072004  BP     2  0 1.0000000000
## GO:0072071  BP     2  0 1.0000000000
## GO:0072135  BP     2  0 1.0000000000
## GO:0072195  BP     2  0 1.0000000000
## GO:0034276  BP     2  0 1.0000000000
## GO:0034275  BP     2  0 1.0000000000
## GO:0019516  BP     2  0 1.0000000000
## GO:0005989  BP     2  0 1.0000000000
## GO:0005988  BP     2  0 1.0000000000
## GO:0046478  BP     2  0 1.0000000000
## GO:0051878  BP     2  0 1.0000000000
## GO:0046331  BP     2  0 1.0000000000
## GO:0048372  BP     2  0 1.0000000000
## GO:0048377  BP     2  0 1.0000000000
## GO:0060490  BP     2  0 1.0000000000
## GO:0060599  BP     2  0 1.0000000000
## GO:0035026  BP     2  0 1.0000000000
## GO:0098583  BP     2  0 1.0000000000
## GO:0097166  BP     2  0 1.0000000000
## GO:0009098  BP     2  0 1.0000000000
## GO:0006429  BP     2  0 1.0000000000
## GO:0061757  BP     2  0 1.0000000000
## GO:0050902  BP     2  0 1.0000000000
## GO:1901750  BP     2  0 1.0000000000
## GO:1901748  BP     2  0 1.0000000000
## GO:0036367  BP     2  0 1.0000000000
## GO:1990379  BP     2  0 1.0000000000
## GO:0010877  BP     2  0 1.0000000000
## GO:0009106  BP     2  0 1.0000000000
## GO:0015920  BP     2  0 1.0000000000
## GO:0034439  BP     2  0 1.0000000000
## GO:0042160  BP     2  0 1.0000000000
## GO:0042161  BP     2  0 1.0000000000
## GO:2001303  BP     2  0 1.0000000000
## GO:2001302  BP     2  0 1.0000000000
## GO:2001301  BP     2  0 1.0000000000
## GO:2001300  BP     2  0 1.0000000000
## GO:0061141  BP     2  0 1.0000000000
## GO:0061145  BP     2  0 1.0000000000
## GO:1990183  BP     2  0 1.0000000000
## GO:0002518  BP     2  0 1.0000000000
## GO:0097022  BP     2  0 1.0000000000
## GO:0097534  BP     2  0 1.0000000000
## GO:0097535  BP     2  0 1.0000000000
## GO:0009085  BP     2  0 1.0000000000
## GO:0019878  BP     2  0 1.0000000000
## GO:0006554  BP     2  0 1.0000000000
## GO:0015819  BP     2  0 1.0000000000
## GO:2001311  BP     2  0 1.0000000000
## GO:0051977  BP     2  0 1.0000000000
## GO:0000389  BP     2  0 1.0000000000
## GO:0031990  BP     2  0 1.0000000000
## GO:0010609  BP     2  0 1.0000000000
## GO:1903830  BP     2  0 1.0000000000
## GO:0051659  BP     2  0 1.0000000000
## GO:0099403  BP     2  0 1.0000000000
## GO:0072658  BP     2  0 1.0000000000
## GO:0072660  BP     2  0 1.0000000000
## GO:0043007  BP     2  0 1.0000000000
## GO:1990145  BP     2  0 1.0000000000
## GO:0019100  BP     2  0 1.0000000000
## GO:2001293  BP     2  0 1.0000000000
## GO:0060615  BP     2  0 1.0000000000
## GO:0061373  BP     2  0 1.0000000000
## GO:0021767  BP     2  0 1.0000000000
## GO:0033364  BP     2  0 1.0000000000
## GO:0071626  BP     2  0 1.0000000000
## GO:0008358  BP     2  0 1.0000000000
## GO:0021526  BP     2  0 1.0000000000
## GO:0036034  BP     2  0 1.0000000000
## GO:0060031  BP     2  0 1.0000000000
## GO:0001579  BP     2  0 1.0000000000
## GO:0010705  BP     2  0 1.0000000000
## GO:0044778  BP     2  0 1.0000000000
## GO:0043060  BP     2  0 1.0000000000
## GO:0010789  BP     2  0 1.0000000000
## GO:0006583  BP     2  0 1.0000000000
## GO:0097324  BP     2  0 1.0000000000
## GO:0030187  BP     2  0 1.0000000000
## GO:0030186  BP     2  0 1.0000000000
## GO:0097753  BP     2  0 1.0000000000
## GO:1904211  BP     2  0 1.0000000000
## GO:0001766  BP     2  0 1.0000000000
## GO:0042361  BP     2  0 1.0000000000
## GO:0022601  BP     2  0 1.0000000000
## GO:1901147  BP     2  0 1.0000000000
## GO:0060915  BP     2  0 1.0000000000
## GO:0007509  BP     2  0 1.0000000000
## GO:0060809  BP     2  0 1.0000000000
## GO:0072181  BP     2  0 1.0000000000
## GO:0052419  BP     2  0 1.0000000000
## GO:0052416  BP     2  0 1.0000000000
## GO:0052229  BP     2  0 1.0000000000
## GO:0052214  BP     2  0 1.0000000000
## GO:0018282  BP     2  0 1.0000000000
## GO:0072218  BP     2  0 1.0000000000
## GO:0072185  BP     2  0 1.0000000000
## GO:0090094  BP     2  0 1.0000000000
## GO:0072186  BP     2  0 1.0000000000
## GO:0072278  BP     2  0 1.0000000000
## GO:0072313  BP     2  0 1.0000000000
## GO:0072312  BP     2  0 1.0000000000
## GO:0072249  BP     2  0 1.0000000000
## GO:0072248  BP     2  0 1.0000000000
## GO:0072136  BP     2  0 1.0000000000
## GO:0035502  BP     2  0 1.0000000000
## GO:0072233  BP     2  0 1.0000000000
## GO:0051323  BP     2  0 1.0000000000
## GO:0006431  BP     2  0 1.0000000000
## GO:0051958  BP     2  0 1.0000000000
## GO:0097089  BP     2  0 1.0000000000
## GO:0019242  BP     2  0 1.0000000000
## GO:1990428  BP     2  0 1.0000000000
## GO:0090634  BP     2  0 1.0000000000
## GO:0060152  BP     2  0 1.0000000000
## GO:0072382  BP     2  0 1.0000000000
## GO:0031930  BP     2  0 1.0000000000
## GO:0090615  BP     2  0 1.0000000000
## GO:0090149  BP     2  0 1.0000000000
## GO:1990613  BP     2  0 1.0000000000
## GO:0070096  BP     2  0 1.0000000000
## GO:0006850  BP     2  0 1.0000000000
## GO:0070901  BP     2  0 1.0000000000
## GO:0070124  BP     2  0 1.0000000000
## GO:1990456  BP     2  0 1.0000000000
## GO:1990505  BP     2  0 1.0000000000
## GO:0000087  BP     2  0 1.0000000000
## GO:0007079  BP     2  0 1.0000000000
## GO:0051329  BP     2  0 1.0000000000
## GO:0000089  BP     2  0 1.0000000000
## GO:1990426  BP     2  0 1.0000000000
## GO:0099404  BP     2  0 1.0000000000
## GO:0051228  BP     2  0 1.0000000000
## GO:0098886  BP     2  0 1.0000000000
## GO:0044867  BP     2  0 1.0000000000
## GO:0044866  BP     2  0 1.0000000000
## GO:0044870  BP     2  0 1.0000000000
## GO:0039526  BP     2  0 1.0000000000
## GO:0039519  BP     2  0 1.0000000000
## GO:0016098  BP     2  0 1.0000000000
## GO:0044035  BP     2  0 1.0000000000
## GO:1902581  BP     2  0 1.0000000000
## GO:1902583  BP     2  0 1.0000000000
## GO:0044033  BP     2  0 1.0000000000
## GO:1902594  BP     2  0 1.0000000000
## GO:1990967  BP     2  0 1.0000000000
## GO:0061763  BP     2  0 1.0000000000
## GO:0007521  BP     2  0 1.0000000000
## GO:0043387  BP     2  0 1.0000000000
## GO:0048627  BP     2  0 1.0000000000
## GO:1990764  BP     2  0 1.0000000000
## GO:0031038  BP     2  0 1.0000000000
## GO:0018931  BP     2  0 1.0000000000
## GO:0090420  BP     2  0 1.0000000000
## GO:0002769  BP     2  0 1.0000000000
## GO:0002519  BP     2  0 1.0000000000
## GO:0043629  BP     2  0 1.0000000000
## GO:0052403  BP     2  0 1.0000000000
## GO:0044869  BP     2  0 1.0000000000
## GO:0044871  BP     2  0 1.0000000000
## GO:0046725  BP     2  0 1.0000000000
## GO:1903892  BP     2  0 1.0000000000
## GO:2000349  BP     2  0 1.0000000000
## GO:0043377  BP     2  0 1.0000000000
## GO:1905775  BP     2  0 1.0000000000
## GO:1905642  BP     2  0 1.0000000000
## GO:1905450  BP     2  0 1.0000000000
## GO:1904021  BP     2  0 1.0000000000
## GO:1900477  BP     2  0 1.0000000000
## GO:1903895  BP     2  0 1.0000000000
## GO:1900235  BP     2  0 1.0000000000
## GO:0002037  BP     2  0 1.0000000000
## GO:0034125  BP     2  0 1.0000000000
## GO:1902689  BP     2  0 1.0000000000
## GO:0051134  BP     2  0 1.0000000000
## GO:1904782  BP     2  0 1.0000000000
## GO:1902367  BP     2  0 1.0000000000
## GO:0046832  BP     2  0 1.0000000000
## GO:1900369  BP     2  0 1.0000000000
## GO:1904476  BP     2  0 1.0000000000
## GO:2001107  BP     2  0 1.0000000000
## GO:1900148  BP     2  0 1.0000000000
## GO:2001189  BP     2  0 1.0000000000
## GO:0045751  BP     2  0 1.0000000000
## GO:2000054  BP     2  0 1.0000000000
## GO:1903919  BP     2  0 1.0000000000
## GO:1902569  BP     2  0 1.0000000000
## GO:0001971  BP     2  0 1.0000000000
## GO:1905675  BP     2  0 1.0000000000
## GO:1902870  BP     2  0 1.0000000000
## GO:0002590  BP     2  0 1.0000000000
## GO:0002587  BP     2  0 1.0000000000
## GO:1900215  BP     2  0 1.0000000000
## GO:1900218  BP     2  0 1.0000000000
## GO:1902257  BP     2  0 1.0000000000
## GO:1900139  BP     2  0 1.0000000000
## GO:1902960  BP     2  0 1.0000000000
## GO:1905246  BP     2  0 1.0000000000
## GO:0061889  BP     2  0 1.0000000000
## GO:1904093  BP     2  0 1.0000000000
## GO:2000813  BP     2  0 1.0000000000
## GO:0060313  BP     2  0 1.0000000000
## GO:1900155  BP     2  0 1.0000000000
## GO:0031549  BP     2  0 1.0000000000
## GO:0090191  BP     2  0 1.0000000000
## GO:1904878  BP     2  0 1.0000000000
## GO:1901220  BP     2  0 1.0000000000
## GO:0062044  BP     2  0 1.0000000000
## GO:0106135  BP     2  0 1.0000000000
## GO:1905179  BP     2  0 1.0000000000
## GO:0051892  BP     2  0 1.0000000000
## GO:1901303  BP     2  0 1.0000000000
## GO:0052199  BP     2  0 1.0000000000
## GO:2001287  BP     2  0 1.0000000000
## GO:0060354  BP     2  0 1.0000000000
## GO:1905916  BP     2  0 1.0000000000
## GO:0003252  BP     2  0 1.0000000000
## GO:0033633  BP     2  0 1.0000000000
## GO:0045763  BP     2  0 1.0000000000
## GO:1903973  BP     2  0 1.0000000000
## GO:0021941  BP     2  0 1.0000000000
## GO:1904715  BP     2  0 1.0000000000
## GO:2000342  BP     2  0 1.0000000000
## GO:2001226  BP     2  0 1.0000000000
## GO:1901383  BP     2  0 1.0000000000
## GO:0061188  BP     2  0 1.0000000000
## GO:1902340  BP     2  0 1.0000000000
## GO:0042323  BP     2  0 1.0000000000
## GO:1904027  BP     2  0 1.0000000000
## GO:0045957  BP     2  0 1.0000000000
## GO:0001869  BP     2  0 1.0000000000
## GO:1905204  BP     2  0 1.0000000000
## GO:1905408  BP     2  0 1.0000000000
## GO:0060302  BP     2  0 1.0000000000
## GO:1903650  BP     2  0 1.0000000000
## GO:0150066  BP     2  0 1.0000000000
## GO:2000293  BP     2  0 1.0000000000
## GO:0032076  BP     2  0 1.0000000000
## GO:2000642  BP     2  0 1.0000000000
## GO:0042664  BP     2  0 1.0000000000
## GO:1903382  BP     2  0 1.0000000000
## GO:0060702  BP     2  0 1.0000000000
## GO:1901551  BP     2  0 1.0000000000
## GO:1902567  BP     2  0 1.0000000000
## GO:2000417  BP     2  0 1.0000000000
## GO:1905006  BP     2  0 1.0000000000
## GO:1905277  BP     2  0 1.0000000000
## GO:0090212  BP     2  0 1.0000000000
## GO:1903141  BP     2  0 1.0000000000
## GO:1903016  BP     2  0 1.0000000000
## GO:1905778  BP     2  0 1.0000000000
## GO:0010716  BP     2  0 1.0000000000
## GO:0042480  BP     2  0 1.0000000000
## GO:2000314  BP     2  0 1.0000000000
## GO:1901318  BP     2  0 1.0000000000
## GO:0120061  BP     2  0 1.0000000000
## GO:1903640  BP     2  0 1.0000000000
## GO:1904305  BP     2  0 1.0000000000
## GO:0002635  BP     2  0 1.0000000000
## GO:1900170  BP     2  0 1.0000000000
## GO:1904024  BP     2  0 1.0000000000
## GO:1900924  BP     2  0 1.0000000000
## GO:0045818  BP     2  0 1.0000000000
## GO:0071623  BP     2  0 1.0000000000
## GO:0060400  BP     2  0 1.0000000000
## GO:2000490  BP     2  0 1.0000000000
## GO:0110091  BP     2  0 1.0000000000
## GO:1901315  BP     2  0 1.0000000000
## GO:0000415  BP     2  0 1.0000000000
## GO:1900110  BP     2  0 1.0000000000
## GO:1901726  BP     2  0 1.0000000000
## GO:0033183  BP     2  0 1.0000000000
## GO:1903384  BP     2  0 1.0000000000
## GO:1902072  BP     2  0 1.0000000000
## GO:2000521  BP     2  0 1.0000000000
## GO:1903796  BP     2  0 1.0000000000
## GO:0010920  BP     2  0 1.0000000000
## GO:0033624  BP     2  0 1.0000000000
## GO:0045720  BP     2  0 1.0000000000
## GO:2001045  BP     2  0 1.0000000000
## GO:0045077  BP     2  0 1.0000000000
## GO:0050712  BP     2  0 1.0000000000
## GO:0045081  BP     2  0 1.0000000000
## GO:0032701  BP     2  0 1.0000000000
## GO:0032707  BP     2  0 1.0000000000
## GO:0070104  BP     2  0 1.0000000000
## GO:0045796  BP     2  0 1.0000000000
## GO:1904730  BP     2  0 1.0000000000
## GO:0010949  BP     2  0 1.0000000000
## GO:1901253  BP     2  0 1.0000000000
## GO:1903609  BP     2  0 1.0000000000
## GO:1902173  BP     2  0 1.0000000000
## GO:0051548  BP     2  0 1.0000000000
## GO:2000393  BP     2  0 1.0000000000
## GO:0032804  BP     2  0 1.0000000000
## GO:1901250  BP     2  0 1.0000000000
## GO:1901624  BP     2  0 1.0000000000
## GO:0090367  BP     2  0 1.0000000000
## GO:1902227  BP     2  0 1.0000000000
## GO:1904908  BP     2  0 1.0000000000
## GO:1902436  BP     2  0 1.0000000000
## GO:0032764  BP     2  0 1.0000000000
## GO:0070667  BP     2  0 1.0000000000
## GO:1904465  BP     2  0 1.0000000000
## GO:0072305  BP     2  0 1.0000000000
## GO:2000791  BP     2  0 1.0000000000
## GO:2000740  BP     2  0 1.0000000000
## GO:1902963  BP     2  0 1.0000000000
## GO:2000629  BP     2  0 1.0000000000
## GO:1904527  BP     2  0 1.0000000000
## GO:2000575  BP     2  0 1.0000000000
## GO:0090298  BP     2  0 1.0000000000
## GO:0000961  BP     2  0 1.0000000000
## GO:0045976  BP     2  0 1.0000000000
## GO:0070256  BP     2  0 1.0000000000
## GO:0014736  BP     2  0 1.0000000000
## GO:0014740  BP     2  0 1.0000000000
## GO:0050925  BP     2  0 1.0000000000
## GO:0061076  BP     2  0 1.0000000000
## GO:1904397  BP     2  0 1.0000000000
## GO:1904456  BP     2  0 1.0000000000
## GO:0090024  BP     2  0 1.0000000000
## GO:0043314  BP     2  0 1.0000000000
## GO:1905259  BP     2  0 1.0000000000
## GO:1900176  BP     2  0 1.0000000000
## GO:1900146  BP     2  0 1.0000000000
## GO:0032240  BP     2  0 1.0000000000
## GO:0042489  BP     2  0 1.0000000000
## GO:1900142  BP     2  0 1.0000000000
## GO:2000355  BP     2  0 1.0000000000
## GO:2000276  BP     2  0 1.0000000000
## GO:2000227  BP     2  0 1.0000000000
## GO:0033140  BP     2  0 1.0000000000
## GO:2000469  BP     2  0 1.0000000000
## GO:0060101  BP     2  0 1.0000000000
## GO:1900240  BP     2  0 1.0000000000
## GO:0010512  BP     2  0 1.0000000000
## GO:1900138  BP     2  0 1.0000000000
## GO:0034445  BP     2  0 1.0000000000
## GO:2000584  BP     2  0 1.0000000000
## GO:1902283  BP     2  0 1.0000000000
## GO:0031393  BP     2  0 1.0000000000
## GO:0032307  BP     2  0 1.0000000000
## GO:1903094  BP     2  0 1.0000000000
## GO:1905524  BP     2  0 1.0000000000
## GO:0090285  BP     2  0 1.0000000000
## GO:1901094  BP     2  0 1.0000000000
## GO:1904815  BP     2  0 1.0000000000
## GO:1903565  BP     2  0 1.0000000000
## GO:1901091  BP     2  0 1.0000000000
## GO:1903614  BP     2  0 1.0000000000
## GO:1901898  BP     2  0 1.0000000000
## GO:1903970  BP     2  0 1.0000000000
## GO:1902867  BP     2  0 1.0000000000
## GO:0046671  BP     2  0 1.0000000000
## GO:0060701  BP     2  0 1.0000000000
## GO:1902443  BP     2  0 1.0000000000
## GO:1905747  BP     2  0 1.0000000000
## GO:0090341  BP     2  0 1.0000000000
## GO:1900191  BP     2  0 1.0000000000
## GO:1900229  BP     2  0 1.0000000000
## GO:0048632  BP     2  0 1.0000000000
## GO:1904348  BP     2  0 1.0000000000
## GO:2000098  BP     2  0 1.0000000000
## GO:0032416  BP     2  0 1.0000000000
## GO:0090233  BP     2  0 1.0000000000
## GO:1904049  BP     2  0 1.0000000000
## GO:0048688  BP     2  0 1.0000000000
## GO:1905839  BP     2  0 1.0000000000
## GO:1904743  BP     2  0 1.0000000000
## GO:1904534  BP     2  0 1.0000000000
## GO:0120191  BP     2  0 1.0000000000
## GO:2000805  BP     2  0 1.0000000000
## GO:2000225  BP     2  0 1.0000000000
## GO:0051886  BP     2  0 1.0000000000
## GO:0002644  BP     2  0 1.0000000000
## GO:0070171  BP     2  0 1.0000000000
## GO:0032912  BP     2  0 1.0000000000
## GO:2001202  BP     2  0 1.0000000000
## GO:1902010  BP     2  0 1.0000000000
## GO:0032057  BP     2  0 1.0000000000
## GO:0070895  BP     2  0 1.0000000000
## GO:1904691  BP     2  0 1.0000000000
## GO:0001808  BP     2  0 1.0000000000
## GO:2000157  BP     2  0 1.0000000000
## GO:0070473  BP     2  0 1.0000000000
## GO:1904046  BP     2  0 1.0000000000
## GO:1905931  BP     2  0 1.0000000000
## GO:2001213  BP     2  0 1.0000000000
## GO:1903946  BP     2  0 1.0000000000
## GO:0010903  BP     2  0 1.0000000000
## GO:0070563  BP     2  0 1.0000000000
## GO:0071583  BP     2  0 1.0000000000
## GO:0071582  BP     2  0 1.0000000000
## GO:0072134  BP     2  0 1.0000000000
## GO:0032902  BP     2  0 1.0000000000
## GO:0014034  BP     2  0 1.0000000000
## GO:0021997  BP     2  0 1.0000000000
## GO:1902988  BP     2  0 1.0000000000
## GO:0021985  BP     2  0 1.0000000000
## GO:0036483  BP     2  0 1.0000000000
## GO:0036482  BP     2  0 1.0000000000
## GO:0021812  BP     2  0 1.0000000000
## GO:0010813  BP     2  0 1.0000000000
## GO:0021995  BP     2  0 1.0000000000
## GO:0045212  BP     2  0 1.0000000000
## GO:0098968  BP     2  0 1.0000000000
## GO:0070946  BP     2  0 1.0000000000
## GO:0015675  BP     2  0 1.0000000000
## GO:0060658  BP     2  0 1.0000000000
## GO:0033484  BP     2  0 1.0000000000
## GO:0002537  BP     2  0 1.0000000000
## GO:0030185  BP     2  0 1.0000000000
## GO:0090293  BP     2  0 1.0000000000
## GO:0001079  BP     2  0 1.0000000000
## GO:0051620  BP     2  0 1.0000000000
## GO:0043585  BP     2  0 1.0000000000
## GO:0060032  BP     2  0 1.0000000000
## GO:0071031  BP     2  0 1.0000000000
## GO:0071030  BP     2  0 1.0000000000
## GO:0031022  BP     2  0 1.0000000000
## GO:0031081  BP     2  0 1.0000000000
## GO:0051664  BP     2  0 1.0000000000
## GO:0071049  BP     2  0 1.0000000000
## GO:0071048  BP     2  0 1.0000000000
## GO:0000294  BP     2  0 1.0000000000
## GO:0015949  BP     2  0 1.0000000000
## GO:0017126  BP     2  0 1.0000000000
## GO:0046940  BP     2  0 1.0000000000
## GO:0042766  BP     2  0 1.0000000000
## GO:1901255  BP     2  0 1.0000000000
## GO:0000717  BP     2  0 1.0000000000
## GO:0009227  BP     2  0 1.0000000000
## GO:0021623  BP     2  0 1.0000000000
## GO:0021622  BP     2  0 1.0000000000
## GO:1900673  BP     2  0 1.0000000000
## GO:0007314  BP     2  0 1.0000000000
## GO:0007309  BP     2  0 1.0000000000
## GO:0007308  BP     2  0 1.0000000000
## GO:0001555  BP     2  0 1.0000000000
## GO:0021633  BP     2  0 1.0000000000
## GO:0001743  BP     2  0 1.0000000000
## GO:0046619  BP     2  0 1.0000000000
## GO:0003404  BP     2  0 1.0000000000
## GO:0021769  BP     2  0 1.0000000000
## GO:1901377  BP     2  0 1.0000000000
## GO:0060488  BP     2  0 1.0000000000
## GO:0007231  BP     2  0 1.0000000000
## GO:0043932  BP     2  0 1.0000000000
## GO:0001552  BP     2  0 1.0000000000
## GO:0035846  BP     2  0 1.0000000000
## GO:0046724  BP     2  0 1.0000000000
## GO:0035552  BP     2  0 1.0000000000
## GO:0003326  BP     2  0 1.0000000000
## GO:0003312  BP     2  0 1.0000000000
## GO:0003329  BP     2  0 1.0000000000
## GO:0036395  BP     2  0 1.0000000000
## GO:0072343  BP     2  0 1.0000000000
## GO:0015939  BP     2  0 1.0000000000
## GO:0048342  BP     2  0 1.0000000000
## GO:0048343  BP     2  0 1.0000000000
## GO:0009405  BP     2  0 1.0000000000
## GO:0061227  BP     2  0 1.0000000000
## GO:0039017  BP     2  0 1.0000000000
## GO:0019322  BP     2  0 1.0000000000
## GO:0002502  BP     2  0 1.0000000000
## GO:0031179  BP     2  0 1.0000000000
## GO:0042264  BP     2  0 1.0000000000
## GO:0035606  BP     2  0 1.0000000000
## GO:0018003  BP     2  0 1.0000000000
## GO:0140066  BP     2  0 1.0000000000
## GO:0008612  BP     2  0 1.0000000000
## GO:0017186  BP     2  0 1.0000000000
## GO:0030920  BP     2  0 1.0000000000
## GO:1990443  BP     2  0 1.0000000000
## GO:0006478  BP     2  0 1.0000000000
## GO:0002458  BP     2  0 1.0000000000
## GO:0015910  BP     2  0 1.0000000000
## GO:0060151  BP     2  0 1.0000000000
## GO:0090387  BP     2  0 1.0000000000
## GO:0090386  BP     2  0 1.0000000000
## GO:0060465  BP     2  0 1.0000000000
## GO:0046271  BP     2  0 1.0000000000
## GO:0046338  BP     2  0 1.0000000000
## GO:0006660  BP     2  0 1.0000000000
## GO:0086097  BP     2  0 1.0000000000
## GO:0031583  BP     2  0 1.0000000000
## GO:0006649  BP     2  0 1.0000000000
## GO:0033306  BP     2  0 1.0000000000
## GO:0061350  BP     2  0 1.0000000000
## GO:0061349  BP     2  0 1.0000000000
## GO:0060775  BP     2  0 1.0000000000
## GO:0061347  BP     2  0 1.0000000000
## GO:0061354  BP     2  0 1.0000000000
## GO:0061348  BP     2  0 1.0000000000
## GO:0060489  BP     2  0 1.0000000000
## GO:0002353  BP     2  0 1.0000000000
## GO:0015679  BP     2  0 1.0000000000
## GO:0044855  BP     2  0 1.0000000000
## GO:0044856  BP     2  0 1.0000000000
## GO:0002270  BP     2  0 1.0000000000
## GO:0009949  BP     2  0 1.0000000000
## GO:0010085  BP     2  0 1.0000000000
## GO:0007315  BP     2  0 1.0000000000
## GO:0098501  BP     2  0 1.0000000000
## GO:0033037  BP     2  0 1.0000000000
## GO:1990074  BP     2  0 1.0000000000
## GO:0035915  BP     2  0 1.0000000000
## GO:0032014  BP     2  0 1.0000000000
## GO:2000538  BP     2  0 1.0000000000
## GO:0002663  BP     2  0 1.0000000000
## GO:2000451  BP     2  0 1.0000000000
## GO:1902164  BP     2  0 1.0000000000
## GO:1905464  BP     2  0 1.0000000000
## GO:0032877  BP     2  0 1.0000000000
## GO:1905776  BP     2  0 1.0000000000
## GO:0032298  BP     2  0 1.0000000000
## GO:0071848  BP     2  0 1.0000000000
## GO:0070378  BP     2  0 1.0000000000
## GO:1903896  BP     2  0 1.0000000000
## GO:0002038  BP     2  0 1.0000000000
## GO:1905636  BP     2  0 1.0000000000
## GO:0002842  BP     2  0 1.0000000000
## GO:2000570  BP     2  0 1.0000000000
## GO:1904515  BP     2  0 1.0000000000
## GO:0032759  BP     2  0 1.0000000000
## GO:1905426  BP     2  0 1.0000000000
## GO:0060409  BP     2  0 1.0000000000
## GO:2000368  BP     2  0 1.0000000000
## GO:0001970  BP     2  0 1.0000000000
## GO:0070237  BP     2  0 1.0000000000
## GO:0002879  BP     2  0 1.0000000000
## GO:0071879  BP     2  0 1.0000000000
## GO:0070165  BP     2  0 1.0000000000
## GO:1902871  BP     2  0 1.0000000000
## GO:1903632  BP     2  0 1.0000000000
## GO:1905908  BP     2  0 1.0000000000
## GO:2000744  BP     2  0 1.0000000000
## GO:1903744  BP     2  0 1.0000000000
## GO:0002588  BP     2  0 1.0000000000
## GO:0002582  BP     2  0 1.0000000000
## GO:2000388  BP     2  0 1.0000000000
## GO:1902425  BP     2  0 1.0000000000
## GO:2000814  BP     2  0 1.0000000000
## GO:1905053  BP     2  0 1.0000000000
## GO:1904172  BP     2  0 1.0000000000
## GO:2000334  BP     2  0 1.0000000000
## GO:1900159  BP     2  0 1.0000000000
## GO:1905492  BP     2  0 1.0000000000
## GO:1903281  BP     2  0 1.0000000000
## GO:0010615  BP     2  0 1.0000000000
## GO:1903244  BP     2  0 1.0000000000
## GO:2000724  BP     2  0 1.0000000000
## GO:1900210  BP     2  0 1.0000000000
## GO:0010652  BP     2  0 1.0000000000
## GO:1900039  BP     2  0 1.0000000000
## GO:0090035  BP     2  0 1.0000000000
## GO:1903646  BP     2  0 1.0000000000
## GO:2000340  BP     2  0 1.0000000000
## GO:0002876  BP     2  0 1.0000000000
## GO:0120158  BP     2  0 1.0000000000
## GO:1904028  BP     2  0 1.0000000000
## GO:0048697  BP     2  0 1.0000000000
## GO:0048694  BP     2  0 1.0000000000
## GO:1904343  BP     2  0 1.0000000000
## GO:0032723  BP     2  0 1.0000000000
## GO:2000854  BP     2  0 1.0000000000
## GO:1903852  BP     2  0 1.0000000000
## GO:0051343  BP     2  0 1.0000000000
## GO:2000707  BP     2  0 1.0000000000
## GO:2001150  BP     2  0 1.0000000000
## GO:2000880  BP     2  0 1.0000000000
## GO:0032470  BP     2  0 1.0000000000
## GO:1905956  BP     2  0 1.0000000000
## GO:1901076  BP     2  0 1.0000000000
## GO:1902568  BP     2  0 1.0000000000
## GO:2000424  BP     2  0 1.0000000000
## GO:0043311  BP     2  0 1.0000000000
## GO:1901189  BP     2  0 1.0000000000
## GO:0032812  BP     2  0 1.0000000000
## GO:1904446  BP     2  0 1.0000000000
## GO:1903905  BP     2  0 1.0000000000
## GO:2000771  BP     2  0 1.0000000000
## GO:2000866  BP     2  0 1.0000000000
## GO:1904434  BP     2  0 1.0000000000
## GO:0071812  BP     2  0 1.0000000000
## GO:1905938  BP     2  0 1.0000000000
## GO:1900168  BP     2  0 1.0000000000
## GO:0061646  BP     2  0 1.0000000000
## GO:1903788  BP     2  0 1.0000000000
## GO:0045819  BP     2  0 1.0000000000
## GO:1902728  BP     2  0 1.0000000000
## GO:0090082  BP     2  0 1.0000000000
## GO:2000473  BP     2  0 1.0000000000
## GO:0061870  BP     2  0 1.0000000000
## GO:0031453  BP     2  0 1.0000000000
## GO:0090108  BP     2  0 1.0000000000
## GO:0010983  BP     2  0 1.0000000000
## GO:0060450  BP     2  0 1.0000000000
## GO:0035332  BP     2  0 1.0000000000
## GO:1902466  BP     2  0 1.0000000000
## GO:0000416  BP     2  0 1.0000000000
## GO:2001162  BP     2  0 1.0000000000
## GO:1900111  BP     2  0 1.0000000000
## GO:2000620  BP     2  0 1.0000000000
## GO:0090265  BP     2  0 1.0000000000
## GO:2000558  BP     2  0 1.0000000000
## GO:2000522  BP     2  0 1.0000000000
## GO:1904325  BP     2  0 1.0000000000
## GO:0033626  BP     2  0 1.0000000000
## GO:0045368  BP     2  0 1.0000000000
## GO:1902216  BP     2  0 1.0000000000
## GO:0070105  BP     2  0 1.0000000000
## GO:2001111  BP     2  0 1.0000000000
## GO:1905581  BP     2  0 1.0000000000
## GO:0045716  BP     2  0 1.0000000000
## GO:0032805  BP     2  0 1.0000000000
## GO:1905458  BP     2  0 1.0000000000
## GO:0097214  BP     2  0 1.0000000000
## GO:1905167  BP     2  0 1.0000000000
## GO:0071642  BP     2  0 1.0000000000
## GO:2000448  BP     2  0 1.0000000000
## GO:1905303  BP     2  0 1.0000000000
## GO:2000256  BP     2  0 1.0000000000
## GO:1902437  BP     2  0 1.0000000000
## GO:0032765  BP     2  0 1.0000000000
## GO:2001178  BP     2  0 1.0000000000
## GO:2000568  BP     2  0 1.0000000000
## GO:1902462  BP     2  0 1.0000000000
## GO:1904685  BP     2  0 1.0000000000
## GO:2000594  BP     2  0 1.0000000000
## GO:2000627  BP     2  0 1.0000000000
## GO:1905618  BP     2  0 1.0000000000
## GO:1904151  BP     2  0 1.0000000000
## GO:1903033  BP     2  0 1.0000000000
## GO:0032425  BP     2  0 1.0000000000
## GO:1901860  BP     2  0 1.0000000000
## GO:0000962  BP     2  0 1.0000000000
## GO:0045977  BP     2  0 1.0000000000
## GO:1903490  BP     2  0 1.0000000000
## GO:1903438  BP     2  0 1.0000000000
## GO:1905505  BP     2  0 1.0000000000
## GO:0030887  BP     2  0 1.0000000000
## GO:0060545  BP     2  0 1.0000000000
## GO:2000768  BP     2  0 1.0000000000
## GO:0061075  BP     2  0 1.0000000000
## GO:1902913  BP     2  0 1.0000000000
## GO:0032901  BP     2  0 1.0000000000
## GO:0070965  BP     2  0 1.0000000000
## GO:1900224  BP     2  0 1.0000000000
## GO:1903997  BP     2  0 1.0000000000
## GO:0070434  BP     2  0 1.0000000000
## GO:0070426  BP     2  0 1.0000000000
## GO:2000878  BP     2  0 1.0000000000
## GO:1900195  BP     2  0 1.0000000000
## GO:2000277  BP     2  0 1.0000000000
## GO:2000376  BP     2  0 1.0000000000
## GO:2000830  BP     2  0 1.0000000000
## GO:2000170  BP     2  0 1.0000000000
## GO:1902310  BP     2  0 1.0000000000
## GO:0002660  BP     2  0 1.0000000000
## GO:1900241  BP     2  0 1.0000000000
## GO:0060697  BP     2  0 1.0000000000
## GO:0010747  BP     2  0 1.0000000000
## GO:1901731  BP     2  0 1.0000000000
## GO:0090362  BP     2  0 1.0000000000
## GO:0030862  BP     2  0 1.0000000000
## GO:1902269  BP     2  0 1.0000000000
## GO:2000872  BP     2  0 1.0000000000
## GO:2000777  BP     2  0 1.0000000000
## GO:1902524  BP     2  0 1.0000000000
## GO:1903006  BP     2  0 1.0000000000
## GO:1902499  BP     2  0 1.0000000000
## GO:2000541  BP     2  0 1.0000000000
## GO:1902530  BP     2  0 1.0000000000
## GO:1905552  BP     2  0 1.0000000000
## GO:1905171  BP     2  0 1.0000000000
## GO:1903923  BP     2  0 1.0000000000
## GO:1903615  BP     2  0 1.0000000000
## GO:1905602  BP     2  0 1.0000000000
## GO:0010845  BP     2  0 1.0000000000
## GO:1901082  BP     2  0 1.0000000000
## GO:0060265  BP     2  0 1.0000000000
## GO:1902868  BP     2  0 1.0000000000
## GO:0045872  BP     2  0 1.0000000000
## GO:0014718  BP     2  0 1.0000000000
## GO:1903518  BP     2  0 1.0000000000
## GO:0045870  BP     2  0 1.0000000000
## GO:1904206  BP     2  0 1.0000000000
## GO:1902724  BP     2  0 1.0000000000
## GO:0120058  BP     2  0 1.0000000000
## GO:1904674  BP     2  0 1.0000000000
## GO:0062029  BP     2  0 1.0000000000
## GO:1904237  BP     2  0 1.0000000000
## GO:1904231  BP     2  0 1.0000000000
## GO:0045887  BP     2  0 1.0000000000
## GO:0010808  BP     2  0 1.0000000000
## GO:1905663  BP     2  0 1.0000000000
## GO:1904884  BP     2  0 1.0000000000
## GO:1904744  BP     2  0 1.0000000000
## GO:2000845  BP     2  0 1.0000000000
## GO:0051885  BP     2  0 1.0000000000
## GO:0002654  BP     2  0 1.0000000000
## GO:2001037  BP     2  0 1.0000000000
## GO:0061402  BP     2  0 1.0000000000
## GO:0071931  BP     2  0 1.0000000000
## GO:1904437  BP     2  0 1.0000000000
## GO:0032915  BP     2  0 1.0000000000
## GO:0032916  BP     2  0 1.0000000000
## GO:2001203  BP     2  0 1.0000000000
## GO:0045994  BP     2  0 1.0000000000
## GO:0071264  BP     2  0 1.0000000000
## GO:2000309  BP     2  0 1.0000000000
## GO:2000078  BP     2  0 1.0000000000
## GO:1904692  BP     2  0 1.0000000000
## GO:2000397  BP     2  0 1.0000000000
## GO:1904695  BP     2  0 1.0000000000
## GO:0070564  BP     2  0 1.0000000000
## GO:1902943  BP     2  0 1.0000000000
## GO:0070352  BP     2  0 1.0000000000
## GO:1903691  BP     2  0 1.0000000000
## GO:0035120  BP     2  0 1.0000000000
## GO:0035127  BP     2  0 1.0000000000
## GO:0072166  BP     2  0 1.0000000000
## GO:0021784  BP     2  0 1.0000000000
## GO:0030328  BP     2  0 1.0000000000
## GO:0030329  BP     2  0 1.0000000000
## GO:0048160  BP     2  0 1.0000000000
## GO:0060516  BP     2  0 1.0000000000
## GO:0007538  BP     2  0 1.0000000000
## GO:0007542  BP     2  0 1.0000000000
## GO:0021740  BP     2  0 1.0000000000
## GO:0003342  BP     2  0 1.0000000000
## GO:0038161  BP     2  0 1.0000000000
## GO:0006433  BP     2  0 1.0000000000
## GO:0039003  BP     2  0 1.0000000000
## GO:0039020  BP     2  0 1.0000000000
## GO:0072114  BP     2  0 1.0000000000
## GO:0019542  BP     2  0 1.0000000000
## GO:0019543  BP     2  0 1.0000000000
## GO:0018117  BP     2  0 1.0000000000
## GO:0016598  BP     2  0 1.0000000000
## GO:0033577  BP     2  0 1.0000000000
## GO:1990179  BP     2  0 1.0000000000
## GO:0072741  BP     2  0 1.0000000000
## GO:0097355  BP     2  0 1.0000000000
## GO:1904106  BP     2  0 1.0000000000
## GO:1904498  BP     2  0 1.0000000000
## GO:0036228  BP     2  0 1.0000000000
## GO:1905793  BP     2  0 1.0000000000
## GO:1905719  BP     2  0 1.0000000000
## GO:1905161  BP     2  0 1.0000000000
## GO:1903778  BP     2  0 1.0000000000
## GO:0018175  BP     2  0 1.0000000000
## GO:1900756  BP     2  0 1.0000000000
## GO:0070560  BP     2  0 1.0000000000
## GO:0061740  BP     2  0 1.0000000000
## GO:0044861  BP     2  0 1.0000000000
## GO:0006782  BP     2  0 1.0000000000
## GO:0072272  BP     2  0 1.0000000000
## GO:0042560  BP     2  0 1.0000000000
## GO:0003193  BP     2  0 1.0000000000
## GO:0060577  BP     2  0 1.0000000000
## GO:0046124  BP     2  0 1.0000000000
## GO:0009216  BP     2  0 1.0000000000
## GO:0009153  BP     2  0 1.0000000000
## GO:0006863  BP     2  0 1.0000000000
## GO:0015860  BP     2  0 1.0000000000
## GO:0015950  BP     2  0 1.0000000000
## GO:0034036  BP     2  0 1.0000000000
## GO:0015951  BP     2  0 1.0000000000
## GO:0021852  BP     2  0 1.0000000000
## GO:0042823  BP     2  0 1.0000000000
## GO:0009213  BP     2  0 1.0000000000
## GO:0009149  BP     2  0 1.0000000000
## GO:1990519  BP     2  0 1.0000000000
## GO:0006864  BP     2  0 1.0000000000
## GO:0070476  BP     2  0 1.0000000000
## GO:0006407  BP     2  0 1.0000000000
## GO:0021933  BP     2  0 1.0000000000
## GO:0060816  BP     2  0 1.0000000000
## GO:0036298  BP     2  0 1.0000000000
## GO:0034402  BP     2  0 1.0000000000
## GO:0071955  BP     2  0 1.0000000000
## GO:2000537  BP     2  0 1.0000000000
## GO:0002661  BP     2  0 1.0000000000
## GO:1900279  BP     2  0 1.0000000000
## GO:2000452  BP     2  0 1.0000000000
## GO:1902544  BP     2  0 1.0000000000
## GO:1903775  BP     2  0 1.0000000000
## GO:1902595  BP     2  0 1.0000000000
## GO:0060382  BP     2  0 1.0000000000
## GO:1900234  BP     2  0 1.0000000000
## GO:0034127  BP     2  0 1.0000000000
## GO:1902366  BP     2  0 1.0000000000
## GO:0098907  BP     2  0 1.0000000000
## GO:2000638  BP     2  0 1.0000000000
## GO:0002625  BP     2  0 1.0000000000
## GO:2000569  BP     2  0 1.0000000000
## GO:0032679  BP     2  0 1.0000000000
## GO:2000053  BP     2  0 1.0000000000
## GO:1905424  BP     2  0 1.0000000000
## GO:1901585  BP     2  0 1.0000000000
## GO:1904529  BP     2  0 1.0000000000
## GO:1903918  BP     2  0 1.0000000000
## GO:1905402  BP     2  0 1.0000000000
## GO:2000011  BP     2  0 1.0000000000
## GO:0110061  BP     2  0 1.0000000000
## GO:2000742  BP     2  0 1.0000000000
## GO:2000387  BP     2  0 1.0000000000
## GO:1900214  BP     2  0 1.0000000000
## GO:1900217  BP     2  0 1.0000000000
## GO:2000458  BP     2  0 1.0000000000
## GO:1902423  BP     2  0 1.0000000000
## GO:1904092  BP     2  0 1.0000000000
## GO:1905051  BP     2  0 1.0000000000
## GO:2000332  BP     2  0 1.0000000000
## GO:1900154  BP     2  0 1.0000000000
## GO:0031548  BP     2  0 1.0000000000
## GO:0070347  BP     2  0 1.0000000000
## GO:0098905  BP     2  0 1.0000000000
## GO:1905912  BP     2  0 1.0000000000
## GO:0051040  BP     2  0 1.0000000000
## GO:1901295  BP     2  0 1.0000000000
## GO:2000079  BP     2  0 1.0000000000
## GO:1905066  BP     2  0 1.0000000000
## GO:2000043  BP     2  0 1.0000000000
## GO:1901219  BP     2  0 1.0000000000
## GO:1905178  BP     2  0 1.0000000000
## GO:1904412  BP     2  0 1.0000000000
## GO:1900208  BP     2  0 1.0000000000
## GO:0061344  BP     2  0 1.0000000000
## GO:0010645  BP     2  0 1.0000000000
## GO:1904933  BP     2  0 1.0000000000
## GO:0060723  BP     2  0 1.0000000000
## GO:2000282  BP     2  0 1.0000000000
## GO:2001029  BP     2  0 1.0000000000
## GO:0072364  BP     2  0 1.0000000000
## GO:0090034  BP     2  0 1.0000000000
## GO:0010848  BP     2  0 1.0000000000
## GO:0031938  BP     2  0 1.0000000000
## GO:0002880  BP     2  0 1.0000000000
## GO:0090320  BP     2  0 1.0000000000
## GO:0033341  BP     2  0 1.0000000000
## GO:0048693  BP     2  0 1.0000000000
## GO:1903814  BP     2  0 1.0000000000
## GO:1904341  BP     2  0 1.0000000000
## GO:0030451  BP     2  0 1.0000000000
## GO:0030450  BP     2  0 1.0000000000
## GO:0001868  BP     2  0 1.0000000000
## GO:0032643  BP     2  0 1.0000000000
## GO:1903433  BP     2  0 1.0000000000
## GO:1905407  BP     2  0 1.0000000000
## GO:1903850  BP     2  0 1.0000000000
## GO:1902159  BP     2  0 1.0000000000
## GO:2000292  BP     2  0 1.0000000000
## GO:2000547  BP     2  0 1.0000000000
## GO:2001148  BP     2  0 1.0000000000
## GO:0090089  BP     2  0 1.0000000000
## GO:0060733  BP     2  0 1.0000000000
## GO:1902954  BP     2  0 1.0000000000
## GO:2000124  BP     2  0 1.0000000000
## GO:0060734  BP     2  0 1.0000000000
## GO:1903381  BP     2  0 1.0000000000
## GO:1904978  BP     2  0 1.0000000000
## GO:1904470  BP     2  0 1.0000000000
## GO:2000422  BP     2  0 1.0000000000
## GO:0034118  BP     2  0 1.0000000000
## GO:2000769  BP     2  0 1.0000000000
## GO:0014853  BP     2  0 1.0000000000
## GO:1903015  BP     2  0 1.0000000000
## GO:0001928  BP     2  0 1.0000000000
## GO:1905777  BP     2  0 1.0000000000
## GO:0033082  BP     2  0 1.0000000000
## GO:0042478  BP     2  0 1.0000000000
## GO:0048073  BP     2  0 1.0000000000
## GO:1904649  BP     2  0 1.0000000000
## GO:1904432  BP     2  0 1.0000000000
## GO:1904438  BP     2  0 1.0000000000
## GO:0120060  BP     2  0 1.0000000000
## GO:1903639  BP     2  0 1.0000000000
## GO:1900166  BP     2  0 1.0000000000
## GO:1905123  BP     2  0 1.0000000000
## GO:2000485  BP     2  0 1.0000000000
## GO:0072363  BP     2  0 1.0000000000
## GO:1903547  BP     2  0 1.0000000000
## GO:0071336  BP     2  0 1.0000000000
## GO:2000471  BP     2  0 1.0000000000
## GO:0070453  BP     2  0 1.0000000000
## GO:0061873  BP     2  0 1.0000000000
## GO:0061869  BP     2  0 1.0000000000
## GO:0031445  BP     2  0 1.0000000000
## GO:1901314  BP     2  0 1.0000000000
## GO:1902464  BP     2  0 1.0000000000
## GO:2001253  BP     2  0 1.0000000000
## GO:1904173  BP     2  0 1.0000000000
## GO:0060629  BP     2  0 1.0000000000
## GO:1903385  BP     2  0 1.0000000000
## GO:2000295  BP     2  0 1.0000000000
## GO:1903383  BP     2  0 1.0000000000
## GO:0090264  BP     2  0 1.0000000000
## GO:2000557  BP     2  0 1.0000000000
## GO:1904323  BP     2  0 1.0000000000
## GO:0045366  BP     2  0 1.0000000000
## GO:0060730  BP     2  0 1.0000000000
## GO:1905799  BP     2  0 1.0000000000
## GO:1900390  BP     2  0 1.0000000000
## GO:1902822  BP     2  0 1.0000000000
## GO:0048378  BP     2  0 1.0000000000
## GO:2001109  BP     2  0 1.0000000000
## GO:1904997  BP     2  0 1.0000000000
## GO:0072368  BP     2  0 1.0000000000
## GO:0072369  BP     2  0 1.0000000000
## GO:0110112  BP     2  0 1.0000000000
## GO:0060587  BP     2  0 1.0000000000
## GO:0034442  BP     2  0 1.0000000000
## GO:0050828  BP     2  0 1.0000000000
## GO:0140212  BP     2  0 1.0000000000
## GO:1905595  BP     2  0 1.0000000000
## GO:1901249  BP     2  0 1.0000000000
## GO:1990186  BP     2  0 1.0000000000
## GO:2000815  BP     2  0 1.0000000000
## GO:1905301  BP     2  0 1.0000000000
## GO:1904907  BP     2  0 1.0000000000
## GO:2001176  BP     2  0 1.0000000000
## GO:1903056  BP     2  0 1.0000000000
## GO:1902908  BP     2  0 1.0000000000
## GO:2000567  BP     2  0 1.0000000000
## GO:0072304  BP     2  0 1.0000000000
## GO:2000790  BP     2  0 1.0000000000
## GO:1902460  BP     2  0 1.0000000000
## GO:1902962  BP     2  0 1.0000000000
## GO:2000592  BP     2  0 1.0000000000
## GO:0072301  BP     2  0 1.0000000000
## GO:0035566  BP     2  0 1.0000000000
## GO:1905616  BP     2  0 1.0000000000
## GO:1904149  BP     2  0 1.0000000000
## GO:1903031  BP     2  0 1.0000000000
## GO:1905706  BP     2  0 1.0000000000
## GO:1904289  BP     2  0 1.0000000000
## GO:1903436  BP     2  0 1.0000000000
## GO:0040030  BP     2  0 1.0000000000
## GO:1905503  BP     2  0 1.0000000000
## GO:0032972  BP     2  0 1.0000000000
## GO:1905453  BP     2  0 1.0000000000
## GO:1904328  BP     2  0 1.0000000000
## GO:0043519  BP     2  0 1.0000000000
## GO:1902996  BP     2  0 1.0000000000
## GO:0070950  BP     2  0 1.0000000000
## GO:0070953  BP     2  0 1.0000000000
## GO:0070951  BP     2  0 1.0000000000
## GO:1905258  BP     2  0 1.0000000000
## GO:0051621  BP     2  0 1.0000000000
## GO:1903353  BP     2  0 1.0000000000
## GO:1901329  BP     2  0 1.0000000000
## GO:0090088  BP     2  0 1.0000000000
## GO:2000226  BP     2  0 1.0000000000
## GO:1902276  BP     2  0 1.0000000000
## GO:2000229  BP     2  0 1.0000000000
## GO:0002658  BP     2  0 1.0000000000
## GO:1900063  BP     2  0 1.0000000000
## GO:0010899  BP     2  0 1.0000000000
## GO:1901407  BP     2  0 1.0000000000
## GO:0034444  BP     2  0 1.0000000000
## GO:1904245  BP     2  0 1.0000000000
## GO:1905696  BP     2  0 1.0000000000
## GO:1902232  BP     2  0 1.0000000000
## GO:0090065  BP     2  0 1.0000000000
## GO:1903004  BP     2  0 1.0000000000
## GO:2000539  BP     2  0 1.0000000000
## GO:1901093  BP     2  0 1.0000000000
## GO:1902528  BP     2  0 1.0000000000
## GO:1905871  BP     2  0 1.0000000000
## GO:1903567  BP     2  0 1.0000000000
## GO:1905550  BP     2  0 1.0000000000
## GO:0150031  BP     2  0 1.0000000000
## GO:1905169  BP     2  0 1.0000000000
## GO:1903921  BP     2  0 1.0000000000
## GO:1901090  BP     2  0 1.0000000000
## GO:0010520  BP     2  0 1.0000000000
## GO:1901080  BP     2  0 1.0000000000
## GO:2001228  BP     2  0 1.0000000000
## GO:1900052  BP     2  0 1.0000000000
## GO:2000156  BP     2  0 1.0000000000
## GO:0022400  BP     2  0 1.0000000000
## GO:1902442  BP     2  0 1.0000000000
## GO:1904569  BP     2  0 1.0000000000
## GO:1905627  BP     2  0 1.0000000000
## GO:1903516  BP     2  0 1.0000000000
## GO:1900190  BP     2  0 1.0000000000
## GO:1900228  BP     2  0 1.0000000000
## GO:0100001  BP     2  0 1.0000000000
## GO:0014862  BP     2  0 1.0000000000
## GO:0014852  BP     2  0 1.0000000000
## GO:0014809  BP     2  0 1.0000000000
## GO:0031449  BP     2  0 1.0000000000
## GO:0120057  BP     2  0 1.0000000000
## GO:1903406  BP     2  0 1.0000000000
## GO:1902490  BP     2  0 1.0000000000
## GO:1902068  BP     2  0 1.0000000000
## GO:0060721  BP     2  0 1.0000000000
## GO:1904235  BP     2  0 1.0000000000
## GO:1904229  BP     2  0 1.0000000000
## GO:0099148  BP     2  0 1.0000000000
## GO:0003050  BP     2  0 1.0000000000
## GO:0001980  BP     2  0 1.0000000000
## GO:1904882  BP     2  0 1.0000000000
## GO:1905838  BP     2  0 1.0000000000
## GO:1901463  BP     2  0 1.0000000000
## GO:0086092  BP     2  0 1.0000000000
## GO:0014728  BP     2  0 1.0000000000
## GO:2000612  BP     2  0 1.0000000000
## GO:0002649  BP     2  0 1.0000000000
## GO:2001035  BP     2  0 1.0000000000
## GO:0010767  BP     2  0 1.0000000000
## GO:0061396  BP     2  0 1.0000000000
## GO:0060994  BP     2  0 1.0000000000
## GO:0000117  BP     2  0 1.0000000000
## GO:0060849  BP     2  0 1.0000000000
## GO:0051037  BP     2  0 1.0000000000
## GO:0060796  BP     2  0 1.0000000000
## GO:1904435  BP     2  0 1.0000000000
## GO:0140244  BP     2  0 1.0000000000
## GO:0099577  BP     2  0 1.0000000000
## GO:0006447  BP     2  0 1.0000000000
## GO:0071262  BP     2  0 1.0000000000
## GO:0070894  BP     2  0 1.0000000000
## GO:2000307  BP     2  0 1.0000000000
## GO:0010795  BP     2  0 1.0000000000
## GO:2000395  BP     2  0 1.0000000000
## GO:1905174  BP     2  0 1.0000000000
## GO:1901738  BP     2  0 1.0000000000
## GO:1902941  BP     2  0 1.0000000000
## GO:1903760  BP     2  0 1.0000000000
## GO:0071580  BP     2  0 1.0000000000
## GO:0090076  BP     2  0 1.0000000000
## GO:0072141  BP     2  0 1.0000000000
## GO:0072054  BP     2  0 1.0000000000
## GO:0036359  BP     2  0 1.0000000000
## GO:0097017  BP     2  0 1.0000000000
## GO:0097254  BP     2  0 1.0000000000
## GO:0071140  BP     2  0 1.0000000000
## GO:0071139  BP     2  0 1.0000000000
## GO:0045728  BP     2  0 1.0000000000
## GO:1904612  BP     2  0 1.0000000000
## GO:1903576  BP     2  0 1.0000000000
## GO:0010044  BP     2  0 1.0000000000
## GO:0072739  BP     2  0 1.0000000000
## GO:0034059  BP     2  0 1.0000000000
## GO:1903412  BP     2  0 1.0000000000
## GO:1904975  BP     2  0 1.0000000000
## GO:0010037  BP     2  0 1.0000000000
## GO:0052565  BP     2  0 1.0000000000
## GO:0052551  BP     2  0 1.0000000000
## GO:0072737  BP     2  0 1.0000000000
## GO:0034285  BP     2  0 1.0000000000
## GO:0072720  BP     2  0 1.0000000000
## GO:1990784  BP     2  0 1.0000000000
## GO:0036017  BP     2  0 1.0000000000
## GO:1902617  BP     2  0 1.0000000000
## GO:0033595  BP     2  0 1.0000000000
## GO:1905429  BP     2  0 1.0000000000
## GO:1903416  BP     2  0 1.0000000000
## GO:0009644  BP     2  0 1.0000000000
## GO:0033594  BP     2  0 1.0000000000
## GO:0071105  BP     2  0 1.0000000000
## GO:0098758  BP     2  0 1.0000000000
## GO:0071104  BP     2  0 1.0000000000
## GO:1990641  BP     2  0 1.0000000000
## GO:0010041  BP     2  0 1.0000000000
## GO:0009753  BP     2  0 1.0000000000
## GO:1901344  BP     2  0 1.0000000000
## GO:0006982  BP     2  0 1.0000000000
## GO:0034699  BP     2  0 1.0000000000
## GO:0051597  BP     2  0 1.0000000000
## GO:1904008  BP     2  0 1.0000000000
## GO:0071505  BP     2  0 1.0000000000
## GO:0010045  BP     2  0 1.0000000000
## GO:0034201  BP     2  0 1.0000000000
## GO:0080184  BP     2  0 1.0000000000
## GO:1990911  BP     2  0 1.0000000000
## GO:0009744  BP     2  0 1.0000000000
## GO:0009608  BP     2  0 1.0000000000
## GO:0009609  BP     2  0 1.0000000000
## GO:1904772  BP     2  0 1.0000000000
## GO:1904481  BP     2  0 1.0000000000
## GO:1904116  BP     2  0 1.0000000000
## GO:0033189  BP     2  0 1.0000000000
## GO:0033197  BP     2  0 1.0000000000
## GO:0120127  BP     2  0 1.0000000000
## GO:0097474  BP     2  0 1.0000000000
## GO:0099642  BP     2  0 1.0000000000
## GO:0099082  BP     2  0 1.0000000000
## GO:0098924  BP     2  0 1.0000000000
## GO:0098923  BP     2  0 1.0000000000
## GO:0035526  BP     2  0 1.0000000000
## GO:0021568  BP     2  0 1.0000000000
## GO:0021658  BP     2  0 1.0000000000
## GO:0043179  BP     2  0 1.0000000000
## GO:0032218  BP     2  0 1.0000000000
## GO:0009203  BP     2  0 1.0000000000
## GO:1990116  BP     2  0 1.0000000000
## GO:0060458  BP     2  0 1.0000000000
## GO:1901052  BP     2  0 1.0000000000
## GO:0001949  BP     2  0 1.0000000000
## GO:0016260  BP     2  0 1.0000000000
## GO:1900220  BP     2  0 1.0000000000
## GO:0060876  BP     2  0 1.0000000000
## GO:0061107  BP     2  0 1.0000000000
## GO:0050893  BP     2  0 1.0000000000
## GO:0032185  BP     2  0 1.0000000000
## GO:0031106  BP     2  0 1.0000000000
## GO:0003343  BP     2  0 1.0000000000
## GO:0006587  BP     2  0 1.0000000000
## GO:0006434  BP     2  0 1.0000000000
## GO:0016107  BP     2  0 1.0000000000
## GO:0015891  BP     2  0 1.0000000000
## GO:0007172  BP     2  0 1.0000000000
## GO:0072434  BP     2  0 1.0000000000
## GO:0044010  BP     2  0 1.0000000000
## GO:0044407  BP     2  0 1.0000000000
## GO:0014732  BP     2  0 1.0000000000
## GO:0120055  BP     2  0 1.0000000000
## GO:0051563  BP     2  0 1.0000000000
## GO:0014805  BP     2  0 1.0000000000
## GO:0061015  BP     2  0 1.0000000000
## GO:0071050  BP     2  0 1.0000000000
## GO:0034247  BP     2  0 1.0000000000
## GO:0071718  BP     2  0 1.0000000000
## GO:0018993  BP     2  0 1.0000000000
## GO:0060133  BP     2  0 1.0000000000
## GO:0006060  BP     2  0 1.0000000000
## GO:0046203  BP     2  0 1.0000000000
## GO:0046511  BP     2  0 1.0000000000
## GO:0006668  BP     2  0 1.0000000000
## GO:0099039  BP     2  0 1.0000000000
## GO:0007057  BP     2  0 1.0000000000
## GO:0051230  BP     2  0 1.0000000000
## GO:0030474  BP     2  0 1.0000000000
## GO:0051300  BP     2  0 1.0000000000
## GO:0000390  BP     2  0 1.0000000000
## GO:0060529  BP     2  0 1.0000000000
## GO:0048867  BP     2  0 1.0000000000
## GO:0002223  BP     2  0 1.0000000000
## GO:0061102  BP     2  0 1.0000000000
## GO:0120063  BP     2  0 1.0000000000
## GO:0097532  BP     2  0 1.0000000000
## GO:0060163  BP     2  0 1.0000000000
## GO:0021762  BP     2  0 1.0000000000
## GO:0021539  BP     2  0 1.0000000000
## GO:0005986  BP     2  0 1.0000000000
## GO:0005985  BP     2  0 1.0000000000
## GO:0021718  BP     2  0 1.0000000000
## GO:0021722  BP     2  0 1.0000000000
## GO:0019050  BP     2  0 1.0000000000
## GO:0060370  BP     2  0 1.0000000000
## GO:0036269  BP     2  0 1.0000000000
## GO:0097401  BP     2  0 1.0000000000
## GO:0070194  BP     2  0 1.0000000000
## GO:0060715  BP     2  0 1.0000000000
## GO:0002940  BP     2  0 1.0000000000
## GO:0016031  BP     2  0 1.0000000000
## GO:0070329  BP     2  0 1.0000000000
## GO:0002100  BP     2  0 1.0000000000
## GO:0002101  BP     2  0 1.0000000000
## GO:1903699  BP     2  0 1.0000000000
## GO:0061193  BP     2  0 1.0000000000
## GO:1904868  BP     2  0 1.0000000000
## GO:0031627  BP     2  0 1.0000000000
## GO:0046247  BP     2  0 1.0000000000
## GO:0042214  BP     2  0 1.0000000000
## GO:0002124  BP     2  0 1.0000000000
## GO:0046900  BP     2  0 1.0000000000
## GO:0042357  BP     2  0 1.0000000000
## GO:0030974  BP     2  0 1.0000000000
## GO:0071934  BP     2  0 1.0000000000
## GO:0072023  BP     2  0 1.0000000000
## GO:0071594  BP     2  0 1.0000000000
## GO:0097536  BP     2  0 1.0000000000
## GO:0042404  BP     2  0 1.0000000000
## GO:0072573  BP     2  0 1.0000000000
## GO:0034178  BP     2  0 1.0000000000
## GO:0034146  BP     2  0 1.0000000000
## GO:0035981  BP     2  0 1.0000000000
## GO:0099551  BP     2  0 1.0000000000
## GO:0099555  BP     2  0 1.0000000000
## GO:0099554  BP     2  0 1.0000000000
## GO:0099557  BP     2  0 1.0000000000
## GO:0070904  BP     2  0 1.0000000000
## GO:0035377  BP     2  0 1.0000000000
## GO:0036364  BP     2  0 1.0000000000
## GO:0014886  BP     2  0 1.0000000000
## GO:0006452  BP     2  0 1.0000000000
## GO:0070893  BP     2  0 1.0000000000
## GO:0005991  BP     2  0 1.0000000000
## GO:0021730  BP     2  0 1.0000000000
## GO:0036509  BP     2  0 1.0000000000
## GO:0035443  BP     2  0 1.0000000000
## GO:0001830  BP     2  0 1.0000000000
## GO:0019442  BP     2  0 1.0000000000
## GO:0006436  BP     2  0 1.0000000000
## GO:0072535  BP     2  0 1.0000000000
## GO:0006437  BP     2  0 1.0000000000
## GO:0007624  BP     2  0 1.0000000000
## GO:0061027  BP     2  0 1.0000000000
## GO:0036304  BP     2  0 1.0000000000
## GO:0006212  BP     2  0 1.0000000000
## GO:0034418  BP     2  0 1.0000000000
## GO:0097274  BP     2  0 1.0000000000
## GO:0015862  BP     2  0 1.0000000000
## GO:0038195  BP     2  0 1.0000000000
## GO:0032796  BP     2  0 1.0000000000
## GO:0046502  BP     2  0 1.0000000000
## GO:0035847  BP     2  0 1.0000000000
## GO:0097576  BP     2  0 1.0000000000
## GO:0042144  BP     2  0 1.0000000000
## GO:0021644  BP     2  0 1.0000000000
## GO:0009099  BP     2  0 1.0000000000
## GO:0006574  BP     2  0 1.0000000000
## GO:0006438  BP     2  0 1.0000000000
## GO:0036324  BP     2  0 1.0000000000
## GO:1990936  BP     2  0 1.0000000000
## GO:0030103  BP     2  0 1.0000000000
## GO:0150064  BP     2  0 1.0000000000
## GO:0036111  BP     2  0 1.0000000000
## GO:0048203  BP     2  0 1.0000000000
## GO:0099044  BP     2  0 1.0000000000
## GO:0021750  BP     2  0 1.0000000000
## GO:0060118  BP     2  0 1.0000000000
## GO:0060114  BP     2  0 1.0000000000
## GO:0021649  BP     2  0 1.0000000000
## GO:0019074  BP     2  0 1.0000000000
## GO:0019072  BP     2  0 1.0000000000
## GO:0075732  BP     2  0 1.0000000000
## GO:0019075  BP     2  0 1.0000000000
## GO:0042819  BP     2  0 1.0000000000
## GO:0042369  BP     2  0 1.0000000000
## GO:0042371  BP     2  0 1.0000000000
## GO:0042377  BP     2  0 1.0000000000
## GO:0042365  BP     2  0 1.0000000000
## GO:0016122  BP     2  0 1.0000000000
## GO:0099180  BP     2  0 1.0000000000
## GO:0045186  BP     2  0 1.0000000000
## GO:0010070  BP     2  0 1.0000000000
## GO:0007352  BP     2  0 1.0000000000
## GO:0070625  BP     2  0 1.0000000000
## GO:0044208  BP     3  0 1.0000000000
## GO:0034627  BP     3  0 1.0000000000
## GO:0034354  BP     3  0 1.0000000000
## GO:0006211  BP     3  0 1.0000000000
## GO:0019857  BP     3  0 1.0000000000
## GO:0006172  BP     3  0 1.0000000000
## GO:0036500  BP     3  0 1.0000000000
## GO:0086053  BP     3  0 1.0000000000
## GO:0002344  BP     3  0 1.0000000000
## GO:0002514  BP     3  0 1.0000000000
## GO:0002337  BP     3  0 1.0000000000
## GO:0003130  BP     3  0 1.0000000000
## GO:0090116  BP     3  0 1.0000000000
## GO:0035609  BP     3  0 1.0000000000
## GO:0006481  BP     3  0 1.0000000000
## GO:0035783  BP     3  0 1.0000000000
## GO:0046416  BP     3  0 1.0000000000
## GO:0006014  BP     3  0 1.0000000000
## GO:0042942  BP     3  0 1.0000000000
## GO:0042732  BP     3  0 1.0000000000
## GO:0072069  BP     3  0 1.0000000000
## GO:0030592  BP     3  0 1.0000000000
## GO:0070383  BP     3  0 1.0000000000
## GO:0010424  BP     3  0 1.0000000000
## GO:0000733  BP     3  0 1.0000000000
## GO:0110025  BP     3  0 1.0000000000
## GO:0038128  BP     3  0 1.0000000000
## GO:0036337  BP     3  0 1.0000000000
## GO:0008315  BP     3  0 1.0000000000
## GO:0042350  BP     3  0 1.0000000000
## GO:0009298  BP     3  0 1.0000000000
## GO:0043000  BP     3  0 1.0000000000
## GO:0048210  BP     3  0 1.0000000000
## GO:0042851  BP     3  0 1.0000000000
## GO:0019448  BP     3  0 1.0000000000
## GO:1903401  BP     3  0 1.0000000000
## GO:1902022  BP     3  0 1.0000000000
## GO:0015825  BP     3  0 1.0000000000
## GO:0006046  BP     3  0 1.0000000000
## GO:0018002  BP     3  0 1.0000000000
## GO:0019677  BP     3  0 1.0000000000
## GO:0051088  BP     3  0 1.0000000000
## GO:0061146  BP     3  0 1.0000000000
## GO:0006404  BP     3  0 1.0000000000
## GO:0031291  BP     3  0 1.0000000000
## GO:0035494  BP     3  0 1.0000000000
## GO:0070489  BP     3  0 1.0000000000
## GO:0035669  BP     3  0 1.0000000000
## GO:0035668  BP     3  0 1.0000000000
## GO:0034473  BP     3  0 1.0000000000
## GO:0034476  BP     3  0 1.0000000000
## GO:0006222  BP     3  0 1.0000000000
## GO:0046049  BP     3  0 1.0000000000
## GO:0038086  BP     3  0 1.0000000000
## GO:0044571  BP     3  0 1.0000000000
## GO:0097296  BP     3  0 1.0000000000
## GO:0034199  BP     3  0 1.0000000000
## GO:0090716  BP     3  0 1.0000000000
## GO:0046084  BP     3  0 1.0000000000
## GO:0046083  BP     3  0 1.0000000000
## GO:0031635  BP     3  0 1.0000000000
## GO:0046222  BP     3  0 1.0000000000
## GO:0007571  BP     3  0 1.0000000000
## GO:0001306  BP     3  0 1.0000000000
## GO:0006524  BP     3  0 1.0000000000
## GO:0006419  BP     3  0 1.0000000000
## GO:0019405  BP     3  0 1.0000000000
## GO:0061144  BP     3  0 1.0000000000
## GO:0051933  BP     3  0 1.0000000000
## GO:0019676  BP     3  0 1.0000000000
## GO:0036394  BP     3  0 1.0000000000
## GO:0003051  BP     3  0 1.0000000000
## GO:0061713  BP     3  0 1.0000000000
## GO:0098971  BP     3  0 1.0000000000
## GO:0002780  BP     3  0 1.0000000000
## GO:0002485  BP     3  0 1.0000000000
## GO:0002481  BP     3  0 1.0000000000
## GO:0002777  BP     3  0 1.0000000000
## GO:0035887  BP     3  0 1.0000000000
## GO:1902263  BP     3  0 1.0000000000
## GO:0003275  BP     3  0 1.0000000000
## GO:0000053  BP     3  0 1.0000000000
## GO:0006420  BP     3  0 1.0000000000
## GO:0009073  BP     3  0 1.0000000000
## GO:0061975  BP     3  0 1.0000000000
## GO:0006421  BP     3  0 1.0000000000
## GO:0006532  BP     3  0 1.0000000000
## GO:0006533  BP     3  0 1.0000000000
## GO:0055014  BP     3  0 1.0000000000
## GO:0055011  BP     3  0 1.0000000000
## GO:0003162  BP     3  0 1.0000000000
## GO:0009852  BP     3  0 1.0000000000
## GO:0009850  BP     3  0 1.0000000000
## GO:0051832  BP     3  0 1.0000000000
## GO:0044413  BP     3  0 1.0000000000
## GO:0048320  BP     3  0 1.0000000000
## GO:1904158  BP     3  0 1.0000000000
## GO:0001983  BP     3  0 1.0000000000
## GO:0150020  BP     3  0 1.0000000000
## GO:0150018  BP     3  0 1.0000000000
## GO:0150019  BP     3  0 1.0000000000
## GO:0034769  BP     3  0 1.0000000000
## GO:0002276  BP     3  0 1.0000000000
## GO:0061366  BP     3  0 1.0000000000
## GO:0061368  BP     3  0 1.0000000000
## GO:0043366  BP     3  0 1.0000000000
## GO:0018879  BP     3  0 1.0000000000
## GO:0007597  BP     3  0 1.0000000000
## GO:1990523  BP     3  0 1.0000000000
## GO:0035284  BP     3  0 1.0000000000
## GO:0003360  BP     3  0 1.0000000000
## GO:0015803  BP     3  0 1.0000000000
## GO:0014707  BP     3  0 1.0000000000
## GO:0060435  BP     3  0 1.0000000000
## GO:0036378  BP     3  0 1.0000000000
## GO:0007161  BP     3  0 1.0000000000
## GO:0061317  BP     3  0 1.0000000000
## GO:1904954  BP     3  0 1.0000000000
## GO:0044339  BP     3  0 1.0000000000
## GO:0060912  BP     3  0 1.0000000000
## GO:0110021  BP     3  0 1.0000000000
## GO:0071691  BP     3  0 1.0000000000
## GO:0003213  BP     3  0 1.0000000000
## GO:0045329  BP     3  0 1.0000000000
## GO:0019254  BP     3  0 1.0000000000
## GO:0016116  BP     3  0 1.0000000000
## GO:0010643  BP     3  0 1.0000000000
## GO:0060184  BP     3  0 1.0000000000
## GO:0051728  BP     3  0 1.0000000000
## GO:0090679  BP     3  0 1.0000000000
## GO:0060722  BP     3  0 1.0000000000
## GO:0003249  BP     3  0 1.0000000000
## GO:0002752  BP     3  0 1.0000000000
## GO:0070458  BP     3  0 1.0000000000
## GO:0070370  BP     3  0 1.0000000000
## GO:0060154  BP     3  0 1.0000000000
## GO:1904017  BP     3  0 1.0000000000
## GO:0071492  BP     3  0 1.0000000000
## GO:0072717  BP     3  0 1.0000000000
## GO:1903843  BP     3  0 1.0000000000
## GO:0071314  BP     3  0 1.0000000000
## GO:0071332  BP     3  0 1.0000000000
## GO:1904881  BP     3  0 1.0000000000
## GO:0035963  BP     3  0 1.0000000000
## GO:0071317  BP     3  0 1.0000000000
## GO:0071288  BP     3  0 1.0000000000
## GO:0071799  BP     3  0 1.0000000000
## GO:0072734  BP     3  0 1.0000000000
## GO:1904579  BP     3  0 1.0000000000
## GO:0071727  BP     3  0 1.0000000000
## GO:0071462  BP     3  0 1.0000000000
## GO:0032289  BP     3  0 1.0000000000
## GO:0035283  BP     3  0 1.0000000000
## GO:0021699  BP     3  0 1.0000000000
## GO:0021679  BP     3  0 1.0000000000
## GO:0021824  BP     3  0 1.0000000000
## GO:0021823  BP     3  0 1.0000000000
## GO:0072566  BP     3  0 1.0000000000
## GO:1902488  BP     3  0 1.0000000000
## GO:1990705  BP     3  0 1.0000000000
## GO:0044725  BP     3  0 1.0000000000
## GO:0030702  BP     3  0 1.0000000000
## GO:0031048  BP     3  0 1.0000000000
## GO:0034371  BP     3  0 1.0000000000
## GO:0060086  BP     3  0 1.0000000000
## GO:1905224  BP     3  0 1.0000000000
## GO:0000448  BP     3  0 1.0000000000
## GO:0035844  BP     3  0 1.0000000000
## GO:0045163  BP     3  0 1.0000000000
## GO:0043686  BP     3  0 1.0000000000
## GO:0009631  BP     3  0 1.0000000000
## GO:0021898  BP     3  0 1.0000000000
## GO:0150062  BP     3  0 1.0000000000
## GO:0045054  BP     3  0 1.0000000000
## GO:0060003  BP     3  0 1.0000000000
## GO:0070268  BP     3  0 1.0000000000
## GO:0060128  BP     3  0 1.0000000000
## GO:0019371  BP     3  0 1.0000000000
## GO:0019344  BP     3  0 1.0000000000
## GO:0009093  BP     3  0 1.0000000000
## GO:0002184  BP     3  0 1.0000000000
## GO:0046061  BP     3  0 1.0000000000
## GO:0046066  BP     3  0 1.0000000000
## GO:0006235  BP     3  0 1.0000000000
## GO:0046075  BP     3  0 1.0000000000
## GO:0006227  BP     3  0 1.0000000000
## GO:0046077  BP     3  0 1.0000000000
## GO:0006226  BP     3  0 1.0000000000
## GO:0030421  BP     3  0 1.0000000000
## GO:0002357  BP     3  0 1.0000000000
## GO:0035993  BP     3  0 1.0000000000
## GO:0031104  BP     3  0 1.0000000000
## GO:0097026  BP     3  0 1.0000000000
## GO:0036145  BP     3  0 1.0000000000
## GO:1990502  BP     3  0 1.0000000000
## GO:0030208  BP     3  0 1.0000000000
## GO:0070340  BP     3  0 1.0000000000
## GO:0009730  BP     3  0 1.0000000000
## GO:0050968  BP     3  0 1.0000000000
## GO:0009726  BP     3  0 1.0000000000
## GO:0051594  BP     3  0 1.0000000000
## GO:0009732  BP     3  0 1.0000000000
## GO:0050976  BP     3  0 1.0000000000
## GO:0034287  BP     3  0 1.0000000000
## GO:0003032  BP     3  0 1.0000000000
## GO:0051410  BP     3  0 1.0000000000
## GO:0046544  BP     3  0 1.0000000000
## GO:0015960  BP     3  0 1.0000000000
## GO:0015966  BP     3  0 1.0000000000
## GO:0015965  BP     3  0 1.0000000000
## GO:0002086  BP     3  0 1.0000000000
## GO:0060448  BP     3  0 1.0000000000
## GO:0035442  BP     3  0 1.0000000000
## GO:0033058  BP     3  0 1.0000000000
## GO:0015766  BP     3  0 1.0000000000
## GO:0006489  BP     3  0 1.0000000000
## GO:0046465  BP     3  0 1.0000000000
## GO:0061502  BP     3  0 1.0000000000
## GO:0060309  BP     3  0 1.0000000000
## GO:0035054  BP     3  0 1.0000000000
## GO:0035880  BP     3  0 1.0000000000
## GO:0036023  BP     3  0 1.0000000000
## GO:0003133  BP     3  0 1.0000000000
## GO:0003134  BP     3  0 1.0000000000
## GO:1904380  BP     3  0 1.0000000000
## GO:0060847  BP     3  0 1.0000000000
## GO:0071603  BP     3  0 1.0000000000
## GO:0090673  BP     3  0 1.0000000000
## GO:0048822  BP     3  0 1.0000000000
## GO:0003347  BP     3  0 1.0000000000
## GO:0010481  BP     3  0 1.0000000000
## GO:0021538  BP     3  0 1.0000000000
## GO:0060671  BP     3  0 1.0000000000
## GO:0060672  BP     3  0 1.0000000000
## GO:1990399  BP     3  0 1.0000000000
## GO:0097176  BP     3  0 1.0000000000
## GO:0097694  BP     3  0 1.0000000000
## GO:0003365  BP     3  0 1.0000000000
## GO:0045200  BP     3  0 1.0000000000
## GO:0097051  BP     3  0 1.0000000000
## GO:0007529  BP     3  0 1.0000000000
## GO:0045196  BP     3  0 1.0000000000
## GO:0010248  BP     3  0 1.0000000000
## GO:0035938  BP     3  0 1.0000000000
## GO:0097010  BP     3  0 1.0000000000
## GO:0051834  BP     3  0 1.0000000000
## GO:0044415  BP     3  0 1.0000000000
## GO:0019049  BP     3  0 1.0000000000
## GO:0098976  BP     3  0 1.0000000000
## GO:0045226  BP     3  0 1.0000000000
## GO:0046379  BP     3  0 1.0000000000
## GO:0006858  BP     3  0 1.0000000000
## GO:0002074  BP     3  0 1.0000000000
## GO:0045062  BP     3  0 1.0000000000
## GO:0042706  BP     3  0 1.0000000000
## GO:1903375  BP     3  0 1.0000000000
## GO:0045337  BP     3  0 1.0000000000
## GO:0097155  BP     3  0 1.0000000000
## GO:0008050  BP     3  0 1.0000000000
## GO:0048807  BP     3  0 1.0000000000
## GO:0007066  BP     3  0 1.0000000000
## GO:0033216  BP     3  0 1.0000000000
## GO:0098706  BP     3  0 1.0000000000
## GO:1903874  BP     3  0 1.0000000000
## GO:0015684  BP     3  0 1.0000000000
## GO:0060825  BP     3  0 1.0000000000
## GO:0042726  BP     3  0 1.0000000000
## GO:0033505  BP     3  0 1.0000000000
## GO:0060423  BP     3  0 1.0000000000
## GO:0046294  BP     3  0 1.0000000000
## GO:0070649  BP     3  0 1.0000000000
## GO:0110009  BP     3  0 1.0000000000
## GO:0006001  BP     3  0 1.0000000000
## GO:0061624  BP     3  0 1.0000000000
## GO:0006106  BP     3  0 1.0000000000
## GO:0048165  BP     3  0 1.0000000000
## GO:0019064  BP     3  0 1.0000000000
## GO:0019376  BP     3  0 1.0000000000
## GO:0061010  BP     3  0 1.0000000000
## GO:0009449  BP     3  0 1.0000000000
## GO:0033566  BP     3  0 1.0000000000
## GO:1990768  BP     3  0 1.0000000000
## GO:0001698  BP     3  0 1.0000000000
## GO:0035822  BP     3  0 1.0000000000
## GO:0060112  BP     3  0 1.0000000000
## GO:0097116  BP     3  0 1.0000000000
## GO:0018992  BP     3  0 1.0000000000
## GO:0002314  BP     3  0 1.0000000000
## GO:0051729  BP     3  0 1.0000000000
## GO:0002071  BP     3  0 1.0000000000
## GO:0007403  BP     3  0 1.0000000000
## GO:0006680  BP     3  0 1.0000000000
## GO:0019389  BP     3  0 1.0000000000
## GO:0090461  BP     3  0 1.0000000000
## GO:0051935  BP     3  0 1.0000000000
## GO:0006543  BP     3  0 1.0000000000
## GO:0070681  BP     3  0 1.0000000000
## GO:0046168  BP     3  0 1.0000000000
## GO:0006546  BP     3  0 1.0000000000
## GO:0019464  BP     3  0 1.0000000000
## GO:0061623  BP     3  0 1.0000000000
## GO:0061625  BP     3  0 1.0000000000
## GO:1901656  BP     3  0 1.0000000000
## GO:0009436  BP     3  0 1.0000000000
## GO:0035262  BP     3  0 1.0000000000
## GO:0021828  BP     3  0 1.0000000000
## GO:0002432  BP     3  0 1.0000000000
## GO:1904700  BP     3  0 1.0000000000
## GO:0071613  BP     3  0 1.0000000000
## GO:0046098  BP     3  0 1.0000000000
## GO:0021986  BP     3  0 1.0000000000
## GO:0071335  BP     3  0 1.0000000000
## GO:0035685  BP     3  0 1.0000000000
## GO:0097037  BP     3  0 1.0000000000
## GO:0030200  BP     3  0 1.0000000000
## GO:0030210  BP     3  0 1.0000000000
## GO:0006059  BP     3  0 1.0000000000
## GO:0021934  BP     3  0 1.0000000000
## GO:0043133  BP     3  0 1.0000000000
## GO:0110088  BP     3  0 1.0000000000
## GO:1990164  BP     3  0 1.0000000000
## GO:0043969  BP     3  0 1.0000000000
## GO:0043974  BP     3  0 1.0000000000
## GO:0097198  BP     3  0 1.0000000000
## GO:0043988  BP     3  0 1.0000000000
## GO:0043985  BP     3  0 1.0000000000
## GO:0008628  BP     3  0 1.0000000000
## GO:0036118  BP     3  0 1.0000000000
## GO:0046947  BP     3  0 1.0000000000
## GO:0046946  BP     3  0 1.0000000000
## GO:0048850  BP     3  0 1.0000000000
## GO:0021856  BP     3  0 1.0000000000
## GO:0046101  BP     3  0 1.0000000000
## GO:0002386  BP     3  0 1.0000000000
## GO:0002414  BP     3  0 1.0000000000
## GO:0002030  BP     3  0 1.0000000000
## GO:0001827  BP     3  0 1.0000000000
## GO:0001828  BP     3  0 1.0000000000
## GO:0072061  BP     3  0 1.0000000000
## GO:0046103  BP     3  0 1.0000000000
## GO:0030070  BP     3  0 1.0000000000
## GO:0038028  BP     3  0 1.0000000000
## GO:0016539  BP     3  0 1.0000000000
## GO:0002121  BP     3  0 1.0000000000
## GO:0042231  BP     3  0 1.0000000000
## GO:0042223  BP     3  0 1.0000000000
## GO:0051325  BP     3  0 1.0000000000
## GO:0001951  BP     3  0 1.0000000000
## GO:0106001  BP     3  0 1.0000000000
## GO:0070676  BP     3  0 1.0000000000
## GO:1990442  BP     3  0 1.0000000000
## GO:1905863  BP     3  0 1.0000000000
## GO:0098711  BP     3  0 1.0000000000
## GO:0019287  BP     3  0 1.0000000000
## GO:0046864  BP     3  0 1.0000000000
## GO:0046951  BP     3  0 1.0000000000
## GO:0072003  BP     3  0 1.0000000000
## GO:0072194  BP     3  0 1.0000000000
## GO:0002254  BP     3  0 1.0000000000
## GO:0061738  BP     3  0 1.0000000000
## GO:0034499  BP     3  0 1.0000000000
## GO:0044805  BP     3  0 1.0000000000
## GO:0019086  BP     3  0 1.0000000000
## GO:0019045  BP     3  0 1.0000000000
## GO:0048370  BP     3  0 1.0000000000
## GO:0048369  BP     3  0 1.0000000000
## GO:0048371  BP     3  0 1.0000000000
## GO:0097477  BP     3  0 1.0000000000
## GO:0060460  BP     3  0 1.0000000000
## GO:0003220  BP     3  0 1.0000000000
## GO:0015820  BP     3  0 1.0000000000
## GO:0036101  BP     3  0 1.0000000000
## GO:0036102  BP     3  0 1.0000000000
## GO:0036100  BP     3  0 1.0000000000
## GO:0002540  BP     3  0 1.0000000000
## GO:0036022  BP     3  0 1.0000000000
## GO:0140042  BP     3  0 1.0000000000
## GO:0002933  BP     3  0 1.0000000000
## GO:0055095  BP     3  0 1.0000000000
## GO:0055096  BP     3  0 1.0000000000
## GO:0060424  BP     3  0 1.0000000000
## GO:0060492  BP     3  0 1.0000000000
## GO:0042700  BP     3  0 1.0000000000
## GO:0060838  BP     3  0 1.0000000000
## GO:0097021  BP     3  0 1.0000000000
## GO:0006553  BP     3  0 1.0000000000
## GO:0016237  BP     3  0 1.0000000000
## GO:0035691  BP     3  0 1.0000000000
## GO:0051684  BP     3  0 1.0000000000
## GO:0099562  BP     3  0 1.0000000000
## GO:0036506  BP     3  0 1.0000000000
## GO:1904378  BP     3  0 1.0000000000
## GO:0071423  BP     3  0 1.0000000000
## GO:0015743  BP     3  0 1.0000000000
## GO:0008049  BP     3  0 1.0000000000
## GO:1905198  BP     3  0 1.0000000000
## GO:0071421  BP     3  0 1.0000000000
## GO:0002125  BP     3  0 1.0000000000
## GO:0042628  BP     3  0 1.0000000000
## GO:1990773  BP     3  0 1.0000000000
## GO:0036112  BP     3  0 1.0000000000
## GO:0021550  BP     3  0 1.0000000000
## GO:1903537  BP     3  0 1.0000000000
## GO:0016344  BP     3  0 1.0000000000
## GO:0006311  BP     3  0 1.0000000000
## GO:0051311  BP     3  0 1.0000000000
## GO:0000710  BP     3  0 1.0000000000
## GO:0097325  BP     3  0 1.0000000000
## GO:0086047  BP     3  0 1.0000000000
## GO:0098912  BP     3  0 1.0000000000
## GO:0086048  BP     3  0 1.0000000000
## GO:0039663  BP     3  0 1.0000000000
## GO:0031580  BP     3  0 1.0000000000
## GO:0035709  BP     3  0 1.0000000000
## GO:0009233  BP     3  0 1.0000000000
## GO:0072138  BP     3  0 1.0000000000
## GO:0072309  BP     3  0 1.0000000000
## GO:1905319  BP     3  0 1.0000000000
## GO:0097168  BP     3  0 1.0000000000
## GO:1990120  BP     3  0 1.0000000000
## GO:0072240  BP     3  0 1.0000000000
## GO:0072284  BP     3  0 1.0000000000
## GO:0072277  BP     3  0 1.0000000000
## GO:0072244  BP     3  0 1.0000000000
## GO:0072275  BP     3  0 1.0000000000
## GO:0072276  BP     3  0 1.0000000000
## GO:0090176  BP     3  0 1.0000000000
## GO:0051012  BP     3  0 1.0000000000
## GO:1990575  BP     3  0 1.0000000000
## GO:1902775  BP     3  0 1.0000000000
## GO:0000958  BP     3  0 1.0000000000
## GO:1990180  BP     3  0 1.0000000000
## GO:0097745  BP     3  0 1.0000000000
## GO:0070126  BP     3  0 1.0000000000
## GO:0099074  BP     3  0 1.0000000000
## GO:0099075  BP     3  0 1.0000000000
## GO:0044878  BP     3  0 1.0000000000
## GO:0007084  BP     3  0 1.0000000000
## GO:1902990  BP     3  0 1.0000000000
## GO:0052422  BP     3  0 1.0000000000
## GO:0044830  BP     3  0 1.0000000000
## GO:0044868  BP     3  0 1.0000000000
## GO:0052203  BP     3  0 1.0000000000
## GO:0035702  BP     3  0 1.0000000000
## GO:0048162  BP     3  0 1.0000000000
## GO:0044800  BP     3  0 1.0000000000
## GO:0036258  BP     3  0 1.0000000000
## GO:0014900  BP     3  0 1.0000000000
## GO:0050883  BP     3  0 1.0000000000
## GO:0043385  BP     3  0 1.0000000000
## GO:0002277  BP     3  0 1.0000000000
## GO:0015798  BP     3  0 1.0000000000
## GO:0052490  BP     3  0 1.0000000000
## GO:0033668  BP     3  0 1.0000000000
## GO:0052041  BP     3  0 1.0000000000
## GO:1901536  BP     3  0 1.0000000000
## GO:1905463  BP     3  0 1.0000000000
## GO:0048239  BP     3  0 1.0000000000
## GO:0060567  BP     3  0 1.0000000000
## GO:1903070  BP     3  0 1.0000000000
## GO:1904425  BP     3  0 1.0000000000
## GO:0033861  BP     3  0 1.0000000000
## GO:1903898  BP     3  0 1.0000000000
## GO:2000299  BP     3  0 1.0000000000
## GO:0035544  BP     3  0 1.0000000000
## GO:0045626  BP     3  0 1.0000000000
## GO:2000329  BP     3  0 1.0000000000
## GO:2000552  BP     3  0 1.0000000000
## GO:0140199  BP     3  0 1.0000000000
## GO:1904178  BP     3  0 1.0000000000
## GO:0002581  BP     3  0 1.0000000000
## GO:1902511  BP     3  0 1.0000000000
## GO:2000360  BP     3  0 1.0000000000
## GO:0010956  BP     3  0 1.0000000000
## GO:1902081  BP     3  0 1.0000000000
## GO:0045914  BP     3  0 1.0000000000
## GO:2000137  BP     3  0 1.0000000000
## GO:1901856  BP     3  0 1.0000000000
## GO:0045079  BP     3  0 1.0000000000
## GO:1904193  BP     3  0 1.0000000000
## GO:0061182  BP     3  0 1.0000000000
## GO:1902731  BP     3  0 1.0000000000
## GO:0042322  BP     3  0 1.0000000000
## GO:2000847  BP     3  0 1.0000000000
## GO:0051344  BP     3  0 1.0000000000
## GO:2001271  BP     3  0 1.0000000000
## GO:0002605  BP     3  0 1.0000000000
## GO:2000016  BP     3  0 1.0000000000
## GO:0045963  BP     3  0 1.0000000000
## GO:1904339  BP     3  0 1.0000000000
## GO:2000384  BP     3  0 1.0000000000
## GO:2001027  BP     3  0 1.0000000000
## GO:0071899  BP     3  0 1.0000000000
## GO:1903542  BP     3  0 1.0000000000
## GO:1901003  BP     3  0 1.0000000000
## GO:2000850  BP     3  0 1.0000000000
## GO:1900450  BP     3  0 1.0000000000
## GO:0045967  BP     3  0 1.0000000000
## GO:0048817  BP     3  0 1.0000000000
## GO:0051097  BP     3  0 1.0000000000
## GO:1902037  BP     3  0 1.0000000000
## GO:1903944  BP     3  0 1.0000000000
## GO:0031064  BP     3  0 1.0000000000
## GO:0033128  BP     3  0 1.0000000000
## GO:0002884  BP     3  0 1.0000000000
## GO:0045358  BP     3  0 1.0000000000
## GO:0032690  BP     3  0 1.0000000000
## GO:2001180  BP     3  0 1.0000000000
## GO:2001183  BP     3  0 1.0000000000
## GO:2000666  BP     3  0 1.0000000000
## GO:1900041  BP     3  0 1.0000000000
## GO:0048294  BP     3  0 1.0000000000
## GO:0010593  BP     3  0 1.0000000000
## GO:1903237  BP     3  0 1.0000000000
## GO:0090327  BP     3  0 1.0000000000
## GO:1900453  BP     3  0 1.0000000000
## GO:0045715  BP     3  0 1.0000000000
## GO:1905457  BP     3  0 1.0000000000
## GO:1905166  BP     3  0 1.0000000000
## GO:0071641  BP     3  0 1.0000000000
## GO:0034183  BP     3  0 1.0000000000
## GO:0034092  BP     3  0 1.0000000000
## GO:2000019  BP     3  0 1.0000000000
## GO:1905133  BP     3  0 1.0000000000
## GO:0048022  BP     3  0 1.0000000000
## GO:1905154  BP     3  0 1.0000000000
## GO:0003340  BP     3  0 1.0000000000
## GO:1902103  BP     3  0 1.0000000000
## GO:0090310  BP     3  0 1.0000000000
## GO:1901859  BP     3  0 1.0000000000
## GO:1901740  BP     3  0 1.0000000000
## GO:1904761  BP     3  0 1.0000000000
## GO:0002859  BP     3  0 1.0000000000
## GO:0002856  BP     3  0 1.0000000000
## GO:1902623  BP     3  0 1.0000000000
## GO:0010751  BP     3  0 1.0000000000
## GO:1902856  BP     3  0 1.0000000000
## GO:1900152  BP     3  0 1.0000000000
## GO:0060212  BP     3  0 1.0000000000
## GO:0070433  BP     3  0 1.0000000000
## GO:0070425  BP     3  0 1.0000000000
## GO:1902309  BP     3  0 1.0000000000
## GO:1900275  BP     3  0 1.0000000000
## GO:2000041  BP     3  0 1.0000000000
## GO:1902268  BP     3  0 1.0000000000
## GO:1901874  BP     3  0 1.0000000000
## GO:1902303  BP     3  0 1.0000000000
## GO:1903765  BP     3  0 1.0000000000
## GO:2000974  BP     3  0 1.0000000000
## GO:0010836  BP     3  0 1.0000000000
## GO:1904351  BP     3  0 1.0000000000
## GO:0090038  BP     3  0 1.0000000000
## GO:1904780  BP     3  0 1.0000000000
## GO:0061084  BP     3  0 1.0000000000
## GO:2000645  BP     3  0 1.0000000000
## GO:0090071  BP     3  0 1.0000000000
## GO:1902725  BP     3  0 1.0000000000
## GO:1900377  BP     3  0 1.0000000000
## GO:1904057  BP     3  0 1.0000000000
## GO:0014859  BP     3  0 1.0000000000
## GO:1902723  BP     3  0 1.0000000000
## GO:0071672  BP     3  0 1.0000000000
## GO:2000832  BP     3  0 1.0000000000
## GO:2000297  BP     3  0 1.0000000000
## GO:1903422  BP     3  0 1.0000000000
## GO:1904430  BP     3  0 1.0000000000
## GO:1902948  BP     3  0 1.0000000000
## GO:0070495  BP     3  0 1.0000000000
## GO:0034140  BP     3  0 1.0000000000
## GO:0034164  BP     3  0 1.0000000000
## GO:0016480  BP     3  0 1.0000000000
## GO:2000820  BP     3  0 1.0000000000
## GO:0071930  BP     3  0 1.0000000000
## GO:0010526  BP     3  0 1.0000000000
## GO:1904694  BP     3  0 1.0000000000
## GO:0010916  BP     3  0 1.0000000000
## GO:0072076  BP     3  0 1.0000000000
## GO:0021502  BP     3  0 1.0000000000
## GO:0021849  BP     3  0 1.0000000000
## GO:0033693  BP     3  0 1.0000000000
## GO:0038189  BP     3  0 1.0000000000
## GO:0070488  BP     3  0 1.0000000000
## GO:0060618  BP     3  0 1.0000000000
## GO:0061341  BP     3  0 1.0000000000
## GO:0003358  BP     3  0 1.0000000000
## GO:0002025  BP     3  0 1.0000000000
## GO:0090292  BP     3  0 1.0000000000
## GO:0043578  BP     3  0 1.0000000000
## GO:0071630  BP     3  0 1.0000000000
## GO:0035063  BP     3  0 1.0000000000
## GO:0015851  BP     3  0 1.0000000000
## GO:0021817  BP     3  0 1.0000000000
## GO:1901679  BP     3  0 1.0000000000
## GO:0000715  BP     3  0 1.0000000000
## GO:0006295  BP     3  0 1.0000000000
## GO:0006296  BP     3  0 1.0000000000
## GO:0006589  BP     3  0 1.0000000000
## GO:0046333  BP     3  0 1.0000000000
## GO:0061034  BP     3  0 1.0000000000
## GO:0021553  BP     3  0 1.0000000000
## GO:0060166  BP     3  0 1.0000000000
## GO:0015772  BP     3  0 1.0000000000
## GO:1901376  BP     3  0 1.0000000000
## GO:0045299  BP     3  0 1.0000000000
## GO:0001550  BP     3  0 1.0000000000
## GO:0001543  BP     3  0 1.0000000000
## GO:0015729  BP     3  0 1.0000000000
## GO:0035511  BP     3  0 1.0000000000
## GO:0035553  BP     3  0 1.0000000000
## GO:1900535  BP     3  0 1.0000000000
## GO:1900533  BP     3  0 1.0000000000
## GO:0019323  BP     3  0 1.0000000000
## GO:0009051  BP     3  0 1.0000000000
## GO:0002501  BP     3  0 1.0000000000
## GO:0018125  BP     3  0 1.0000000000
## GO:0017187  BP     3  0 1.0000000000
## GO:0018199  BP     3  0 1.0000000000
## GO:0018312  BP     3  0 1.0000000000
## GO:0002343  BP     3  0 1.0000000000
## GO:0010124  BP     3  0 1.0000000000
## GO:0006432  BP     3  0 1.0000000000
## GO:0036151  BP     3  0 1.0000000000
## GO:0031161  BP     3  0 1.0000000000
## GO:0007208  BP     3  0 1.0000000000
## GO:0046552  BP     3  0 1.0000000000
## GO:0042376  BP     3  0 1.0000000000
## GO:0042374  BP     3  0 1.0000000000
## GO:0016129  BP     3  0 1.0000000000
## GO:0016128  BP     3  0 1.0000000000
## GO:0034727  BP     3  0 1.0000000000
## GO:0097195  BP     3  0 1.0000000000
## GO:0061346  BP     3  0 1.0000000000
## GO:0034441  BP     3  0 1.0000000000
## GO:0006663  BP     3  0 1.0000000000
## GO:0070889  BP     3  0 1.0000000000
## GO:0090360  BP     3  0 1.0000000000
## GO:0032917  BP     3  0 1.0000000000
## GO:0016094  BP     3  0 1.0000000000
## GO:0016095  BP     3  0 1.0000000000
## GO:0021586  BP     3  0 1.0000000000
## GO:1905555  BP     3  0 1.0000000000
## GO:0052151  BP     3  0 1.0000000000
## GO:1905870  BP     3  0 1.0000000000
## GO:1904719  BP     3  0 1.0000000000
## GO:0032831  BP     3  0 1.0000000000
## GO:1904219  BP     3  0 1.0000000000
## GO:2000373  BP     3  0 1.0000000000
## GO:0110032  BP     3  0 1.0000000000
## GO:1900245  BP     3  0 1.0000000000
## GO:1901666  BP     3  0 1.0000000000
## GO:0014040  BP     3  0 1.0000000000
## GO:1903984  BP     3  0 1.0000000000
## GO:0061357  BP     3  0 1.0000000000
## GO:0014057  BP     3  0 1.0000000000
## GO:1904234  BP     3  0 1.0000000000
## GO:0060168  BP     3  0 1.0000000000
## GO:1905337  BP     3  0 1.0000000000
## GO:0032349  BP     3  0 1.0000000000
## GO:0032346  BP     3  0 1.0000000000
## GO:2000860  BP     3  0 1.0000000000
## GO:0042986  BP     3  0 1.0000000000
## GO:2000825  BP     3  0 1.0000000000
## GO:1901953  BP     3  0 1.0000000000
## GO:0002585  BP     3  0 1.0000000000
## GO:0060139  BP     3  0 1.0000000000
## GO:0032100  BP     3  0 1.0000000000
## GO:0034263  BP     3  0 1.0000000000
## GO:0060559  BP     3  0 1.0000000000
## GO:1903679  BP     3  0 1.0000000000
## GO:0110024  BP     3  0 1.0000000000
## GO:1905312  BP     3  0 1.0000000000
## GO:0051944  BP     3  0 1.0000000000
## GO:2001288  BP     3  0 1.0000000000
## GO:0038091  BP     3  0 1.0000000000
## GO:0045764  BP     3  0 1.0000000000
## GO:1903974  BP     3  0 1.0000000000
## GO:0045799  BP     3  0 1.0000000000
## GO:0046005  BP     3  0 1.0000000000
## GO:1905445  BP     3  0 1.0000000000
## GO:0051466  BP     3  0 1.0000000000
## GO:1904960  BP     3  0 1.0000000000
## GO:0051714  BP     3  0 1.0000000000
## GO:1904690  BP     3  0 1.0000000000
## GO:0045585  BP     3  0 1.0000000000
## GO:2000670  BP     3  0 1.0000000000
## GO:2001200  BP     3  0 1.0000000000
## GO:0061184  BP     3  0 1.0000000000
## GO:2000017  BP     3  0 1.0000000000
## GO:1903181  BP     3  0 1.0000000000
## GO:0051586  BP     3  0 1.0000000000
## GO:1904340  BP     3  0 1.0000000000
## GO:1904734  BP     3  0 1.0000000000
## GO:0060769  BP     3  0 1.0000000000
## GO:0003331  BP     3  0 1.0000000000
## GO:0031448  BP     3  0 1.0000000000
## GO:0060474  BP     3  0 1.0000000000
## GO:1903598  BP     3  0 1.0000000000
## GO:0060454  BP     3  0 1.0000000000
## GO:1904346  BP     3  0 1.0000000000
## GO:0034352  BP     3  0 1.0000000000
## GO:1902661  BP     3  0 1.0000000000
## GO:0071657  BP     3  0 1.0000000000
## GO:0045425  BP     3  0 1.0000000000
## GO:0071663  BP     3  0 1.0000000000
## GO:0060399  BP     3  0 1.0000000000
## GO:0046985  BP     3  0 1.0000000000
## GO:0010909  BP     3  0 1.0000000000
## GO:0070368  BP     3  0 1.0000000000
## GO:0007228  BP     3  0 1.0000000000
## GO:1900106  BP     3  0 1.0000000000
## GO:0106016  BP     3  0 1.0000000000
## GO:0045726  BP     3  0 1.0000000000
## GO:0045082  BP     3  0 1.0000000000
## GO:1905078  BP     3  0 1.0000000000
## GO:0045401  BP     3  0 1.0000000000
## GO:0032752  BP     3  0 1.0000000000
## GO:0045404  BP     3  0 1.0000000000
## GO:1904582  BP     3  0 1.0000000000
## GO:1902167  BP     3  0 1.0000000000
## GO:1902174  BP     3  0 1.0000000000
## GO:1902608  BP     3  0 1.0000000000
## GO:0033686  BP     3  0 1.0000000000
## GO:1901492  BP     3  0 1.0000000000
## GO:2000111  BP     3  0 1.0000000000
## GO:1901258  BP     3  0 1.0000000000
## GO:0043382  BP     3  0 1.0000000000
## GO:2001055  BP     3  0 1.0000000000
## GO:2000729  BP     3  0 1.0000000000
## GO:1905322  BP     3  0 1.0000000000
## GO:2000591  BP     3  0 1.0000000000
## GO:0035793  BP     3  0 1.0000000000
## GO:0090063  BP     3  0 1.0000000000
## GO:1904958  BP     3  0 1.0000000000
## GO:2000857  BP     3  0 1.0000000000
## GO:0061885  BP     3  0 1.0000000000
## GO:1902958  BP     3  0 1.0000000000
## GO:1903109  BP     3  0 1.0000000000
## GO:0046604  BP     3  0 1.0000000000
## GO:1900625  BP     3  0 1.0000000000
## GO:2000439  BP     3  0 1.0000000000
## GO:0014737  BP     3  0 1.0000000000
## GO:0043323  BP     3  0 1.0000000000
## GO:1905294  BP     3  0 1.0000000000
## GO:1904457  BP     3  0 1.0000000000
## GO:0070960  BP     3  0 1.0000000000
## GO:0070961  BP     3  0 1.0000000000
## GO:2000386  BP     3  0 1.0000000000
## GO:1903378  BP     3  0 1.0000000000
## GO:2001247  BP     3  0 1.0000000000
## GO:1902995  BP     3  0 1.0000000000
## GO:0061092  BP     3  0 1.0000000000
## GO:2000588  BP     3  0 1.0000000000
## GO:1902304  BP     3  0 1.0000000000
## GO:1903766  BP     3  0 1.0000000000
## GO:1902722  BP     3  0 1.0000000000
## GO:0060585  BP     3  0 1.0000000000
## GO:1902523  BP     3  0 1.0000000000
## GO:1904100  BP     3  0 1.0000000000
## GO:1904352  BP     3  0 1.0000000000
## GO:1900740  BP     3  0 1.0000000000
## GO:1904184  BP     3  0 1.0000000000
## GO:1902685  BP     3  0 1.0000000000
## GO:1901079  BP     3  0 1.0000000000
## GO:1904833  BP     3  0 1.0000000000
## GO:1900135  BP     3  0 1.0000000000
## GO:0032097  BP     3  0 1.0000000000
## GO:1903971  BP     3  0 1.0000000000
## GO:1902336  BP     3  0 1.0000000000
## GO:1904154  BP     3  0 1.0000000000
## GO:1904222  BP     3  0 1.0000000000
## GO:0014064  BP     3  0 1.0000000000
## GO:1902811  BP     3  0 1.0000000000
## GO:1904349  BP     3  0 1.0000000000
## GO:2000120  BP     3  0 1.0000000000
## GO:1901671  BP     3  0 1.0000000000
## GO:1904431  BP     3  0 1.0000000000
## GO:2000611  BP     3  0 1.0000000000
## GO:1905075  BP     3  0 1.0000000000
## GO:0051795  BP     3  0 1.0000000000
## GO:0034157  BP     3  0 1.0000000000
## GO:1901485  BP     3  0 1.0000000000
## GO:0000432  BP     3  0 1.0000000000
## GO:2000721  BP     3  0 1.0000000000
## GO:0006990  BP     3  0 1.0000000000
## GO:0036493  BP     3  0 1.0000000000
## GO:0032058  BP     3  0 1.0000000000
## GO:0045905  BP     3  0 1.0000000000
## GO:1903774  BP     3  0 1.0000000000
## GO:0010980  BP     3  0 1.0000000000
## GO:0060557  BP     3  0 1.0000000000
## GO:0060060  BP     3  0 1.0000000000
## GO:0045297  BP     3  0 1.0000000000
## GO:0034421  BP     3  0 1.0000000000
## GO:0021827  BP     3  0 1.0000000000
## GO:0000973  BP     3  0 1.0000000000
## GO:0002331  BP     3  0 1.0000000000
## GO:0001546  BP     3  0 1.0000000000
## GO:0030327  BP     3  0 1.0000000000
## GO:0099526  BP     3  0 1.0000000000
## GO:0098928  BP     3  0 1.0000000000
## GO:0001545  BP     3  0 1.0000000000
## GO:1903929  BP     3  0 1.0000000000
## GO:0002572  BP     3  0 1.0000000000
## GO:0010133  BP     3  0 1.0000000000
## GO:0039019  BP     3  0 1.0000000000
## GO:0060523  BP     3  0 1.0000000000
## GO:0060741  BP     3  0 1.0000000000
## GO:0070682  BP     3  0 1.0000000000
## GO:1990167  BP     3  0 1.0000000000
## GO:0044313  BP     3  0 1.0000000000
## GO:0051697  BP     3  0 1.0000000000
## GO:0045041  BP     3  0 1.0000000000
## GO:0016561  BP     3  0 1.0000000000
## GO:0032979  BP     3  0 1.0000000000
## GO:1990108  BP     3  0 1.0000000000
## GO:0032258  BP     3  0 1.0000000000
## GO:1903292  BP     3  0 1.0000000000
## GO:1903119  BP     3  0 1.0000000000
## GO:1902396  BP     3  0 1.0000000000
## GO:1905725  BP     3  0 1.0000000000
## GO:1904825  BP     3  0 1.0000000000
## GO:0090204  BP     3  0 1.0000000000
## GO:1990173  BP     3  0 1.0000000000
## GO:0044860  BP     3  0 1.0000000000
## GO:1990166  BP     3  0 1.0000000000
## GO:0061833  BP     3  0 1.0000000000
## GO:0018094  BP     3  0 1.0000000000
## GO:0030908  BP     3  0 1.0000000000
## GO:0071211  BP     3  0 1.0000000000
## GO:1903445  BP     3  0 1.0000000000
## GO:0003350  BP     3  0 1.0000000000
## GO:0009182  BP     3  0 1.0000000000
## GO:0046122  BP     3  0 1.0000000000
## GO:0043096  BP     3  0 1.0000000000
## GO:0072530  BP     3  0 1.0000000000
## GO:0042822  BP     3  0 1.0000000000
## GO:0009197  BP     3  0 1.0000000000
## GO:0009196  BP     3  0 1.0000000000
## GO:0009212  BP     3  0 1.0000000000
## GO:0006208  BP     3  0 1.0000000000
## GO:0015855  BP     3  0 1.0000000000
## GO:0009139  BP     3  0 1.0000000000
## GO:0009138  BP     3  0 1.0000000000
## GO:0015864  BP     3  0 1.0000000000
## GO:0009174  BP     3  0 1.0000000000
## GO:0009173  BP     3  0 1.0000000000
## GO:0009080  BP     3  0 1.0000000000
## GO:1901475  BP     3  0 1.0000000000
## GO:1901662  BP     3  0 1.0000000000
## GO:0035928  BP     3  0 1.0000000000
## GO:2000286  BP     3  0 1.0000000000
## GO:1905868  BP     3  0 1.0000000000
## GO:1903891  BP     3  0 1.0000000000
## GO:2000449  BP     3  0 1.0000000000
## GO:1904217  BP     3  0 1.0000000000
## GO:1902162  BP     3  0 1.0000000000
## GO:0072695  BP     3  0 1.0000000000
## GO:2000371  BP     3  0 1.0000000000
## GO:0070376  BP     3  0 1.0000000000
## GO:1904020  BP     3  0 1.0000000000
## GO:0110030  BP     3  0 1.0000000000
## GO:0010963  BP     3  0 1.0000000000
## GO:1902688  BP     3  0 1.0000000000
## GO:1901664  BP     3  0 1.0000000000
## GO:0032483  BP     3  0 1.0000000000
## GO:0032485  BP     3  0 1.0000000000
## GO:0032487  BP     3  0 1.0000000000
## GO:0014038  BP     3  0 1.0000000000
## GO:2001188  BP     3  0 1.0000000000
## GO:1903939  BP     3  0 1.0000000000
## GO:0060408  BP     3  0 1.0000000000
## GO:1904232  BP     3  0 1.0000000000
## GO:2000367  BP     3  0 1.0000000000
## GO:1904616  BP     3  0 1.0000000000
## GO:0002877  BP     3  0 1.0000000000
## GO:1905674  BP     3  0 1.0000000000
## GO:1905335  BP     3  0 1.0000000000
## GO:1903630  BP     3  0 1.0000000000
## GO:2000823  BP     3  0 1.0000000000
## GO:0060177  BP     3  0 1.0000000000
## GO:1901951  BP     3  0 1.0000000000
## GO:1903742  BP     3  0 1.0000000000
## GO:0002589  BP     3  0 1.0000000000
## GO:1902256  BP     3  0 1.0000000000
## GO:0000821  BP     3  0 1.0000000000
## GO:0061888  BP     3  0 1.0000000000
## GO:1904170  BP     3  0 1.0000000000
## GO:0002017  BP     3  0 1.0000000000
## GO:0060378  BP     3  0 1.0000000000
## GO:1903233  BP     3  0 1.0000000000
## GO:1903279  BP     3  0 1.0000000000
## GO:1903677  BP     3  0 1.0000000000
## GO:0098679  BP     3  0 1.0000000000
## GO:0110022  BP     3  0 1.0000000000
## GO:1905310  BP     3  0 1.0000000000
## GO:2000722  BP     3  0 1.0000000000
## GO:1901301  BP     3  0 1.0000000000
## GO:1901844  BP     3  0 1.0000000000
## GO:1905915  BP     3  0 1.0000000000
## GO:0001560  BP     3  0 1.0000000000
## GO:0003250  BP     3  0 1.0000000000
## GO:1901963  BP     3  0 1.0000000000
## GO:0030997  BP     3  0 1.0000000000
## GO:2000338  BP     3  0 1.0000000000
## GO:1904192  BP     3  0 1.0000000000
## GO:0061187  BP     3  0 1.0000000000
## GO:0002874  BP     3  0 1.0000000000
## GO:1905443  BP     3  0 1.0000000000
## GO:0048696  BP     3  0 1.0000000000
## GO:0060300  BP     3  0 1.0000000000
## GO:0032954  BP     3  0 1.0000000000
## GO:0051710  BP     3  0 1.0000000000
## GO:0045583  BP     3  0 1.0000000000
## GO:1900150  BP     3  0 1.0000000000
## GO:2000705  BP     3  0 1.0000000000
## GO:1903179  BP     3  0 1.0000000000
## GO:1900095  BP     3  0 1.0000000000
## GO:0010999  BP     3  0 1.0000000000
## GO:2000383  BP     3  0 1.0000000000
## GO:0042663  BP     3  0 1.0000000000
## GO:0060699  BP     3  0 1.0000000000
## GO:1901074  BP     3  0 1.0000000000
## GO:0043309  BP     3  0 1.0000000000
## GO:1901187  BP     3  0 1.0000000000
## GO:0010482  BP     3  0 1.0000000000
## GO:1905041  BP     3  0 1.0000000000
## GO:1904444  BP     3  0 1.0000000000
## GO:2000864  BP     3  0 1.0000000000
## GO:0071898  BP     3  0 1.0000000000
## GO:0060178  BP     3  0 1.0000000000
## GO:0031446  BP     3  0 1.0000000000
## GO:2000313  BP     3  0 1.0000000000
## GO:1904344  BP     3  0 1.0000000000
## GO:1900169  BP     3  0 1.0000000000
## GO:1904023  BP     3  0 1.0000000000
## GO:1902659  BP     3  0 1.0000000000
## GO:1903786  BP     3  0 1.0000000000
## GO:1900923  BP     3  0 1.0000000000
## GO:0072361  BP     3  0 1.0000000000
## GO:1904708  BP     3  0 1.0000000000
## GO:0071661  BP     3  0 1.0000000000
## GO:0003420  BP     3  0 1.0000000000
## GO:0090081  BP     3  0 1.0000000000
## GO:0003062  BP     3  0 1.0000000000
## GO:0010908  BP     3  0 1.0000000000
## GO:1903943  BP     3  0 1.0000000000
## GO:0090107  BP     3  0 1.0000000000
## GO:0010982  BP     3  0 1.0000000000
## GO:0043134  BP     3  0 1.0000000000
## GO:0110089  BP     3  0 1.0000000000
## GO:1901674  BP     3  0 1.0000000000
## GO:2001160  BP     3  0 1.0000000000
## GO:1900104  BP     3  0 1.0000000000
## GO:1902071  BP     3  0 1.0000000000
## GO:0045399  BP     3  0 1.0000000000
## GO:1902214  BP     3  0 1.0000000000
## GO:1902938  BP     3  0 1.0000000000
## GO:1901252  BP     3  0 1.0000000000
## GO:2000312  BP     3  0 1.0000000000
## GO:0090234  BP     3  0 1.0000000000
## GO:1902606  BP     3  0 1.0000000000
## GO:0097213  BP     3  0 1.0000000000
## GO:0090365  BP     3  0 1.0000000000
## GO:0010610  BP     3  0 1.0000000000
## GO:1902226  BP     3  0 1.0000000000
## GO:2000446  BP     3  0 1.0000000000
## GO:0060375  BP     3  0 1.0000000000
## GO:1904464  BP     3  0 1.0000000000
## GO:1903538  BP     3  0 1.0000000000
## GO:1905024  BP     3  0 1.0000000000
## GO:1905320  BP     3  0 1.0000000000
## GO:1900238  BP     3  0 1.0000000000
## GO:2000625  BP     3  0 1.0000000000
## GO:0032423  BP     3  0 1.0000000000
## GO:0090296  BP     3  0 1.0000000000
## GO:1902445  BP     3  0 1.0000000000
## GO:1903108  BP     3  0 1.0000000000
## GO:1903463  BP     3  0 1.0000000000
## GO:1900623  BP     3  0 1.0000000000
## GO:0010796  BP     3  0 1.0000000000
## GO:0014738  BP     3  0 1.0000000000
## GO:1905292  BP     3  0 1.0000000000
## GO:0099152  BP     3  0 1.0000000000
## GO:0032899  BP     3  0 1.0000000000
## GO:1903995  BP     3  0 1.0000000000
## GO:0070428  BP     3  0 1.0000000000
## GO:2000819  BP     3  0 1.0000000000
## GO:1900141  BP     3  0 1.0000000000
## GO:2000474  BP     3  0 1.0000000000
## GO:2000374  BP     3  0 1.0000000000
## GO:2000828  BP     3  0 1.0000000000
## GO:0043456  BP     3  0 1.0000000000
## GO:2000468  BP     3  0 1.0000000000
## GO:0044375  BP     3  0 1.0000000000
## GO:1902994  BP     3  0 1.0000000000
## GO:0061091  BP     3  0 1.0000000000
## GO:2000040  BP     3  0 1.0000000000
## GO:1905684  BP     3  0 1.0000000000
## GO:0090361  BP     3  0 1.0000000000
## GO:0030860  BP     3  0 1.0000000000
## GO:1901873  BP     3  0 1.0000000000
## GO:1901629  BP     3  0 1.0000000000
## GO:0010725  BP     3  0 1.0000000000
## GO:2000182  BP     3  0 1.0000000000
## GO:2000870  BP     3  0 1.0000000000
## GO:0060584  BP     3  0 1.0000000000
## GO:1903093  BP     3  0 1.0000000000
## GO:0061945  BP     3  0 1.0000000000
## GO:1904098  BP     3  0 1.0000000000
## GO:0099575  BP     3  0 1.0000000000
## GO:0090283  BP     3  0 1.0000000000
## GO:1900739  BP     3  0 1.0000000000
## GO:1905600  BP     3  0 1.0000000000
## GO:0002019  BP     3  0 1.0000000000
## GO:0099178  BP     3  0 1.0000000000
## GO:1905279  BP     3  0 1.0000000000
## GO:0007468  BP     3  0 1.0000000000
## GO:0014717  BP     3  0 1.0000000000
## GO:0090182  BP     3  0 1.0000000000
## GO:0014722  BP     3  0 1.0000000000
## GO:1904204  BP     3  0 1.0000000000
## GO:1904048  BP     3  0 1.0000000000
## GO:0031335  BP     3  0 1.0000000000
## GO:0060025  BP     3  0 1.0000000000
## GO:1905661  BP     3  0 1.0000000000
## GO:1904533  BP     3  0 1.0000000000
## GO:1904594  BP     3  0 1.0000000000
## GO:2000804  BP     3  0 1.0000000000
## GO:2000843  BP     3  0 1.0000000000
## GO:1901401  BP     3  0 1.0000000000
## GO:0070494  BP     3  0 1.0000000000
## GO:1905073  BP     3  0 1.0000000000
## GO:0002652  BP     3  0 1.0000000000
## GO:0034155  BP     3  0 1.0000000000
## GO:1901483  BP     3  0 1.0000000000
## GO:0000430  BP     3  0 1.0000000000
## GO:0034395  BP     3  0 1.0000000000
## GO:0021882  BP     3  0 1.0000000000
## GO:0021912  BP     3  0 1.0000000000
## GO:0010525  BP     3  0 1.0000000000
## GO:0001807  BP     3  0 1.0000000000
## GO:2000152  BP     3  0 1.0000000000
## GO:1903335  BP     3  0 1.0000000000
## GO:1905930  BP     3  0 1.0000000000
## GO:0010915  BP     3  0 1.0000000000
## GO:0010901  BP     3  0 1.0000000000
## GO:0010979  BP     3  0 1.0000000000
## GO:0071579  BP     3  0 1.0000000000
## GO:0019046  BP     3  0 1.0000000000
## GO:0072053  BP     3  0 1.0000000000
## GO:0072034  BP     3  0 1.0000000000
## GO:0043111  BP     3  0 1.0000000000
## GO:1904016  BP     3  0 1.0000000000
## GO:0010446  BP     3  0 1.0000000000
## GO:1903842  BP     3  0 1.0000000000
## GO:0061771  BP     3  0 1.0000000000
## GO:1902349  BP     3  0 1.0000000000
## GO:0061847  BP     3  0 1.0000000000
## GO:0032025  BP     3  0 1.0000000000
## GO:0014878  BP     3  0 1.0000000000
## GO:0060992  BP     3  0 1.0000000000
## GO:0009629  BP     3  0 1.0000000000
## GO:1904880  BP     3  0 1.0000000000
## GO:0051599  BP     3  0 1.0000000000
## GO:0035962  BP     3  0 1.0000000000
## GO:0051595  BP     3  0 1.0000000000
## GO:0009624  BP     3  0 1.0000000000
## GO:0071873  BP     3  0 1.0000000000
## GO:0071798  BP     3  0 1.0000000000
## GO:0046684  BP     3  0 1.0000000000
## GO:1901355  BP     3  0 1.0000000000
## GO:0072708  BP     3  0 1.0000000000
## GO:0072733  BP     3  0 1.0000000000
## GO:1904578  BP     3  0 1.0000000000
## GO:0071725  BP     3  0 1.0000000000
## GO:0034633  BP     3  0 1.0000000000
## GO:0021570  BP     3  0 1.0000000000
## GO:0021593  BP     3  0 1.0000000000
## GO:0006610  BP     3  0 1.0000000000
## GO:0003221  BP     3  0 1.0000000000
## GO:0048769  BP     3  0 1.0000000000
## GO:0032788  BP     3  0 1.0000000000
## GO:0061033  BP     3  0 1.0000000000
## GO:0046960  BP     3  0 1.0000000000
## GO:0097374  BP     3  0 1.0000000000
## GO:0003285  BP     3  0 1.0000000000
## GO:0002554  BP     3  0 1.0000000000
## GO:0006714  BP     3  0 1.0000000000
## GO:0023016  BP     3  0 1.0000000000
## GO:0060931  BP     3  0 1.0000000000
## GO:0031134  BP     3  0 1.0000000000
## GO:0043503  BP     3  0 1.0000000000
## GO:0031444  BP     3  0 1.0000000000
## GO:0021776  BP     3  0 1.0000000000
## GO:0021775  BP     3  0 1.0000000000
## GO:0031120  BP     3  0 1.0000000000
## GO:0051030  BP     3  0 1.0000000000
## GO:0016077  BP     3  0 1.0000000000
## GO:0010159  BP     3  0 1.0000000000
## GO:0097724  BP     3  0 1.0000000000
## GO:1905419  BP     3  0 1.0000000000
## GO:0007284  BP     3  0 1.0000000000
## GO:0032918  BP     3  0 1.0000000000
## GO:0006597  BP     3  0 1.0000000000
## GO:0046208  BP     3  0 1.0000000000
## GO:0006667  BP     3  0 1.0000000000
## GO:0021529  BP     3  0 1.0000000000
## GO:0021530  BP     3  0 1.0000000000
## GO:0021965  BP     3  0 1.0000000000
## GO:0007056  BP     3  0 1.0000000000
## GO:0060720  BP     3  0 1.0000000000
## GO:0048866  BP     3  0 1.0000000000
## GO:0071422  BP     3  0 1.0000000000
## GO:0015770  BP     3  0 1.0000000000
## GO:0099163  BP     3  0 1.0000000000
## GO:0060084  BP     3  0 1.0000000000
## GO:0048499  BP     3  0 1.0000000000
## GO:0042779  BP     3  0 1.0000000000
## GO:0002946  BP     3  0 1.0000000000
## GO:0006409  BP     3  0 1.0000000000
## GO:0002949  BP     3  0 1.0000000000
## GO:0071431  BP     3  0 1.0000000000
## GO:0101030  BP     3  0 1.0000000000
## GO:0000379  BP     3  0 1.0000000000
## GO:0031509  BP     3  0 1.0000000000
## GO:1902896  BP     3  0 1.0000000000
## GO:0030846  BP     3  0 1.0000000000
## GO:0006393  BP     3  0 1.0000000000
## GO:0046865  BP     3  0 1.0000000000
## GO:0060748  BP     3  0 1.0000000000
## GO:0035936  BP     3  0 1.0000000000
## GO:0016108  BP     3  0 1.0000000000
## GO:0006772  BP     3  0 1.0000000000
## GO:0015888  BP     3  0 1.0000000000
## GO:0042723  BP     3  0 1.0000000000
## GO:0001966  BP     3  0 1.0000000000
## GO:0015709  BP     3  0 1.0000000000
## GO:0007356  BP     3  0 1.0000000000
## GO:0006435  BP     3  0 1.0000000000
## GO:0046104  BP     3  0 1.0000000000
## GO:0006210  BP     3  0 1.0000000000
## GO:0019859  BP     3  0 1.0000000000
## GO:1905071  BP     3  0 1.0000000000
## GO:0002930  BP     3  0 1.0000000000
## GO:0061153  BP     3  0 1.0000000000
## GO:0061152  BP     3  0 1.0000000000
## GO:0099540  BP     3  0 1.0000000000
## GO:0099548  BP     3  0 1.0000000000
## GO:0099543  BP     3  0 1.0000000000
## GO:0006391  BP     3  0 1.0000000000
## GO:0070634  BP     3  0 1.0000000000
## GO:0007181  BP     3  0 1.0000000000
## GO:0007089  BP     3  0 1.0000000000
## GO:0021558  BP     3  0 1.0000000000
## GO:0001831  BP     3  0 1.0000000000
## GO:0015827  BP     3  0 1.0000000000
## GO:0071596  BP     3  0 1.0000000000
## GO:0032789  BP     3  0 1.0000000000
## GO:0019860  BP     3  0 1.0000000000
## GO:0071918  BP     3  0 1.0000000000
## GO:0072190  BP     3  0 1.0000000000
## GO:0072092  BP     3  0 1.0000000000
## GO:0006624  BP     3  0 1.0000000000
## GO:0021564  BP     3  0 1.0000000000
## GO:1905420  BP     3  0 1.0000000000
## GO:0055005  BP     3  0 1.0000000000
## GO:0021847  BP     3  0 1.0000000000
## GO:0021524  BP     3  0 1.0000000000
## GO:0071939  BP     3  0 1.0000000000
## GO:0071938  BP     3  0 1.0000000000
## GO:0042816  BP     3  0 1.0000000000
## GO:0042360  BP     3  0 1.0000000000
## GO:0010025  BP     3  0 1.0000000000
## GO:0010166  BP     3  0 1.0000000000
## GO:0005997  BP     3  0 1.0000000000
## GO:0045218  BP     3  0 1.0000000000
## GO:0006189  BP     4  0 1.0000000000
## GO:1990966  BP     4  0 1.0000000000
## GO:0031296  BP     4  0 1.0000000000
## GO:0035697  BP     4  0 1.0000000000
## GO:0048205  BP     4  0 1.0000000000
## GO:0071034  BP     4  0 1.0000000000
## GO:0071043  BP     4  0 1.0000000000
## GO:0030576  BP     4  0 1.0000000000
## GO:0060486  BP     4  0 1.0000000000
## GO:0043137  BP     4  0 1.0000000000
## GO:0006269  BP     4  0 1.0000000000
## GO:0035621  BP     4  0 1.0000000000
## GO:0038095  BP     4  0 1.0000000000
## GO:0046368  BP     4  0 1.0000000000
## GO:0006177  BP     4  0 1.0000000000
## GO:0090168  BP     4  0 1.0000000000
## GO:0048200  BP     4  0 1.0000000000
## GO:0070384  BP     4  0 1.0000000000
## GO:0032264  BP     4  0 1.0000000000
## GO:0007258  BP     4  0 1.0000000000
## GO:0038109  BP     4  0 1.0000000000
## GO:0019853  BP     4  0 1.0000000000
## GO:0055129  BP     4  0 1.0000000000
## GO:0006564  BP     4  0 1.0000000000
## GO:0006565  BP     4  0 1.0000000000
## GO:0002396  BP     4  0 1.0000000000
## GO:0001880  BP     4  0 1.0000000000
## GO:0018076  BP     4  0 1.0000000000
## GO:0006499  BP     4  0 1.0000000000
## GO:0006741  BP     4  0 1.0000000000
## GO:0098989  BP     4  0 1.0000000000
## GO:0086017  BP     4  0 1.0000000000
## GO:0071076  BP     4  0 1.0000000000
## GO:0006556  BP     4  0 1.0000000000
## GO:0033353  BP     4  0 1.0000000000
## GO:0060061  BP     4  0 1.0000000000
## GO:0002424  BP     4  0 1.0000000000
## GO:0002309  BP     4  0 1.0000000000
## GO:0061470  BP     4  0 1.0000000000
## GO:0035711  BP     4  0 1.0000000000
## GO:0002296  BP     4  0 1.0000000000
## GO:0048014  BP     4  0 1.0000000000
## GO:0019276  BP     4  0 1.0000000000
## GO:0061355  BP     4  0 1.0000000000
## GO:0090244  BP     4  0 1.0000000000
## GO:0007223  BP     4  0 1.0000000000
## GO:0009838  BP     4  0 1.0000000000
## GO:1900620  BP     4  0 1.0000000000
## GO:0006083  BP     4  0 1.0000000000
## GO:0008292  BP     4  0 1.0000000000
## GO:0090135  BP     4  0 1.0000000000
## GO:0030043  BP     4  0 1.0000000000
## GO:0030047  BP     4  0 1.0000000000
## GO:0070358  BP     4  0 1.0000000000
## GO:0090427  BP     4  0 1.0000000000
## GO:0001905  BP     4  0 1.0000000000
## GO:0002525  BP     4  0 1.0000000000
## GO:0006844  BP     4  0 1.0000000000
## GO:0034196  BP     4  0 1.0000000000
## GO:1901911  BP     4  0 1.0000000000
## GO:1901910  BP     4  0 1.0000000000
## GO:0007196  BP     4  0 1.0000000000
## GO:1990410  BP     4  0 1.0000000000
## GO:0006522  BP     4  0 1.0000000000
## GO:0015842  BP     4  0 1.0000000000
## GO:0006578  BP     4  0 1.0000000000
## GO:0015917  BP     4  0 1.0000000000
## GO:0006710  BP     4  0 1.0000000000
## GO:0002003  BP     4  0 1.0000000000
## GO:0001998  BP     4  0 1.0000000000
## GO:0098957  BP     4  0 1.0000000000
## GO:0019732  BP     4  0 1.0000000000
## GO:0002477  BP     4  0 1.0000000000
## GO:0048003  BP     4  0 1.0000000000
## GO:0048007  BP     4  0 1.0000000000
## GO:0003383  BP     4  0 1.0000000000
## GO:0038027  BP     4  0 1.0000000000
## GO:0002538  BP     4  0 1.0000000000
## GO:0035910  BP     4  0 1.0000000000
## GO:0006528  BP     4  0 1.0000000000
## GO:1902626  BP     4  0 1.0000000000
## GO:0002265  BP     4  0 1.0000000000
## GO:0060018  BP     4  0 1.0000000000
## GO:0016240  BP     4  0 1.0000000000
## GO:0007412  BP     4  0 1.0000000000
## GO:0006285  BP     4  0 1.0000000000
## GO:0045575  BP     4  0 1.0000000000
## GO:0019482  BP     4  0 1.0000000000
## GO:0060447  BP     4  0 1.0000000000
## GO:0003166  BP     4  0 1.0000000000
## GO:0046069  BP     4  0 1.0000000000
## GO:0070574  BP     4  0 1.0000000000
## GO:0015691  BP     4  0 1.0000000000
## GO:0061589  BP     4  0 1.0000000000
## GO:0044336  BP     4  0 1.0000000000
## GO:0000436  BP     4  0 1.0000000000
## GO:0000429  BP     4  0 1.0000000000
## GO:0060913  BP     4  0 1.0000000000
## GO:0003219  BP     4  0 1.0000000000
## GO:0035965  BP     4  0 1.0000000000
## GO:0070836  BP     4  0 1.0000000000
## GO:1902292  BP     4  0 1.0000000000
## GO:0003273  BP     4  0 1.0000000000
## GO:0035788  BP     4  0 1.0000000000
## GO:0035441  BP     4  0 1.0000000000
## GO:2000793  BP     4  0 1.0000000000
## GO:0061209  BP     4  0 1.0000000000
## GO:0016998  BP     4  0 1.0000000000
## GO:1905232  BP     4  0 1.0000000000
## GO:0072719  BP     4  0 1.0000000000
## GO:0071376  BP     4  0 1.0000000000
## GO:0071726  BP     4  0 1.0000000000
## GO:0097211  BP     4  0 1.0000000000
## GO:0071504  BP     4  0 1.0000000000
## GO:0071349  BP     4  0 1.0000000000
## GO:0036146  BP     4  0 1.0000000000
## GO:0090650  BP     4  0 1.0000000000
## GO:0071374  BP     4  0 1.0000000000
## GO:1904628  BP     4  0 1.0000000000
## GO:0051365  BP     4  0 1.0000000000
## GO:1903936  BP     4  0 1.0000000000
## GO:0036216  BP     4  0 1.0000000000
## GO:0071502  BP     4  0 1.0000000000
## GO:0035984  BP     4  0 1.0000000000
## GO:0032286  BP     4  0 1.0000000000
## GO:0021698  BP     4  0 1.0000000000
## GO:0098749  BP     4  0 1.0000000000
## GO:0021590  BP     4  0 1.0000000000
## GO:0090660  BP     4  0 1.0000000000
## GO:0033326  BP     4  0 1.0000000000
## GO:0038146  BP     4  0 1.0000000000
## GO:0003415  BP     4  0 1.0000000000
## GO:0097360  BP     4  0 1.0000000000
## GO:0070827  BP     4  0 1.0000000000
## GO:0097549  BP     4  0 1.0000000000
## GO:0034401  BP     4  0 1.0000000000
## GO:0002439  BP     4  0 1.0000000000
## GO:0032053  BP     4  0 1.0000000000
## GO:0060830  BP     4  0 1.0000000000
## GO:0097167  BP     4  0 1.0000000000
## GO:0019240  BP     4  0 1.0000000000
## GO:0021747  BP     4  0 1.0000000000
## GO:0007386  BP     4  0 1.0000000000
## GO:0072137  BP     4  0 1.0000000000
## GO:0022007  BP     4  0 1.0000000000
## GO:1903575  BP     4  0 1.0000000000
## GO:0043622  BP     4  0 1.0000000000
## GO:0043396  BP     4  0 1.0000000000
## GO:0006216  BP     4  0 1.0000000000
## GO:0009972  BP     4  0 1.0000000000
## GO:0046087  BP     4  0 1.0000000000
## GO:0045065  BP     4  0 1.0000000000
## GO:0006203  BP     4  0 1.0000000000
## GO:0006231  BP     4  0 1.0000000000
## GO:0046073  BP     4  0 1.0000000000
## GO:0002215  BP     4  0 1.0000000000
## GO:0061110  BP     4  0 1.0000000000
## GO:0061789  BP     4  0 1.0000000000
## GO:0046121  BP     4  0 1.0000000000
## GO:0009189  BP     4  0 1.0000000000
## GO:0061054  BP     4  0 1.0000000000
## GO:0002159  BP     4  0 1.0000000000
## GO:0042494  BP     4  0 1.0000000000
## GO:0032497  BP     4  0 1.0000000000
## GO:0035995  BP     4  0 1.0000000000
## GO:0006651  BP     4  0 1.0000000000
## GO:0046340  BP     4  0 1.0000000000
## GO:1901909  BP     4  0 1.0000000000
## GO:1901908  BP     4  0 1.0000000000
## GO:1901907  BP     4  0 1.0000000000
## GO:1901906  BP     4  0 1.0000000000
## GO:0042938  BP     4  0 1.0000000000
## GO:0071543  BP     4  0 1.0000000000
## GO:0046351  BP     4  0 1.0000000000
## GO:0044004  BP     4  0 1.0000000000
## GO:0016103  BP     4  0 1.0000000000
## GO:0033563  BP     4  0 1.0000000000
## GO:1990918  BP     4  0 1.0000000000
## GO:0097680  BP     4  0 1.0000000000
## GO:0090579  BP     4  0 1.0000000000
## GO:0003373  BP     4  0 1.0000000000
## GO:0003374  BP     4  0 1.0000000000
## GO:0001712  BP     4  0 1.0000000000
## GO:0015990  BP     4  0 1.0000000000
## GO:0030538  BP     4  0 1.0000000000
## GO:0048619  BP     4  0 1.0000000000
## GO:0071926  BP     4  0 1.0000000000
## GO:0003274  BP     4  0 1.0000000000
## GO:0060214  BP     4  0 1.0000000000
## GO:0075509  BP     4  0 1.0000000000
## GO:0061031  BP     4  0 1.0000000000
## GO:0000480  BP     4  0 1.0000000000
## GO:0071787  BP     4  0 1.0000000000
## GO:1990809  BP     4  0 1.0000000000
## GO:0015988  BP     4  0 1.0000000000
## GO:0009957  BP     4  0 1.0000000000
## GO:0042414  BP     4  0 1.0000000000
## GO:0061030  BP     4  0 1.0000000000
## GO:0060743  BP     4  0 1.0000000000
## GO:2001013  BP     4  0 1.0000000000
## GO:0008065  BP     4  0 1.0000000000
## GO:0048104  BP     4  0 1.0000000000
## GO:0048105  BP     4  0 1.0000000000
## GO:0071963  BP     4  0 1.0000000000
## GO:0030951  BP     4  0 1.0000000000
## GO:0045338  BP     4  0 1.0000000000
## GO:0031443  BP     4  0 1.0000000000
## GO:0033540  BP     4  0 1.0000000000
## GO:0051309  BP     4  0 1.0000000000
## GO:0021797  BP     4  0 1.0000000000
## GO:0001732  BP     4  0 1.0000000000
## GO:0015755  BP     4  0 1.0000000000
## GO:0061198  BP     4  0 1.0000000000
## GO:0097112  BP     4  0 1.0000000000
## GO:0090202  BP     4  0 1.0000000000
## GO:0072144  BP     4  0 1.0000000000
## GO:0072008  BP     4  0 1.0000000000
## GO:0090521  BP     4  0 1.0000000000
## GO:0021615  BP     4  0 1.0000000000
## GO:0043402  BP     4  0 1.0000000000
## GO:0019659  BP     4  0 1.0000000000
## GO:0019661  BP     4  0 1.0000000000
## GO:0006537  BP     4  0 1.0000000000
## GO:0034635  BP     4  0 1.0000000000
## GO:0046167  BP     4  0 1.0000000000
## GO:1903804  BP     4  0 1.0000000000
## GO:0019660  BP     4  0 1.0000000000
## GO:0061622  BP     4  0 1.0000000000
## GO:0034436  BP     4  0 1.0000000000
## GO:0071611  BP     4  0 1.0000000000
## GO:0042253  BP     4  0 1.0000000000
## GO:0044110  BP     4  0 1.0000000000
## GO:0044117  BP     4  0 1.0000000000
## GO:0044116  BP     4  0 1.0000000000
## GO:0003431  BP     4  0 1.0000000000
## GO:0010286  BP     4  0 1.0000000000
## GO:0035684  BP     4  0 1.0000000000
## GO:0042167  BP     4  0 1.0000000000
## GO:0070868  BP     4  0 1.0000000000
## GO:0001692  BP     4  0 1.0000000000
## GO:0070537  BP     4  0 1.0000000000
## GO:0035616  BP     4  0 1.0000000000
## GO:0034729  BP     4  0 1.0000000000
## GO:0106077  BP     4  0 1.0000000000
## GO:0070814  BP     4  0 1.0000000000
## GO:0021888  BP     4  0 1.0000000000
## GO:0021886  BP     4  0 1.0000000000
## GO:0046100  BP     4  0 1.0000000000
## GO:1901523  BP     4  0 1.0000000000
## GO:0002434  BP     4  0 1.0000000000
## GO:0002767  BP     4  0 1.0000000000
## GO:0002378  BP     4  0 1.0000000000
## GO:0002426  BP     4  0 1.0000000000
## GO:0060819  BP     4  0 1.0000000000
## GO:0043152  BP     4  0 1.0000000000
## GO:0046102  BP     4  0 1.0000000000
## GO:0038156  BP     4  0 1.0000000000
## GO:0042097  BP     4  0 1.0000000000
## GO:0035622  BP     4  0 1.0000000000
## GO:0003011  BP     4  0 1.0000000000
## GO:0072051  BP     4  0 1.0000000000
## GO:0046952  BP     4  0 1.0000000000
## GO:0072131  BP     4  0 1.0000000000
## GO:0001907  BP     4  0 1.0000000000
## GO:0019244  BP     4  0 1.0000000000
## GO:0006272  BP     4  0 1.0000000000
## GO:0060459  BP     4  0 1.0000000000
## GO:1990086  BP     4  0 1.0000000000
## GO:0006552  BP     4  0 1.0000000000
## GO:0048861  BP     4  0 1.0000000000
## GO:0060988  BP     4  0 1.0000000000
## GO:0035338  BP     4  0 1.0000000000
## GO:0097212  BP     4  0 1.0000000000
## GO:0036301  BP     4  0 1.0000000000
## GO:0006344  BP     4  0 1.0000000000
## GO:0007060  BP     4  0 1.0000000000
## GO:0060648  BP     4  0 1.0000000000
## GO:0060594  BP     4  0 1.0000000000
## GO:0060596  BP     4  0 1.0000000000
## GO:1904382  BP     4  0 1.0000000000
## GO:0097029  BP     4  0 1.0000000000
## GO:0051793  BP     4  0 1.0000000000
## GO:0000706  BP     4  0 1.0000000000
## GO:0000711  BP     4  0 1.0000000000
## GO:0051598  BP     4  0 1.0000000000
## GO:0086046  BP     4  0 1.0000000000
## GO:0051665  BP     4  0 1.0000000000
## GO:0097749  BP     4  0 1.0000000000
## GO:1900200  BP     4  0 1.0000000000
## GO:1901145  BP     4  0 1.0000000000
## GO:0072198  BP     4  0 1.0000000000
## GO:0072180  BP     4  0 1.0000000000
## GO:0072262  BP     4  0 1.0000000000
## GO:0072223  BP     4  0 1.0000000000
## GO:0072236  BP     4  0 1.0000000000
## GO:0072162  BP     4  0 1.0000000000
## GO:0035789  BP     4  0 1.0000000000
## GO:0072133  BP     4  0 1.0000000000
## GO:0072289  BP     4  0 1.0000000000
## GO:0072093  BP     4  0 1.0000000000
## GO:0044785  BP     4  0 1.0000000000
## GO:0051596  BP     4  0 1.0000000000
## GO:0019243  BP     4  0 1.0000000000
## GO:0061727  BP     4  0 1.0000000000
## GO:0030035  BP     4  0 1.0000000000
## GO:0021555  BP     4  0 1.0000000000
## GO:0098816  BP     4  0 1.0000000000
## GO:0000964  BP     4  0 1.0000000000
## GO:1900864  BP     4  0 1.0000000000
## GO:0006121  BP     4  0 1.0000000000
## GO:0034553  BP     4  0 1.0000000000
## GO:0097250  BP     4  0 1.0000000000
## GO:0070900  BP     4  0 1.0000000000
## GO:0070125  BP     4  0 1.0000000000
## GO:1902975  BP     4  0 1.0000000000
## GO:0098763  BP     4  0 1.0000000000
## GO:0071962  BP     4  0 1.0000000000
## GO:0021815  BP     4  0 1.0000000000
## GO:0032324  BP     4  0 1.0000000000
## GO:0052651  BP     4  0 1.0000000000
## GO:0042117  BP     4  0 1.0000000000
## GO:0035522  BP     4  0 1.0000000000
## GO:0035521  BP     4  0 1.0000000000
## GO:1903966  BP     4  0 1.0000000000
## GO:1903964  BP     4  0 1.0000000000
## GO:0036257  BP     4  0 1.0000000000
## GO:0002408  BP     4  0 1.0000000000
## GO:0014835  BP     4  0 1.0000000000
## GO:0048625  BP     4  0 1.0000000000
## GO:0014839  BP     4  0 1.0000000000
## GO:0036446  BP     4  0 1.0000000000
## GO:0061055  BP     4  0 1.0000000000
## GO:0045578  BP     4  0 1.0000000000
## GO:1903625  BP     4  0 1.0000000000
## GO:0039534  BP     4  0 1.0000000000
## GO:0071878  BP     4  0 1.0000000000
## GO:0070164  BP     4  0 1.0000000000
## GO:0032348  BP     4  0 1.0000000000
## GO:0032345  BP     4  0 1.0000000000
## GO:1905907  BP     4  0 1.0000000000
## GO:0002584  BP     4  0 1.0000000000
## GO:0038108  BP     4  0 1.0000000000
## GO:1901097  BP     4  0 1.0000000000
## GO:1903347  BP     4  0 1.0000000000
## GO:0070858  BP     4  0 1.0000000000
## GO:1904252  BP     4  0 1.0000000000
## GO:1903588  BP     4  0 1.0000000000
## GO:1900158  BP     4  0 1.0000000000
## GO:2000173  BP     4  0 1.0000000000
## GO:0006933  BP     4  0 1.0000000000
## GO:0060244  BP     4  0 1.0000000000
## GO:1900060  BP     4  0 1.0000000000
## GO:0071650  BP     4  0 1.0000000000
## GO:1900186  BP     4  0 1.0000000000
## GO:1903660  BP     4  0 1.0000000000
## GO:2000065  BP     4  0 1.0000000000
## GO:0045918  BP     4  0 1.0000000000
## GO:0050689  BP     4  0 1.0000000000
## GO:1903860  BP     4  0 1.0000000000
## GO:2000669  BP     4  0 1.0000000000
## GO:2001199  BP     4  0 1.0000000000
## GO:1902951  BP     4  0 1.0000000000
## GO:2001033  BP     4  0 1.0000000000
## GO:1903225  BP     4  0 1.0000000000
## GO:0003332  BP     4  0 1.0000000000
## GO:0007621  BP     4  0 1.0000000000
## GO:0051490  BP     4  0 1.0000000000
## GO:0046882  BP     4  0 1.0000000000
## GO:2000978  BP     4  0 1.0000000000
## GO:0014053  BP     4  0 1.0000000000
## GO:1905937  BP     4  0 1.0000000000
## GO:0072125  BP     4  0 1.0000000000
## GO:0090194  BP     4  0 1.0000000000
## GO:0060125  BP     4  0 1.0000000000
## GO:0061086  BP     4  0 1.0000000000
## GO:2000619  BP     4  0 1.0000000000
## GO:0002924  BP     4  0 1.0000000000
## GO:1900126  BP     4  0 1.0000000000
## GO:0010730  BP     4  0 1.0000000000
## GO:0002838  BP     4  0 1.0000000000
## GO:0106015  BP     4  0 1.0000000000
## GO:0045608  BP     4  0 1.0000000000
## GO:2000981  BP     4  0 1.0000000000
## GO:2000660  BP     4  0 1.0000000000
## GO:0045415  BP     4  0 1.0000000000
## GO:1904479  BP     4  0 1.0000000000
## GO:1903751  BP     4  0 1.0000000000
## GO:1902219  BP     4  0 1.0000000000
## GO:1904995  BP     4  0 1.0000000000
## GO:0050748  BP     4  0 1.0000000000
## GO:1901491  BP     4  0 1.0000000000
## GO:2000255  BP     4  0 1.0000000000
## GO:0033026  BP     4  0 1.0000000000
## GO:0045632  BP     4  0 1.0000000000
## GO:1901994  BP     4  0 1.0000000000
## GO:1900212  BP     4  0 1.0000000000
## GO:0072040  BP     4  0 1.0000000000
## GO:1905903  BP     4  0 1.0000000000
## GO:1905771  BP     4  0 1.0000000000
## GO:0042662  BP     4  0 1.0000000000
## GO:0061218  BP     4  0 1.0000000000
## GO:1904684  BP     4  0 1.0000000000
## GO:1902109  BP     4  0 1.0000000000
## GO:0030886  BP     4  0 1.0000000000
## GO:0032824  BP     4  0 1.0000000000
## GO:0032827  BP     4  0 1.0000000000
## GO:1902564  BP     4  0 1.0000000000
## GO:0033030  BP     4  0 1.0000000000
## GO:1900108  BP     4  0 1.0000000000
## GO:2000623  BP     4  0 1.0000000000
## GO:2001205  BP     4  0 1.0000000000
## GO:0035359  BP     4  0 1.0000000000
## GO:0043553  BP     4  0 1.0000000000
## GO:0071072  BP     4  0 1.0000000000
## GO:0010748  BP     4  0 1.0000000000
## GO:2000587  BP     4  0 1.0000000000
## GO:0060686  BP     4  0 1.0000000000
## GO:1905765  BP     4  0 1.0000000000
## GO:0090086  BP     4  0 1.0000000000
## GO:1903333  BP     4  0 1.0000000000
## GO:0060051  BP     4  0 1.0000000000
## GO:0090074  BP     4  0 1.0000000000
## GO:2000435  BP     4  0 1.0000000000
## GO:0001920  BP     4  0 1.0000000000
## GO:0002835  BP     4  0 1.0000000000
## GO:0051612  BP     4  0 1.0000000000
## GO:0021914  BP     4  0 1.0000000000
## GO:1904673  BP     4  0 1.0000000000
## GO:0032929  BP     4  0 1.0000000000
## GO:0061428  BP     4  0 1.0000000000
## GO:0060633  BP     4  0 1.0000000000
## GO:1901837  BP     4  0 1.0000000000
## GO:0045900  BP     4  0 1.0000000000
## GO:1905460  BP     4  0 1.0000000000
## GO:1903690  BP     4  0 1.0000000000
## GO:0039689  BP     4  0 1.0000000000
## GO:0014022  BP     4  0 1.0000000000
## GO:0014016  BP     4  0 1.0000000000
## GO:0097402  BP     4  0 1.0000000000
## GO:0097118  BP     4  0 1.0000000000
## GO:0097350  BP     4  0 1.0000000000
## GO:0070947  BP     4  0 1.0000000000
## GO:0042126  BP     4  0 1.0000000000
## GO:0018916  BP     4  0 1.0000000000
## GO:0019666  BP     4  0 1.0000000000
## GO:0001994  BP     4  0 1.0000000000
## GO:1902315  BP     4  0 1.0000000000
## GO:0071042  BP     4  0 1.0000000000
## GO:0070966  BP     4  0 1.0000000000
## GO:0021557  BP     4  0 1.0000000000
## GO:0008355  BP     4  0 1.0000000000
## GO:0035672  BP     4  0 1.0000000000
## GO:0038165  BP     4  0 1.0000000000
## GO:0032474  BP     4  0 1.0000000000
## GO:0060066  BP     4  0 1.0000000000
## GO:0090403  BP     4  0 1.0000000000
## GO:0000239  BP     4  0 1.0000000000
## GO:0061113  BP     4  0 1.0000000000
## GO:0072268  BP     4  0 1.0000000000
## GO:0018197  BP     4  0 1.0000000000
## GO:0018171  BP     4  0 1.0000000000
## GO:0018364  BP     4  0 1.0000000000
## GO:0018201  BP     4  0 1.0000000000
## GO:0018211  BP     4  0 1.0000000000
## GO:0031508  BP     4  0 1.0000000000
## GO:0014012  BP     4  0 1.0000000000
## GO:0032290  BP     4  0 1.0000000000
## GO:0048936  BP     4  0 1.0000000000
## GO:0002465  BP     4  0 1.0000000000
## GO:0016557  BP     4  0 1.0000000000
## GO:0042396  BP     4  0 1.0000000000
## GO:0006599  BP     4  0 1.0000000000
## GO:0006659  BP     4  0 1.0000000000
## GO:0046314  BP     4  0 1.0000000000
## GO:0006603  BP     4  0 1.0000000000
## GO:0046149  BP     4  0 1.0000000000
## GO:0046469  BP     4  0 1.0000000000
## GO:0060155  BP     4  0 1.0000000000
## GO:0072386  BP     4  0 1.0000000000
## GO:0072383  BP     4  0 1.0000000000
## GO:0071047  BP     4  0 1.0000000000
## GO:0006598  BP     4  0 1.0000000000
## GO:0006787  BP     4  0 1.0000000000
## GO:0052501  BP     4  0 1.0000000000
## GO:0052330  BP     4  0 1.0000000000
## GO:0052042  BP     4  0 1.0000000000
## GO:0046726  BP     4  0 1.0000000000
## GO:2000582  BP     4  0 1.0000000000
## GO:2000563  BP     4  0 1.0000000000
## GO:0043378  BP     4  0 1.0000000000
## GO:2000566  BP     4  0 1.0000000000
## GO:1901537  BP     4  0 1.0000000000
## GO:0051106  BP     4  0 1.0000000000
## GO:1905643  BP     4  0 1.0000000000
## GO:1902953  BP     4  0 1.0000000000
## GO:0070318  BP     4  0 1.0000000000
## GO:1904426  BP     4  0 1.0000000000
## GO:0042998  BP     4  0 1.0000000000
## GO:0051142  BP     4  0 1.0000000000
## GO:1903899  BP     4  0 1.0000000000
## GO:0002669  BP     4  0 1.0000000000
## GO:2000525  BP     4  0 1.0000000000
## GO:2000409  BP     4  0 1.0000000000
## GO:0010536  BP     4  0 1.0000000000
## GO:1901529  BP     4  0 1.0000000000
## GO:0002803  BP     4  0 1.0000000000
## GO:0002225  BP     4  0 1.0000000000
## GO:1903849  BP     4  0 1.0000000000
## GO:0044533  BP     4  0 1.0000000000
## GO:0048691  BP     4  0 1.0000000000
## GO:1903348  BP     4  0 1.0000000000
## GO:0070859  BP     4  0 1.0000000000
## GO:1904253  BP     4  0 1.0000000000
## GO:2000504  BP     4  0 1.0000000000
## GO:1904879  BP     4  0 1.0000000000
## GO:0106134  BP     4  0 1.0000000000
## GO:1904849  BP     4  0 1.0000000000
## GO:0042660  BP     4  0 1.0000000000
## GO:0032849  BP     4  0 1.0000000000
## GO:1903724  BP     4  0 1.0000000000
## GO:1904209  BP     4  0 1.0000000000
## GO:1904109  BP     4  0 1.0000000000
## GO:0010841  BP     4  0 1.0000000000
## GO:0045917  BP     4  0 1.0000000000
## GO:1905205  BP     4  0 1.0000000000
## GO:1902261  BP     4  0 1.0000000000
## GO:1904811  BP     4  0 1.0000000000
## GO:0070175  BP     4  0 1.0000000000
## GO:0032079  BP     4  0 1.0000000000
## GO:1903373  BP     4  0 1.0000000000
## GO:2000546  BP     4  0 1.0000000000
## GO:2000418  BP     4  0 1.0000000000
## GO:1905278  BP     4  0 1.0000000000
## GO:1903553  BP     4  0 1.0000000000
## GO:1901203  BP     4  0 1.0000000000
## GO:0070346  BP     4  0 1.0000000000
## GO:0051919  BP     4  0 1.0000000000
## GO:0046881  BP     4  0 1.0000000000
## GO:0003104  BP     4  0 1.0000000000
## GO:0070094  BP     4  0 1.0000000000
## GO:1903296  BP     4  0 1.0000000000
## GO:0040010  BP     4  0 1.0000000000
## GO:0001996  BP     4  0 1.0000000000
## GO:1903595  BP     4  0 1.0000000000
## GO:2001168  BP     4  0 1.0000000000
## GO:1900114  BP     4  0 1.0000000000
## GO:0010729  BP     4  0 1.0000000000
## GO:1901300  BP     4  0 1.0000000000
## GO:0033092  BP     4  0 1.0000000000
## GO:1903797  BP     4  0 1.0000000000
## GO:0031587  BP     4  0 1.0000000000
## GO:0045356  BP     4  0 1.0000000000
## GO:0050717  BP     4  0 1.0000000000
## GO:2000667  BP     4  0 1.0000000000
## GO:0032385  BP     4  0 1.0000000000
## GO:0032379  BP     4  0 1.0000000000
## GO:0032382  BP     4  0 1.0000000000
## GO:0010912  BP     4  0 1.0000000000
## GO:0048295  BP     4  0 1.0000000000
## GO:0002913  BP     4  0 1.0000000000
## GO:1900365  BP     4  0 1.0000000000
## GO:0070668  BP     4  0 1.0000000000
## GO:1903527  BP     4  0 1.0000000000
## GO:2000741  BP     4  0 1.0000000000
## GO:0072108  BP     4  0 1.0000000000
## GO:1904141  BP     4  0 1.0000000000
## GO:0031117  BP     4  0 1.0000000000
## GO:0010636  BP     4  0 1.0000000000
## GO:2000503  BP     4  0 1.0000000000
## GO:1902565  BP     4  0 1.0000000000
## GO:0043315  BP     4  0 1.0000000000
## GO:0010750  BP     4  0 1.0000000000
## GO:2000327  BP     4  0 1.0000000000
## GO:0060282  BP     4  0 1.0000000000
## GO:1905881  BP     4  0 1.0000000000
## GO:0090290  BP     4  0 1.0000000000
## GO:0060279  BP     4  0 1.0000000000
## GO:0090187  BP     4  0 1.0000000000
## GO:1900738  BP     4  0 1.0000000000
## GO:2000259  BP     4  0 1.0000000000
## GO:1903061  BP     4  0 1.0000000000
## GO:1905342  BP     4  0 1.0000000000
## GO:1902527  BP     4  0 1.0000000000
## GO:1902730  BP     4  0 1.0000000000
## GO:1904395  BP     4  0 1.0000000000
## GO:0071673  BP     4  0 1.0000000000
## GO:1903278  BP     4  0 1.0000000000
## GO:0032417  BP     4  0 1.0000000000
## GO:0090274  BP     4  0 1.0000000000
## GO:2000911  BP     4  0 1.0000000000
## GO:0051176  BP     4  0 1.0000000000
## GO:0051835  BP     4  0 1.0000000000
## GO:1904874  BP     4  0 1.0000000000
## GO:0003099  BP     4  0 1.0000000000
## GO:0001997  BP     4  0 1.0000000000
## GO:2000412  BP     4  0 1.0000000000
## GO:0046016  BP     4  0 1.0000000000
## GO:0036091  BP     4  0 1.0000000000
## GO:0003257  BP     4  0 1.0000000000
## GO:0010735  BP     4  0 1.0000000000
## GO:0045901  BP     4  0 1.0000000000
## GO:0045903  BP     4  0 1.0000000000
## GO:0001805  BP     4  0 1.0000000000
## GO:0072107  BP     4  0 1.0000000000
## GO:1901610  BP     4  0 1.0000000000
## GO:0046136  BP     4  0 1.0000000000
## GO:1904071  BP     4  0 1.0000000000
## GO:0060468  BP     4  0 1.0000000000
## GO:0006562  BP     4  0 1.0000000000
## GO:0060737  BP     4  0 1.0000000000
## GO:0018103  BP     4  0 1.0000000000
## GO:0018406  BP     4  0 1.0000000000
## GO:0018317  BP     4  0 1.0000000000
## GO:0044314  BP     4  0 1.0000000000
## GO:1990168  BP     4  0 1.0000000000
## GO:0036508  BP     4  0 1.0000000000
## GO:0018214  BP     4  0 1.0000000000
## GO:0035977  BP     4  0 1.0000000000
## GO:0036507  BP     4  0 1.0000000000
## GO:0018343  BP     4  0 1.0000000000
## GO:0016560  BP     4  0 1.0000000000
## GO:0032978  BP     4  0 1.0000000000
## GO:0089700  BP     4  0 1.0000000000
## GO:0061739  BP     4  0 1.0000000000
## GO:0071896  BP     4  0 1.0000000000
## GO:1902463  BP     4  0 1.0000000000
## GO:0033366  BP     4  0 1.0000000000
## GO:0018377  BP     4  0 1.0000000000
## GO:0030091  BP     4  0 1.0000000000
## GO:0018335  BP     4  0 1.0000000000
## GO:0022615  BP     4  0 1.0000000000
## GO:0032596  BP     4  0 1.0000000000
## GO:0043328  BP     4  0 1.0000000000
## GO:0030167  BP     4  0 1.0000000000
## GO:0009946  BP     4  0 1.0000000000
## GO:0036343  BP     4  0 1.0000000000
## GO:0009136  BP     4  0 1.0000000000
## GO:0009180  BP     4  0 1.0000000000
## GO:0006166  BP     4  0 1.0000000000
## GO:0035590  BP     4  0 1.0000000000
## GO:0033387  BP     4  0 1.0000000000
## GO:0046125  BP     4  0 1.0000000000
## GO:0009223  BP     4  0 1.0000000000
## GO:0000720  BP     4  0 1.0000000000
## GO:0006244  BP     4  0 1.0000000000
## GO:0009078  BP     4  0 1.0000000000
## GO:0006848  BP     4  0 1.0000000000
## GO:0000320  BP     4  0 1.0000000000
## GO:0097500  BP     4  0 1.0000000000
## GO:0035624  BP     4  0 1.0000000000
## GO:0019065  BP     4  0 1.0000000000
## GO:0046813  BP     4  0 1.0000000000
## GO:2000580  BP     4  0 1.0000000000
## GO:0098904  BP     4  0 1.0000000000
## GO:1905289  BP     4  0 1.0000000000
## GO:0032829  BP     4  0 1.0000000000
## GO:0003400  BP     4  0 1.0000000000
## GO:1905774  BP     4  0 1.0000000000
## GO:0051105  BP     4  0 1.0000000000
## GO:0097752  BP     4  0 1.0000000000
## GO:0090113  BP     4  0 1.0000000000
## GO:0090170  BP     4  0 1.0000000000
## GO:0034124  BP     4  0 1.0000000000
## GO:1900368  BP     4  0 1.0000000000
## GO:1904475  BP     4  0 1.0000000000
## GO:2001106  BP     4  0 1.0000000000
## GO:0046013  BP     4  0 1.0000000000
## GO:0002840  BP     4  0 1.0000000000
## GO:2000328  BP     4  0 1.0000000000
## GO:1903121  BP     4  0 1.0000000000
## GO:0008592  BP     4  0 1.0000000000
## GO:0061356  BP     4  0 1.0000000000
## GO:0010510  BP     4  0 1.0000000000
## GO:0001969  BP     4  0 1.0000000000
## GO:0060167  BP     4  0 1.0000000000
## GO:0140192  BP     4  0 1.0000000000
## GO:1902869  BP     4  0 1.0000000000
## GO:0002586  BP     4  0 1.0000000000
## GO:1903847  BP     4  0 1.0000000000
## GO:2000359  BP     4  0 1.0000000000
## GO:1905553  BP     4  0 1.0000000000
## GO:0072095  BP     4  0 1.0000000000
## GO:1902080  BP     4  0 1.0000000000
## GO:0060800  BP     4  0 1.0000000000
## GO:1900069  BP     4  0 1.0000000000
## GO:0090230  BP     4  0 1.0000000000
## GO:0070602  BP     4  0 1.0000000000
## GO:1904714  BP     4  0 1.0000000000
## GO:1903644  BP     4  0 1.0000000000
## GO:1904207  BP     4  0 1.0000000000
## GO:0061181  BP     4  0 1.0000000000
## GO:1901382  BP     4  0 1.0000000000
## GO:0010847  BP     4  0 1.0000000000
## GO:0010710  BP     4  0 1.0000000000
## GO:2000852  BP     4  0 1.0000000000
## GO:0043397  BP     4  0 1.0000000000
## GO:2001270  BP     4  0 1.0000000000
## GO:1904688  BP     4  0 1.0000000000
## GO:0010724  BP     4  0 1.0000000000
## GO:1904809  BP     4  0 1.0000000000
## GO:0061183  BP     4  0 1.0000000000
## GO:1905749  BP     4  0 1.0000000000
## GO:1902566  BP     4  0 1.0000000000
## GO:1903903  BP     4  0 1.0000000000
## GO:0090210  BP     4  0 1.0000000000
## GO:0043465  BP     4  0 1.0000000000
## GO:1903596  BP     4  0 1.0000000000
## GO:2000211  BP     4  0 1.0000000000
## GO:1903294  BP     4  0 1.0000000000
## GO:0071655  BP     4  0 1.0000000000
## GO:0045423  BP     4  0 1.0000000000
## GO:0100012  BP     4  0 1.0000000000
## GO:0070366  BP     4  0 1.0000000000
## GO:1902202  BP     4  0 1.0000000000
## GO:1903593  BP     4  0 1.0000000000
## GO:1900109  BP     4  0 1.0000000000
## GO:2000520  BP     4  0 1.0000000000
## GO:0032672  BP     4  0 1.0000000000
## GO:0045402  BP     4  0 1.0000000000
## GO:0070103  BP     4  0 1.0000000000
## GO:1904580  BP     4  0 1.0000000000
## GO:1903750  BP     4  0 1.0000000000
## GO:0010911  BP     4  0 1.0000000000
## GO:0019747  BP     4  0 1.0000000000
## GO:0035564  BP     4  0 1.0000000000
## GO:1902746  BP     4  0 1.0000000000
## GO:0072367  BP     4  0 1.0000000000
## GO:1904059  BP     4  0 1.0000000000
## GO:0014916  BP     4  0 1.0000000000
## GO:1905671  BP     4  0 1.0000000000
## GO:1901256  BP     4  0 1.0000000000
## GO:1902435  BP     4  0 1.0000000000
## GO:0032763  BP     4  0 1.0000000000
## GO:1905132  BP     4  0 1.0000000000
## GO:1902630  BP     4  0 1.0000000000
## GO:1905031  BP     4  0 1.0000000000
## GO:1900211  BP     4  0 1.0000000000
## GO:0072039  BP     4  0 1.0000000000
## GO:0072199  BP     4  0 1.0000000000
## GO:2000589  BP     4  0 1.0000000000
## GO:1902102  BP     4  0 1.0000000000
## GO:0061884  BP     4  0 1.0000000000
## GO:0000960  BP     4  0 1.0000000000
## GO:1902956  BP     4  0 1.0000000000
## GO:0044528  BP     4  0 1.0000000000
## GO:2000437  BP     4  0 1.0000000000
## GO:0032971  BP     4  0 1.0000000000
## GO:1904760  BP     4  0 1.0000000000
## GO:0043321  BP     4  0 1.0000000000
## GO:0050923  BP     4  0 1.0000000000
## GO:0070949  BP     4  0 1.0000000000
## GO:0006808  BP     4  0 1.0000000000
## GO:1900175  BP     4  0 1.0000000000
## GO:1900145  BP     4  0 1.0000000000
## GO:2000622  BP     4  0 1.0000000000
## GO:1902897  BP     4  0 1.0000000000
## GO:1905764  BP     4  0 1.0000000000
## GO:1905340  BP     4  0 1.0000000000
## GO:0061083  BP     4  0 1.0000000000
## GO:1903613  BP     4  0 1.0000000000
## GO:1904182  BP     4  0 1.0000000000
## GO:1901000  BP     4  0 1.0000000000
## GO:1904220  BP     4  0 1.0000000000
## GO:1902809  BP     4  0 1.0000000000
## GO:2000097  BP     4  0 1.0000000000
## GO:1901668  BP     4  0 1.0000000000
## GO:1904742  BP     4  0 1.0000000000
## GO:2000331  BP     4  0 1.0000000000
## GO:0051794  BP     4  0 1.0000000000
## GO:0021913  BP     4  0 1.0000000000
## GO:0032910  BP     4  0 1.0000000000
## GO:2001201  BP     4  0 1.0000000000
## GO:0140245  BP     4  0 1.0000000000
## GO:0099578  BP     4  0 1.0000000000
## GO:0001803  BP     4  0 1.0000000000
## GO:0072106  BP     4  0 1.0000000000
## GO:0002528  BP     4  0 1.0000000000
## GO:0097494  BP     4  0 1.0000000000
## GO:1903772  BP     4  0 1.0000000000
## GO:1905150  BP     4  0 1.0000000000
## GO:0070350  BP     4  0 1.0000000000
## GO:0070294  BP     4  0 1.0000000000
## GO:0002018  BP     4  0 1.0000000000
## GO:0034552  BP     4  0 1.0000000000
## GO:0072716  BP     4  0 1.0000000000
## GO:0043435  BP     4  0 1.0000000000
## GO:0071724  BP     4  0 1.0000000000
## GO:1990839  BP     4  0 1.0000000000
## GO:0051593  BP     4  0 1.0000000000
## GO:0097210  BP     4  0 1.0000000000
## GO:0071503  BP     4  0 1.0000000000
## GO:0052572  BP     4  0 1.0000000000
## GO:0052564  BP     4  0 1.0000000000
## GO:0072429  BP     4  0 1.0000000000
## GO:0010040  BP     4  0 1.0000000000
## GO:0090649  BP     4  0 1.0000000000
## GO:1904627  BP     4  0 1.0000000000
## GO:0036215  BP     4  0 1.0000000000
## GO:0035983  BP     4  0 1.0000000000
## GO:0009414  BP     4  0 1.0000000000
## GO:0061709  BP     4  0 1.0000000000
## GO:1990009  BP     4  0 1.0000000000
## GO:0060221  BP     4  0 1.0000000000
## GO:0034653  BP     4  0 1.0000000000
## GO:0021569  BP     4  0 1.0000000000
## GO:0021571  BP     4  0 1.0000000000
## GO:0097343  BP     4  0 1.0000000000
## GO:1901026  BP     4  0 1.0000000000
## GO:0014901  BP     4  0 1.0000000000
## GO:0060528  BP     4  0 1.0000000000
## GO:0061792  BP     4  0 1.0000000000
## GO:0001887  BP     4  0 1.0000000000
## GO:0016259  BP     4  0 1.0000000000
## GO:0035582  BP     4  0 1.0000000000
## GO:0035583  BP     4  0 1.0000000000
## GO:0036515  BP     4  0 1.0000000000
## GO:0002351  BP     4  0 1.0000000000
## GO:0002442  BP     4  0 1.0000000000
## GO:0051790  BP     4  0 1.0000000000
## GO:1990926  BP     4  0 1.0000000000
## GO:0035087  BP     4  0 1.0000000000
## GO:0007227  BP     4  0 1.0000000000
## GO:0060921  BP     4  0 1.0000000000
## GO:0021938  BP     4  0 1.0000000000
## GO:0000454  BP     4  0 1.0000000000
## GO:0007525  BP     4  0 1.0000000000
## GO:0060126  BP     4  0 1.0000000000
## GO:0001757  BP     4  0 1.0000000000
## GO:0072086  BP     4  0 1.0000000000
## GO:0097476  BP     4  0 1.0000000000
## GO:0090214  BP     4  0 1.0000000000
## GO:0021773  BP     4  0 1.0000000000
## GO:0014891  BP     4  0 1.0000000000
## GO:0006931  BP     4  0 1.0000000000
## GO:0000103  BP     4  0 1.0000000000
## GO:0000101  BP     4  0 1.0000000000
## GO:0097490  BP     4  0 1.0000000000
## GO:0097491  BP     4  0 1.0000000000
## GO:0099538  BP     4  0 1.0000000000
## GO:0016182  BP     4  0 1.0000000000
## GO:0016080  BP     4  0 1.0000000000
## GO:0016189  BP     4  0 1.0000000000
## GO:0002143  BP     4  0 1.0000000000
## GO:0030423  BP     4  0 1.0000000000
## GO:0015734  BP     4  0 1.0000000000
## GO:0090669  BP     4  0 1.0000000000
## GO:0032202  BP     4  0 1.0000000000
## GO:0032201  BP     4  0 1.0000000000
## GO:0031860  BP     4  0 1.0000000000
## GO:0061819  BP     4  0 1.0000000000
## GO:0035990  BP     4  0 1.0000000000
## GO:0035992  BP     4  0 1.0000000000
## GO:0023021  BP     4  0 1.0000000000
## GO:0021678  BP     4  0 1.0000000000
## GO:0060129  BP     4  0 1.0000000000
## GO:0060535  BP     4  0 1.0000000000
## GO:0099191  BP     4  0 1.0000000000
## GO:0099183  BP     4  0 1.0000000000
## GO:0099553  BP     4  0 1.0000000000
## GO:0099552  BP     4  0 1.0000000000
## GO:0036369  BP     4  0 1.0000000000
## GO:0071733  BP     4  0 1.0000000000
## GO:0032907  BP     4  0 1.0000000000
## GO:0002188  BP     4  0 1.0000000000
## GO:0003195  BP     4  0 1.0000000000
## GO:0034197  BP     4  0 1.0000000000
## GO:0042939  BP     4  0 1.0000000000
## GO:0036484  BP     4  0 1.0000000000
## GO:0035290  BP     4  0 1.0000000000
## GO:0001802  BP     4  0 1.0000000000
## GO:0001806  BP     4  0 1.0000000000
## GO:0009826  BP     4  0 1.0000000000
## GO:0035799  BP     4  0 1.0000000000
## GO:0006573  BP     4  0 1.0000000000
## GO:0014826  BP     4  0 1.0000000000
## GO:0007418  BP     4  0 1.0000000000
## GO:0036486  BP     4  0 1.0000000000
## GO:0099041  BP     4  0 1.0000000000
## GO:0021650  BP     4  0 1.0000000000
## GO:0019042  BP     4  0 1.0000000000
## GO:0007296  BP     4  0 1.0000000000
## GO:0070343  BP     4  0 1.0000000000
## GO:0031591  BP     4  0 1.0000000000
## GO:0031590  BP     4  0 1.0000000000
## GO:0009256  BP     5  0 1.0000000000
## GO:0015867  BP     5  0 1.0000000000
## GO:0002339  BP     5  0 1.0000000000
## GO:0001922  BP     5  0 1.0000000000
## GO:0010387  BP     5  0 1.0000000000
## GO:0035964  BP     5  0 1.0000000000
## GO:0070934  BP     5  0 1.0000000000
## GO:0070779  BP     5  0 1.0000000000
## GO:0070777  BP     5  0 1.0000000000
## GO:0000738  BP     5  0 1.0000000000
## GO:0010792  BP     5  0 1.0000000000
## GO:0051103  BP     5  0 1.0000000000
## GO:0000730  BP     5  0 1.0000000000
## GO:0090735  BP     5  0 1.0000000000
## GO:0033567  BP     5  0 1.0000000000
## GO:0070375  BP     5  0 1.0000000000
## GO:0007199  BP     5  0 1.0000000000
## GO:0003164  BP     5  0 1.0000000000
## GO:0032020  BP     5  0 1.0000000000
## GO:0060397  BP     5  0 1.0000000000
## GO:0097638  BP     5  0 1.0000000000
## GO:0019509  BP     5  0 1.0000000000
## GO:0045341  BP     5  0 1.0000000000
## GO:0070291  BP     5  0 1.0000000000
## GO:0070292  BP     5  0 1.0000000000
## GO:0006116  BP     5  0 1.0000000000
## GO:0006742  BP     5  0 1.0000000000
## GO:0003137  BP     5  0 1.0000000000
## GO:0086068  BP     5  0 1.0000000000
## GO:0086029  BP     5  0 1.0000000000
## GO:0036265  BP     5  0 1.0000000000
## GO:0035927  BP     5  0 1.0000000000
## GO:0032484  BP     5  0 1.0000000000
## GO:0001777  BP     5  0 1.0000000000
## GO:0033153  BP     5  0 1.0000000000
## GO:0071847  BP     5  0 1.0000000000
## GO:0035666  BP     5  0 1.0000000000
## GO:0007171  BP     5  0 1.0000000000
## GO:0007198  BP     5  0 1.0000000000
## GO:0080144  BP     5  0 1.0000000000
## GO:0072488  BP     5  0 1.0000000000
## GO:0021764  BP     5  0 1.0000000000
## GO:0033564  BP     5  0 1.0000000000
## GO:0001788  BP     5  0 1.0000000000
## GO:0060414  BP     5  0 1.0000000000
## GO:0030263  BP     5  0 1.0000000000
## GO:0060057  BP     5  0 1.0000000000
## GO:0035905  BP     5  0 1.0000000000
## GO:0003289  BP     5  0 1.0000000000
## GO:0016255  BP     5  0 1.0000000000
## GO:0044804  BP     5  0 1.0000000000
## GO:0030242  BP     5  0 1.0000000000
## GO:0048319  BP     5  0 1.0000000000
## GO:0090245  BP     5  0 1.0000000000
## GO:0016199  BP     5  0 1.0000000000
## GO:0006287  BP     5  0 1.0000000000
## GO:2001197  BP     5  0 1.0000000000
## GO:0060681  BP     5  0 1.0000000000
## GO:1904970  BP     5  0 1.0000000000
## GO:0061591  BP     5  0 1.0000000000
## GO:0061590  BP     5  0 1.0000000000
## GO:0061588  BP     5  0 1.0000000000
## GO:0099502  BP     5  0 1.0000000000
## GO:0038171  BP     5  0 1.0000000000
## GO:0061316  BP     5  0 1.0000000000
## GO:0002190  BP     5  0 1.0000000000
## GO:0045991  BP     5  0 1.0000000000
## GO:0045990  BP     5  0 1.0000000000
## GO:0061026  BP     5  0 1.0000000000
## GO:0060926  BP     5  0 1.0000000000
## GO:0060948  BP     5  0 1.0000000000
## GO:0060689  BP     5  0 1.0000000000
## GO:0035787  BP     5  0 1.0000000000
## GO:0061325  BP     5  0 1.0000000000
## GO:0044838  BP     5  0 1.0000000000
## GO:0044036  BP     5  0 1.0000000000
## GO:0071554  BP     5  0 1.0000000000
## GO:0044108  BP     5  0 1.0000000000
## GO:0044107  BP     5  0 1.0000000000
## GO:0010961  BP     5  0 1.0000000000
## GO:1990416  BP     5  0 1.0000000000
## GO:0072757  BP     5  0 1.0000000000
## GO:0071455  BP     5  0 1.0000000000
## GO:0071681  BP     5  0 1.0000000000
## GO:0036016  BP     5  0 1.0000000000
## GO:1904637  BP     5  0 1.0000000000
## GO:0090156  BP     5  0 1.0000000000
## GO:0022009  BP     5  0 1.0000000000
## GO:0061642  BP     5  0 1.0000000000
## GO:0060591  BP     5  0 1.0000000000
## GO:0097240  BP     5  0 1.0000000000
## GO:0051305  BP     5  0 1.0000000000
## GO:0061073  BP     5  0 1.0000000000
## GO:0070120  BP     5  0 1.0000000000
## GO:0015889  BP     5  0 1.0000000000
## GO:0048669  BP     5  0 1.0000000000
## GO:0002069  BP     5  0 1.0000000000
## GO:0001661  BP     5  0 1.0000000000
## GO:0035934  BP     5  0 1.0000000000
## GO:0007253  BP     5  0 1.0000000000
## GO:0046078  BP     5  0 1.0000000000
## GO:0097742  BP     5  0 1.0000000000
## GO:0098535  BP     5  0 1.0000000000
## GO:0031087  BP     5  0 1.0000000000
## GO:0070837  BP     5  0 1.0000000000
## GO:0097187  BP     5  0 1.0000000000
## GO:0009157  BP     5  0 1.0000000000
## GO:0009202  BP     5  0 1.0000000000
## GO:0070940  BP     5  0 1.0000000000
## GO:0030205  BP     5  0 1.0000000000
## GO:0050651  BP     5  0 1.0000000000
## GO:0009597  BP     5  0 1.0000000000
## GO:0035469  BP     5  0 1.0000000000
## GO:0015961  BP     5  0 1.0000000000
## GO:0060666  BP     5  0 1.0000000000
## GO:0036072  BP     5  0 1.0000000000
## GO:0072025  BP     5  0 1.0000000000
## GO:0019348  BP     5  0 1.0000000000
## GO:1990961  BP     5  0 1.0000000000
## GO:0033227  BP     5  0 1.0000000000
## GO:0060971  BP     5  0 1.0000000000
## GO:0003199  BP     5  0 1.0000000000
## GO:0002278  BP     5  0 1.0000000000
## GO:0043308  BP     5  0 1.0000000000
## GO:0002447  BP     5  0 1.0000000000
## GO:0060750  BP     5  0 1.0000000000
## GO:0042276  BP     5  0 1.0000000000
## GO:0051295  BP     5  0 1.0000000000
## GO:0006068  BP     5  0 1.0000000000
## GO:1901503  BP     5  0 1.0000000000
## GO:0008611  BP     5  0 1.0000000000
## GO:0035426  BP     5  0 1.0000000000
## GO:0033078  BP     5  0 1.0000000000
## GO:0001561  BP     5  0 1.0000000000
## GO:0006113  BP     5  0 1.0000000000
## GO:1904447  BP     5  0 1.0000000000
## GO:0098838  BP     5  0 1.0000000000
## GO:0046655  BP     5  0 1.0000000000
## GO:0015884  BP     5  0 1.0000000000
## GO:0046292  BP     5  0 1.0000000000
## GO:0048859  BP     5  0 1.0000000000
## GO:0021943  BP     5  0 1.0000000000
## GO:0010994  BP     5  0 1.0000000000
## GO:0019375  BP     5  0 1.0000000000
## GO:0033499  BP     5  0 1.0000000000
## GO:0006682  BP     5  0 1.0000000000
## GO:0009448  BP     5  0 1.0000000000
## GO:1990349  BP     5  0 1.0000000000
## GO:0042078  BP     5  0 1.0000000000
## GO:0098728  BP     5  0 1.0000000000
## GO:0021780  BP     5  0 1.0000000000
## GO:0021563  BP     5  0 1.0000000000
## GO:0006041  BP     5  0 1.0000000000
## GO:0015760  BP     5  0 1.0000000000
## GO:0006538  BP     5  0 1.0000000000
## GO:0006868  BP     5  0 1.0000000000
## GO:0006751  BP     5  0 1.0000000000
## GO:0006114  BP     5  0 1.0000000000
## GO:0046504  BP     5  0 1.0000000000
## GO:0015793  BP     5  0 1.0000000000
## GO:0006545  BP     5  0 1.0000000000
## GO:0003241  BP     5  0 1.0000000000
## GO:0003419  BP     5  0 1.0000000000
## GO:1901069  BP     5  0 1.0000000000
## GO:0046959  BP     5  0 1.0000000000
## GO:0031581  BP     5  0 1.0000000000
## GO:0015015  BP     5  0 1.0000000000
## GO:0030202  BP     5  0 1.0000000000
## GO:0051122  BP     5  0 1.0000000000
## GO:0051121  BP     5  0 1.0000000000
## GO:0015712  BP     5  0 1.0000000000
## GO:0006548  BP     5  0 1.0000000000
## GO:0070535  BP     5  0 1.0000000000
## GO:0036414  BP     5  0 1.0000000000
## GO:0009092  BP     5  0 1.0000000000
## GO:0044027  BP     5  0 1.0000000000
## GO:0021855  BP     5  0 1.0000000000
## GO:0002765  BP     5  0 1.0000000000
## GO:0002085  BP     5  0 1.0000000000
## GO:0002220  BP     5  0 1.0000000000
## GO:0045349  BP     5  0 1.0000000000
## GO:0035546  BP     5  0 1.0000000000
## GO:0042091  BP     5  0 1.0000000000
## GO:0032632  BP     5  0 1.0000000000
## GO:0035771  BP     5  0 1.0000000000
## GO:0075733  BP     5  0 1.0000000000
## GO:0035720  BP     5  0 1.0000000000
## GO:0001957  BP     5  0 1.0000000000
## GO:0015705  BP     5  0 1.0000000000
## GO:0009240  BP     5  0 1.0000000000
## GO:0046490  BP     5  0 1.0000000000
## GO:0035873  BP     5  0 1.0000000000
## GO:0015727  BP     5  0 1.0000000000
## GO:0032802  BP     5  0 1.0000000000
## GO:0060480  BP     5  0 1.0000000000
## GO:0071593  BP     5  0 1.0000000000
## GO:0006398  BP     5  0 1.0000000000
## GO:0110104  BP     5  0 1.0000000000
## GO:0098795  BP     5  0 1.0000000000
## GO:0035279  BP     5  0 1.0000000000
## GO:1990481  BP     5  0 1.0000000000
## GO:0038145  BP     5  0 1.0000000000
## GO:0048496  BP     5  0 1.0000000000
## GO:0036438  BP     5  0 1.0000000000
## GO:0072656  BP     5  0 1.0000000000
## GO:0043490  BP     5  0 1.0000000000
## GO:0090598  BP     5  0 1.0000000000
## GO:0048808  BP     5  0 1.0000000000
## GO:0048133  BP     5  0 1.0000000000
## GO:0033024  BP     5  0 1.0000000000
## GO:0060374  BP     5  0 1.0000000000
## GO:0033023  BP     5  0 1.0000000000
## GO:0070662  BP     5  0 1.0000000000
## GO:0060137  BP     5  0 1.0000000000
## GO:0002901  BP     5  0 1.0000000000
## GO:0070197  BP     5  0 1.0000000000
## GO:0051754  BP     5  0 1.0000000000
## GO:0044821  BP     5  0 1.0000000000
## GO:1903232  BP     5  0 1.0000000000
## GO:0086045  BP     5  0 1.0000000000
## GO:0030397  BP     5  0 1.0000000000
## GO:0098914  BP     5  0 1.0000000000
## GO:0072143  BP     5  0 1.0000000000
## GO:0072007  BP     5  0 1.0000000000
## GO:0060916  BP     5  0 1.0000000000
## GO:0072221  BP     5  0 1.0000000000
## GO:0072235  BP     5  0 1.0000000000
## GO:0014005  BP     5  0 1.0000000000
## GO:0002282  BP     5  0 1.0000000000
## GO:1904124  BP     5  0 1.0000000000
## GO:0007494  BP     5  0 1.0000000000
## GO:0072385  BP     5  0 1.0000000000
## GO:0000965  BP     5  0 1.0000000000
## GO:0000957  BP     5  0 1.0000000000
## GO:0035694  BP     5  0 1.0000000000
## GO:0045448  BP     5  0 1.0000000000
## GO:0051256  BP     5  0 1.0000000000
## GO:0003192  BP     5  0 1.0000000000
## GO:0052150  BP     5  0 1.0000000000
## GO:0046462  BP     5  0 1.0000000000
## GO:0070487  BP     5  0 1.0000000000
## GO:0061743  BP     5  0 1.0000000000
## GO:0003150  BP     5  0 1.0000000000
## GO:0014905  BP     5  0 1.0000000000
## GO:0035747  BP     5  0 1.0000000000
## GO:0002325  BP     5  0 1.0000000000
## GO:0106119  BP     5  0 1.0000000000
## GO:2001186  BP     5  0 1.0000000000
## GO:2000002  BP     5  0 1.0000000000
## GO:2000143  BP     5  0 1.0000000000
## GO:0070317  BP     5  0 1.0000000000
## GO:0042997  BP     5  0 1.0000000000
## GO:0045347  BP     5  0 1.0000000000
## GO:1900226  BP     5  0 1.0000000000
## GO:0035021  BP     5  0 1.0000000000
## GO:0010991  BP     5  0 1.0000000000
## GO:0060392  BP     5  0 1.0000000000
## GO:0001915  BP     5  0 1.0000000000
## GO:0070236  BP     5  0 1.0000000000
## GO:0010693  BP     5  0 1.0000000000
## GO:1901877  BP     5  0 1.0000000000
## GO:0055118  BP     5  0 1.0000000000
## GO:0033239  BP     5  0 1.0000000000
## GO:0045541  BP     5  0 1.0000000000
## GO:0090370  BP     5  0 1.0000000000
## GO:0090206  BP     5  0 1.0000000000
## GO:0002740  BP     5  0 1.0000000000
## GO:1900425  BP     5  0 1.0000000000
## GO:0060160  BP     5  0 1.0000000000
## GO:0033602  BP     5  0 1.0000000000
## GO:1903999  BP     5  0 1.0000000000
## GO:1903912  BP     5  0 1.0000000000
## GO:2000697  BP     5  0 1.0000000000
## GO:2000195  BP     5  0 1.0000000000
## GO:0090272  BP     5  0 1.0000000000
## GO:1903976  BP     5  0 1.0000000000
## GO:0031947  BP     5  0 1.0000000000
## GO:0031944  BP     5  0 1.0000000000
## GO:0033132  BP     5  0 1.0000000000
## GO:0045719  BP     5  0 1.0000000000
## GO:2000346  BP     5  0 1.0000000000
## GO:1903300  BP     5  0 1.0000000000
## GO:1901842  BP     5  0 1.0000000000
## GO:1903298  BP     5  0 1.0000000000
## GO:0032304  BP     5  0 1.0000000000
## GO:0033088  BP     5  0 1.0000000000
## GO:0051025  BP     5  0 1.0000000000
## GO:0032687  BP     5  0 1.0000000000
## GO:1902714  BP     5  0 1.0000000000
## GO:0032696  BP     5  0 1.0000000000
## GO:1905077  BP     5  0 1.0000000000
## GO:0045085  BP     5  0 1.0000000000
## GO:0032714  BP     5  0 1.0000000000
## GO:0034760  BP     5  0 1.0000000000
## GO:0034757  BP     5  0 1.0000000000
## GO:0045829  BP     5  0 1.0000000000
## GO:1902744  BP     5  0 1.0000000000
## GO:0090219  BP     5  0 1.0000000000
## GO:0033685  BP     5  0 1.0000000000
## GO:0010936  BP     5  0 1.0000000000
## GO:0002906  BP     5  0 1.0000000000
## GO:0051902  BP     5  0 1.0000000000
## GO:0010637  BP     5  0 1.0000000000
## GO:0045950  BP     5  0 1.0000000000
## GO:0051387  BP     5  0 1.0000000000
## GO:0042483  BP     5  0 1.0000000000
## GO:1903377  BP     5  0 1.0000000000
## GO:0048550  BP     5  0 1.0000000000
## GO:1900045  BP     5  0 1.0000000000
## GO:1902817  BP     5  0 1.0000000000
## GO:1901078  BP     5  0 1.0000000000
## GO:0060266  BP     5  0 1.0000000000
## GO:0010891  BP     5  0 1.0000000000
## GO:1900004  BP     5  0 1.0000000000
## GO:1902572  BP     5  0 1.0000000000
## GO:0014063  BP     5  0 1.0000000000
## GO:0045875  BP     5  0 1.0000000000
## GO:0090155  BP     5  0 1.0000000000
## GO:0032227  BP     5  0 1.0000000000
## GO:2000301  BP     5  0 1.0000000000
## GO:1904506  BP     5  0 1.0000000000
## GO:0034136  BP     5  0 1.0000000000
## GO:1990441  BP     5  0 1.0000000000
## GO:0032911  BP     5  0 1.0000000000
## GO:0010897  BP     5  0 1.0000000000
## GO:1901164  BP     5  0 1.0000000000
## GO:0010957  BP     5  0 1.0000000000
## GO:0072179  BP     5  0 1.0000000000
## GO:0023041  BP     5  0 1.0000000000
## GO:0032898  BP     5  0 1.0000000000
## GO:0014028  BP     5  0 1.0000000000
## GO:0051081  BP     5  0 1.0000000000
## GO:0071033  BP     5  0 1.0000000000
## GO:0043174  BP     5  0 1.0000000000
## GO:0070427  BP     5  0 1.0000000000
## GO:0006297  BP     5  0 1.0000000000
## GO:0071698  BP     5  0 1.0000000000
## GO:0030910  BP     5  0 1.0000000000
## GO:0071699  BP     5  0 1.0000000000
## GO:0097252  BP     5  0 1.0000000000
## GO:0021779  BP     5  0 1.0000000000
## GO:0021778  BP     5  0 1.0000000000
## GO:0035106  BP     5  0 1.0000000000
## GO:0019532  BP     5  0 1.0000000000
## GO:0035513  BP     5  0 1.0000000000
## GO:0032364  BP     5  0 1.0000000000
## GO:0072592  BP     5  0 1.0000000000
## GO:0061205  BP     5  0 1.0000000000
## GO:0035898  BP     5  0 1.0000000000
## GO:0009052  BP     5  0 1.0000000000
## GO:0018057  BP     5  0 1.0000000000
## GO:1990264  BP     5  0 1.0000000000
## GO:1990511  BP     5  0 1.0000000000
## GO:0002317  BP     5  0 1.0000000000
## GO:0035879  BP     5  0 1.0000000000
## GO:0044854  BP     5  0 1.0000000000
## GO:0002904  BP     5  0 1.0000000000
## GO:1905451  BP     5  0 1.0000000000
## GO:1903721  BP     5  0 1.0000000000
## GO:0045345  BP     5  0 1.0000000000
## GO:0033864  BP     5  0 1.0000000000
## GO:0035481  BP     5  0 1.0000000000
## GO:0035022  BP     5  0 1.0000000000
## GO:1900149  BP     5  0 1.0000000000
## GO:0106071  BP     5  0 1.0000000000
## GO:0010694  BP     5  0 1.0000000000
## GO:1900223  BP     5  0 1.0000000000
## GO:0002760  BP     5  0 1.0000000000
## GO:1902512  BP     5  0 1.0000000000
## GO:0060058  BP     5  0 1.0000000000
## GO:1904261  BP     5  0 1.0000000000
## GO:0061047  BP     5  0 1.0000000000
## GO:2000481  BP     5  0 1.0000000000
## GO:1905665  BP     5  0 1.0000000000
## GO:1901896  BP     5  0 1.0000000000
## GO:0060355  BP     5  0 1.0000000000
## GO:2000304  BP     5  0 1.0000000000
## GO:0071651  BP     5  0 1.0000000000
## GO:0002678  BP     5  0 1.0000000000
## GO:2000370  BP     5  0 1.0000000000
## GO:0051464  BP     5  0 1.0000000000
## GO:0010606  BP     5  0 1.0000000000
## GO:1902952  BP     5  0 1.0000000000
## GO:0032077  BP     5  0 1.0000000000
## GO:0060161  BP     5  0 1.0000000000
## GO:1904000  BP     5  0 1.0000000000
## GO:2001137  BP     5  0 1.0000000000
## GO:1905007  BP     5  0 1.0000000000
## GO:2000196  BP     5  0 1.0000000000
## GO:0090271  BP     5  0 1.0000000000
## GO:0002636  BP     5  0 1.0000000000
## GO:2000324  BP     5  0 1.0000000000
## GO:0035948  BP     5  0 1.0000000000
## GO:2000467  BP     5  0 1.0000000000
## GO:0032278  BP     5  0 1.0000000000
## GO:0031284  BP     5  0 1.0000000000
## GO:0048818  BP     5  0 1.0000000000
## GO:1901534  BP     5  0 1.0000000000
## GO:1901843  BP     5  0 1.0000000000
## GO:0071442  BP     5  0 1.0000000000
## GO:1900127  BP     5  0 1.0000000000
## GO:0010726  BP     5  0 1.0000000000
## GO:0033091  BP     5  0 1.0000000000
## GO:0035549  BP     5  0 1.0000000000
## GO:2001184  BP     5  0 1.0000000000
## GO:0032747  BP     5  0 1.0000000000
## GO:1904504  BP     5  0 1.0000000000
## GO:0050747  BP     5  0 1.0000000000
## GO:0010986  BP     5  0 1.0000000000
## GO:0034241  BP     5  0 1.0000000000
## GO:0034184  BP     5  0 1.0000000000
## GO:1903521  BP     5  0 1.0000000000
## GO:1901995  BP     5  0 1.0000000000
## GO:0045636  BP     5  0 1.0000000000
## GO:2000382  BP     5  0 1.0000000000
## GO:0072300  BP     5  0 1.0000000000
## GO:2000576  BP     5  0 1.0000000000
## GO:1905448  BP     5  0 1.0000000000
## GO:0002729  BP     5  0 1.0000000000
## GO:0033031  BP     5  0 1.0000000000
## GO:2001206  BP     5  0 1.0000000000
## GO:0010513  BP     5  0 1.0000000000
## GO:0032430  BP     5  0 1.0000000000
## GO:0010641  BP     5  0 1.0000000000
## GO:1903566  BP     5  0 1.0000000000
## GO:1902474  BP     5  0 1.0000000000
## GO:0032106  BP     5  0 1.0000000000
## GO:0032109  BP     5  0 1.0000000000
## GO:0048386  BP     5  0 1.0000000000
## GO:0060316  BP     5  0 1.0000000000
## GO:0046878  BP     5  0 1.0000000000
## GO:0060298  BP     5  0 1.0000000000
## GO:0072513  BP     5  0 1.0000000000
## GO:0014858  BP     5  0 1.0000000000
## GO:0090154  BP     5  0 1.0000000000
## GO:1905832  BP     5  0 1.0000000000
## GO:0048687  BP     5  0 1.0000000000
## GO:0031632  BP     5  0 1.0000000000
## GO:1902949  BP     5  0 1.0000000000
## GO:0098735  BP     5  0 1.0000000000
## GO:1901165  BP     5  0 1.0000000000
## GO:0035470  BP     5  0 1.0000000000
## GO:0007023  BP     5  0 1.0000000000
## GO:1990709  BP     5  0 1.0000000000
## GO:0060431  BP     5  0 1.0000000000
## GO:0006701  BP     5  0 1.0000000000
## GO:0042701  BP     5  0 1.0000000000
## GO:0006561  BP     5  0 1.0000000000
## GO:0019541  BP     5  0 1.0000000000
## GO:0019230  BP     5  0 1.0000000000
## GO:0035523  BP     5  0 1.0000000000
## GO:0035519  BP     5  0 1.0000000000
## GO:1990592  BP     5  0 1.0000000000
## GO:0018101  BP     5  0 1.0000000000
## GO:0051725  BP     5  0 1.0000000000
## GO:0071947  BP     5  0 1.0000000000
## GO:0033578  BP     5  0 1.0000000000
## GO:0045040  BP     5  0 1.0000000000
## GO:0001844  BP     5  0 1.0000000000
## GO:0097039  BP     5  0 1.0000000000
## GO:0009249  BP     5  0 1.0000000000
## GO:1903361  BP     5  0 1.0000000000
## GO:0071205  BP     5  0 1.0000000000
## GO:0002175  BP     5  0 1.0000000000
## GO:0106035  BP     5  0 1.0000000000
## GO:1990564  BP     5  0 1.0000000000
## GO:0045053  BP     5  0 1.0000000000
## GO:1990743  BP     5  0 1.0000000000
## GO:0035610  BP     5  0 1.0000000000
## GO:0046501  BP     5  0 1.0000000000
## GO:0072014  BP     5  0 1.0000000000
## GO:0072047  BP     5  0 1.0000000000
## GO:0009137  BP     5  0 1.0000000000
## GO:0009181  BP     5  0 1.0000000000
## GO:0009177  BP     5  0 1.0000000000
## GO:0009211  BP     5  0 1.0000000000
## GO:0046133  BP     5  0 1.0000000000
## GO:0019805  BP     5  0 1.0000000000
## GO:0031118  BP     5  0 1.0000000000
## GO:0051029  BP     5  0 1.0000000000
## GO:0090118  BP     5  0 1.0000000000
## GO:0043654  BP     5  0 1.0000000000
## GO:1905462  BP     5  0 1.0000000000
## GO:0031554  BP     5  0 1.0000000000
## GO:0045343  BP     5  0 1.0000000000
## GO:1902031  BP     5  0 1.0000000000
## GO:0051140  BP     5  0 1.0000000000
## GO:0035480  BP     5  0 1.0000000000
## GO:2000523  BP     5  0 1.0000000000
## GO:0050812  BP     5  0 1.0000000000
## GO:0002786  BP     5  0 1.0000000000
## GO:0002580  BP     5  0 1.0000000000
## GO:0002784  BP     5  0 1.0000000000
## GO:0009786  BP     5  0 1.0000000000
## GO:0098910  BP     5  0 1.0000000000
## GO:0048690  BP     5  0 1.0000000000
## GO:2000812  BP     5  0 1.0000000000
## GO:1904259  BP     5  0 1.0000000000
## GO:0110011  BP     5  0 1.0000000000
## GO:0060762  BP     5  0 1.0000000000
## GO:0060665  BP     5  0 1.0000000000
## GO:1901876  BP     5  0 1.0000000000
## GO:0098909  BP     5  0 1.0000000000
## GO:0032847  BP     5  0 1.0000000000
## GO:1900034  BP     5  0 1.0000000000
## GO:1903972  BP     5  0 1.0000000000
## GO:1903722  BP     5  0 1.0000000000
## GO:0060623  BP     5  0 1.0000000000
## GO:0071922  BP     5  0 1.0000000000
## GO:1904026  BP     5  0 1.0000000000
## GO:0051342  BP     5  0 1.0000000000
## GO:1903224  BP     5  0 1.0000000000
## GO:1903371  BP     5  0 1.0000000000
## GO:0051036  BP     5  0 1.0000000000
## GO:1901509  BP     5  0 1.0000000000
## GO:2000535  BP     5  0 1.0000000000
## GO:1905333  BP     5  0 1.0000000000
## GO:0060398  BP     5  0 1.0000000000
## GO:0046984  BP     5  0 1.0000000000
## GO:2001166  BP     5  0 1.0000000000
## GO:1903297  BP     5  0 1.0000000000
## GO:0106014  BP     5  0 1.0000000000
## GO:0045113  BP     5  0 1.0000000000
## GO:0045354  BP     5  0 1.0000000000
## GO:0035547  BP     5  0 1.0000000000
## GO:0045074  BP     5  0 1.0000000000
## GO:1902218  BP     5  0 1.0000000000
## GO:1901979  BP     5  0 1.0000000000
## GO:1904502  BP     5  0 1.0000000000
## GO:0032803  BP     5  0 1.0000000000
## GO:1903519  BP     5  0 1.0000000000
## GO:0033025  BP     5  0 1.0000000000
## GO:0070666  BP     5  0 1.0000000000
## GO:0002905  BP     5  0 1.0000000000
## GO:1900825  BP     5  0 1.0000000000
## GO:1903525  BP     5  0 1.0000000000
## GO:0043380  BP     5  0 1.0000000000
## GO:1904139  BP     5  0 1.0000000000
## GO:0010968  BP     5  0 1.0000000000
## GO:1904956  BP     5  0 1.0000000000
## GO:0009794  BP     5  0 1.0000000000
## GO:1902412  BP     5  0 1.0000000000
## GO:0014735  BP     5  0 1.0000000000
## GO:2000501  BP     5  0 1.0000000000
## GO:0032826  BP     5  0 1.0000000000
## GO:2000325  BP     5  0 1.0000000000
## GO:0070432  BP     5  0 1.0000000000
## GO:0070424  BP     5  0 1.0000000000
## GO:0090289  BP     5  0 1.0000000000
## GO:0060278  BP     5  0 1.0000000000
## GO:2000275  BP     5  0 1.0000000000
## GO:1902308  BP     5  0 1.0000000000
## GO:2001245  BP     5  0 1.0000000000
## GO:1900736  BP     5  0 1.0000000000
## GO:0060696  BP     5  0 1.0000000000
## GO:2000583  BP     5  0 1.0000000000
## GO:1902267  BP     5  0 1.0000000000
## GO:1902498  BP     5  0 1.0000000000
## GO:1903059  BP     5  0 1.0000000000
## GO:1902816  BP     5  0 1.0000000000
## GO:1902525  BP     5  0 1.0000000000
## GO:2000434  BP     5  0 1.0000000000
## GO:1900133  BP     5  0 1.0000000000
## GO:1903969  BP     5  0 1.0000000000
## GO:0090259  BP     5  0 1.0000000000
## GO:0061088  BP     5  0 1.0000000000
## GO:1900003  BP     5  0 1.0000000000
## GO:1902571  BP     5  0 1.0000000000
## GO:1904347  BP     5  0 1.0000000000
## GO:1903276  BP     5  0 1.0000000000
## GO:2000118  BP     5  0 1.0000000000
## GO:0150003  BP     5  0 1.0000000000
## GO:0062028  BP     5  0 1.0000000000
## GO:0008582  BP     5  0 1.0000000000
## GO:0001978  BP     5  0 1.0000000000
## GO:0001992  BP     5  0 1.0000000000
## GO:1904505  BP     5  0 1.0000000000
## GO:2000224  BP     5  0 1.0000000000
## GO:2000410  BP     5  0 1.0000000000
## GO:2000609  BP     5  0 1.0000000000
## GO:0002155  BP     5  0 1.0000000000
## GO:0051884  BP     5  0 1.0000000000
## GO:0060164  BP     5  0 1.0000000000
## GO:0046015  BP     5  0 1.0000000000
## GO:0014724  BP     5  0 1.0000000000
## GO:0106020  BP     5  0 1.0000000000
## GO:0048209  BP     5  0 1.0000000000
## GO:1901608  BP     5  0 1.0000000000
## GO:0070295  BP     5  0 1.0000000000
## GO:0072344  BP     5  0 1.0000000000
## GO:0061476  BP     5  0 1.0000000000
## GO:0072718  BP     5  0 1.0000000000
## GO:0009750  BP     5  0 1.0000000000
## GO:0071680  BP     5  0 1.0000000000
## GO:0070669  BP     5  0 1.0000000000
## GO:0036015  BP     5  0 1.0000000000
## GO:1904636  BP     5  0 1.0000000000
## GO:0002238  BP     5  0 1.0000000000
## GO:0014873  BP     5  0 1.0000000000
## GO:0032571  BP     5  0 1.0000000000
## GO:0061304  BP     5  0 1.0000000000
## GO:0098942  BP     5  0 1.0000000000
## GO:0090677  BP     5  0 1.0000000000
## GO:0009188  BP     5  0 1.0000000000
## GO:0090666  BP     5  0 1.0000000000
## GO:0061056  BP     5  0 1.0000000000
## GO:0050915  BP     5  0 1.0000000000
## GO:0032329  BP     5  0 1.0000000000
## GO:0015739  BP     5  0 1.0000000000
## GO:0097503  BP     5  0 1.0000000000
## GO:0003163  BP     5  0 1.0000000000
## GO:0014734  BP     5  0 1.0000000000
## GO:0014834  BP     5  0 1.0000000000
## GO:1990770  BP     5  0 1.0000000000
## GO:0060083  BP     5  0 1.0000000000
## GO:0040031  BP     5  0 1.0000000000
## GO:0048254  BP     5  0 1.0000000000
## GO:0060023  BP     5  0 1.0000000000
## GO:0002568  BP     5  0 1.0000000000
## GO:0002681  BP     5  0 1.0000000000
## GO:0065001  BP     5  0 1.0000000000
## GO:0072081  BP     5  0 1.0000000000
## GO:0030382  BP     5  0 1.0000000000
## GO:0007290  BP     5  0 1.0000000000
## GO:0008295  BP     5  0 1.0000000000
## GO:0003376  BP     5  0 1.0000000000
## GO:0000393  BP     5  0 1.0000000000
## GO:0042148  BP     5  0 1.0000000000
## GO:0035617  BP     5  0 1.0000000000
## GO:0015744  BP     5  0 1.0000000000
## GO:0016191  BP     5  0 1.0000000000
## GO:0031119  BP     5  0 1.0000000000
## GO:0034227  BP     5  0 1.0000000000
## GO:0051031  BP     5  0 1.0000000000
## GO:0006363  BP     5  0 1.0000000000
## GO:0033015  BP     5  0 1.0000000000
## GO:0050955  BP     5  0 1.0000000000
## GO:0006567  BP     5  0 1.0000000000
## GO:0038163  BP     5  0 1.0000000000
## GO:0070460  BP     5  0 1.0000000000
## GO:0044691  BP     5  0 1.0000000000
## GO:0009403  BP     5  0 1.0000000000
## GO:0009407  BP     5  0 1.0000000000
## GO:0019087  BP     5  0 1.0000000000
## GO:0032197  BP     5  0 1.0000000000
## GO:0019346  BP     5  0 1.0000000000
## GO:0061551  BP     5  0 1.0000000000
## GO:0021636  BP     5  0 1.0000000000
## GO:0021637  BP     5  0 1.0000000000
## GO:0001834  BP     5  0 1.0000000000
## GO:0019441  BP     5  0 1.0000000000
## GO:0006572  BP     5  0 1.0000000000
## GO:0070086  BP     5  0 1.0000000000
## GO:0097466  BP     5  0 1.0000000000
## GO:0090611  BP     5  0 1.0000000000
## GO:0072193  BP     5  0 1.0000000000
## GO:0072191  BP     5  0 1.0000000000
## GO:0060157  BP     5  0 1.0000000000
## GO:0034447  BP     5  0 1.0000000000
## GO:0030050  BP     5  0 1.0000000000
## GO:0060005  BP     5  0 1.0000000000
## GO:0075525  BP     5  0 1.0000000000
## GO:0006776  BP     5  0 1.0000000000
## GO:0070640  BP     5  0 1.0000000000
## GO:0009115  BP     5  0 1.0000000000
## GO:0007354  BP     5  0 1.0000000000
## GO:0006207  BP     6  0 1.0000000000
## GO:0050427  BP     6  0 1.0000000000
## GO:0006167  BP     6  0 1.0000000000
## GO:0002326  BP     6  0 1.0000000000
## GO:0002322  BP     6  0 1.0000000000
## GO:0001923  BP     6  0 1.0000000000
## GO:0061312  BP     6  0 1.0000000000
## GO:0006501  BP     6  0 1.0000000000
## GO:0006975  BP     6  0 1.0000000000
## GO:0006307  BP     6  0 1.0000000000
## GO:0015074  BP     6  0 1.0000000000
## GO:0044806  BP     6  0 1.0000000000
## GO:0046037  BP     6  0 1.0000000000
## GO:0090166  BP     6  0 1.0000000000
## GO:0015808  BP     6  0 1.0000000000
## GO:1903400  BP     6  0 1.0000000000
## GO:0006777  BP     6  0 1.0000000000
## GO:0019720  BP     6  0 1.0000000000
## GO:0019262  BP     6  0 1.0000000000
## GO:0006498  BP     6  0 1.0000000000
## GO:0097114  BP     6  0 1.0000000000
## GO:0070898  BP     6  0 1.0000000000
## GO:0006048  BP     6  0 1.0000000000
## GO:0014055  BP     6  0 1.0000000000
## GO:0000147  BP     6  0 1.0000000000
## GO:0051666  BP     6  0 1.0000000000
## GO:0044396  BP     6  0 1.0000000000
## GO:0008635  BP     6  0 1.0000000000
## GO:0031584  BP     6  0 1.0000000000
## GO:0032237  BP     6  0 1.0000000000
## GO:0000915  BP     6  0 1.0000000000
## GO:0044837  BP     6  0 1.0000000000
## GO:0070162  BP     6  0 1.0000000000
## GO:0019401  BP     6  0 1.0000000000
## GO:0097647  BP     6  0 1.0000000000
## GO:0006702  BP     6  0 1.0000000000
## GO:0021960  BP     6  0 1.0000000000
## GO:0098937  BP     6  0 1.0000000000
## GO:0071839  BP     6  0 1.0000000000
## GO:1902262  BP     6  0 1.0000000000
## GO:0003278  BP     6  0 1.0000000000
## GO:0006526  BP     6  0 1.0000000000
## GO:1903826  BP     6  0 1.0000000000
## GO:0015801  BP     6  0 1.0000000000
## GO:0060842  BP     6  0 1.0000000000
## GO:0000912  BP     6  0 1.0000000000
## GO:0055059  BP     6  0 1.0000000000
## GO:0009912  BP     6  0 1.0000000000
## GO:0075071  BP     6  0 1.0000000000
## GO:0075044  BP     6  0 1.0000000000
## GO:0048677  BP     6  0 1.0000000000
## GO:1990822  BP     6  0 1.0000000000
## GO:0032782  BP     6  0 1.0000000000
## GO:0010815  BP     6  0 1.0000000000
## GO:0060751  BP     6  0 1.0000000000
## GO:0021785  BP     6  0 1.0000000000
## GO:0086073  BP     6  0 1.0000000000
## GO:1990036  BP     6  0 1.0000000000
## GO:0015722  BP     6  0 1.0000000000
## GO:0044340  BP     6  0 1.0000000000
## GO:0009756  BP     6  0 1.0000000000
## GO:0060920  BP     6  0 1.0000000000
## GO:0015879  BP     6  0 1.0000000000
## GO:0044278  BP     6  0 1.0000000000
## GO:0071494  BP     6  0 1.0000000000
## GO:0071221  BP     6  0 1.0000000000
## GO:0071220  BP     6  0 1.0000000000
## GO:0071321  BP     6  0 1.0000000000
## GO:0071350  BP     6  0 1.0000000000
## GO:0071499  BP     6  0 1.0000000000
## GO:0071286  BP     6  0 1.0000000000
## GO:0071287  BP     6  0 1.0000000000
## GO:0071316  BP     6  0 1.0000000000
## GO:0071500  BP     6  0 1.0000000000
## GO:0071224  BP     6  0 1.0000000000
## GO:1902075  BP     6  0 1.0000000000
## GO:0009992  BP     6  0 1.0000000000
## GO:0061511  BP     6  0 1.0000000000
## GO:0021937  BP     6  0 1.0000000000
## GO:0021853  BP     6  0 1.0000000000
## GO:0035926  BP     6  0 1.0000000000
## GO:0061643  BP     6  0 1.0000000000
## GO:0019695  BP     6  0 1.0000000000
## GO:0015871  BP     6  0 1.0000000000
## GO:0060718  BP     6  0 1.0000000000
## GO:0034382  BP     6  0 1.0000000000
## GO:0042746  BP     6  0 1.0000000000
## GO:0015746  BP     6  0 1.0000000000
## GO:0006824  BP     6  0 1.0000000000
## GO:0051182  BP     6  0 1.0000000000
## GO:0071921  BP     6  0 1.0000000000
## GO:0072049  BP     6  0 1.0000000000
## GO:0007182  BP     6  0 1.0000000000
## GO:0002248  BP     6  0 1.0000000000
## GO:0035434  BP     6  0 1.0000000000
## GO:0043400  BP     6  0 1.0000000000
## GO:0007619  BP     6  0 1.0000000000
## GO:0061550  BP     6  0 1.0000000000
## GO:0009214  BP     6  0 1.0000000000
## GO:0016554  BP     6  0 1.0000000000
## GO:0007016  BP     6  0 1.0000000000
## GO:0046070  BP     6  0 1.0000000000
## GO:0098963  BP     6  0 1.0000000000
## GO:0098961  BP     6  0 1.0000000000
## GO:0009186  BP     6  0 1.0000000000
## GO:0071910  BP     6  0 1.0000000000
## GO:0010273  BP     6  0 1.0000000000
## GO:0048852  BP     6  0 1.0000000000
## GO:0005984  BP     6  0 1.0000000000
## GO:0042420  BP     6  0 1.0000000000
## GO:0036514  BP     6  0 1.0000000000
## GO:1990791  BP     6  0 1.0000000000
## GO:0045002  BP     6  0 1.0000000000
## GO:0097070  BP     6  0 1.0000000000
## GO:0001705  BP     6  0 1.0000000000
## GO:0010668  BP     6  0 1.0000000000
## GO:0060956  BP     6  0 1.0000000000
## GO:0090500  BP     6  0 1.0000000000
## GO:0000447  BP     6  0 1.0000000000
## GO:0061817  BP     6  0 1.0000000000
## GO:0035635  BP     6  0 1.0000000000
## GO:0043307  BP     6  0 1.0000000000
## GO:0060684  BP     6  0 1.0000000000
## GO:0014045  BP     6  0 1.0000000000
## GO:0006703  BP     6  0 1.0000000000
## GO:0006069  BP     6  0 1.0000000000
## GO:0046949  BP     6  0 1.0000000000
## GO:0042699  BP     6  0 1.0000000000
## GO:0021869  BP     6  0 1.0000000000
## GO:0006003  BP     6  0 1.0000000000
## GO:0006004  BP     6  0 1.0000000000
## GO:0061197  BP     6  0 1.0000000000
## GO:0035483  BP     6  0 1.0000000000
## GO:0035860  BP     6  0 1.0000000000
## GO:0072104  BP     6  0 1.0000000000
## GO:0072103  BP     6  0 1.0000000000
## GO:0010255  BP     6  0 1.0000000000
## GO:0061535  BP     6  0 1.0000000000
## GO:0046476  BP     6  0 1.0000000000
## GO:0046487  BP     6  0 1.0000000000
## GO:0060789  BP     6  0 1.0000000000
## GO:0060022  BP     6  0 1.0000000000
## GO:0009757  BP     6  0 1.0000000000
## GO:0071557  BP     6  0 1.0000000000
## GO:0034773  BP     6  0 1.0000000000
## GO:0016576  BP     6  0 1.0000000000
## GO:0035405  BP     6  0 1.0000000000
## GO:0070813  BP     6  0 1.0000000000
## GO:0052805  BP     6  0 1.0000000000
## GO:0033152  BP     6  0 1.0000000000
## GO:0090715  BP     6  0 1.0000000000
## GO:0060120  BP     6  0 1.0000000000
## GO:0045112  BP     6  0 1.0000000000
## GO:0010496  BP     6  0 1.0000000000
## GO:0035723  BP     6  0 1.0000000000
## GO:0035655  BP     6  0 1.0000000000
## GO:0072602  BP     6  0 1.0000000000
## GO:1904936  BP     6  0 1.0000000000
## GO:0060729  BP     6  0 1.0000000000
## GO:0051454  BP     6  0 1.0000000000
## GO:0036481  BP     6  0 1.0000000000
## GO:1902774  BP     6  0 1.0000000000
## GO:0000237  BP     6  0 1.0000000000
## GO:0002232  BP     6  0 1.0000000000
## GO:0061724  BP     6  0 1.0000000000
## GO:0060481  BP     6  0 1.0000000000
## GO:0051661  BP     6  0 1.0000000000
## GO:0035633  BP     6  0 1.0000000000
## GO:0060745  BP     6  0 1.0000000000
## GO:0060744  BP     6  0 1.0000000000
## GO:0032762  BP     6  0 1.0000000000
## GO:0042256  BP     6  0 1.0000000000
## GO:0051792  BP     6  0 1.0000000000
## GO:0031293  BP     6  0 1.0000000000
## GO:0043379  BP     6  0 1.0000000000
## GO:0008078  BP     6  0 1.0000000000
## GO:0072177  BP     6  0 1.0000000000
## GO:0072257  BP     6  0 1.0000000000
## GO:0072174  BP     6  0 1.0000000000
## GO:0014004  BP     6  0 1.0000000000
## GO:0051415  BP     6  0 1.0000000000
## GO:0051013  BP     6  0 1.0000000000
## GO:0043504  BP     6  0 1.0000000000
## GO:0033615  BP     6  0 1.0000000000
## GO:0000022  BP     6  0 1.0000000000
## GO:0044789  BP     6  0 1.0000000000
## GO:0052433  BP     6  0 1.0000000000
## GO:0052040  BP     6  0 1.0000000000
## GO:0044532  BP     6  0 1.0000000000
## GO:0044531  BP     6  0 1.0000000000
## GO:0052248  BP     6  0 1.0000000000
## GO:0097475  BP     6  0 1.0000000000
## GO:0044803  BP     6  0 1.0000000000
## GO:0002372  BP     6  0 1.0000000000
## GO:0002370  BP     6  0 1.0000000000
## GO:0097064  BP     6  0 1.0000000000
## GO:0097527  BP     6  0 1.0000000000
## GO:0052405  BP     6  0 1.0000000000
## GO:0034316  BP     6  0 1.0000000000
## GO:0032792  BP     6  0 1.0000000000
## GO:1903026  BP     6  0 1.0000000000
## GO:2000405  BP     6  0 1.0000000000
## GO:0002826  BP     6  0 1.0000000000
## GO:0045629  BP     6  0 1.0000000000
## GO:0003308  BP     6  0 1.0000000000
## GO:0002865  BP     6  0 1.0000000000
## GO:0010360  BP     6  0 1.0000000000
## GO:0071866  BP     6  0 1.0000000000
## GO:0010754  BP     6  0 1.0000000000
## GO:1901895  BP     6  0 1.0000000000
## GO:1903243  BP     6  0 1.0000000000
## GO:1901723  BP     6  0 1.0000000000
## GO:0070100  BP     6  0 1.0000000000
## GO:0010887  BP     6  0 1.0000000000
## GO:0002677  BP     6  0 1.0000000000
## GO:2001268  BP     6  0 1.0000000000
## GO:0032466  BP     6  0 1.0000000000
## GO:0031999  BP     6  0 1.0000000000
## GO:0003105  BP     6  0 1.0000000000
## GO:0070093  BP     6  0 1.0000000000
## GO:2000323  BP     6  0 1.0000000000
## GO:0051572  BP     6  0 1.0000000000
## GO:0090241  BP     6  0 1.0000000000
## GO:0033087  BP     6  0 1.0000000000
## GO:0060336  BP     6  0 1.0000000000
## GO:2000483  BP     6  0 1.0000000000
## GO:0051005  BP     6  0 1.0000000000
## GO:2000110  BP     6  0 1.0000000000
## GO:0045650  BP     6  0 1.0000000000
## GO:0043305  BP     6  0 1.0000000000
## GO:1904180  BP     6  0 1.0000000000
## GO:1905049  BP     6  0 1.0000000000
## GO:0051562  BP     6  0 1.0000000000
## GO:0090258  BP     6  0 1.0000000000
## GO:0035795  BP     6  0 1.0000000000
## GO:1901525  BP     6  0 1.0000000000
## GO:0044362  BP     6  0 1.0000000000
## GO:0052204  BP     6  0 1.0000000000
## GO:0090027  BP     6  0 1.0000000000
## GO:2000672  BP     6  0 1.0000000000
## GO:0035509  BP     6  0 1.0000000000
## GO:0014043  BP     6  0 1.0000000000
## GO:0051771  BP     6  0 1.0000000000
## GO:1900194  BP     6  0 1.0000000000
## GO:0090188  BP     6  0 1.0000000000
## GO:1902083  BP     6  0 1.0000000000
## GO:0010757  BP     6  0 1.0000000000
## GO:0046826  BP     6  0 1.0000000000
## GO:0090315  BP     6  0 1.0000000000
## GO:1903215  BP     6  0 1.0000000000
## GO:0010871  BP     6  0 1.0000000000
## GO:0045590  BP     6  0 1.0000000000
## GO:0060331  BP     6  0 1.0000000000
## GO:1900028  BP     6  0 1.0000000000
## GO:0060315  BP     6  0 1.0000000000
## GO:1901621  BP     6  0 1.0000000000
## GO:0090032  BP     6  0 1.0000000000
## GO:0051964  BP     6  0 1.0000000000
## GO:0031914  BP     6  0 1.0000000000
## GO:1902804  BP     6  0 1.0000000000
## GO:0034242  BP     6  0 1.0000000000
## GO:0032055  BP     6  0 1.0000000000
## GO:1904428  BP     6  0 1.0000000000
## GO:0042536  BP     6  0 1.0000000000
## GO:2000675  BP     6  0 1.0000000000
## GO:1904753  BP     6  0 1.0000000000
## GO:1905563  BP     6  0 1.0000000000
## GO:0031339  BP     6  0 1.0000000000
## GO:0046137  BP     6  0 1.0000000000
## GO:0021999  BP     6  0 1.0000000000
## GO:0045213  BP     6  0 1.0000000000
## GO:0019740  BP     6  0 1.0000000000
## GO:0038031  BP     6  0 1.0000000000
## GO:0003357  BP     6  0 1.0000000000
## GO:0071763  BP     6  0 1.0000000000
## GO:0071029  BP     6  0 1.0000000000
## GO:0071046  BP     6  0 1.0000000000
## GO:0071035  BP     6  0 1.0000000000
## GO:0071038  BP     6  0 1.0000000000
## GO:0031086  BP     6  0 1.0000000000
## GO:0033869  BP     6  0 1.0000000000
## GO:0071895  BP     6  0 1.0000000000
## GO:0008228  BP     6  0 1.0000000000
## GO:0021631  BP     6  0 1.0000000000
## GO:0002051  BP     6  0 1.0000000000
## GO:0061734  BP     6  0 1.0000000000
## GO:0009253  BP     6  0 1.0000000000
## GO:0000270  BP     6  0 1.0000000000
## GO:0018120  BP     6  0 1.0000000000
## GO:0019919  BP     6  0 1.0000000000
## GO:0017183  BP     6  0 1.0000000000
## GO:0017182  BP     6  0 1.0000000000
## GO:1904238  BP     6  0 1.0000000000
## GO:0090383  BP     6  0 1.0000000000
## GO:0034638  BP     6  0 1.0000000000
## GO:0003402  BP     6  0 1.0000000000
## GO:1904938  BP     6  0 1.0000000000
## GO:0035790  BP     6  0 1.0000000000
## GO:0040038  BP     6  0 1.0000000000
## GO:1902047  BP     6  0 1.0000000000
## GO:0015846  BP     6  0 1.0000000000
## GO:0006798  BP     6  0 1.0000000000
## GO:0006797  BP     6  0 1.0000000000
## GO:0044791  BP     6  0 1.0000000000
## GO:1903626  BP     6  0 1.0000000000
## GO:1903071  BP     6  0 1.0000000000
## GO:0090080  BP     6  0 1.0000000000
## GO:0051138  BP     6  0 1.0000000000
## GO:0046833  BP     6  0 1.0000000000
## GO:2000556  BP     6  0 1.0000000000
## GO:2000321  BP     6  0 1.0000000000
## GO:1903116  BP     6  0 1.0000000000
## GO:2000210  BP     6  0 1.0000000000
## GO:2000427  BP     6  0 1.0000000000
## GO:0090238  BP     6  0 1.0000000000
## GO:0051987  BP     6  0 1.0000000000
## GO:1901098  BP     6  0 1.0000000000
## GO:0051891  BP     6  0 1.0000000000
## GO:0046601  BP     6  0 1.0000000000
## GO:0002606  BP     6  0 1.0000000000
## GO:0038033  BP     6  0 1.0000000000
## GO:1901552  BP     6  0 1.0000000000
## GO:1903142  BP     6  0 1.0000000000
## GO:0045925  BP     6  0 1.0000000000
## GO:0046645  BP     6  0 1.0000000000
## GO:0045588  BP     6  0 1.0000000000
## GO:2000851  BP     6  0 1.0000000000
## GO:0033133  BP     6  0 1.0000000000
## GO:1901321  BP     6  0 1.0000000000
## GO:0051096  BP     6  0 1.0000000000
## GO:1902035  BP     6  0 1.0000000000
## GO:2000491  BP     6  0 1.0000000000
## GO:0090240  BP     6  0 1.0000000000
## GO:1901727  BP     6  0 1.0000000000
## GO:0033184  BP     6  0 1.0000000000
## GO:0034112  BP     6  0 1.0000000000
## GO:0002925  BP     6  0 1.0000000000
## GO:1905206  BP     6  0 1.0000000000
## GO:0090261  BP     6  0 1.0000000000
## GO:0032962  BP     6  0 1.0000000000
## GO:0032730  BP     6  0 1.0000000000
## GO:0050725  BP     6  0 1.0000000000
## GO:2001181  BP     6  0 1.0000000000
## GO:0032741  BP     6  0 1.0000000000
## GO:2000664  BP     6  0 1.0000000000
## GO:0048298  BP     6  0 1.0000000000
## GO:2000394  BP     6  0 1.0000000000
## GO:1903238  BP     6  0 1.0000000000
## GO:0034093  BP     6  0 1.0000000000
## GO:0060903  BP     6  0 1.0000000000
## GO:2000630  BP     6  0 1.0000000000
## GO:1904528  BP     6  0 1.0000000000
## GO:0002735  BP     6  0 1.0000000000
## GO:1904398  BP     6  0 1.0000000000
## GO:0010701  BP     6  0 1.0000000000
## GO:0010571  BP     6  0 1.0000000000
## GO:0032075  BP     6  0 1.0000000000
## GO:0042488  BP     6  0 1.0000000000
## GO:0070447  BP     6  0 1.0000000000
## GO:1900086  BP     6  0 1.0000000000
## GO:0048549  BP     6  0 1.0000000000
## GO:0010756  BP     6  0 1.0000000000
## GO:0010572  BP     6  0 1.0000000000
## GO:1903334  BP     6  0 1.0000000000
## GO:1904778  BP     6  0 1.0000000000
## GO:1904751  BP     6  0 1.0000000000
## GO:2000646  BP     6  0 1.0000000000
## GO:0060267  BP     6  0 1.0000000000
## GO:0048633  BP     6  0 1.0000000000
## GO:0043415  BP     6  0 1.0000000000
## GO:0070245  BP     6  0 1.0000000000
## GO:0034165  BP     6  0 1.0000000000
## GO:0070172  BP     6  0 1.0000000000
## GO:0061408  BP     6  0 1.0000000000
## GO:0061419  BP     6  0 1.0000000000
## GO:1901228  BP     6  0 1.0000000000
## GO:0007221  BP     6  0 1.0000000000
## GO:0032914  BP     6  0 1.0000000000
## GO:0032056  BP     6  0 1.0000000000
## GO:2000676  BP     6  0 1.0000000000
## GO:1900748  BP     6  0 1.0000000000
## GO:1905065  BP     6  0 1.0000000000
## GO:0048597  BP     6  0 1.0000000000
## GO:0035166  BP     6  0 1.0000000000
## GO:0031204  BP     6  0 1.0000000000
## GO:1901162  BP     6  0 1.0000000000
## GO:0060319  BP     6  0 1.0000000000
## GO:0035524  BP     6  0 1.0000000000
## GO:0035608  BP     6  0 1.0000000000
## GO:0045046  BP     6  0 1.0000000000
## GO:1903044  BP     6  0 1.0000000000
## GO:1903546  BP     6  0 1.0000000000
## GO:0022417  BP     6  0 1.0000000000
## GO:0006477  BP     6  0 1.0000000000
## GO:0071569  BP     6  0 1.0000000000
## GO:0009217  BP     6  0 1.0000000000
## GO:0034034  BP     6  0 1.0000000000
## GO:0032261  BP     6  0 1.0000000000
## GO:0009446  BP     6  0 1.0000000000
## GO:0019364  BP     6  0 1.0000000000
## GO:0009176  BP     6  0 1.0000000000
## GO:0072531  BP     6  0 1.0000000000
## GO:0046874  BP     6  0 1.0000000000
## GO:0002023  BP     6  0 1.0000000000
## GO:0046719  BP     6  0 1.0000000000
## GO:2000348  BP     6  0 1.0000000000
## GO:0043376  BP     6  0 1.0000000000
## GO:0032489  BP     6  0 1.0000000000
## GO:0030174  BP     6  0 1.0000000000
## GO:1903719  BP     6  0 1.0000000000
## GO:1903894  BP     6  0 1.0000000000
## GO:0002036  BP     6  0 1.0000000000
## GO:0039533  BP     6  0 1.0000000000
## GO:2000298  BP     6  0 1.0000000000
## GO:0010990  BP     6  0 1.0000000000
## GO:2000407  BP     6  0 1.0000000000
## GO:2000554  BP     6  0 1.0000000000
## GO:0014056  BP     6  0 1.0000000000
## GO:0070163  BP     6  0 1.0000000000
## GO:0071865  BP     6  0 1.0000000000
## GO:0031133  BP     6  0 1.0000000000
## GO:0002034  BP     6  0 1.0000000000
## GO:1900157  BP     6  0 1.0000000000
## GO:0060687  BP     6  0 1.0000000000
## GO:0051940  BP     6  0 1.0000000000
## GO:2001286  BP     6  0 1.0000000000
## GO:0010649  BP     6  0 1.0000000000
## GO:0060620  BP     6  0 1.0000000000
## GO:0060296  BP     6  0 1.0000000000
## GO:0060295  BP     6  0 1.0000000000
## GO:1902019  BP     6  0 1.0000000000
## GO:0010840  BP     6  0 1.0000000000
## GO:1905203  BP     6  0 1.0000000000
## GO:2000064  BP     6  0 1.0000000000
## GO:0051462  BP     6  0 1.0000000000
## GO:1904959  BP     6  0 1.0000000000
## GO:2000015  BP     6  0 1.0000000000
## GO:0051584  BP     6  0 1.0000000000
## GO:0070173  BP     6  0 1.0000000000
## GO:2000416  BP     6  0 1.0000000000
## GO:1905005  BP     6  0 1.0000000000
## GO:1903551  BP     6  0 1.0000000000
## GO:2000977  BP     6  0 1.0000000000
## GO:2000821  BP     6  0 1.0000000000
## GO:0000414  BP     6  0 1.0000000000
## GO:0031585  BP     6  0 1.0000000000
## GO:0050705  BP     6  0 1.0000000000
## GO:0050722  BP     6  0 1.0000000000
## GO:2000659  BP     6  0 1.0000000000
## GO:0034759  BP     6  0 1.0000000000
## GO:0090325  BP     6  0 1.0000000000
## GO:1905165  BP     6  0 1.0000000000
## GO:0010793  BP     6  0 1.0000000000
## GO:0034239  BP     6  0 1.0000000000
## GO:0071640  BP     6  0 1.0000000000
## GO:0098902  BP     6  0 1.0000000000
## GO:1904683  BP     6  0 1.0000000000
## GO:0072298  BP     6  0 1.0000000000
## GO:0072307  BP     6  0 1.0000000000
## GO:1905446  BP     6  0 1.0000000000
## GO:1901858  BP     6  0 1.0000000000
## GO:0002733  BP     6  0 1.0000000000
## GO:0002727  BP     6  0 1.0000000000
## GO:0070948  BP     6  0 1.0000000000
## GO:1900239  BP     6  0 1.0000000000
## GO:0060304  BP     6  0 1.0000000000
## GO:0010746  BP     6  0 1.0000000000
## GO:0099566  BP     6  0 1.0000000000
## GO:0060685  BP     6  0 1.0000000000
## GO:0099576  BP     6  0 1.0000000000
## GO:1905634  BP     6  0 1.0000000000
## GO:0060264  BP     6  0 1.0000000000
## GO:0046668  BP     6  0 1.0000000000
## GO:0051611  BP     6  0 1.0000000000
## GO:0071671  BP     6  0 1.0000000000
## GO:0032415  BP     6  0 1.0000000000
## GO:1904672  BP     6  0 1.0000000000
## GO:0090273  BP     6  0 1.0000000000
## GO:0048686  BP     6  0 1.0000000000
## GO:2000909  BP     6  0 1.0000000000
## GO:0099179  BP     6  0 1.0000000000
## GO:0003100  BP     6  0 1.0000000000
## GO:1904429  BP     6  0 1.0000000000
## GO:0006449  BP     6  0 1.0000000000
## GO:2000074  BP     6  0 1.0000000000
## GO:0061043  BP     6  0 1.0000000000
## GO:0070562  BP     6  0 1.0000000000
## GO:1903689  BP     6  0 1.0000000000
## GO:0003072  BP     6  0 1.0000000000
## GO:0003096  BP     6  0 1.0000000000
## GO:1990414  BP     6  0 1.0000000000
## GO:0001302  BP     6  0 1.0000000000
## GO:0070339  BP     6  0 1.0000000000
## GO:1901563  BP     6  0 1.0000000000
## GO:0052173  BP     6  0 1.0000000000
## GO:0014894  BP     6  0 1.0000000000
## GO:1904587  BP     6  0 1.0000000000
## GO:0075136  BP     6  0 1.0000000000
## GO:0052200  BP     6  0 1.0000000000
## GO:0055093  BP     6  0 1.0000000000
## GO:0035902  BP     6  0 1.0000000000
## GO:0014854  BP     6  0 1.0000000000
## GO:0070671  BP     6  0 1.0000000000
## GO:0034616  BP     6  0 1.0000000000
## GO:0009642  BP     6  0 1.0000000000
## GO:0014870  BP     6  0 1.0000000000
## GO:0014877  BP     6  0 1.0000000000
## GO:0010046  BP     6  0 1.0000000000
## GO:0071107  BP     6  0 1.0000000000
## GO:0010269  BP     6  0 1.0000000000
## GO:1903935  BP     6  0 1.0000000000
## GO:0001878  BP     6  0 1.0000000000
## GO:0003406  BP     6  0 1.0000000000
## GO:1990049  BP     6  0 1.0000000000
## GO:0098921  BP     6  0 1.0000000000
## GO:0098920  BP     6  0 1.0000000000
## GO:0060024  BP     6  0 1.0000000000
## GO:0034031  BP     6  0 1.0000000000
## GO:0060662  BP     6  0 1.0000000000
## GO:0050916  BP     6  0 1.0000000000
## GO:0050975  BP     6  0 1.0000000000
## GO:0050917  BP     6  0 1.0000000000
## GO:0003284  BP     6  0 1.0000000000
## GO:0032119  BP     6  0 1.0000000000
## GO:0042427  BP     6  0 1.0000000000
## GO:0019626  BP     6  0 1.0000000000
## GO:0098528  BP     6  0 1.0000000000
## GO:0061302  BP     6  0 1.0000000000
## GO:0042796  BP     6  0 1.0000000000
## GO:0021523  BP     6  0 1.0000000000
## GO:0042713  BP     6  0 1.0000000000
## GO:0006686  BP     6  0 1.0000000000
## GO:0060708  BP     6  0 1.0000000000
## GO:0048865  BP     6  0 1.0000000000
## GO:1990169  BP     6  0 1.0000000000
## GO:0021825  BP     6  0 1.0000000000
## GO:0006104  BP     6  0 1.0000000000
## GO:0010182  BP     6  0 1.0000000000
## GO:0016185  BP     6  0 1.0000000000
## GO:0070127  BP     6  0 1.0000000000
## GO:0007217  BP     6  0 1.0000000000
## GO:0071816  BP     6  0 1.0000000000
## GO:1905323  BP     6  0 1.0000000000
## GO:0034398  BP     6  0 1.0000000000
## GO:0016115  BP     6  0 1.0000000000
## GO:0046654  BP     6  0 1.0000000000
## GO:0042695  BP     6  0 1.0000000000
## GO:0070327  BP     6  0 1.0000000000
## GO:0002461  BP     6  0 1.0000000000
## GO:0002513  BP     6  0 1.0000000000
## GO:0006362  BP     6  0 1.0000000000
## GO:0006361  BP     6  0 1.0000000000
## GO:0000972  BP     6  0 1.0000000000
## GO:0030321  BP     6  0 1.0000000000
## GO:0038044  BP     6  0 1.0000000000
## GO:0006842  BP     6  0 1.0000000000
## GO:0006642  BP     6  0 1.0000000000
## GO:0071830  BP     6  0 1.0000000000
## GO:0060605  BP     6  0 1.0000000000
## GO:0030579  BP     6  0 1.0000000000
## GO:0015747  BP     6  0 1.0000000000
## GO:0015840  BP     6  0 1.0000000000
## GO:0061038  BP     6  0 1.0000000000
## GO:0070072  BP     6  0 1.0000000000
## GO:0042760  BP     6  0 1.0000000000
## GO:0021648  BP     6  0 1.0000000000
## GO:0042373  BP     6  0 1.0000000000
## GO:0046110  BP     6  0 1.0000000000
## GO:0006015  BP     7  0 1.0000000000
## GO:0046391  BP     7  0 1.0000000000
## GO:0006370  BP     7  0 1.0000000000
## GO:0042904  BP     7  0 1.0000000000
## GO:0042905  BP     7  0 1.0000000000
## GO:0035754  BP     7  0 1.0000000000
## GO:0002361  BP     7  0 1.0000000000
## GO:0061641  BP     7  0 1.0000000000
## GO:0034080  BP     7  0 1.0000000000
## GO:0045006  BP     7  0 1.0000000000
## GO:0044026  BP     7  0 1.0000000000
## GO:0032776  BP     7  0 1.0000000000
## GO:0006265  BP     7  0 1.0000000000
## GO:0019673  BP     7  0 1.0000000000
## GO:0019852  BP     7  0 1.0000000000
## GO:0046439  BP     7  0 1.0000000000
## GO:0071265  BP     7  0 1.0000000000
## GO:0071267  BP     7  0 1.0000000000
## GO:1903352  BP     7  0 1.0000000000
## GO:0006559  BP     7  0 1.0000000000
## GO:0039530  BP     7  0 1.0000000000
## GO:0017196  BP     7  0 1.0000000000
## GO:0006735  BP     7  0 1.0000000000
## GO:0070995  BP     7  0 1.0000000000
## GO:0001866  BP     7  0 1.0000000000
## GO:0006607  BP     7  0 1.0000000000
## GO:0061314  BP     7  0 1.0000000000
## GO:0030578  BP     7  0 1.0000000000
## GO:0060011  BP     7  0 1.0000000000
## GO:0002291  BP     7  0 1.0000000000
## GO:0002870  BP     7  0 1.0000000000
## GO:0002457  BP     7  0 1.0000000000
## GO:0033292  BP     7  0 1.0000000000
## GO:0036462  BP     7  0 1.0000000000
## GO:0008063  BP     7  0 1.0000000000
## GO:1904953  BP     7  0 1.0000000000
## GO:1900619  BP     7  0 1.0000000000
## GO:0008291  BP     7  0 1.0000000000
## GO:0061526  BP     7  0 1.0000000000
## GO:0007256  BP     7  0 1.0000000000
## GO:0086023  BP     7  0 1.0000000000
## GO:0033211  BP     7  0 1.0000000000
## GO:0070842  BP     7  0 1.0000000000
## GO:0035932  BP     7  0 1.0000000000
## GO:0019694  BP     7  0 1.0000000000
## GO:0043102  BP     7  0 1.0000000000
## GO:0150094  BP     7  0 1.0000000000
## GO:0150093  BP     7  0 1.0000000000
## GO:0060978  BP     7  0 1.0000000000
## GO:1990048  BP     7  0 1.0000000000
## GO:0002778  BP     7  0 1.0000000000
## GO:0002775  BP     7  0 1.0000000000
## GO:0006531  BP     7  0 1.0000000000
## GO:0036302  BP     7  0 1.0000000000
## GO:0016198  BP     7  0 1.0000000000
## GO:0060385  BP     7  0 1.0000000000
## GO:0001955  BP     7  0 1.0000000000
## GO:0031547  BP     7  0 1.0000000000
## GO:0060449  BP     7  0 1.0000000000
## GO:0086043  BP     7  0 1.0000000000
## GO:0086028  BP     7  0 1.0000000000
## GO:0097646  BP     7  0 1.0000000000
## GO:1990034  BP     7  0 1.0000000000
## GO:0061621  BP     7  0 1.0000000000
## GO:0086042  BP     7  0 1.0000000000
## GO:0003253  BP     7  0 1.0000000000
## GO:0032049  BP     7  0 1.0000000000
## GO:0019614  BP     7  0 1.0000000000
## GO:0042424  BP     7  0 1.0000000000
## GO:0061343  BP     7  0 1.0000000000
## GO:0035766  BP     7  0 1.0000000000
## GO:0086064  BP     7  0 1.0000000000
## GO:0021814  BP     7  0 1.0000000000
## GO:0033278  BP     7  0 1.0000000000
## GO:0071476  BP     7  0 1.0000000000
## GO:0046950  BP     7  0 1.0000000000
## GO:0097384  BP     7  0 1.0000000000
## GO:1903351  BP     7  0 1.0000000000
## GO:0071362  BP     7  0 1.0000000000
## GO:0071351  BP     7  0 1.0000000000
## GO:0035865  BP     7  0 1.0000000000
## GO:0035356  BP     7  0 1.0000000000
## GO:0051026  BP     7  0 1.0000000000
## GO:0006348  BP     7  0 1.0000000000
## GO:0042747  BP     7  0 1.0000000000
## GO:0072318  BP     7  0 1.0000000000
## GO:0036089  BP     7  0 1.0000000000
## GO:0045162  BP     7  0 1.0000000000
## GO:0021902  BP     7  0 1.0000000000
## GO:0060029  BP     7  0 1.0000000000
## GO:0015677  BP     7  0 1.0000000000
## GO:0009804  BP     7  0 1.0000000000
## GO:0051715  BP     7  0 1.0000000000
## GO:0060318  BP     7  0 1.0000000000
## GO:0097048  BP     7  0 1.0000000000
## GO:0050655  BP     7  0 1.0000000000
## GO:0071907  BP     7  0 1.0000000000
## GO:0050904  BP     7  0 1.0000000000
## GO:0045003  BP     7  0 1.0000000000
## GO:0036492  BP     7  0 1.0000000000
## GO:0051541  BP     7  0 1.0000000000
## GO:0048702  BP     7  0 1.0000000000
## GO:0060059  BP     7  0 1.0000000000
## GO:0003160  BP     7  0 1.0000000000
## GO:0032510  BP     7  0 1.0000000000
## GO:0035768  BP     7  0 1.0000000000
## GO:0060839  BP     7  0 1.0000000000
## GO:0060664  BP     7  0 1.0000000000
## GO:0060287  BP     7  0 1.0000000000
## GO:1902222  BP     7  0 1.0000000000
## GO:0071169  BP     7  0 1.0000000000
## GO:0071971  BP     7  0 1.0000000000
## GO:0048069  BP     7  0 1.0000000000
## GO:0060613  BP     7  0 1.0000000000
## GO:0034625  BP     7  0 1.0000000000
## GO:0034626  BP     7  0 1.0000000000
## GO:0019367  BP     7  0 1.0000000000
## GO:0019368  BP     7  0 1.0000000000
## GO:0033504  BP     7  0 1.0000000000
## GO:0021798  BP     7  0 1.0000000000
## GO:0061196  BP     7  0 1.0000000000
## GO:0019388  BP     7  0 1.0000000000
## GO:0006689  BP     7  0 1.0000000000
## GO:0033483  BP     7  0 1.0000000000
## GO:0030718  BP     7  0 1.0000000000
## GO:0061718  BP     7  0 1.0000000000
## GO:0006678  BP     7  0 1.0000000000
## GO:0046477  BP     7  0 1.0000000000
## GO:0035701  BP     7  0 1.0000000000
## GO:0021578  BP     7  0 1.0000000000
## GO:0006547  BP     7  0 1.0000000000
## GO:0034720  BP     7  0 1.0000000000
## GO:0036123  BP     7  0 1.0000000000
## GO:0043987  BP     7  0 1.0000000000
## GO:0097411  BP     7  0 1.0000000000
## GO:0098596  BP     7  0 1.0000000000
## GO:0046218  BP     7  0 1.0000000000
## GO:0042436  BP     7  0 1.0000000000
## GO:1990001  BP     7  0 1.0000000000
## GO:0050703  BP     7  0 1.0000000000
## GO:0050720  BP     7  0 1.0000000000
## GO:0072603  BP     7  0 1.0000000000
## GO:0045110  BP     7  0 1.0000000000
## GO:0120009  BP     7  0 1.0000000000
## GO:0035735  BP     7  0 1.0000000000
## GO:1990144  BP     7  0 1.0000000000
## GO:0008627  BP     7  0 1.0000000000
## GO:0061072  BP     7  0 1.0000000000
## GO:0006102  BP     7  0 1.0000000000
## GO:0048289  BP     7  0 1.0000000000
## GO:0097283  BP     7  0 1.0000000000
## GO:0061439  BP     7  0 1.0000000000
## GO:0032808  BP     7  0 1.0000000000
## GO:0006273  BP     7  0 1.0000000000
## GO:0070309  BP     7  0 1.0000000000
## GO:0060235  BP     7  0 1.0000000000
## GO:0006551  BP     7  0 1.0000000000
## GO:0060482  BP     7  0 1.0000000000
## GO:0060437  BP     7  0 1.0000000000
## GO:0002249  BP     7  0 1.0000000000
## GO:0000395  BP     7  0 1.0000000000
## GO:0071608  BP     7  0 1.0000000000
## GO:0061517  BP     7  0 1.0000000000
## GO:0043570  BP     7  0 1.0000000000
## GO:0098880  BP     7  0 1.0000000000
## GO:0071694  BP     7  0 1.0000000000
## GO:0006108  BP     7  0 1.0000000000
## GO:0060763  BP     7  0 1.0000000000
## GO:0042138  BP     7  0 1.0000000000
## GO:0010032  BP     7  0 1.0000000000
## GO:0098915  BP     7  0 1.0000000000
## GO:0072161  BP     7  0 1.0000000000
## GO:2001012  BP     7  0 1.0000000000
## GO:0072038  BP     7  0 1.0000000000
## GO:0072282  BP     7  0 1.0000000000
## GO:0009438  BP     7  0 1.0000000000
## GO:0035280  BP     7  0 1.0000000000
## GO:0061518  BP     7  0 1.0000000000
## GO:0035931  BP     7  0 1.0000000000
## GO:0042776  BP     7  0 1.0000000000
## GO:0061668  BP     7  0 1.0000000000
## GO:0052428  BP     7  0 1.0000000000
## GO:0044359  BP     7  0 1.0000000000
## GO:0052205  BP     7  0 1.0000000000
## GO:0043545  BP     7  0 1.0000000000
## GO:1903251  BP     7  0 1.0000000000
## GO:0044828  BP     7  0 1.0000000000
## GO:0050859  BP     7  0 1.0000000000
## GO:0032876  BP     7  0 1.0000000000
## GO:0039536  BP     7  0 1.0000000000
## GO:0010626  BP     7  0 1.0000000000
## GO:0042985  BP     7  0 1.0000000000
## GO:0002578  BP     7  0 1.0000000000
## GO:1902338  BP     7  0 1.0000000000
## GO:0010616  BP     7  0 1.0000000000
## GO:0033629  BP     7  0 1.0000000000
## GO:1901977  BP     7  0 1.0000000000
## GO:0045794  BP     7  0 1.0000000000
## GO:2000048  BP     7  0 1.0000000000
## GO:0046600  BP     7  0 1.0000000000
## GO:0042321  BP     7  0 1.0000000000
## GO:0032811  BP     7  0 1.0000000000
## GO:0060770  BP     7  0 1.0000000000
## GO:0070345  BP     7  0 1.0000000000
## GO:0060467  BP     7  0 1.0000000000
## GO:0051918  BP     7  0 1.0000000000
## GO:0070874  BP     7  0 1.0000000000
## GO:0051799  BP     7  0 1.0000000000
## GO:0035331  BP     7  0 1.0000000000
## GO:1900113  BP     7  0 1.0000000000
## GO:0010727  BP     7  0 1.0000000000
## GO:1903208  BP     7  0 1.0000000000
## GO:0032713  BP     7  0 1.0000000000
## GO:0045409  BP     7  0 1.0000000000
## GO:0010989  BP     7  0 1.0000000000
## GO:0010760  BP     7  0 1.0000000000
## GO:0033600  BP     7  0 1.0000000000
## GO:0051045  BP     7  0 1.0000000000
## GO:1903979  BP     7  0 1.0000000000
## GO:0071638  BP     7  0 1.0000000000
## GO:0045656  BP     7  0 1.0000000000
## GO:0071676  BP     7  0 1.0000000000
## GO:0032074  BP     7  0 1.0000000000
## GO:0060283  BP     7  0 1.0000000000
## GO:1905880  BP     7  0 1.0000000000
## GO:1903753  BP     7  0 1.0000000000
## GO:0010519  BP     7  0 1.0000000000
## GO:1902915  BP     7  0 1.0000000000
## GO:0060268  BP     7  0 1.0000000000
## GO:0048387  BP     7  0 1.0000000000
## GO:1902455  BP     7  0 1.0000000000
## GO:0016479  BP     7  0 1.0000000000
## GO:0051970  BP     7  0 1.0000000000
## GO:1900747  BP     7  0 1.0000000000
## GO:0038007  BP     7  0 1.0000000000
## GO:1901166  BP     7  0 1.0000000000
## GO:0060897  BP     7  0 1.0000000000
## GO:0036476  BP     7  0 1.0000000000
## GO:0099011  BP     7  0 1.0000000000
## GO:0098943  BP     7  0 1.0000000000
## GO:0070945  BP     7  0 1.0000000000
## GO:1900164  BP     7  0 1.0000000000
## GO:0038107  BP     7  0 1.0000000000
## GO:0038030  BP     7  0 1.0000000000
## GO:0030473  BP     7  0 1.0000000000
## GO:0002072  BP     7  0 1.0000000000
## GO:0015822  BP     7  0 1.0000000000
## GO:0072675  BP     7  0 1.0000000000
## GO:0015671  BP     7  0 1.0000000000
## GO:0045852  BP     7  0 1.0000000000
## GO:0038001  BP     7  0 1.0000000000
## GO:0030046  BP     7  0 1.0000000000
## GO:0030913  BP     7  0 1.0000000000
## GO:0060017  BP     7  0 1.0000000000
## GO:0035247  BP     7  0 1.0000000000
## GO:0036166  BP     7  0 1.0000000000
## GO:0009698  BP     7  0 1.0000000000
## GO:0006655  BP     7  0 1.0000000000
## GO:0070782  BP     7  0 1.0000000000
## GO:0060158  BP     7  0 1.0000000000
## GO:0008594  BP     7  0 1.0000000000
## GO:0044857  BP     7  0 1.0000000000
## GO:0048227  BP     7  0 1.0000000000
## GO:0002576  BP     7  0 1.0000000000
## GO:0051694  BP     7  0 1.0000000000
## GO:0043634  BP     7  0 1.0000000000
## GO:0071051  BP     7  0 1.0000000000
## GO:0050861  BP     7  0 1.0000000000
## GO:0060369  BP     7  0 1.0000000000
## GO:1900227  BP     7  0 1.0000000000
## GO:0002666  BP     7  0 1.0000000000
## GO:2000553  BP     7  0 1.0000000000
## GO:0045630  BP     7  0 1.0000000000
## GO:1905653  BP     7  0 1.0000000000
## GO:1902961  BP     7  0 1.0000000000
## GO:0048842  BP     7  0 1.0000000000
## GO:0003321  BP     7  0 1.0000000000
## GO:0045915  BP     7  0 1.0000000000
## GO:2000138  BP     7  0 1.0000000000
## GO:2000049  BP     7  0 1.0000000000
## GO:0033634  BP     7  0 1.0000000000
## GO:2001040  BP     7  0 1.0000000000
## GO:0010886  BP     7  0 1.0000000000
## GO:1902732  BP     7  0 1.0000000000
## GO:1904798  BP     7  0 1.0000000000
## GO:0051461  BP     7  0 1.0000000000
## GO:2000510  BP     7  0 1.0000000000
## GO:0002732  BP     7  0 1.0000000000
## GO:0045964  BP     7  0 1.0000000000
## GO:2000698  BP     7  0 1.0000000000
## GO:0060501  BP     7  0 1.0000000000
## GO:0060054  BP     7  0 1.0000000000
## GO:2000271  BP     7  0 1.0000000000
## GO:0014054  BP     7  0 1.0000000000
## GO:1904306  BP     7  0 1.0000000000
## GO:1903301  BP     7  0 1.0000000000
## GO:0061087  BP     7  0 1.0000000000
## GO:0045359  BP     7  0 1.0000000000
## GO:0060335  BP     7  0 1.0000000000
## GO:1900042  BP     7  0 1.0000000000
## GO:0051351  BP     7  0 1.0000000000
## GO:0048170  BP     7  0 1.0000000000
## GO:0060754  BP     7  0 1.0000000000
## GO:0048023  BP     7  0 1.0000000000
## GO:1905050  BP     7  0 1.0000000000
## GO:1903980  BP     7  0 1.0000000000
## GO:0090267  BP     7  0 1.0000000000
## GO:0002860  BP     7  0 1.0000000000
## GO:0032819  BP     7  0 1.0000000000
## GO:0010940  BP     7  0 1.0000000000
## GO:0014042  BP     7  0 1.0000000000
## GO:0150012  BP     7  0 1.0000000000
## GO:0051582  BP     7  0 1.0000000000
## GO:0032241  BP     7  0 1.0000000000
## GO:1902177  BP     7  0 1.0000000000
## GO:1903223  BP     7  0 1.0000000000
## GO:0050942  BP     7  0 1.0000000000
## GO:1903288  BP     7  0 1.0000000000
## GO:1903003  BP     7  0 1.0000000000
## GO:1900020  BP     7  0 1.0000000000
## GO:1904781  BP     7  0 1.0000000000
## GO:1903955  BP     7  0 1.0000000000
## GO:0060332  BP     7  0 1.0000000000
## GO:0010890  BP     7  0 1.0000000000
## GO:2001016  BP     7  0 1.0000000000
## GO:0090232  BP     7  0 1.0000000000
## GO:0032226  BP     7  0 1.0000000000
## GO:0034137  BP     7  0 1.0000000000
## GO:0034141  BP     7  0 1.0000000000
## GO:1904668  BP     7  0 1.0000000000
## GO:1905461  BP     7  0 1.0000000000
## GO:0048050  BP     7  0 1.0000000000
## GO:0036388  BP     7  0 1.0000000000
## GO:1902299  BP     7  0 1.0000000000
## GO:0006267  BP     7  0 1.0000000000
## GO:0099525  BP     7  0 1.0000000000
## GO:0031053  BP     7  0 1.0000000000
## GO:0030422  BP     7  0 1.0000000000
## GO:0070459  BP     7  0 1.0000000000
## GO:0060527  BP     7  0 1.0000000000
## GO:0060526  BP     7  0 1.0000000000
## GO:0051189  BP     7  0 1.0000000000
## GO:0042270  BP     7  0 1.0000000000
## GO:0036066  BP     7  0 1.0000000000
## GO:0045048  BP     7  0 1.0000000000
## GO:1903608  BP     7  0 1.0000000000
## GO:0070973  BP     7  0 1.0000000000
## GO:0070212  BP     7  0 1.0000000000
## GO:0006627  BP     7  0 1.0000000000
## GO:0006621  BP     7  0 1.0000000000
## GO:0043461  BP     7  0 1.0000000000
## GO:0070070  BP     7  0 1.0000000000
## GO:0061156  BP     7  0 1.0000000000
## GO:0009155  BP     7  0 1.0000000000
## GO:0006145  BP     7  0 1.0000000000
## GO:0009146  BP     7  0 1.0000000000
## GO:0034035  BP     7  0 1.0000000000
## GO:0009445  BP     7  0 1.0000000000
## GO:0046135  BP     7  0 1.0000000000
## GO:0021942  BP     7  0 1.0000000000
## GO:0038026  BP     7  0 1.0000000000
## GO:1904717  BP     7  0 1.0000000000
## GO:1901535  BP     7  0 1.0000000000
## GO:1905449  BP     7  0 1.0000000000
## GO:1903897  BP     7  0 1.0000000000
## GO:0002667  BP     7  0 1.0000000000
## GO:0010533  BP     7  0 1.0000000000
## GO:2000858  BP     7  0 1.0000000000
## GO:1905906  BP     7  0 1.0000000000
## GO:0002002  BP     7  0 1.0000000000
## GO:0002583  BP     7  0 1.0000000000
## GO:0002759  BP     7  0 1.0000000000
## GO:2000425  BP     7  0 1.0000000000
## GO:0060372  BP     7  0 1.0000000000
## GO:0061046  BP     7  0 1.0000000000
## GO:0060558  BP     7  0 1.0000000000
## GO:1905664  BP     7  0 1.0000000000
## GO:0060353  BP     7  0 1.0000000000
## GO:1904847  BP     7  0 1.0000000000
## GO:0070099  BP     7  0 1.0000000000
## GO:0042320  BP     7  0 1.0000000000
## GO:2000668  BP     7  0 1.0000000000
## GO:2001198  BP     7  0 1.0000000000
## GO:1904732  BP     7  0 1.0000000000
## GO:0032071  BP     7  0 1.0000000000
## GO:2000544  BP     7  0 1.0000000000
## GO:0003330  BP     7  0 1.0000000000
## GO:2000653  BP     7  0 1.0000000000
## GO:1905936  BP     7  0 1.0000000000
## GO:0106104  BP     7  0 1.0000000000
## GO:0031282  BP     7  0 1.0000000000
## GO:0071440  BP     7  0 1.0000000000
## GO:2000618  BP     7  0 1.0000000000
## GO:1903207  BP     7  0 1.0000000000
## GO:0032960  BP     7  0 1.0000000000
## GO:2000665  BP     7  0 1.0000000000
## GO:2000662  BP     7  0 1.0000000000
## GO:0048296  BP     7  0 1.0000000000
## GO:0048293  BP     7  0 1.0000000000
## GO:1902172  BP     7  0 1.0000000000
## GO:0045714  BP     7  0 1.0000000000
## GO:1901490  BP     7  0 1.0000000000
## GO:0002911  BP     7  0 1.0000000000
## GO:2000254  BP     7  0 1.0000000000
## GO:0045634  BP     7  0 1.0000000000
## GO:0098903  BP     7  0 1.0000000000
## GO:2000739  BP     7  0 1.0000000000
## GO:1905902  BP     7  0 1.0000000000
## GO:1905770  BP     7  0 1.0000000000
## GO:0042661  BP     7  0 1.0000000000
## GO:0090235  BP     7  0 1.0000000000
## GO:0032532  BP     7  0 1.0000000000
## GO:2000855  BP     7  0 1.0000000000
## GO:0000019  BP     7  0 1.0000000000
## GO:0030885  BP     7  0 1.0000000000
## GO:0061074  BP     7  0 1.0000000000
## GO:1900107  BP     7  0 1.0000000000
## GO:2000354  BP     7  0 1.0000000000
## GO:1900084  BP     7  0 1.0000000000
## GO:0010511  BP     7  0 1.0000000000
## GO:1902302  BP     7  0 1.0000000000
## GO:1903764  BP     7  0 1.0000000000
## GO:1904350  BP     7  0 1.0000000000
## GO:1900019  BP     7  0 1.0000000000
## GO:1901897  BP     7  0 1.0000000000
## GO:0060075  BP     7  0 1.0000000000
## GO:2000197  BP     7  0 1.0000000000
## GO:2001260  BP     7  0 1.0000000000
## GO:0003025  BP     7  0 1.0000000000
## GO:1904872  BP     7  0 1.0000000000
## GO:0003057  BP     7  0 1.0000000000
## GO:1900094  BP     7  0 1.0000000000
## GO:0003256  BP     7  0 1.0000000000
## GO:1901388  BP     7  0 1.0000000000
## GO:0140243  BP     7  0 1.0000000000
## GO:0099547  BP     7  0 1.0000000000
## GO:0036491  BP     7  0 1.0000000000
## GO:0060373  BP     7  0 1.0000000000
## GO:0061438  BP     7  0 1.0000000000
## GO:0003097  BP     7  0 1.0000000000
## GO:0002001  BP     7  0 1.0000000000
## GO:0002536  BP     7  0 1.0000000000
## GO:0072423  BP     7  0 1.0000000000
## GO:0072402  BP     7  0 1.0000000000
## GO:1902065  BP     7  0 1.0000000000
## GO:0070141  BP     7  0 1.0000000000
## GO:0032493  BP     7  0 1.0000000000
## GO:0070305  BP     7  0 1.0000000000
## GO:0072396  BP     7  0 1.0000000000
## GO:1903350  BP     7  0 1.0000000000
## GO:0033762  BP     7  0 1.0000000000
## GO:0009635  BP     7  0 1.0000000000
## GO:0035864  BP     7  0 1.0000000000
## GO:0000056  BP     7  0 1.0000000000
## GO:0032790  BP     7  0 1.0000000000
## GO:0051610  BP     7  0 1.0000000000
## GO:0014719  BP     7  0 1.0000000000
## GO:0021910  BP     7  0 1.0000000000
## GO:0044341  BP     7  0 1.0000000000
## GO:0008215  BP     7  0 1.0000000000
## GO:0090306  BP     7  0 1.0000000000
## GO:0051231  BP     7  0 1.0000000000
## GO:0051255  BP     7  0 1.0000000000
## GO:0048682  BP     7  0 1.0000000000
## GO:0090400  BP     7  0 1.0000000000
## GO:0060012  BP     7  0 1.0000000000
## GO:0036466  BP     7  0 1.0000000000
## GO:0019530  BP     7  0 1.0000000000
## GO:0035989  BP     7  0 1.0000000000
## GO:0006369  BP     7  0 1.0000000000
## GO:0006729  BP     7  0 1.0000000000
## GO:0006566  BP     7  0 1.0000000000
## GO:0072679  BP     7  0 1.0000000000
## GO:0002154  BP     7  0 1.0000000000
## GO:0034154  BP     7  0 1.0000000000
## GO:0060440  BP     7  0 1.0000000000
## GO:0003186  BP     7  0 1.0000000000
## GO:0006569  BP     7  0 1.0000000000
## GO:0014721  BP     7  0 1.0000000000
## GO:0060509  BP     7  0 1.0000000000
## GO:0060510  BP     7  0 1.0000000000
## GO:0060676  BP     7  0 1.0000000000
## GO:0034379  BP     7  0 1.0000000000
## GO:0099022  BP     7  0 1.0000000000
## GO:0046784  BP     7  0 1.0000000000
## GO:0019062  BP     7  0 1.0000000000
## GO:0042297  BP     7  0 1.0000000000
## GO:0003010  BP     7  0 1.0000000000
## GO:0009452  BP     8  0 1.0000000000
## GO:0061762  BP     8  0 1.0000000000
## GO:0023035  BP     8  0 1.0000000000
## GO:0035740  BP     8  0 1.0000000000
## GO:0042940  BP     8  0 1.0000000000
## GO:0042769  BP     8  0 1.0000000000
## GO:0043045  BP     8  0 1.0000000000
## GO:0098664  BP     8  0 1.0000000000
## GO:0070314  BP     8  0 1.0000000000
## GO:0090160  BP     8  0 1.0000000000
## GO:0006188  BP     8  0 1.0000000000
## GO:0016266  BP     8  0 1.0000000000
## GO:0036260  BP     8  0 1.0000000000
## GO:0090670  BP     8  0 1.0000000000
## GO:0090685  BP     8  0 1.0000000000
## GO:0010501  BP     8  0 1.0000000000
## GO:0035385  BP     8  0 1.0000000000
## GO:0072050  BP     8  0 1.0000000000
## GO:0038203  BP     8  0 1.0000000000
## GO:0034475  BP     8  0 1.0000000000
## GO:0006228  BP     8  0 1.0000000000
## GO:0060478  BP     8  0 1.0000000000
## GO:0090527  BP     8  0 1.0000000000
## GO:0099515  BP     8  0 1.0000000000
## GO:0000185  BP     8  0 1.0000000000
## GO:0051503  BP     8  0 1.0000000000
## GO:0007197  BP     8  0 1.0000000000
## GO:0034334  BP     8  0 1.0000000000
## GO:0044650  BP     8  0 1.0000000000
## GO:0035973  BP     8  0 1.0000000000
## GO:0046349  BP     8  0 1.0000000000
## GO:0015838  BP     8  0 1.0000000000
## GO:0097065  BP     8  0 1.0000000000
## GO:0043615  BP     8  0 1.0000000000
## GO:0055009  BP     8  0 1.0000000000
## GO:0003190  BP     8  0 1.0000000000
## GO:0035425  BP     8  0 1.0000000000
## GO:0072378  BP     8  0 1.0000000000
## GO:0002035  BP     8  0 1.0000000000
## GO:0015670  BP     8  0 1.0000000000
## GO:0003348  BP     8  0 1.0000000000
## GO:0060923  BP     8  0 1.0000000000
## GO:0042637  BP     8  0 1.0000000000
## GO:0043697  BP     8  0 1.0000000000
## GO:0110095  BP     8  0 1.0000000000
## GO:0072501  BP     8  0 1.0000000000
## GO:0030643  BP     8  0 1.0000000000
## GO:0071493  BP     8  0 1.0000000000
## GO:0071313  BP     8  0 1.0000000000
## GO:0071420  BP     8  0 1.0000000000
## GO:0071447  BP     8  0 1.0000000000
## GO:1990314  BP     8  0 1.0000000000
## GO:0072502  BP     8  0 1.0000000000
## GO:0021626  BP     8  0 1.0000000000
## GO:0021894  BP     8  0 1.0000000000
## GO:1901538  BP     8  0 1.0000000000
## GO:0006032  BP     8  0 1.0000000000
## GO:0006030  BP     8  0 1.0000000000
## GO:0000052  BP     8  0 1.0000000000
## GO:0009235  BP     8  0 1.0000000000
## GO:0060242  BP     8  0 1.0000000000
## GO:0060027  BP     8  0 1.0000000000
## GO:0021540  BP     8  0 1.0000000000
## GO:0034651  BP     8  0 1.0000000000
## GO:0021603  BP     8  0 1.0000000000
## GO:0060363  BP     8  0 1.0000000000
## GO:0002182  BP     8  0 1.0000000000
## GO:0046060  BP     8  0 1.0000000000
## GO:0043696  BP     8  0 1.0000000000
## GO:0140059  BP     8  0 1.0000000000
## GO:0009120  BP     8  0 1.0000000000
## GO:0009162  BP     8  0 1.0000000000
## GO:0009204  BP     8  0 1.0000000000
## GO:0005513  BP     8  0 1.0000000000
## GO:0061687  BP     8  0 1.0000000000
## GO:0015959  BP     8  0 1.0000000000
## GO:0035912  BP     8  0 1.0000000000
## GO:0034498  BP     8  0 1.0000000000
## GO:0040016  BP     8  0 1.0000000000
## GO:0001714  BP     8  0 1.0000000000
## GO:0051643  BP     8  0 1.0000000000
## GO:0090158  BP     8  0 1.0000000000
## GO:0042045  BP     8  0 1.0000000000
## GO:0051683  BP     8  0 1.0000000000
## GO:0097368  BP     8  0 1.0000000000
## GO:0034085  BP     8  0 1.0000000000
## GO:0006067  BP     8  0 1.0000000000
## GO:0098881  BP     8  0 1.0000000000
## GO:0098967  BP     8  0 1.0000000000
## GO:0000459  BP     8  0 1.0000000000
## GO:0000467  BP     8  0 1.0000000000
## GO:0042363  BP     8  0 1.0000000000
## GO:1902001  BP     8  0 1.0000000000
## GO:0007144  BP     8  0 1.0000000000
## GO:0016321  BP     8  0 1.0000000000
## GO:0021861  BP     8  0 1.0000000000
## GO:0001325  BP     8  0 1.0000000000
## GO:0072310  BP     8  0 1.0000000000
## GO:0072015  BP     8  0 1.0000000000
## GO:0016139  BP     8  0 1.0000000000
## GO:0061484  BP     8  0 1.0000000000
## GO:0007442  BP     8  0 1.0000000000
## GO:0043983  BP     8  0 1.0000000000
## GO:0035404  BP     8  0 1.0000000000
## GO:0030214  BP     8  0 1.0000000000
## GO:0021979  BP     8  0 1.0000000000
## GO:0042435  BP     8  0 1.0000000000
## GO:0001826  BP     8  0 1.0000000000
## GO:0072611  BP     8  0 1.0000000000
## GO:0032627  BP     8  0 1.0000000000
## GO:0097376  BP     8  0 1.0000000000
## GO:0097286  BP     8  0 1.0000000000
## GO:0048290  BP     8  0 1.0000000000
## GO:0032511  BP     8  0 1.0000000000
## GO:0019372  BP     8  0 1.0000000000
## GO:0042758  BP     8  0 1.0000000000
## GO:0045713  BP     8  0 1.0000000000
## GO:0060836  BP     8  0 1.0000000000
## GO:0034238  BP     8  0 1.0000000000
## GO:0010216  BP     8  0 1.0000000000
## GO:0022605  BP     8  0 1.0000000000
## GO:0033313  BP     8  0 1.0000000000
## GO:0072205  BP     8  0 1.0000000000
## GO:0072239  BP     8  0 1.0000000000
## GO:0061732  BP     8  0 1.0000000000
## GO:0035696  BP     8  0 1.0000000000
## GO:0061744  BP     8  0 1.0000000000
## GO:0014908  BP     8  0 1.0000000000
## GO:2000562  BP     8  0 1.0000000000
## GO:0051126  BP     8  0 1.0000000000
## GO:1900222  BP     8  0 1.0000000000
## GO:1904746  BP     8  0 1.0000000000
## GO:1903147  BP     8  0 1.0000000000
## GO:2000480  BP     8  0 1.0000000000
## GO:0009996  BP     8  0 1.0000000000
## GO:0002692  BP     8  0 1.0000000000
## GO:1902548  BP     8  0 1.0000000000
## GO:0045916  BP     8  0 1.0000000000
## GO:2000766  BP     8  0 1.0000000000
## GO:0061002  BP     8  0 1.0000000000
## GO:0010764  BP     8  0 1.0000000000
## GO:0060455  BP     8  0 1.0000000000
## GO:2000542  BP     8  0 1.0000000000
## GO:1905940  BP     8  0 1.0000000000
## GO:0032277  BP     8  0 1.0000000000
## GO:1905098  BP     8  0 1.0000000000
## GO:0042636  BP     8  0 1.0000000000
## GO:1901533  BP     8  0 1.0000000000
## GO:1901299  BP     8  0 1.0000000000
## GO:0090084  BP     8  0 1.0000000000
## GO:0031441  BP     8  0 1.0000000000
## GO:1900364  BP     8  0 1.0000000000
## GO:0033007  BP     8  0 1.0000000000
## GO:1905709  BP     8  0 1.0000000000
## GO:0072201  BP     8  0 1.0000000000
## GO:1901029  BP     8  0 1.0000000000
## GO:0032815  BP     8  0 1.0000000000
## GO:0051581  BP     8  0 1.0000000000
## GO:0010700  BP     8  0 1.0000000000
## GO:0090324  BP     8  0 1.0000000000
## GO:1903726  BP     8  0 1.0000000000
## GO:2000258  BP     8  0 1.0000000000
## GO:0044387  BP     8  0 1.0000000000
## GO:0035814  BP     8  0 1.0000000000
## GO:0032229  BP     8  0 1.0000000000
## GO:0034144  BP     8  0 1.0000000000
## GO:1905064  BP     8  0 1.0000000000
## GO:0046958  BP     8  0 1.0000000000
## GO:0007000  BP     8  0 1.0000000000
## GO:0009133  BP     8  0 1.0000000000
## GO:1901642  BP     8  0 1.0000000000
## GO:0038003  BP     8  0 1.0000000000
## GO:0030916  BP     8  0 1.0000000000
## GO:0007008  BP     8  0 1.0000000000
## GO:0019800  BP     8  0 1.0000000000
## GO:0035246  BP     8  0 1.0000000000
## GO:0018202  BP     8  0 1.0000000000
## GO:0034983  BP     8  0 1.0000000000
## GO:0017185  BP     8  0 1.0000000000
## GO:0018401  BP     8  0 1.0000000000
## GO:0036289  BP     8  0 1.0000000000
## GO:0032287  BP     8  0 1.0000000000
## GO:0090385  BP     8  0 1.0000000000
## GO:0036092  BP     8  0 1.0000000000
## GO:0015911  BP     8  0 1.0000000000
## GO:0043633  BP     8  0 1.0000000000
## GO:0016093  BP     8  0 1.0000000000
## GO:0044829  BP     8  0 1.0000000000
## GO:2000601  BP     8  0 1.0000000000
## GO:1900264  BP     8  0 1.0000000000
## GO:0051135  BP     8  0 1.0000000000
## GO:1904783  BP     8  0 1.0000000000
## GO:1900246  BP     8  0 1.0000000000
## GO:0045627  BP     8  0 1.0000000000
## GO:2000096  BP     8  0 1.0000000000
## GO:1904747  BP     8  0 1.0000000000
## GO:1902339  BP     8  0 1.0000000000
## GO:1905247  BP     8  0 1.0000000000
## GO:2000987  BP     8  0 1.0000000000
## GO:0062043  BP     8  0 1.0000000000
## GO:0010455  BP     8  0 1.0000000000
## GO:0038089  BP     8  0 1.0000000000
## GO:0045542  BP     8  0 1.0000000000
## GO:0090205  BP     8  0 1.0000000000
## GO:0045919  BP     8  0 1.0000000000
## GO:0048087  BP     8  0 1.0000000000
## GO:2000643  BP     8  0 1.0000000000
## GO:1903367  BP     8  0 1.0000000000
## GO:0045743  BP     8  0 1.0000000000
## GO:2000543  BP     8  0 1.0000000000
## GO:0072126  BP     8  0 1.0000000000
## GO:0097151  BP     8  0 1.0000000000
## GO:0045362  BP     8  0 1.0000000000
## GO:1902255  BP     8  0 1.0000000000
## GO:0031666  BP     8  0 1.0000000000
## GO:1902416  BP     8  0 1.0000000000
## GO:0033601  BP     8  0 1.0000000000
## GO:0045654  BP     8  0 1.0000000000
## GO:0045842  BP     8  0 1.0000000000
## GO:1901970  BP     8  0 1.0000000000
## GO:0014744  BP     8  0 1.0000000000
## GO:0002857  BP     8  0 1.0000000000
## GO:0150078  BP     8  0 1.0000000000
## GO:0051388  BP     8  0 1.0000000000
## GO:0035360  BP     8  0 1.0000000000
## GO:1901628  BP     8  0 1.0000000000
## GO:0031394  BP     8  0 1.0000000000
## GO:0060050  BP     8  0 1.0000000000
## GO:1900378  BP     8  0 1.0000000000
## GO:0048743  BP     8  0 1.0000000000
## GO:0106120  BP     8  0 1.0000000000
## GO:1901341  BP     8  0 1.0000000000
## GO:2000809  BP     8  0 1.0000000000
## GO:1903265  BP     8  0 1.0000000000
## GO:0001812  BP     8  0 1.0000000000
## GO:1904417  BP     8  0 1.0000000000
## GO:0034310  BP     8  0 1.0000000000
## GO:0050847  BP     8  0 1.0000000000
## GO:0048793  BP     8  0 1.0000000000
## GO:0085020  BP     8  0 1.0000000000
## GO:0018243  BP     8  0 1.0000000000
## GO:0018344  BP     8  0 1.0000000000
## GO:0045039  BP     8  0 1.0000000000
## GO:1904491  BP     8  0 1.0000000000
## GO:0071692  BP     8  0 1.0000000000
## GO:0018065  BP     8  0 1.0000000000
## GO:0009113  BP     8  0 1.0000000000
## GO:0009169  BP     8  0 1.0000000000
## GO:0015868  BP     8  0 1.0000000000
## GO:0043101  BP     8  0 1.0000000000
## GO:0072526  BP     8  0 1.0000000000
## GO:0019856  BP     8  0 1.0000000000
## GO:0009130  BP     8  0 1.0000000000
## GO:0070475  BP     8  0 1.0000000000
## GO:2000564  BP     8  0 1.0000000000
## GO:1900262  BP     8  0 1.0000000000
## GO:1903069  BP     8  0 1.0000000000
## GO:0051136  BP     8  0 1.0000000000
## GO:1900147  BP     8  0 1.0000000000
## GO:0003307  BP     8  0 1.0000000000
## GO:0070235  BP     8  0 1.0000000000
## GO:0032347  BP     8  0 1.0000000000
## GO:1905651  BP     8  0 1.0000000000
## GO:0060371  BP     8  0 1.0000000000
## GO:0051890  BP     8  0 1.0000000000
## GO:0071649  BP     8  0 1.0000000000
## GO:1904796  BP     8  0 1.0000000000
## GO:0051459  BP     8  0 1.0000000000
## GO:0010603  BP     8  0 1.0000000000
## GO:1900247  BP     8  0 1.0000000000
## GO:1901201  BP     8  0 1.0000000000
## GO:0046880  BP     8  0 1.0000000000
## GO:0031946  BP     8  0 1.0000000000
## GO:0000820  BP     8  0 1.0000000000
## GO:2000465  BP     8  0 1.0000000000
## GO:0005981  BP     8  0 1.0000000000
## GO:0090381  BP     8  0 1.0000000000
## GO:1901725  BP     8  0 1.0000000000
## GO:0010728  BP     8  0 1.0000000000
## GO:1903795  BP     8  0 1.0000000000
## GO:0045360  BP     8  0 1.0000000000
## GO:2001182  BP     8  0 1.0000000000
## GO:1905076  BP     8  0 1.0000000000
## GO:0032661  BP     8  0 1.0000000000
## GO:0032667  BP     8  0 1.0000000000
## GO:0030300  BP     8  0 1.0000000000
## GO:0032383  BP     8  0 1.0000000000
## GO:0032377  BP     8  0 1.0000000000
## GO:0032380  BP     8  0 1.0000000000
## GO:0051340  BP     8  0 1.0000000000
## GO:0033684  BP     8  0 1.0000000000
## GO:0034182  BP     8  0 1.0000000000
## GO:0060753  BP     8  0 1.0000000000
## GO:0003339  BP     8  0 1.0000000000
## GO:0032534  BP     8  0 1.0000000000
## GO:0046602  BP     8  0 1.0000000000
## GO:1905274  BP     8  0 1.0000000000
## GO:0035507  BP     8  0 1.0000000000
## GO:0043313  BP     8  0 1.0000000000
## GO:2000169  BP     8  0 1.0000000000
## GO:2000586  BP     8  0 1.0000000000
## GO:1903286  BP     8  0 1.0000000000
## GO:2000973  BP     8  0 1.0000000000
## GO:1903564  BP     8  0 1.0000000000
## GO:1902866  BP     8  0 1.0000000000
## GO:1904393  BP     8  0 1.0000000000
## GO:0048631  BP     8  0 1.0000000000
## GO:1901620  BP     8  0 1.0000000000
## GO:0001993  BP     8  0 1.0000000000
## GO:0032909  BP     8  0 1.0000000000
## GO:0036490  BP     8  0 1.0000000000
## GO:1904415  BP     8  0 1.0000000000
## GO:0060087  BP     8  0 1.0000000000
## GO:0001999  BP     8  0 1.0000000000
## GO:0072033  BP     8  0 1.0000000000
## GO:0048478  BP     8  0 1.0000000000
## GO:0070672  BP     8  0 1.0000000000
## GO:0009415  BP     8  0 1.0000000000
## GO:0016056  BP     8  0 1.0000000000
## GO:0009191  BP     8  0 1.0000000000
## GO:0009158  BP     8  0 1.0000000000
## GO:0000055  BP     8  0 1.0000000000
## GO:0001514  BP     8  0 1.0000000000
## GO:0048752  BP     8  0 1.0000000000
## GO:0071670  BP     8  0 1.0000000000
## GO:0070253  BP     8  0 1.0000000000
## GO:0006685  BP     8  0 1.0000000000
## GO:0097501  BP     8  0 1.0000000000
## GO:0006930  BP     8  0 1.0000000000
## GO:0006105  BP     8  0 1.0000000000
## GO:0000098  BP     8  0 1.0000000000
## GO:0098883  BP     8  0 1.0000000000
## GO:0099532  BP     8  0 1.0000000000
## GO:0090656  BP     8  0 1.0000000000
## GO:0042780  BP     8  0 1.0000000000
## GO:0016078  BP     8  0 1.0000000000
## GO:0090672  BP     8  0 1.0000000000
## GO:0090671  BP     8  0 1.0000000000
## GO:0090737  BP     8  0 1.0000000000
## GO:0061820  BP     8  0 1.0000000000
## GO:0090657  BP     8  0 1.0000000000
## GO:0072553  BP     8  0 1.0000000000
## GO:1902645  BP     8  0 1.0000000000
## GO:0060534  BP     8  0 1.0000000000
## GO:0032906  BP     8  0 1.0000000000
## GO:0006451  BP     8  0 1.0000000000
## GO:0044417  BP     8  0 1.0000000000
## GO:0051836  BP     8  0 1.0000000000
## GO:0003175  BP     8  0 1.0000000000
## GO:0007021  BP     8  0 1.0000000000
## GO:0010992  BP     8  0 1.0000000000
## GO:0048280  BP     8  0 1.0000000000
## GO:0072319  BP     8  0 1.0000000000
## GO:0070561  BP     8  0 1.0000000000
## GO:0042364  BP     8  0 1.0000000000
## GO:0042908  BP     8  0 1.0000000000
## GO:0071578  BP     8  0 1.0000000000
## GO:0006241  BP     9  0 1.0000000000
## GO:0046036  BP     9  0 1.0000000000
## GO:0038096  BP     9  0 1.0000000000
## GO:0045023  BP     9  0 1.0000000000
## GO:1902023  BP     9  0 1.0000000000
## GO:0006563  BP     9  0 1.0000000000
## GO:0046498  BP     9  0 1.0000000000
## GO:0086015  BP     9  0 1.0000000000
## GO:0086070  BP     9  0 1.0000000000
## GO:0086018  BP     9  0 1.0000000000
## GO:0032933  BP     9  0 1.0000000000
## GO:0006616  BP     9  0 1.0000000000
## GO:0036135  BP     9  0 1.0000000000
## GO:0046051  BP     9  0 1.0000000000
## GO:1901374  BP     9  0 1.0000000000
## GO:0015870  BP     9  0 1.0000000000
## GO:0006382  BP     9  0 1.0000000000
## GO:0008343  BP     9  0 1.0000000000
## GO:0032328  BP     9  0 1.0000000000
## GO:0030647  BP     9  0 1.0000000000
## GO:0099641  BP     9  0 1.0000000000
## GO:0042590  BP     9  0 1.0000000000
## GO:0001547  BP     9  0 1.0000000000
## GO:0015810  BP     9  0 1.0000000000
## GO:0099624  BP     9  0 1.0000000000
## GO:0003228  BP     9  0 1.0000000000
## GO:0048102  BP     9  0 1.0000000000
## GO:0048318  BP     9  0 1.0000000000
## GO:0035095  BP     9  0 1.0000000000
## GO:0060837  BP     9  0 1.0000000000
## GO:0048539  BP     9  0 1.0000000000
## GO:0016338  BP     9  0 1.0000000000
## GO:0051934  BP     9  0 1.0000000000
## GO:0060352  BP     9  0 1.0000000000
## GO:0030644  BP     9  0 1.0000000000
## GO:0071481  BP     9  0 1.0000000000
## GO:0110096  BP     9  0 1.0000000000
## GO:0071872  BP     9  0 1.0000000000
## GO:0071372  BP     9  0 1.0000000000
## GO:0071225  BP     9  0 1.0000000000
## GO:0071394  BP     9  0 1.0000000000
## GO:0097067  BP     9  0 1.0000000000
## GO:0021796  BP     9  0 1.0000000000
## GO:0071609  BP     9  0 1.0000000000
## GO:0060717  BP     9  0 1.0000000000
## GO:0061009  BP     9  0 1.0000000000
## GO:0060028  BP     9  0 1.0000000000
## GO:0061303  BP     9  0 1.0000000000
## GO:0021957  BP     9  0 1.0000000000
## GO:0090286  BP     9  0 1.0000000000
## GO:0044597  BP     9  0 1.0000000000
## GO:0099519  BP     9  0 1.0000000000
## GO:0003140  BP     9  0 1.0000000000
## GO:0060539  BP     9  0 1.0000000000
## GO:0051583  BP     9  0 1.0000000000
## GO:0044598  BP     9  0 1.0000000000
## GO:0046618  BP     9  0 1.0000000000
## GO:0035234  BP     9  0 1.0000000000
## GO:0007343  BP     9  0 1.0000000000
## GO:0048251  BP     9  0 1.0000000000
## GO:0060136  BP     9  0 1.0000000000
## GO:0034058  BP     9  0 1.0000000000
## GO:0042118  BP     9  0 1.0000000000
## GO:0043353  BP     9  0 1.0000000000
## GO:0050957  BP     9  0 1.0000000000
## GO:0001768  BP     9  0 1.0000000000
## GO:0051660  BP     9  0 1.0000000000
## GO:0001767  BP     9  0 1.0000000000
## GO:0044849  BP     9  0 1.0000000000
## GO:0042439  BP     9  0 1.0000000000
## GO:0031017  BP     9  0 1.0000000000
## GO:0052696  BP     9  0 1.0000000000
## GO:0009396  BP     9  0 1.0000000000
## GO:0006012  BP     9  0 1.0000000000
## GO:0006681  BP     9  0 1.0000000000
## GO:0035482  BP     9  0 1.0000000000
## GO:0008354  BP     9  0 1.0000000000
## GO:0032836  BP     9  0 1.0000000000
## GO:0015886  BP     9  0 1.0000000000
## GO:0034384  BP     9  0 1.0000000000
## GO:0061525  BP     9  0 1.0000000000
## GO:0036353  BP     9  0 1.0000000000
## GO:0070544  BP     9  0 1.0000000000
## GO:0034770  BP     9  0 1.0000000000
## GO:0006971  BP     9  0 1.0000000000
## GO:0002433  BP     9  0 1.0000000000
## GO:0090713  BP     9  0 1.0000000000
## GO:0097340  BP     9  0 1.0000000000
## GO:0042222  BP     9  0 1.0000000000
## GO:0021830  BP     9  0 1.0000000000
## GO:0014827  BP     9  0 1.0000000000
## GO:1902224  BP     9  0 1.0000000000
## GO:0042182  BP     9  0 1.0000000000
## GO:0070189  BP     9  0 1.0000000000
## GO:0019249  BP     9  0 1.0000000000
## GO:0044539  BP     9  0 1.0000000000
## GO:0034374  BP     9  0 1.0000000000
## GO:0060462  BP     9  0 1.0000000000
## GO:0060463  BP     9  0 1.0000000000
## GO:0060426  BP     9  0 1.0000000000
## GO:0007042  BP     9  0 1.0000000000
## GO:1905146  BP     9  0 1.0000000000
## GO:0098734  BP     9  0 1.0000000000
## GO:0044351  BP     9  0 1.0000000000
## GO:0045199  BP     9  0 1.0000000000
## GO:0060592  BP     9  0 1.0000000000
## GO:0006013  BP     9  0 1.0000000000
## GO:0044771  BP     9  0 1.0000000000
## GO:0033206  BP     9  0 1.0000000000
## GO:0072497  BP     9  0 1.0000000000
## GO:0060638  BP     9  0 1.0000000000
## GO:0051418  BP     9  0 1.0000000000
## GO:0030917  BP     9  0 1.0000000000
## GO:0034551  BP     9  0 1.0000000000
## GO:0090646  BP     9  0 1.0000000000
## GO:0090647  BP     9  0 1.0000000000
## GO:0098828  BP     9  0 1.0000000000
## GO:0035520  BP     9  0 1.0000000000
## GO:0035878  BP     9  0 1.0000000000
## GO:0043320  BP     9  0 1.0000000000
## GO:0002713  BP     9  0 1.0000000000
## GO:0002725  BP     9  0 1.0000000000
## GO:0035562  BP     9  0 1.0000000000
## GO:0032471  BP     9  0 1.0000000000
## GO:1900102  BP     9  0 1.0000000000
## GO:1903748  BP     9  0 1.0000000000
## GO:1903054  BP     9  0 1.0000000000
## GO:2000192  BP     9  0 1.0000000000
## GO:2000270  BP     9  0 1.0000000000
## GO:0034351  BP     9  0 1.0000000000
## GO:0014050  BP     9  0 1.0000000000
## GO:0002890  BP     9  0 1.0000000000
## GO:0043569  BP     9  0 1.0000000000
## GO:0050713  BP     9  0 1.0000000000
## GO:0045617  BP     9  0 1.0000000000
## GO:0010985  BP     9  0 1.0000000000
## GO:2000381  BP     9  0 1.0000000000
## GO:0072217  BP     9  0 1.0000000000
## GO:0002887  BP     9  0 1.0000000000
## GO:0007406  BP     9  0 1.0000000000
## GO:2000051  BP     9  0 1.0000000000
## GO:0046533  BP     9  0 1.0000000000
## GO:0033234  BP     9  0 1.0000000000
## GO:0045869  BP     9  0 1.0000000000
## GO:0045988  BP     9  0 1.0000000000
## GO:1904354  BP     9  0 1.0000000000
## GO:0010944  BP     9  0 1.0000000000
## GO:0014029  BP     9  0 1.0000000000
## GO:0001842  BP     9  0 1.0000000000
## GO:0001839  BP     9  0 1.0000000000
## GO:0060896  BP     9  0 1.0000000000
## GO:0061101  BP     9  0 1.0000000000
## GO:0048664  BP     9  0 1.0000000000
## GO:0036480  BP     9  0 1.0000000000
## GO:0070944  BP     9  0 1.0000000000
## GO:0051292  BP     9  0 1.0000000000
## GO:0046113  BP     9  0 1.0000000000
## GO:0009134  BP     9  0 1.0000000000
## GO:0015858  BP     9  0 1.0000000000
## GO:0043173  BP     9  0 1.0000000000
## GO:0033683  BP     9  0 1.0000000000
## GO:0098597  BP     9  0 1.0000000000
## GO:0021891  BP     9  0 1.0000000000
## GO:0009313  BP     9  0 1.0000000000
## GO:0002158  BP     9  0 1.0000000000
## GO:0048840  BP     9  0 1.0000000000
## GO:0042473  BP     9  0 1.0000000000
## GO:0003310  BP     9  0 1.0000000000
## GO:0048341  BP     9  0 1.0000000000
## GO:0007567  BP     9  0 1.0000000000
## GO:0061004  BP     9  0 1.0000000000
## GO:0007341  BP     9  0 1.0000000000
## GO:0003344  BP     9  0 1.0000000000
## GO:0016559  BP     9  0 1.0000000000
## GO:0006646  BP     9  0 1.0000000000
## GO:0070816  BP     9  0 1.0000000000
## GO:0030638  BP     9  0 1.0000000000
## GO:0015791  BP     9  0 1.0000000000
## GO:2000969  BP     9  0 1.0000000000
## GO:2001187  BP     9  0 1.0000000000
## GO:1905216  BP     9  0 1.0000000000
## GO:1904179  BP     9  0 1.0000000000
## GO:1902669  BP     9  0 1.0000000000
## GO:1903589  BP     9  0 1.0000000000
## GO:1903012  BP     9  0 1.0000000000
## GO:0010753  BP     9  0 1.0000000000
## GO:1901978  BP     9  0 1.0000000000
## GO:0010825  BP     9  0 1.0000000000
## GO:0010873  BP     9  0 1.0000000000
## GO:0046010  BP     9  0 1.0000000000
## GO:2000848  BP     9  0 1.0000000000
## GO:2001269  BP     9  0 1.0000000000
## GO:0002741  BP     9  0 1.0000000000
## GO:2000767  BP     9  0 1.0000000000
## GO:0090045  BP     9  0 1.0000000000
## GO:1905168  BP     9  0 1.0000000000
## GO:1902237  BP     9  0 1.0000000000
## GO:0031536  BP     9  0 1.0000000000
## GO:0031622  BP     9  0 1.0000000000
## GO:2000617  BP     9  0 1.0000000000
## GO:0033129  BP     9  0 1.0000000000
## GO:2001046  BP     9  0 1.0000000000
## GO:0045084  BP     9  0 1.0000000000
## GO:0051006  BP     9  0 1.0000000000
## GO:1900454  BP     9  0 1.0000000000
## GO:2000020  BP     9  0 1.0000000000
## GO:1902101  BP     9  0 1.0000000000
## GO:0090309  BP     9  0 1.0000000000
## GO:0098779  BP     9  0 1.0000000000
## GO:0045657  BP     9  0 1.0000000000
## GO:0033034  BP     9  0 1.0000000000
## GO:0060406  BP     9  0 1.0000000000
## GO:2001140  BP     9  0 1.0000000000
## GO:1902966  BP     9  0 1.0000000000
## GO:2000234  BP     9  0 1.0000000000
## GO:1900122  BP     9  0 1.0000000000
## GO:1903911  BP     9  0 1.0000000000
## GO:1901033  BP     9  0 1.0000000000
## GO:0090070  BP     9  0 1.0000000000
## GO:1904058  BP     9  0 1.0000000000
## GO:0090031  BP     9  0 1.0000000000
## GO:0010898  BP     9  0 1.0000000000
## GO:0002894  BP     9  0 1.0000000000
## GO:0001798  BP     9  0 1.0000000000
## GO:0070474  BP     9  0 1.0000000000
## GO:2001214  BP     9  0 1.0000000000
## GO:0046598  BP     9  0 1.0000000000
## GO:0000338  BP     9  0 1.0000000000
## GO:0002084  BP     9  0 1.0000000000
## GO:0099612  BP     9  0 1.0000000000
## GO:1905383  BP     9  0 1.0000000000
## GO:0018095  BP     9  0 1.0000000000
## GO:0006152  BP     9  0 1.0000000000
## GO:0009128  BP     9  0 1.0000000000
## GO:0015865  BP     9  0 1.0000000000
## GO:0046130  BP     9  0 1.0000000000
## GO:0009221  BP     9  0 1.0000000000
## GO:0006290  BP     9  0 1.0000000000
## GO:0009129  BP     9  0 1.0000000000
## GO:0090481  BP     9  0 1.0000000000
## GO:0031125  BP     9  0 1.0000000000
## GO:0070316  BP     9  0 1.0000000000
## GO:0033860  BP     9  0 1.0000000000
## GO:0010624  BP     9  0 1.0000000000
## GO:1903715  BP     9  0 1.0000000000
## GO:0032344  BP     9  0 1.0000000000
## GO:0090237  BP     9  0 1.0000000000
## GO:1902959  BP     9  0 1.0000000000
## GO:0060312  BP     9  0 1.0000000000
## GO:2000172  BP     9  0 1.0000000000
## GO:0062042  BP     9  0 1.0000000000
## GO:0086036  BP     9  0 1.0000000000
## GO:0010881  BP     9  0 1.0000000000
## GO:1903242  BP     9  0 1.0000000000
## GO:0106049  BP     9  0 1.0000000000
## GO:2001225  BP     9  0 1.0000000000
## GO:0001672  BP     9  0 1.0000000000
## GO:1903659  BP     9  0 1.0000000000
## GO:0002604  BP     9  0 1.0000000000
## GO:2000508  BP     9  0 1.0000000000
## GO:0032070  BP     9  0 1.0000000000
## GO:1904338  BP     9  0 1.0000000000
## GO:0014060  BP     9  0 1.0000000000
## GO:2000794  BP     9  0 1.0000000000
## GO:0046643  BP     9  0 1.0000000000
## GO:0045586  BP     9  0 1.0000000000
## GO:1904304  BP     9  0 1.0000000000
## GO:0048819  BP     9  0 1.0000000000
## GO:0051095  BP     9  0 1.0000000000
## GO:1902033  BP     9  0 1.0000000000
## GO:2000489  BP     9  0 1.0000000000
## GO:1900125  BP     9  0 1.0000000000
## GO:0032650  BP     9  0 1.0000000000
## GO:1904729  BP     9  0 1.0000000000
## GO:0034756  BP     9  0 1.0000000000
## GO:2000392  BP     9  0 1.0000000000
## GO:1903236  BP     9  0 1.0000000000
## GO:0034091  BP     9  0 1.0000000000
## GO:0060631  BP     9  0 1.0000000000
## GO:1901993  BP     9  0 1.0000000000
## GO:0010635  BP     9  0 1.0000000000
## GO:2000671  BP     9  0 1.0000000000
## GO:0032817  BP     9  0 1.0000000000
## GO:0150011  BP     9  0 1.0000000000
## GO:1903376  BP     9  0 1.0000000000
## GO:0010966  BP     9  0 1.0000000000
## GO:0032429  BP     9  0 1.0000000000
## GO:2001138  BP     9  0 1.0000000000
## GO:0050932  BP     9  0 1.0000000000
## GO:0010835  BP     9  0 1.0000000000
## GO:1900044  BP     9  0 1.0000000000
## GO:0061635  BP     9  0 1.0000000000
## GO:1904776  BP     9  0 1.0000000000
## GO:1902965  BP     9  0 1.0000000000
## GO:1904749  BP     9  0 1.0000000000
## GO:2000121  BP     9  0 1.0000000000
## GO:0046877  BP     9  0 1.0000000000
## GO:0014807  BP     9  0 1.0000000000
## GO:0034139  BP     9  0 1.0000000000
## GO:0034163  BP     9  0 1.0000000000
## GO:0001810  BP     9  0 1.0000000000
## GO:0002892  BP     9  0 1.0000000000
## GO:0001796  BP     9  0 1.0000000000
## GO:0003056  BP     9  0 1.0000000000
## GO:0060556  BP     9  0 1.0000000000
## GO:0072048  BP     9  0 1.0000000000
## GO:0090399  BP     9  0 1.0000000000
## GO:0017062  BP     9  0 1.0000000000
## GO:0051412  BP     9  0 1.0000000000
## GO:0071871  BP     9  0 1.0000000000
## GO:0045472  BP     9  0 1.0000000000
## GO:0051409  BP     9  0 1.0000000000
## GO:0060040  BP     9  0 1.0000000000
## GO:0046666  BP     9  0 1.0000000000
## GO:0021546  BP     9  0 1.0000000000
## GO:0003139  BP     9  0 1.0000000000
## GO:0097264  BP     9  0 1.0000000000
## GO:0035581  BP     9  0 1.0000000000
## GO:0007210  BP     9  0 1.0000000000
## GO:0030241  BP     9  0 1.0000000000
## GO:0014816  BP     9  0 1.0000000000
## GO:0070922  BP     9  0 1.0000000000
## GO:0042795  BP     9  0 1.0000000000
## GO:0090520  BP     9  0 1.0000000000
## GO:0000244  BP     9  0 1.0000000000
## GO:0071688  BP     9  0 1.0000000000
## GO:0061549  BP     9  0 1.0000000000
## GO:0022028  BP     9  0 1.0000000000
## GO:0061370  BP     9  0 1.0000000000
## GO:0046146  BP     9  0 1.0000000000
## GO:0043587  BP     9  0 1.0000000000
## GO:0099545  BP     9  0 1.0000000000
## GO:0060290  BP     9  0 1.0000000000
## GO:0036363  BP     9  0 1.0000000000
## GO:0046794  BP     9  0 1.0000000000
## GO:0016068  BP     9  0 1.0000000000
## GO:0002445  BP     9  0 1.0000000000
## GO:0001794  BP     9  0 1.0000000000
## GO:0072197  BP     9  0 1.0000000000
## GO:0060677  BP     9  0 1.0000000000
## GO:0061042  BP     9  0 1.0000000000
## GO:0003223  BP     9  0 1.0000000000
## GO:0034372  BP     9  0 1.0000000000
## GO:0021562  BP     9  0 1.0000000000
## GO:0061032  BP     9  0 1.0000000000
## GO:0050882  BP     9  0 1.0000000000
## GO:0002246  BP     9  0 1.0000000000
## GO:0052697  BP     9  0 1.0000000000
## GO:0097341  BP     9  0 1.0000000000
## GO:0060020  BP    10  0 1.0000000000
## GO:0048208  BP    10  0 1.0000000000
## GO:0006183  BP    10  0 1.0000000000
## GO:0075522  BP    10  0 1.0000000000
## GO:0006558  BP    10  0 1.0000000000
## GO:0007220  BP    10  0 1.0000000000
## GO:0036499  BP    10  0 1.0000000000
## GO:0035744  BP    10  0 1.0000000000
## GO:0009650  BP    10  0 1.0000000000
## GO:0051639  BP    10  0 1.0000000000
## GO:0046085  BP    10  0 1.0000000000
## GO:0007191  BP    10  0 1.0000000000
## GO:0042891  BP    10  0 1.0000000000
## GO:0045176  BP    10  0 1.0000000000
## GO:0048149  BP    10  0 1.0000000000
## GO:0000492  BP    10  0 1.0000000000
## GO:0099004  BP    10  0 1.0000000000
## GO:0060379  BP    10  0 1.0000000000
## GO:0003211  BP    10  0 1.0000000000
## GO:0072203  BP    10  0 1.0000000000
## GO:0070417  BP    10  0 1.0000000000
## GO:0071257  BP    10  0 1.0000000000
## GO:0071233  BP    10  0 1.0000000000
## GO:1990253  BP    10  0 1.0000000000
## GO:0071223  BP    10  0 1.0000000000
## GO:0043562  BP    10  0 1.0000000000
## GO:0006995  BP    10  0 1.0000000000
## GO:0140052  BP    10  0 1.0000000000
## GO:0071501  BP    10  0 1.0000000000
## GO:0071305  BP    10  0 1.0000000000
## GO:0021800  BP    10  0 1.0000000000
## GO:0061684  BP    10  0 1.0000000000
## GO:0072321  BP    10  0 1.0000000000
## GO:0006707  BP    10  0 1.0000000000
## GO:0060710  BP    10  0 1.0000000000
## GO:0000183  BP    10  0 1.0000000000
## GO:0015937  BP    10  0 1.0000000000
## GO:0060982  BP    10  0 1.0000000000
## GO:0051458  BP    10  0 1.0000000000
## GO:0034650  BP    10  0 1.0000000000
## GO:0000290  BP    10  0 1.0000000000
## GO:1990504  BP    10  0 1.0000000000
## GO:0032253  BP    10  0 1.0000000000
## GO:1901950  BP    10  0 1.0000000000
## GO:0002934  BP    10  0 1.0000000000
## GO:0046543  BP    10  0 1.0000000000
## GO:0072017  BP    10  0 1.0000000000
## GO:0006488  BP    10  0 1.0000000000
## GO:0035907  BP    10  0 1.0000000000
## GO:0048703  BP    10  0 1.0000000000
## GO:0000478  BP    10  0 1.0000000000
## GO:0000479  BP    10  0 1.0000000000
## GO:0035646  BP    10  0 1.0000000000
## GO:0043485  BP    10  0 1.0000000000
## GO:0048242  BP    10  0 1.0000000000
## GO:1902221  BP    10  0 1.0000000000
## GO:0046485  BP    10  0 1.0000000000
## GO:0051601  BP    10  0 1.0000000000
## GO:0043928  BP    10  0 1.0000000000
## GO:1900116  BP    10  0 1.0000000000
## GO:1900115  BP    10  0 1.0000000000
## GO:0021612  BP    10  0 1.0000000000
## GO:1901569  BP    10  0 1.0000000000
## GO:0090269  BP    10  0 1.0000000000
## GO:0046884  BP    10  0 1.0000000000
## GO:0021873  BP    10  0 1.0000000000
## GO:0006000  BP    10  0 1.0000000000
## GO:0019374  BP    10  0 1.0000000000
## GO:0016264  BP    10  0 1.0000000000
## GO:0061620  BP    10  0 1.0000000000
## GO:0003129  BP    10  0 1.0000000000
## GO:0015014  BP    10  0 1.0000000000
## GO:0034380  BP    10  0 1.0000000000
## GO:0002349  BP    10  0 1.0000000000
## GO:0002553  BP    10  0 1.0000000000
## GO:0002441  BP    10  0 1.0000000000
## GO:0044154  BP    10  0 1.0000000000
## GO:0098532  BP    10  0 1.0000000000
## GO:0010452  BP    10  0 1.0000000000
## GO:0052803  BP    10  0 1.0000000000
## GO:1901142  BP    10  0 1.0000000000
## GO:0045350  BP    10  0 1.0000000000
## GO:0022027  BP    10  0 1.0000000000
## GO:0072610  BP    10  0 1.0000000000
## GO:0032621  BP    10  0 1.0000000000
## GO:0008300  BP    10  0 1.0000000000
## GO:0098598  BP    10  0 1.0000000000
## GO:0043651  BP    10  0 1.0000000000
## GO:0035336  BP    10  0 1.0000000000
## GO:0072070  BP    10  0 1.0000000000
## GO:0060484  BP    10  0 1.0000000000
## GO:0071888  BP    10  0 1.0000000000
## GO:0035090  BP    10  0 1.0000000000
## GO:0035437  BP    10  0 1.0000000000
## GO:0002176  BP    10  0 1.0000000000
## GO:0002315  BP    10  0 1.0000000000
## GO:0051791  BP    10  0 1.0000000000
## GO:0051177  BP    10  0 1.0000000000
## GO:0045144  BP    10  0 1.0000000000
## GO:0003149  BP    10  0 1.0000000000
## GO:0048382  BP    10  0 1.0000000000
## GO:0072173  BP    10  0 1.0000000000
## GO:0010587  BP    10  0 1.0000000000
## GO:0034454  BP    10  0 1.0000000000
## GO:0033314  BP    10  0 1.0000000000
## GO:0072674  BP    10  0 1.0000000000
## GO:0030049  BP    10  0 1.0000000000
## GO:0002318  BP    10  0 1.0000000000
## GO:0031034  BP    10  0 1.0000000000
## GO:0002420  BP    10  0 1.0000000000
## GO:0044793  BP    10  0 1.0000000000
## GO:0043922  BP    10  0 1.0000000000
## GO:0033085  BP    10  0 1.0000000000
## GO:0045759  BP    10  0 1.0000000000
## GO:1903011  BP    10  0 1.0000000000
## GO:1900038  BP    10  0 1.0000000000
## GO:0032375  BP    10  0 1.0000000000
## GO:1902018  BP    10  0 1.0000000000
## GO:0048671  BP    10  0 1.0000000000
## GO:0043301  BP    10  0 1.0000000000
## GO:0010745  BP    10  0 1.0000000000
## GO:1905522  BP    10  0 1.0000000000
## GO:0031642  BP    10  0 1.0000000000
## GO:0051001  BP    10  0 1.0000000000
## GO:0033689  BP    10  0 1.0000000000
## GO:0032372  BP    10  0 1.0000000000
## GO:0070244  BP    10  0 1.0000000000
## GO:0071635  BP    10  0 1.0000000000
## GO:1904468  BP    10  0 1.0000000000
## GO:1904667  BP    10  0 1.0000000000
## GO:0035811  BP    10  0 1.0000000000
## GO:0039532  BP    10  0 1.0000000000
## GO:0060052  BP    10  0 1.0000000000
## GO:0007158  BP    10  0 1.0000000000
## GO:1990535  BP    10  0 1.0000000000
## GO:0007270  BP    10  0 1.0000000000
## GO:0098700  BP    10  0 1.0000000000
## GO:0099628  BP    10  0 1.0000000000
## GO:0042421  BP    10  0 1.0000000000
## GO:0031468  BP    10  0 1.0000000000
## GO:0034427  BP    10  0 1.0000000000
## GO:0015780  BP    10  0 1.0000000000
## GO:0006591  BP    10  0 1.0000000000
## GO:0018026  BP    10  0 1.0000000000
## GO:0061626  BP    10  0 1.0000000000
## GO:0019336  BP    10  0 1.0000000000
## GO:0007603  BP    10  0 1.0000000000
## GO:0048757  BP    10  0 1.0000000000
## GO:0030311  BP    10  0 1.0000000000
## GO:0030309  BP    10  0 1.0000000000
## GO:0045348  BP    10  0 1.0000000000
## GO:2000318  BP    10  0 1.0000000000
## GO:0032927  BP    10  0 1.0000000000
## GO:0045762  BP    10  0 1.0000000000
## GO:0090336  BP    10  0 1.0000000000
## GO:1901724  BP    10  0 1.0000000000
## GO:2000774  BP    10  0 1.0000000000
## GO:0021940  BP    10  0 1.0000000000
## GO:1905820  BP    10  0 1.0000000000
## GO:1900103  BP    10  0 1.0000000000
## GO:0045741  BP    10  0 1.0000000000
## GO:1903749  BP    10  0 1.0000000000
## GO:1904851  BP    10  0 1.0000000000
## GO:0090091  BP    10  0 1.0000000000
## GO:0032000  BP    10  0 1.0000000000
## GO:1902093  BP    10  0 1.0000000000
## GO:2000347  BP    10  0 1.0000000000
## GO:0033625  BP    10  0 1.0000000000
## GO:0060907  BP    10  0 1.0000000000
## GO:1901526  BP    10  0 1.0000000000
## GO:0070257  BP    10  0 1.0000000000
## GO:2000391  BP    10  0 1.0000000000
## GO:1903800  BP    10  0 1.0000000000
## GO:0031274  BP    10  0 1.0000000000
## GO:0090129  BP    10  0 1.0000000000
## GO:0032224  BP    10  0 1.0000000000
## GO:2000302  BP    10  0 1.0000000000
## GO:0002645  BP    10  0 1.0000000000
## GO:0034145  BP    10  0 1.0000000000
## GO:1901838  BP    10  0 1.0000000000
## GO:0051971  BP    10  0 1.0000000000
## GO:0061365  BP    10  0 1.0000000000
## GO:2001280  BP    10  0 1.0000000000
## GO:0097119  BP    10  0 1.0000000000
## GO:0098970  BP    10  0 1.0000000000
## GO:0097105  BP    10  0 1.0000000000
## GO:0060215  BP    10  0 1.0000000000
## GO:0090009  BP    10  0 1.0000000000
## GO:0006560  BP    10  0 1.0000000000
## GO:0015824  BP    10  0 1.0000000000
## GO:0060513  BP    10  0 1.0000000000
## GO:0031848  BP    10  0 1.0000000000
## GO:0035871  BP    10  0 1.0000000000
## GO:0018242  BP    10  0 1.0000000000
## GO:0034975  BP    10  0 1.0000000000
## GO:0034214  BP    10  0 1.0000000000
## GO:0051204  BP    10  0 1.0000000000
## GO:0090435  BP    10  0 1.0000000000
## GO:0009209  BP    10  0 1.0000000000
## GO:0098953  BP    10  0 1.0000000000
## GO:0032875  BP    10  0 1.0000000000
## GO:0042996  BP    10  0 1.0000000000
## GO:0051133  BP    10  0 1.0000000000
## GO:0035542  BP    10  0 1.0000000000
## GO:2000551  BP    10  0 1.0000000000
## GO:0010692  BP    10  0 1.0000000000
## GO:0010958  BP    10  0 1.0000000000
## GO:1905245  BP    10  0 1.0000000000
## GO:1901096  BP    10  0 1.0000000000
## GO:0070857  BP    10  0 1.0000000000
## GO:0010612  BP    10  0 1.0000000000
## GO:2000303  BP    10  0 1.0000000000
## GO:2001135  BP    10  0 1.0000000000
## GO:0031620  BP    10  0 1.0000000000
## GO:0051917  BP    10  0 1.0000000000
## GO:0090270  BP    10  0 1.0000000000
## GO:0002634  BP    10  0 1.0000000000
## GO:0031943  BP    10  0 1.0000000000
## GO:0033131  BP    10  0 1.0000000000
## GO:0035947  BP    10  0 1.0000000000
## GO:0040009  BP    10  0 1.0000000000
## GO:1905097  BP    10  0 1.0000000000
## GO:1902036  BP    10  0 1.0000000000
## GO:0033182  BP    10  0 1.0000000000
## GO:0033084  BP    10  0 1.0000000000
## GO:0045607  BP    10  0 1.0000000000
## GO:2000980  BP    10  0 1.0000000000
## GO:0045357  BP    10  0 1.0000000000
## GO:2001179  BP    10  0 1.0000000000
## GO:1900040  BP    10  0 1.0000000000
## GO:1905456  BP    10  0 1.0000000000
## GO:1902415  BP    10  0 1.0000000000
## GO:2000109  BP    10  0 1.0000000000
## GO:0045631  BP    10  0 1.0000000000
## GO:1904526  BP    10  0 1.0000000000
## GO:2000574  BP    10  0 1.0000000000
## GO:0002858  BP    10  0 1.0000000000
## GO:0098908  BP    10  0 1.0000000000
## GO:1902563  BP    10  0 1.0000000000
## GO:0033029  BP    10  0 1.0000000000
## GO:2000389  BP    10  0 1.0000000000
## GO:1900193  BP    10  0 1.0000000000
## GO:0090186  BP    10  0 1.0000000000
## GO:0099509  BP    10  0 1.0000000000
## GO:0043497  BP    10  0 1.0000000000
## GO:1904779  BP    10  0 1.0000000000
## GO:2000644  BP    10  0 1.0000000000
## GO:0060297  BP    10  0 1.0000000000
## GO:0014062  BP    10  0 1.0000000000
## GO:0043416  BP    10  0 1.0000000000
## GO:0051823  BP    10  0 1.0000000000
## GO:2000807  BP    10  0 1.0000000000
## GO:1902947  BP    10  0 1.0000000000
## GO:0070170  BP    10  0 1.0000000000
## GO:0032908  BP    10  0 1.0000000000
## GO:0032354  BP    10  0 1.0000000000
## GO:0070673  BP    10  0 1.0000000000
## GO:0010288  BP    10  0 1.0000000000
## GO:0043201  BP    10  0 1.0000000000
## GO:0070391  BP    10  0 1.0000000000
## GO:0051775  BP    10  0 1.0000000000
## GO:1902074  BP    10  0 1.0000000000
## GO:0033299  BP    10  0 1.0000000000
## GO:0000012  BP    10  0 1.0000000000
## GO:0035093  BP    10  0 1.0000000000
## GO:0008216  BP    10  0 1.0000000000
## GO:0046512  BP    10  0 1.0000000000
## GO:0016127  BP    10  0 1.0000000000
## GO:0021843  BP    10  0 1.0000000000
## GO:0021826  BP    10  0 1.0000000000
## GO:0051124  BP    10  0 1.0000000000
## GO:0006388  BP    10  0 1.0000000000
## GO:0099542  BP    10  0 1.0000000000
## GO:0099541  BP    10  0 1.0000000000
## GO:0006283  BP    10  0 1.0000000000
## GO:0033572  BP    10  0 1.0000000000
## GO:0014883  BP    10  0 1.0000000000
## GO:0034370  BP    10  0 1.0000000000
## GO:0048207  BP    10  0 1.0000000000
## GO:0009265  BP    11  0 1.0000000000
## GO:0097113  BP    11  0 1.0000000000
## GO:0086016  BP    11  0 1.0000000000
## GO:0086027  BP    11  0 1.0000000000
## GO:0035739  BP    11  0 1.0000000000
## GO:0006977  BP    11  0 1.0000000000
## GO:0042023  BP    11  0 1.0000000000
## GO:0006266  BP    11  0 1.0000000000
## GO:0086103  BP    11  0 1.0000000000
## GO:0046040  BP    11  0 1.0000000000
## GO:0033327  BP    11  0 1.0000000000
## GO:0006054  BP    11  0 1.0000000000
## GO:0001865  BP    11  0 1.0000000000
## GO:0000394  BP    11  0 1.0000000000
## GO:0014010  BP    11  0 1.0000000000
## GO:0051764  BP    11  0 1.0000000000
## GO:0051014  BP    11  0 1.0000000000
## GO:0098870  BP    11  0 1.0000000000
## GO:0002118  BP    11  0 1.0000000000
## GO:0032342  BP    11  0 1.0000000000
## GO:0035881  BP    11  0 1.0000000000
## GO:0006527  BP    11  0 1.0000000000
## GO:0015809  BP    11  0 1.0000000000
## GO:0030953  BP    11  0 1.0000000000
## GO:0098722  BP    11  0 1.0000000000
## GO:0070831  BP    11  0 1.0000000000
## GO:0060346  BP    11  0 1.0000000000
## GO:0006171  BP    11  0 1.0000000000
## GO:0036444  BP    11  0 1.0000000000
## GO:1901660  BP    11  0 1.0000000000
## GO:0061309  BP    11  0 1.0000000000
## GO:0003263  BP    11  0 1.0000000000
## GO:0072584  BP    11  0 1.0000000000
## GO:0043482  BP    11  0 1.0000000000
## GO:0036006  BP    11  0 1.0000000000
## GO:0071732  BP    11  0 1.0000000000
## GO:0071415  BP    11  0 1.0000000000
## GO:0070601  BP    11  0 1.0000000000
## GO:0035627  BP    11  0 1.0000000000
## GO:0021684  BP    11  0 1.0000000000
## GO:0021707  BP    11  0 1.0000000000
## GO:0021892  BP    11  0 1.0000000000
## GO:0031055  BP    11  0 1.0000000000
## GO:0038063  BP    11  0 1.0000000000
## GO:0035726  BP    11  0 1.0000000000
## GO:0001867  BP    11  0 1.0000000000
## GO:0097278  BP    11  0 1.0000000000
## GO:0097709  BP    11  0 1.0000000000
## GO:0007028  BP    11  0 1.0000000000
## GO:0002468  BP    11  0 1.0000000000
## GO:0098935  BP    11  0 1.0000000000
## GO:0046385  BP    11  0 1.0000000000
## GO:0046386  BP    11  0 1.0000000000
## GO:0032490  BP    11  0 1.0000000000
## GO:0048263  BP    11  0 1.0000000000
## GO:0048262  BP    11  0 1.0000000000
## GO:0060600  BP    11  0 1.0000000000
## GO:0016102  BP    11  0 1.0000000000
## GO:0000727  BP    11  0 1.0000000000
## GO:0060900  BP    11  0 1.0000000000
## GO:0048617  BP    11  0 1.0000000000
## GO:0048241  BP    11  0 1.0000000000
## GO:0070278  BP    11  0 1.0000000000
## GO:1903867  BP    11  0 1.0000000000
## GO:0033539  BP    11  0 1.0000000000
## GO:0009812  BP    11  0 1.0000000000
## GO:0006002  BP    11  0 1.0000000000
## GO:0001574  BP    11  0 1.0000000000
## GO:0036093  BP    11  0 1.0000000000
## GO:0072102  BP    11  0 1.0000000000
## GO:1901072  BP    11  0 1.0000000000
## GO:0006072  BP    11  0 1.0000000000
## GO:0008626  BP    11  0 1.0000000000
## GO:0035733  BP    11  0 1.0000000000
## GO:0031507  BP    11  0 1.0000000000
## GO:0033080  BP    11  0 1.0000000000
## GO:0006586  BP    11  0 1.0000000000
## GO:0072642  BP    11  0 1.0000000000
## GO:0032610  BP    11  0 1.0000000000
## GO:0042090  BP    11  0 1.0000000000
## GO:0048312  BP    11  0 1.0000000000
## GO:1901678  BP    11  0 1.0000000000
## GO:0033210  BP    11  0 1.0000000000
## GO:0060174  BP    11  0 1.0000000000
## GO:0097421  BP    11  0 1.0000000000
## GO:0051657  BP    11  0 1.0000000000
## GO:0099558  BP    11  0 1.0000000000
## GO:0060056  BP    11  0 1.0000000000
## GO:0090148  BP    11  0 1.0000000000
## GO:0001765  BP    11  0 1.0000000000
## GO:0072172  BP    11  0 1.0000000000
## GO:0072075  BP    11  0 1.0000000000
## GO:0043653  BP    11  0 1.0000000000
## GO:0014889  BP    11  0 1.0000000000
## GO:0002423  BP    11  0 1.0000000000
## GO:2000320  BP    11  0 1.0000000000
## GO:0046007  BP    11  0 1.0000000000
## GO:0090281  BP    11  0 1.0000000000
## GO:1902260  BP    11  0 1.0000000000
## GO:0045602  BP    11  0 1.0000000000
## GO:0090394  BP    11  0 1.0000000000
## GO:0010459  BP    11  0 1.0000000000
## GO:0034115  BP    11  0 1.0000000000
## GO:1902166  BP    11  0 1.0000000000
## GO:0150079  BP    11  0 1.0000000000
## GO:1903799  BP    11  0 1.0000000000
## GO:0032463  BP    11  0 1.0000000000
## GO:0051967  BP    11  0 1.0000000000
## GO:0090209  BP    11  0 1.0000000000
## GO:0072178  BP    11  0 1.0000000000
## GO:0038180  BP    11  0 1.0000000000
## GO:0019227  BP    11  0 1.0000000000
## GO:0098887  BP    11  0 1.0000000000
## GO:0070943  BP    11  0 1.0000000000
## GO:0009125  BP    11  0 1.0000000000
## GO:0021554  BP    11  0 1.0000000000
## GO:0071600  BP    11  0 1.0000000000
## GO:0006107  BP    11  0 1.0000000000
## GO:0018206  BP    11  0 1.0000000000
## GO:0019511  BP    11  0 1.0000000000
## GO:0048935  BP    11  0 1.0000000000
## GO:0048934  BP    11  0 1.0000000000
## GO:0006658  BP    11  0 1.0000000000
## GO:0033700  BP    11  0 1.0000000000
## GO:0035845  BP    11  0 1.0000000000
## GO:2000344  BP    11  0 1.0000000000
## GO:0002579  BP    11  0 1.0000000000
## GO:2000786  BP    11  0 1.0000000000
## GO:1903431  BP    11  0 1.0000000000
## GO:0071864  BP    11  0 1.0000000000
## GO:1901857  BP    11  0 1.0000000000
## GO:2000343  BP    11  0 1.0000000000
## GO:0033603  BP    11  0 1.0000000000
## GO:1903977  BP    11  0 1.0000000000
## GO:0051574  BP    11  0 1.0000000000
## GO:0043568  BP    11  0 1.0000000000
## GO:1902741  BP    11  0 1.0000000000
## GO:0045416  BP    11  0 1.0000000000
## GO:1902231  BP    11  0 1.0000000000
## GO:0031442  BP    11  0 1.0000000000
## GO:0010744  BP    11  0 1.0000000000
## GO:0051561  BP    11  0 1.0000000000
## GO:0051901  BP    11  0 1.0000000000
## GO:1901030  BP    11  0 1.0000000000
## GO:2000288  BP    11  0 1.0000000000
## GO:0010739  BP    11  0 1.0000000000
## GO:0090037  BP    11  0 1.0000000000
## GO:0010870  BP    11  0 1.0000000000
## GO:0045876  BP    11  0 1.0000000000
## GO:0045945  BP    11  0 1.0000000000
## GO:1990440  BP    11  0 1.0000000000
## GO:0048563  BP    11  0 1.0000000000
## GO:0031077  BP    11  0 1.0000000000
## GO:0097104  BP    11  0 1.0000000000
## GO:0098789  BP    11  0 1.0000000000
## GO:0097354  BP    11  0 1.0000000000
## GO:0070213  BP    11  0 1.0000000000
## GO:0007039  BP    11  0 1.0000000000
## GO:0097499  BP    11  0 1.0000000000
## GO:0018342  BP    11  0 1.0000000000
## GO:0018298  BP    11  0 1.0000000000
## GO:0021860  BP    11  0 1.0000000000
## GO:0009208  BP    11  0 1.0000000000
## GO:2000561  BP    11  0 1.0000000000
## GO:0002664  BP    11  0 1.0000000000
## GO:2000822  BP    11  0 1.0000000000
## GO:0060693  BP    11  0 1.0000000000
## GO:1902514  BP    11  0 1.0000000000
## GO:1901894  BP    11  0 1.0000000000
## GO:0070587  BP    11  0 1.0000000000
## GO:0010872  BP    11  0 1.0000000000
## GO:0002676  BP    11  0 1.0000000000
## GO:0003356  BP    11  0 1.0000000000
## GO:0150065  BP    11  0 1.0000000000
## GO:1903998  BP    11  0 1.0000000000
## GO:0060768  BP    11  0 1.0000000000
## GO:0070203  BP    11  0 1.0000000000
## GO:1903365  BP    11  0 1.0000000000
## GO:0045924  BP    11  0 1.0000000000
## GO:0014052  BP    11  0 1.0000000000
## GO:2000322  BP    11  0 1.0000000000
## GO:2000849  BP    11  0 1.0000000000
## GO:1903299  BP    11  0 1.0000000000
## GO:0035330  BP    11  0 1.0000000000
## GO:0061085  BP    11  0 1.0000000000
## GO:0002923  BP    11  0 1.0000000000
## GO:1902739  BP    11  0 1.0000000000
## GO:0045075  BP    11  0 1.0000000000
## GO:0048021  BP    11  0 1.0000000000
## GO:1905038  BP    11  0 1.0000000000
## GO:0002855  BP    11  0 1.0000000000
## GO:0072182  BP    11  0 1.0000000000
## GO:1902513  BP    11  0 1.0000000000
## GO:2001204  BP    11  0 1.0000000000
## GO:0060405  BP    11  0 1.0000000000
## GO:0046532  BP    11  0 1.0000000000
## GO:0048548  BP    11  0 1.0000000000
## GO:0031392  BP    11  0 1.0000000000
## GO:1903332  BP    11  0 1.0000000000
## GO:0031272  BP    11  0 1.0000000000
## GO:0003266  BP    11  0 1.0000000000
## GO:0045091  BP    11  0 1.0000000000
## GO:0090153  BP    11  0 1.0000000000
## GO:1901339  BP    11  0 1.0000000000
## GO:0042762  BP    11  0 1.0000000000
## GO:0031630  BP    11  0 1.0000000000
## GO:0010807  BP    11  0 1.0000000000
## GO:0034135  BP    11  0 1.0000000000
## GO:0043619  BP    11  0 1.0000000000
## GO:0006450  BP    11  0 1.0000000000
## GO:1901163  BP    11  0 1.0000000000
## GO:0090043  BP    11  0 1.0000000000
## GO:1905459  BP    11  0 1.0000000000
## GO:0044557  BP    11  0 1.0000000000
## GO:0002679  BP    11  0 1.0000000000
## GO:0034776  BP    11  0 1.0000000000
## GO:0017085  BP    11  0 1.0000000000
## GO:0036005  BP    11  0 1.0000000000
## GO:0010042  BP    11  0 1.0000000000
## GO:0046689  BP    11  0 1.0000000000
## GO:0051385  BP    11  0 1.0000000000
## GO:0006991  BP    11  0 1.0000000000
## GO:0014874  BP    11  0 1.0000000000
## GO:0061299  BP    11  0 1.0000000000
## GO:0002138  BP    11  0 1.0000000000
## GO:0060013  BP    11  0 1.0000000000
## GO:0060872  BP    11  0 1.0000000000
## GO:0048630  BP    11  0 1.0000000000
## GO:0043589  BP    11  0 1.0000000000
## GO:0009301  BP    11  0 1.0000000000
## GO:0046520  BP    11  0 1.0000000000
## GO:0061669  BP    11  0 1.0000000000
## GO:0070142  BP    11  0 1.0000000000
## GO:0016188  BP    11  0 1.0000000000
## GO:0035999  BP    11  0 1.0000000000
## GO:0070493  BP    11  0 1.0000000000
## GO:0006384  BP    11  0 1.0000000000
## GO:0032905  BP    11  0 1.0000000000
## GO:0021559  BP    11  0 1.0000000000
## GO:0006568  BP    11  0 1.0000000000
## GO:0072641  BP    11  0 1.0000000000
## GO:0006570  BP    11  0 1.0000000000
## GO:0000050  BP    11  0 1.0000000000
## GO:1905288  BP    11  0 1.0000000000
## GO:0097084  BP    11  0 1.0000000000
## GO:0048845  BP    11  0 1.0000000000
## GO:0055015  BP    11  0 1.0000000000
## GO:0042368  BP    11  0 1.0000000000
## GO:0009111  BP    11  0 1.0000000000
## GO:0098792  BP    11  0 1.0000000000
## GO:0019471  BP    12  0 1.0000000000
## GO:0032488  BP    12  0 1.0000000000
## GO:0071712  BP    12  0 1.0000000000
## GO:0035588  BP    12  0 1.0000000000
## GO:0090161  BP    12  0 1.0000000000
## GO:0036498  BP    12  0 1.0000000000
## GO:0072683  BP    12  0 1.0000000000
## GO:0072540  BP    12  0 1.0000000000
## GO:0006047  BP    12  0 1.0000000000
## GO:0003306  BP    12  0 1.0000000000
## GO:0006086  BP    12  0 1.0000000000
## GO:0033275  BP    12  0 1.0000000000
## GO:0001973  BP    12  0 1.0000000000
## GO:0007195  BP    12  0 1.0000000000
## GO:0019646  BP    12  0 1.0000000000
## GO:0032341  BP    12  0 1.0000000000
## GO:0060033  BP    12  0 1.0000000000
## GO:0038166  BP    12  0 1.0000000000
## GO:0009068  BP    12  0 1.0000000000
## GO:0019896  BP    12  0 1.0000000000
## GO:0035630  BP    12  0 1.0000000000
## GO:0060433  BP    12  0 1.0000000000
## GO:0006182  BP    12  0 1.0000000000
## GO:0061577  BP    12  0 1.0000000000
## GO:0003207  BP    12  0 1.0000000000
## GO:0032048  BP    12  0 1.0000000000
## GO:0009437  BP    12  0 1.0000000000
## GO:0060573  BP    12  0 1.0000000000
## GO:0071838  BP    12  0 1.0000000000
## GO:0070586  BP    12  0 1.0000000000
## GO:0045217  BP    12  0 1.0000000000
## GO:0071318  BP    12  0 1.0000000000
## GO:0071468  BP    12  0 1.0000000000
## GO:0036295  BP    12  0 1.0000000000
## GO:0035457  BP    12  0 1.0000000000
## GO:0071281  BP    12  0 1.0000000000
## GO:0071294  BP    12  0 1.0000000000
## GO:0070508  BP    12  0 1.0000000000
## GO:0048096  BP    12  0 1.0000000000
## GO:0072044  BP    12  0 1.0000000000
## GO:0006957  BP    12  0 1.0000000000
## GO:0009264  BP    12  0 1.0000000000
## GO:0043649  BP    12  0 1.0000000000
## GO:0090494  BP    12  0 1.0000000000
## GO:0060502  BP    12  0 1.0000000000
## GO:0060767  BP    12  0 1.0000000000
## GO:0090557  BP    12  0 1.0000000000
## GO:0021561  BP    12  0 1.0000000000
## GO:0021610  BP    12  0 1.0000000000
## GO:0070341  BP    12  0 1.0000000000
## GO:0007440  BP    12  0 1.0000000000
## GO:0001731  BP    12  0 1.0000000000
## GO:0030388  BP    12  0 1.0000000000
## GO:0035933  BP    12  0 1.0000000000
## GO:0097688  BP    12  0 1.0000000000
## GO:0006750  BP    12  0 1.0000000000
## GO:0006662  BP    12  0 1.0000000000
## GO:0015816  BP    12  0 1.0000000000
## GO:0042541  BP    12  0 1.0000000000
## GO:0034375  BP    12  0 1.0000000000
## GO:0033523  BP    12  0 1.0000000000
## GO:0070933  BP    12  0 1.0000000000
## GO:0034969  BP    12  0 1.0000000000
## GO:0071044  BP    12  0 1.0000000000
## GO:0006020  BP    12  0 1.0000000000
## GO:0072608  BP    12  0 1.0000000000
## GO:0072615  BP    12  0 1.0000000000
## GO:0070970  BP    12  0 1.0000000000
## GO:0006880  BP    12  0 1.0000000000
## GO:1902400  BP    12  0 1.0000000000
## GO:0021670  BP    12  0 1.0000000000
## GO:0070986  BP    12  0 1.0000000000
## GO:0032799  BP    12  0 1.0000000000
## GO:0060430  BP    12  0 1.0000000000
## GO:0032275  BP    12  0 1.0000000000
## GO:0098787  BP    12  0 1.0000000000
## GO:0034088  BP    12  0 1.0000000000
## GO:0060179  BP    12  0 1.0000000000
## GO:0007135  BP    12  0 1.0000000000
## GO:0061983  BP    12  0 1.0000000000
## GO:0007128  BP    12  0 1.0000000000
## GO:0045141  BP    12  0 1.0000000000
## GO:0086013  BP    12  0 1.0000000000
## GO:0003337  BP    12  0 1.0000000000
## GO:0009086  BP    12  0 1.0000000000
## GO:0072393  BP    12  0 1.0000000000
## GO:0060073  BP    12  0 1.0000000000
## GO:0006705  BP    12  0 1.0000000000
## GO:0006123  BP    12  0 1.0000000000
## GO:0006122  BP    12  0 1.0000000000
## GO:0007100  BP    12  0 1.0000000000
## GO:0003183  BP    12  0 1.0000000000
## GO:0097049  BP    12  0 1.0000000000
## GO:0060586  BP    12  0 1.0000000000
## GO:0031033  BP    12  0 1.0000000000
## GO:0001787  BP    12  0 1.0000000000
## GO:2000317  BP    12  0 1.0000000000
## GO:0061052  BP    12  0 1.0000000000
## GO:0010826  BP    12  0 1.0000000000
## GO:1900118  BP    12  0 1.0000000000
## GO:0045717  BP    12  0 1.0000000000
## GO:0032353  BP    12  0 1.0000000000
## GO:0002921  BP    12  0 1.0000000000
## GO:1900165  BP    12  0 1.0000000000
## GO:1900272  BP    12  0 1.0000000000
## GO:2000402  BP    12  0 1.0000000000
## GO:0033004  BP    12  0 1.0000000000
## GO:0014745  BP    12  0 1.0000000000
## GO:0046929  BP    12  0 1.0000000000
## GO:2000009  BP    12  0 1.0000000000
## GO:0051280  BP    12  0 1.0000000000
## GO:0034392  BP    12  0 1.0000000000
## GO:0097201  BP    12  0 1.0000000000
## GO:0072176  BP    12  0 1.0000000000
## GO:0001840  BP    12  0 1.0000000000
## GO:0045161  BP    12  0 1.0000000000
## GO:0099639  BP    12  0 1.0000000000
## GO:0001781  BP    12  0 1.0000000000
## GO:0043312  BP    12  0 1.0000000000
## GO:0048570  BP    12  0 1.0000000000
## GO:0070431  BP    12  0 1.0000000000
## GO:0070423  BP    12  0 1.0000000000
## GO:0070444  BP    12  0 1.0000000000
## GO:0006490  BP    12  0 1.0000000000
## GO:0006098  BP    12  0 1.0000000000
## GO:0030432  BP    12  0 1.0000000000
## GO:0006654  BP    12  0 1.0000000000
## GO:0055091  BP    12  0 1.0000000000
## GO:0043476  BP    12  0 1.0000000000
## GO:0001778  BP    12  0 1.0000000000
## GO:2000105  BP    12  0 1.0000000000
## GO:0030836  BP    12  0 1.0000000000
## GO:1903961  BP    12  0 1.0000000000
## GO:0090343  BP    12  0 1.0000000000
## GO:0033240  BP    12  0 1.0000000000
## GO:0046607  BP    12  0 1.0000000000
## GO:0045080  BP    12  0 1.0000000000
## GO:1900426  BP    12  0 1.0000000000
## GO:2000253  BP    12  0 1.0000000000
## GO:0032725  BP    12  0 1.0000000000
## GO:0060124  BP    12  0 1.0000000000
## GO:0051798  BP    12  0 1.0000000000
## GO:0051024  BP    12  0 1.0000000000
## GO:0045078  BP    12  0 1.0000000000
## GO:0045086  BP    12  0 1.0000000000
## GO:0032754  BP    12  0 1.0000000000
## GO:0010838  BP    12  0 1.0000000000
## GO:0071639  BP    12  0 1.0000000000
## GO:0032825  BP    12  0 1.0000000000
## GO:0060213  BP    12  0 1.0000000000
## GO:0071073  BP    12  0 1.0000000000
## GO:0032308  BP    12  0 1.0000000000
## GO:1905668  BP    12  0 1.0000000000
## GO:1902459  BP    12  0 1.0000000000
## GO:1900244  BP    12  0 1.0000000000
## GO:1902805  BP    12  0 1.0000000000
## GO:0002329  BP    12  0 1.0000000000
## GO:0051324  BP    12  0 1.0000000000
## GO:0060525  BP    12  0 1.0000000000
## GO:0006517  BP    12  0 1.0000000000
## GO:0016926  BP    12  0 1.0000000000
## GO:0016558  BP    12  0 1.0000000000
## GO:1902946  BP    12  0 1.0000000000
## GO:0097428  BP    12  0 1.0000000000
## GO:0021859  BP    12  0 1.0000000000
## GO:0009219  BP    12  0 1.0000000000
## GO:0007168  BP    12  0 1.0000000000
## GO:0060368  BP    12  0 1.0000000000
## GO:1905214  BP    12  0 1.0000000000
## GO:0045625  BP    12  0 1.0000000000
## GO:1903789  BP    12  0 1.0000000000
## GO:1902510  BP    12  0 1.0000000000
## GO:0051988  BP    12  0 1.0000000000
## GO:1904251  BP    12  0 1.0000000000
## GO:0002016  BP    12  0 1.0000000000
## GO:0003264  BP    12  0 1.0000000000
## GO:0071863  BP    12  0 1.0000000000
## GO:0033632  BP    12  0 1.0000000000
## GO:0006521  BP    12  0 1.0000000000
## GO:0043471  BP    12  0 1.0000000000
## GO:0042268  BP    12  0 1.0000000000
## GO:0002730  BP    12  0 1.0000000000
## GO:0060159  BP    12  0 1.0000000000
## GO:0070202  BP    12  0 1.0000000000
## GO:0070344  BP    12  0 1.0000000000
## GO:0060453  BP    12  0 1.0000000000
## GO:0072124  BP    12  0 1.0000000000
## GO:0070092  BP    12  0 1.0000000000
## GO:2000615  BP    12  0 1.0000000000
## GO:1900112  BP    12  0 1.0000000000
## GO:1901298  BP    12  0 1.0000000000
## GO:0033083  BP    12  0 1.0000000000
## GO:0010749  BP    12  0 1.0000000000
## GO:0070445  BP    12  0 1.0000000000
## GO:2000232  BP    12  0 1.0000000000
## GO:1900376  BP    12  0 1.0000000000
## GO:0010889  BP    12  0 1.0000000000
## GO:0014842  BP    12  0 1.0000000000
## GO:2000035  BP    12  0 1.0000000000
## GO:0000083  BP    12  0 1.0000000000
## GO:0010998  BP    12  0 1.0000000000
## GO:2000674  BP    12  0 1.0000000000
## GO:0070472  BP    12  0 1.0000000000
## GO:0003091  BP    12  0 1.0000000000
## GO:0032026  BP    12  0 1.0000000000
## GO:0046548  BP    12  0 1.0000000000
## GO:0043691  BP    12  0 1.0000000000
## GO:1902287  BP    12  0 1.0000000000
## GO:0042989  BP    12  0 1.0000000000
## GO:0072431  BP    12  0 1.0000000000
## GO:0039692  BP    12  0 1.0000000000
## GO:0000491  BP    12  0 1.0000000000
## GO:0031126  BP    12  0 1.0000000000
## GO:0035376  BP    12  0 1.0000000000
## GO:0001682  BP    12  0 1.0000000000
## GO:0060439  BP    12  0 1.0000000000
## GO:0061450  BP    12  0 1.0000000000
## GO:0046415  BP    12  0 1.0000000000
## GO:0019627  BP    12  0 1.0000000000
## GO:0014832  BP    12  0 1.0000000000
## GO:0060068  BP    12  0 1.0000000000
## GO:0021521  BP    12  0 1.0000000000
## GO:0039702  BP    12  0 1.0000000000
## GO:0086067  BP    13  0 1.0000000000
## GO:0018410  BP    13  0 1.0000000000
## GO:0006268  BP    13  0 1.0000000000
## GO:0006983  BP    13  0 1.0000000000
## GO:0038094  BP    13  0 1.0000000000
## GO:0007213  BP    13  0 1.0000000000
## GO:0006895  BP    13  0 1.0000000000
## GO:0002756  BP    13  0 1.0000000000
## GO:0006491  BP    13  0 1.0000000000
## GO:0051132  BP    13  0 1.0000000000
## GO:0016246  BP    13  0 1.0000000000
## GO:0032486  BP    13  0 1.0000000000
## GO:0007183  BP    13  0 1.0000000000
## GO:0002517  BP    13  0 1.0000000000
## GO:0070914  BP    13  0 1.0000000000
## GO:0097202  BP    13  0 1.0000000000
## GO:0052646  BP    13  0 1.0000000000
## GO:0042983  BP    13  0 1.0000000000
## GO:0031145  BP    13  0 1.0000000000
## GO:0008595  BP    13  0 1.0000000000
## GO:0051315  BP    13  0 1.0000000000
## GO:0031223  BP    13  0 1.0000000000
## GO:0015802  BP    13  0 1.0000000000
## GO:0032060  BP    13  0 1.0000000000
## GO:0060670  BP    13  0 1.0000000000
## GO:0060911  BP    13  0 1.0000000000
## GO:0090493  BP    13  0 1.0000000000
## GO:0021924  BP    13  0 1.0000000000
## GO:0042402  BP    13  0 1.0000000000
## GO:0052695  BP    13  0 1.0000000000
## GO:0071397  BP    13  0 1.0000000000
## GO:0097011  BP    13  0 1.0000000000
## GO:0072711  BP    13  0 1.0000000000
## GO:0071285  BP    13  0 1.0000000000
## GO:0071380  BP    13  0 1.0000000000
## GO:1902170  BP    13  0 1.0000000000
## GO:0071295  BP    13  0 1.0000000000
## GO:0051299  BP    13  0 1.0000000000
## GO:0021683  BP    13  0 1.0000000000
## GO:0021930  BP    13  0 1.0000000000
## GO:0090220  BP    13  0 1.0000000000
## GO:0038065  BP    13  0 1.0000000000
## GO:0071679  BP    13  0 1.0000000000
## GO:0002430  BP    13  0 1.0000000000
## GO:0021604  BP    13  0 1.0000000000
## GO:0042994  BP    13  0 1.0000000000
## GO:0002371  BP    13  0 1.0000000000
## GO:0045136  BP    13  0 1.0000000000
## GO:0009950  BP    13  0 1.0000000000
## GO:0060272  BP    13  0 1.0000000000
## GO:0003157  BP    13  0 1.0000000000
## GO:0015682  BP    13  0 1.0000000000
## GO:0001660  BP    13  0 1.0000000000
## GO:0021877  BP    13  0 1.0000000000
## GO:0042492  BP    13  0 1.0000000000
## GO:0072311  BP    13  0 1.0000000000
## GO:0072110  BP    13  0 1.0000000000
## GO:0072112  BP    13  0 1.0000000000
## GO:0070091  BP    13  0 1.0000000000
## GO:0006544  BP    13  0 1.0000000000
## GO:0061615  BP    13  0 1.0000000000
## GO:1901070  BP    13  0 1.0000000000
## GO:0048012  BP    13  0 1.0000000000
## GO:0043970  BP    13  0 1.0000000000
## GO:0033169  BP    13  0 1.0000000000
## GO:0033079  BP    13  0 1.0000000000
## GO:0090594  BP    13  0 1.0000000000
## GO:0007320  BP    13  0 1.0000000000
## GO:0030299  BP    13  0 1.0000000000
## GO:0008298  BP    13  0 1.0000000000
## GO:0035721  BP    13  0 1.0000000000
## GO:0060601  BP    13  0 1.0000000000
## GO:0019370  BP    13  0 1.0000000000
## GO:0061140  BP    13  0 1.0000000000
## GO:0001553  BP    13  0 1.0000000000
## GO:0034086  BP    13  0 1.0000000000
## GO:0002551  BP    13  0 1.0000000000
## GO:0098764  BP    13  0 1.0000000000
## GO:0098762  BP    13  0 1.0000000000
## GO:0007501  BP    13  0 1.0000000000
## GO:0008212  BP    13  0 1.0000000000
## GO:0034982  BP    13  0 1.0000000000
## GO:0003174  BP    13  0 1.0000000000
## GO:0019054  BP    13  0 1.0000000000
## GO:0042693  BP    13  0 1.0000000000
## GO:0043508  BP    13  0 1.0000000000
## GO:0032926  BP    13  0 1.0000000000
## GO:0002674  BP    13  0 1.0000000000
## GO:0106072  BP    13  0 1.0000000000
## GO:0046642  BP    13  0 1.0000000000
## GO:0032099  BP    13  0 1.0000000000
## GO:1902902  BP    13  0 1.0000000000
## GO:0045955  BP    13  0 1.0000000000
## GO:0046606  BP    13  0 1.0000000000
## GO:0046322  BP    13  0 1.0000000000
## GO:0045820  BP    13  0 1.0000000000
## GO:0051573  BP    13  0 1.0000000000
## GO:0032351  BP    13  0 1.0000000000
## GO:0002638  BP    13  0 1.0000000000
## GO:0050711  BP    13  0 1.0000000000
## GO:0033147  BP    13  0 1.0000000000
## GO:2001054  BP    13  0 1.0000000000
## GO:0060546  BP    13  0 1.0000000000
## GO:2001223  BP    13  0 1.0000000000
## GO:0060394  BP    13  0 1.0000000000
## GO:0031953  BP    13  0 1.0000000000
## GO:1900121  BP    13  0 1.0000000000
## GO:0002091  BP    13  0 1.0000000000
## GO:2000650  BP    13  0 1.0000000000
## GO:1900025  BP    13  0 1.0000000000
## GO:0051974  BP    13  0 1.0000000000
## GO:0034244  BP    13  0 1.0000000000
## GO:0060339  BP    13  0 1.0000000000
## GO:0030948  BP    13  0 1.0000000000
## GO:0045906  BP    13  0 1.0000000000
## GO:1903817  BP    13  0 1.0000000000
## GO:0072160  BP    13  0 1.0000000000
## GO:0070942  BP    13  0 1.0000000000
## GO:0071941  BP    13  0 1.0000000000
## GO:0071027  BP    13  0 1.0000000000
## GO:0071028  BP    13  0 1.0000000000
## GO:0006862  BP    13  0 1.0000000000
## GO:0035872  BP    13  0 1.0000000000
## GO:0042048  BP    13  0 1.0000000000
## GO:0006857  BP    13  0 1.0000000000
## GO:0001542  BP    13  0 1.0000000000
## GO:0048340  BP    13  0 1.0000000000
## GO:0019321  BP    13  0 1.0000000000
## GO:0018216  BP    13  0 1.0000000000
## GO:0001845  BP    13  0 1.0000000000
## GO:0035435  BP    13  0 1.0000000000
## GO:0046471  BP    13  0 1.0000000000
## GO:0006596  BP    13  0 1.0000000000
## GO:0021548  BP    13  0 1.0000000000
## GO:0045899  BP    13  0 1.0000000000
## GO:0060391  BP    13  0 1.0000000000
## GO:1904925  BP    13  0 1.0000000000
## GO:0060452  BP    13  0 1.0000000000
## GO:1903651  BP    13  0 1.0000000000
## GO:2001034  BP    13  0 1.0000000000
## GO:0090193  BP    13  0 1.0000000000
## GO:0042635  BP    13  0 1.0000000000
## GO:0031652  BP    13  0 1.0000000000
## GO:1902715  BP    13  0 1.0000000000
## GO:2000484  BP    13  0 1.0000000000
## GO:0033148  BP    13  0 1.0000000000
## GO:0048304  BP    13  0 1.0000000000
## GO:0051549  BP    13  0 1.0000000000
## GO:1904181  BP    13  0 1.0000000000
## GO:0072216  BP    13  0 1.0000000000
## GO:0010918  BP    13  0 1.0000000000
## GO:1902857  BP    13  0 1.0000000000
## GO:0042482  BP    13  0 1.0000000000
## GO:1903862  BP    13  0 1.0000000000
## GO:0090073  BP    13  0 1.0000000000
## GO:1904816  BP    13  0 1.0000000000
## GO:1902916  BP    13  0 1.0000000000
## GO:2000833  BP    13  0 1.0000000000
## GO:0060340  BP    13  0 1.0000000000
## GO:0035810  BP    13  0 1.0000000000
## GO:0044090  BP    13  0 1.0000000000
## GO:0097090  BP    13  0 1.0000000000
## GO:0034309  BP    13  0 1.0000000000
## GO:0002328  BP    13  0 1.0000000000
## GO:1903441  BP    13  0 1.0000000000
## GO:0034497  BP    13  0 1.0000000000
## GO:0031269  BP    13  0 1.0000000000
## GO:0009148  BP    13  0 1.0000000000
## GO:1900225  BP    13  0 1.0000000000
## GO:1903025  BP    13  0 1.0000000000
## GO:0045628  BP    13  0 1.0000000000
## GO:1904177  BP    13  0 1.0000000000
## GO:0042984  BP    13  0 1.0000000000
## GO:0010359  BP    13  0 1.0000000000
## GO:1903587  BP    13  0 1.0000000000
## GO:0021936  BP    13  0 1.0000000000
## GO:0010885  BP    13  0 1.0000000000
## GO:1902950  BP    13  0 1.0000000000
## GO:0034350  BP    13  0 1.0000000000
## GO:0003093  BP    13  0 1.0000000000
## GO:0032276  BP    13  0 1.0000000000
## GO:0090239  BP    13  0 1.0000000000
## GO:0045072  BP    13  0 1.0000000000
## GO:1904478  BP    13  0 1.0000000000
## GO:0050746  BP    13  0 1.0000000000
## GO:0010988  BP    13  0 1.0000000000
## GO:0035751  BP    13  0 1.0000000000
## GO:2000018  BP    13  0 1.0000000000
## GO:1905048  BP    13  0 1.0000000000
## GO:0090308  BP    13  0 1.0000000000
## GO:0099159  BP    13  0 1.0000000000
## GO:0070255  BP    13  0 1.0000000000
## GO:1904396  BP    13  0 1.0000000000
## GO:0033262  BP    13  0 1.0000000000
## GO:0060281  BP    13  0 1.0000000000
## GO:1905879  BP    13  0 1.0000000000
## GO:0010755  BP    13  0 1.0000000000
## GO:0090085  BP    13  0 1.0000000000
## GO:1905666  BP    13  0 1.0000000000
## GO:0002087  BP    13  0 1.0000000000
## GO:0048742  BP    13  0 1.0000000000
## GO:0061418  BP    13  0 1.0000000000
## GO:0043558  BP    13  0 1.0000000000
## GO:2001279  BP    13  0 1.0000000000
## GO:0055119  BP    13  0 1.0000000000
## GO:0061318  BP    13  0 1.0000000000
## GO:0036296  BP    13  0 1.0000000000
## GO:0032494  BP    13  0 1.0000000000
## GO:0033280  BP    13  0 1.0000000000
## GO:0000054  BP    13  0 1.0000000000
## GO:0033750  BP    13  0 1.0000000000
## GO:0048733  BP    13  0 1.0000000000
## GO:1902285  BP    13  0 1.0000000000
## GO:0097577  BP    13  0 1.0000000000
## GO:0009071  BP    13  0 1.0000000000
## GO:0007614  BP    13  0 1.0000000000
## GO:0006465  BP    13  0 1.0000000000
## GO:0072425  BP    13  0 1.0000000000
## GO:0014841  BP    13  0 1.0000000000
## GO:0030240  BP    13  0 1.0000000000
## GO:0036376  BP    13  0 1.0000000000
## GO:0032525  BP    13  0 1.0000000000
## GO:0006670  BP    13  0 1.0000000000
## GO:0021520  BP    13  0 1.0000000000
## GO:0070525  BP    13  0 1.0000000000
## GO:0043247  BP    13  0 1.0000000000
## GO:0021794  BP    13  0 1.0000000000
## GO:0007351  BP    13  0 1.0000000000
## GO:0072512  BP    13  0 1.0000000000
## GO:0090042  BP    13  0 1.0000000000
## GO:0014848  BP    13  0 1.0000000000
## GO:0070471  BP    13  0 1.0000000000
## GO:0042761  BP    13  0 1.0000000000
## GO:0000076  BP    14  0 1.0000000000
## GO:0097154  BP    14  0 1.0000000000
## GO:0048313  BP    14  0 1.0000000000
## GO:0098712  BP    14  0 1.0000000000
## GO:0000279  BP    14  0 1.0000000000
## GO:0044546  BP    14  0 1.0000000000
## GO:0048541  BP    14  0 1.0000000000
## GO:0090503  BP    14  0 1.0000000000
## GO:0046500  BP    14  0 1.0000000000
## GO:0035745  BP    14  0 1.0000000000
## GO:0042976  BP    14  0 1.0000000000
## GO:0006924  BP    14  0 1.0000000000
## GO:0021984  BP    14  0 1.0000000000
## GO:0046185  BP    14  0 1.0000000000
## GO:0009310  BP    14  0 1.0000000000
## GO:0006577  BP    14  0 1.0000000000
## GO:0019886  BP    14  0 1.0000000000
## GO:0048755  BP    14  0 1.0000000000
## GO:0086069  BP    14  0 1.0000000000
## GO:0046058  BP    14  0 1.0000000000
## GO:0061308  BP    14  0 1.0000000000
## GO:0090110  BP    14  0 1.0000000000
## GO:0010644  BP    14  0 1.0000000000
## GO:0021534  BP    14  0 1.0000000000
## GO:0030007  BP    14  0 1.0000000000
## GO:0071371  BP    14  0 1.0000000000
## GO:0010457  BP    14  0 1.0000000000
## GO:0021702  BP    14  0 1.0000000000
## GO:0034435  BP    14  0 1.0000000000
## GO:0015936  BP    14  0 1.0000000000
## GO:0009263  BP    14  0 1.0000000000
## GO:0043650  BP    14  0 1.0000000000
## GO:0072505  BP    14  0 1.0000000000
## GO:0048484  BP    14  0 1.0000000000
## GO:0090136  BP    14  0 1.0000000000
## GO:0045198  BP    14  0 1.0000000000
## GO:0090151  BP    14  0 1.0000000000
## GO:0030950  BP    14  0 1.0000000000
## GO:0042362  BP    14  0 1.0000000000
## GO:0030497  BP    14  0 1.0000000000
## GO:0060180  BP    14  0 1.0000000000
## GO:0072537  BP    14  0 1.0000000000
## GO:0007342  BP    14  0 1.0000000000
## GO:0014831  BP    14  0 1.0000000000
## GO:0042921  BP    14  0 1.0000000000
## GO:0006007  BP    14  0 1.0000000000
## GO:0019585  BP    14  0 1.0000000000
## GO:0046479  BP    14  0 1.0000000000
## GO:0032604  BP    14  0 1.0000000000
## GO:0070365  BP    14  0 1.0000000000
## GO:0021932  BP    14  0 1.0000000000
## GO:0050667  BP    14  0 1.0000000000
## GO:0030213  BP    14  0 1.0000000000
## GO:0010421  BP    14  0 1.0000000000
## GO:0031573  BP    14  0 1.0000000000
## GO:0003334  BP    14  0 1.0000000000
## GO:0070486  BP    14  0 1.0000000000
## GO:0031987  BP    14  0 1.0000000000
## GO:0080009  BP    14  0 1.0000000000
## GO:0097531  BP    14  0 1.0000000000
## GO:0072224  BP    14  0 1.0000000000
## GO:1904948  BP    14  0 1.0000000000
## GO:0006264  BP    14  0 1.0000000000
## GO:0000963  BP    14  0 1.0000000000
## GO:1902969  BP    14  0 1.0000000000
## GO:0071850  BP    14  0 1.0000000000
## GO:0048537  BP    14  0 1.0000000000
## GO:0051451  BP    14  0 1.0000000000
## GO:0007194  BP    14  0 1.0000000000
## GO:1902931  BP    14  0 1.0000000000
## GO:0051782  BP    14  0 1.0000000000
## GO:1903430  BP    14  0 1.0000000000
## GO:0045792  BP    14  0 1.0000000000
## GO:0051198  BP    14  0 1.0000000000
## GO:0032966  BP    14  0 1.0000000000
## GO:0010713  BP    14  0 1.0000000000
## GO:0007175  BP    14  0 1.0000000000
## GO:0045647  BP    14  0 1.0000000000
## GO:0010561  BP    14  0 1.0000000000
## GO:0010839  BP    14  0 1.0000000000
## GO:0043031  BP    14  0 1.0000000000
## GO:0032769  BP    14  0 1.0000000000
## GO:0030812  BP    14  0 1.0000000000
## GO:0090331  BP    14  0 1.0000000000
## GO:0010642  BP    14  0 1.0000000000
## GO:1904590  BP    14  0 1.0000000000
## GO:0042308  BP    14  0 1.0000000000
## GO:0032096  BP    14  0 1.0000000000
## GO:1902306  BP    14  0 1.0000000000
## GO:0010804  BP    14  0 1.0000000000
## GO:0002829  BP    14  0 1.0000000000
## GO:0042532  BP    14  0 1.0000000000
## GO:0043116  BP    14  0 1.0000000000
## GO:0045060  BP    14  0 1.0000000000
## GO:0019184  BP    14  0 1.0000000000
## GO:0006999  BP    14  0 1.0000000000
## GO:0009226  BP    14  0 1.0000000000
## GO:0019755  BP    14  0 1.0000000000
## GO:0048308  BP    14  0 1.0000000000
## GO:0018119  BP    14  0 1.0000000000
## GO:0035970  BP    14  0 1.0000000000
## GO:0055062  BP    14  0 1.0000000000
## GO:0046473  BP    14  0 1.0000000000
## GO:0090179  BP    14  0 1.0000000000
## GO:0035791  BP    14  0 1.0000000000
## GO:0043517  BP    14  0 1.0000000000
## GO:0010820  BP    14  0 1.0000000000
## GO:1904263  BP    14  0 1.0000000000
## GO:0048711  BP    14  0 1.0000000000
## GO:0048680  BP    14  0 1.0000000000
## GO:0035563  BP    14  0 1.0000000000
## GO:0031937  BP    14  0 1.0000000000
## GO:0045938  BP    14  0 1.0000000000
## GO:0048672  BP    14  0 1.0000000000
## GO:1905516  BP    14  0 1.0000000000
## GO:1905941  BP    14  0 1.0000000000
## GO:0034116  BP    14  0 1.0000000000
## GO:0002885  BP    14  0 1.0000000000
## GO:0060732  BP    14  0 1.0000000000
## GO:0032736  BP    14  0 1.0000000000
## GO:0045618  BP    14  0 1.0000000000
## GO:0090141  BP    14  0 1.0000000000
## GO:2000052  BP    14  0 1.0000000000
## GO:0033690  BP    14  0 1.0000000000
## GO:0071803  BP    14  0 1.0000000000
## GO:0070863  BP    14  0 1.0000000000
## GO:0045591  BP    14  0 1.0000000000
## GO:0035815  BP    14  0 1.0000000000
## GO:0051284  BP    14  0 1.0000000000
## GO:0051152  BP    14  0 1.0000000000
## GO:0031915  BP    14  0 1.0000000000
## GO:0030949  BP    14  0 1.0000000000
## GO:0031340  BP    14  0 1.0000000000
## GO:1901387  BP    14  0 1.0000000000
## GO:0006620  BP    14  0 1.0000000000
## GO:0097468  BP    14  0 1.0000000000
## GO:0060736  BP    14  0 1.0000000000
## GO:0043248  BP    14  0 1.0000000000
## GO:0072697  BP    14  0 1.0000000000
## GO:0018158  BP    14  0 1.0000000000
## GO:0070071  BP    14  0 1.0000000000
## GO:0042559  BP    14  0 1.0000000000
## GO:0009215  BP    14  0 1.0000000000
## GO:0046134  BP    14  0 1.0000000000
## GO:0046132  BP    14  0 1.0000000000
## GO:0071428  BP    14  0 1.0000000000
## GO:0060019  BP    14  0 1.0000000000
## GO:1903624  BP    14  0 1.0000000000
## GO:0045346  BP    14  0 1.0000000000
## GO:0046831  BP    14  0 1.0000000000
## GO:1900221  BP    14  0 1.0000000000
## GO:1904923  BP    14  0 1.0000000000
## GO:1900402  BP    14  0 1.0000000000
## GO:0010882  BP    14  0 1.0000000000
## GO:0032536  BP    14  0 1.0000000000
## GO:2000047  BP    14  0 1.0000000000
## GO:2000341  BP    14  0 1.0000000000
## GO:0045188  BP    14  0 1.0000000000
## GO:1901550  BP    14  0 1.0000000000
## GO:1903140  BP    14  0 1.0000000000
## GO:0032645  BP    14  0 1.0000000000
## GO:1901841  BP    14  0 1.0000000000
## GO:0033127  BP    14  0 1.0000000000
## GO:2001044  BP    14  0 1.0000000000
## GO:0090266  BP    14  0 1.0000000000
## GO:1903504  BP    14  0 1.0000000000
## GO:0060211  BP    14  0 1.0000000000
## GO:0035358  BP    14  0 1.0000000000
## GO:0099151  BP    14  0 1.0000000000
## GO:0032306  BP    14  0 1.0000000000
## GO:0060049  BP    14  0 1.0000000000
## GO:0060263  BP    14  0 1.0000000000
## GO:0047484  BP    14  0 1.0000000000
## GO:0090069  BP    14  0 1.0000000000
## GO:0014819  BP    14  0 1.0000000000
## GO:0048505  BP    14  0 1.0000000000
## GO:1901836  BP    14  0 1.0000000000
## GO:0010896  BP    14  0 1.0000000000
## GO:0061469  BP    14  0 1.0000000000
## GO:1905063  BP    14  0 1.0000000000
## GO:2001212  BP    14  0 1.0000000000
## GO:0098911  BP    14  0 1.0000000000
## GO:0010225  BP    14  0 1.0000000000
## GO:0097012  BP    14  0 1.0000000000
## GO:0072710  BP    14  0 1.0000000000
## GO:0010226  BP    14  0 1.0000000000
## GO:0097066  BP    14  0 1.0000000000
## GO:0042574  BP    14  0 1.0000000000
## GO:0032988  BP    14  0 1.0000000000
## GO:0042454  BP    14  0 1.0000000000
## GO:0021903  BP    14  0 1.0000000000
## GO:0046459  BP    14  0 1.0000000000
## GO:0071340  BP    14  0 1.0000000000
## GO:0014866  BP    14  0 1.0000000000
## GO:0060831  BP    14  0 1.0000000000
## GO:0043144  BP    14  0 1.0000000000
## GO:0098719  BP    14  0 1.0000000000
## GO:0016446  BP    14  0 1.0000000000
## GO:0035092  BP    14  0 1.0000000000
## GO:0021527  BP    14  0 1.0000000000
## GO:0098814  BP    14  0 1.0000000000
## GO:0034433  BP    14  0 1.0000000000
## GO:0034434  BP    14  0 1.0000000000
## GO:0042271  BP    14  0 1.0000000000
## GO:0016081  BP    14  0 1.0000000000
## GO:0099116  BP    14  0 1.0000000000
## GO:0034397  BP    14  0 1.0000000000
## GO:0099550  BP    14  0 1.0000000000
## GO:0006415  BP    14  0 1.0000000000
## GO:0072506  BP    14  0 1.0000000000
## GO:0045351  BP    14  0 1.0000000000
## GO:0006063  BP    14  0 1.0000000000
## GO:0006901  BP    14  0 1.0000000000
## GO:0019081  BP    14  0 1.0000000000
## GO:0046033  BP    15  0 1.0000000000
## GO:0006978  BP    15  0 1.0000000000
## GO:0051645  BP    15  0 1.0000000000
## GO:0006896  BP    15  0 1.0000000000
## GO:0051938  BP    15  0 1.0000000000
## GO:0045342  BP    15  0 1.0000000000
## GO:0071025  BP    15  0 1.0000000000
## GO:0033151  BP    15  0 1.0000000000
## GO:0046348  BP    15  0 1.0000000000
## GO:0060055  BP    15  0 1.0000000000
## GO:0086014  BP    15  0 1.0000000000
## GO:0086066  BP    15  0 1.0000000000
## GO:0086026  BP    15  0 1.0000000000
## GO:0016553  BP    15  0 1.0000000000
## GO:0061430  BP    15  0 1.0000000000
## GO:0009083  BP    15  0 1.0000000000
## GO:0060442  BP    15  0 1.0000000000
## GO:0061307  BP    15  0 1.0000000000
## GO:0006878  BP    15  0 1.0000000000
## GO:0071243  BP    15  0 1.0000000000
## GO:0071280  BP    15  0 1.0000000000
## GO:0071378  BP    15  0 1.0000000000
## GO:0071404  BP    15  0 1.0000000000
## GO:0021694  BP    15  0 1.0000000000
## GO:0051131  BP    15  0 1.0000000000
## GO:0072567  BP    15  0 1.0000000000
## GO:0042033  BP    15  0 1.0000000000
## GO:0010878  BP    15  0 1.0000000000
## GO:0042748  BP    15  0 1.0000000000
## GO:0031958  BP    15  0 1.0000000000
## GO:0070593  BP    15  0 1.0000000000
## GO:0042416  BP    15  0 1.0000000000
## GO:0010172  BP    15  0 1.0000000000
## GO:0072498  BP    15  0 1.0000000000
## GO:0001711  BP    15  0 1.0000000000
## GO:0060742  BP    15  0 1.0000000000
## GO:0043249  BP    15  0 1.0000000000
## GO:0060856  BP    15  0 1.0000000000
## GO:0061029  BP    15  0 1.0000000000
## GO:0055089  BP    15  0 1.0000000000
## GO:0035337  BP    15  0 1.0000000000
## GO:0015669  BP    15  0 1.0000000000
## GO:0021781  BP    15  0 1.0000000000
## GO:0072010  BP    15  0 1.0000000000
## GO:0006704  BP    15  0 1.0000000000
## GO:0019377  BP    15  0 1.0000000000
## GO:0060396  BP    15  0 1.0000000000
## GO:0003128  BP    15  0 1.0000000000
## GO:0060347  BP    15  0 1.0000000000
## GO:0003188  BP    15  0 1.0000000000
## GO:0043981  BP    15  0 1.0000000000
## GO:0043982  BP    15  0 1.0000000000
## GO:0001771  BP    15  0 1.0000000000
## GO:0050930  BP    15  0 1.0000000000
## GO:0036159  BP    15  0 1.0000000000
## GO:0046855  BP    15  0 1.0000000000
## GO:0042095  BP    15  0 1.0000000000
## GO:0070102  BP    15  0 1.0000000000
## GO:0060576  BP    15  0 1.0000000000
## GO:0034755  BP    15  0 1.0000000000
## GO:0072074  BP    15  0 1.0000000000
## GO:0051382  BP    15  0 1.0000000000
## GO:0021819  BP    15  0 1.0000000000
## GO:0070307  BP    15  0 1.0000000000
## GO:0030259  BP    15  0 1.0000000000
## GO:0042159  BP    15  0 1.0000000000
## GO:0044872  BP    15  0 1.0000000000
## GO:0042953  BP    15  0 1.0000000000
## GO:0035641  BP    15  0 1.0000000000
## GO:0042759  BP    15  0 1.0000000000
## GO:0010960  BP    15  0 1.0000000000
## GO:0015693  BP    15  0 1.0000000000
## GO:0000212  BP    15  0 1.0000000000
## GO:0072283  BP    15  0 1.0000000000
## GO:0007076  BP    15  0 1.0000000000
## GO:0044827  BP    15  0 1.0000000000
## GO:0070254  BP    15  0 1.0000000000
## GO:0043217  BP    15  0 1.0000000000
## GO:0034471  BP    15  0 1.0000000000
## GO:0043383  BP    15  0 1.0000000000
## GO:0032785  BP    15  0 1.0000000000
## GO:1902430  BP    15  0 1.0000000000
## GO:2000811  BP    15  0 1.0000000000
## GO:0048681  BP    15  0 1.0000000000
## GO:0010523  BP    15  0 1.0000000000
## GO:0031280  BP    15  0 1.0000000000
## GO:0061000  BP    15  0 1.0000000000
## GO:0045605  BP    15  0 1.0000000000
## GO:2000252  BP    15  0 1.0000000000
## GO:0060965  BP    15  0 1.0000000000
## GO:0002862  BP    15  0 1.0000000000
## GO:0032717  BP    15  0 1.0000000000
## GO:0045835  BP    15  0 1.0000000000
## GO:0031115  BP    15  0 1.0000000000
## GO:0010917  BP    15  0 1.0000000000
## GO:1902894  BP    15  0 1.0000000000
## GO:1901386  BP    15  0 1.0000000000
## GO:0000291  BP    15  0 1.0000000000
## GO:0009143  BP    15  0 1.0000000000
## GO:0006337  BP    15  0 1.0000000000
## GO:0009312  BP    15  0 1.0000000000
## GO:0071599  BP    15  0 1.0000000000
## GO:0030157  BP    15  0 1.0000000000
## GO:0015919  BP    15  0 1.0000000000
## GO:1904294  BP    15  0 1.0000000000
## GO:0070234  BP    15  0 1.0000000000
## GO:0033089  BP    15  0 1.0000000000
## GO:0050862  BP    15  0 1.0000000000
## GO:0051127  BP    15  0 1.0000000000
## GO:0045760  BP    15  0 1.0000000000
## GO:0061051  BP    15  0 1.0000000000
## GO:0090197  BP    15  0 1.0000000000
## GO:1903543  BP    15  0 1.0000000000
## GO:2001241  BP    15  0 1.0000000000
## GO:1902043  BP    15  0 1.0000000000
## GO:0014049  BP    15  0 1.0000000000
## GO:0051571  BP    15  0 1.0000000000
## GO:0051712  BP    15  0 1.0000000000
## GO:0051044  BP    15  0 1.0000000000
## GO:0070572  BP    15  0 1.0000000000
## GO:0033235  BP    15  0 1.0000000000
## GO:1900029  BP    15  0 1.0000000000
## GO:0034393  BP    15  0 1.0000000000
## GO:1903423  BP    15  0 1.0000000000
## GO:0043117  BP    15  0 1.0000000000
## GO:1903818  BP    15  0 1.0000000000
## GO:0099527  BP    15  0 1.0000000000
## GO:0098926  BP    15  0 1.0000000000
## GO:0031054  BP    15  0 1.0000000000
## GO:0060134  BP    15  0 1.0000000000
## GO:1902570  BP    15  0 1.0000000000
## GO:0017014  BP    15  0 1.0000000000
## GO:0031268  BP    15  0 1.0000000000
## GO:0009151  BP    15  0 1.0000000000
## GO:0035587  BP    15  0 1.0000000000
## GO:0006206  BP    15  0 1.0000000000
## GO:0009220  BP    15  0 1.0000000000
## GO:1903358  BP    15  0 1.0000000000
## GO:0039535  BP    15  0 1.0000000000
## GO:0010819  BP    15  0 1.0000000000
## GO:2000095  BP    15  0 1.0000000000
## GO:0045073  BP    15  0 1.0000000000
## GO:0003352  BP    15  0 1.0000000000
## GO:2000369  BP    15  0 1.0000000000
## GO:2001267  BP    15  0 1.0000000000
## GO:0048070  BP    15  0 1.0000000000
## GO:0090178  BP    15  0 1.0000000000
## GO:0010715  BP    15  0 1.0000000000
## GO:2000194  BP    15  0 1.0000000000
## GO:1901317  BP    15  0 1.0000000000
## GO:0031650  BP    15  0 1.0000000000
## GO:0090083  BP    15  0 1.0000000000
## GO:0033623  BP    15  0 1.0000000000
## GO:0060334  BP    15  0 1.0000000000
## GO:0045414  BP    15  0 1.0000000000
## GO:1902165  BP    15  0 1.0000000000
## GO:0051547  BP    15  0 1.0000000000
## GO:0051004  BP    15  0 1.0000000000
## GO:0010935  BP    15  0 1.0000000000
## GO:2000628  BP    15  0 1.0000000000
## GO:1903978  BP    15  0 1.0000000000
## GO:0032530  BP    15  0 1.0000000000
## GO:1903729  BP    15  0 1.0000000000
## GO:0098962  BP    15  0 1.0000000000
## GO:1904814  BP    15  0 1.0000000000
## GO:1901077  BP    15  0 1.0000000000
## GO:0060330  BP    15  0 1.0000000000
## GO:0048385  BP    15  0 1.0000000000
## GO:0060700  BP    15  0 1.0000000000
## GO:0043455  BP    15  0 1.0000000000
## GO:0014857  BP    15  0 1.0000000000
## GO:2001256  BP    15  0 1.0000000000
## GO:0032222  BP    15  0 1.0000000000
## GO:1901213  BP    15  0 1.0000000000
## GO:0030656  BP    15  0 1.0000000000
## GO:0070293  BP    15  0 1.0000000000
## GO:0034698  BP    15  0 1.0000000000
## GO:0071731  BP    15  0 1.0000000000
## GO:0098917  BP    15  0 1.0000000000
## GO:0046541  BP    15  0 1.0000000000
## GO:0007379  BP    15  0 1.0000000000
## GO:0030730  BP    15  0 1.0000000000
## GO:0009070  BP    15  0 1.0000000000
## GO:0042428  BP    15  0 1.0000000000
## GO:1902402  BP    15  0 1.0000000000
## GO:1902403  BP    15  0 1.0000000000
## GO:0072413  BP    15  0 1.0000000000
## GO:0002566  BP    15  0 1.0000000000
## GO:0051923  BP    15  0 1.0000000000
## GO:0000097  BP    15  0 1.0000000000
## GO:0043129  BP    15  0 1.0000000000
## GO:0000722  BP    15  0 1.0000000000
## GO:0016114  BP    15  0 1.0000000000
## GO:0006590  BP    15  0 1.0000000000
## GO:0034162  BP    15  0 1.0000000000
## GO:0097050  BP    15  0 1.0000000000
## GO:0035461  BP    15  0 1.0000000000
## GO:0050872  BP    15  0 1.0000000000
## GO:0006103  BP    16  0 1.0000000000
## GO:0043374  BP    16  0 1.0000000000
## GO:0042772  BP    16  0 1.0000000000
## GO:0000729  BP    16  0 1.0000000000
## GO:0006271  BP    16  0 1.0000000000
## GO:0002431  BP    16  0 1.0000000000
## GO:0006044  BP    16  0 1.0000000000
## GO:0002295  BP    16  0 1.0000000000
## GO:0007250  BP    16  0 1.0000000000
## GO:0007512  BP    16  0 1.0000000000
## GO:1990000  BP    16  0 1.0000000000
## GO:0042640  BP    16  0 1.0000000000
## GO:0099640  BP    16  0 1.0000000000
## GO:0009081  BP    16  0 1.0000000000
## GO:0098703  BP    16  0 1.0000000000
## GO:0046835  BP    16  0 1.0000000000
## GO:0003161  BP    16  0 1.0000000000
## GO:0060581  BP    16  0 1.0000000000
## GO:0033631  BP    16  0 1.0000000000
## GO:0006968  BP    16  0 1.0000000000
## GO:0071498  BP    16  0 1.0000000000
## GO:0044320  BP    16  0 1.0000000000
## GO:0071379  BP    16  0 1.0000000000
## GO:0036315  BP    16  0 1.0000000000
## GO:0090171  BP    16  0 1.0000000000
## GO:0003414  BP    16  0 1.0000000000
## GO:0002544  BP    16  0 1.0000000000
## GO:0060026  BP    16  0 1.0000000000
## GO:0055070  BP    16  0 1.0000000000
## GO:0006825  BP    16  0 1.0000000000
## GO:0097094  BP    16  0 1.0000000000
## GO:0042407  BP    16  0 1.0000000000
## GO:0006534  BP    16  0 1.0000000000
## GO:0002407  BP    16  0 1.0000000000
## GO:0016045  BP    16  0 1.0000000000
## GO:0098543  BP    16  0 1.0000000000
## GO:0051852  BP    16  0 1.0000000000
## GO:0070166  BP    16  0 1.0000000000
## GO:0099638  BP    16  0 1.0000000000
## GO:0001886  BP    16  0 1.0000000000
## GO:0061154  BP    16  0 1.0000000000
## GO:0043652  BP    16  0 1.0000000000
## GO:0002070  BP    16  0 1.0000000000
## GO:0090177  BP    16  0 1.0000000000
## GO:0070200  BP    16  0 1.0000000000
## GO:0018904  BP    16  0 1.0000000000
## GO:0046629  BP    16  0 1.0000000000
## GO:0061548  BP    16  0 1.0000000000
## GO:0035112  BP    16  0 1.0000000000
## GO:0002467  BP    16  0 1.0000000000
## GO:0072109  BP    16  0 1.0000000000
## GO:0009084  BP    16  0 1.0000000000
## GO:0019682  BP    16  0 1.0000000000
## GO:0003429  BP    16  0 1.0000000000
## GO:0097284  BP    16  0 1.0000000000
## GO:0001821  BP    16  0 1.0000000000
## GO:0070932  BP    16  0 1.0000000000
## GO:0002327  BP    16  0 1.0000000000
## GO:0042228  BP    16  0 1.0000000000
## GO:0098856  BP    16  0 1.0000000000
## GO:0035235  BP    16  0 1.0000000000
## GO:0051873  BP    16  0 1.0000000000
## GO:0072673  BP    16  0 1.0000000000
## GO:0044241  BP    16  0 1.0000000000
## GO:0002281  BP    16  0 1.0000000000
## GO:0030011  BP    16  0 1.0000000000
## GO:0030238  BP    16  0 1.0000000000
## GO:0006828  BP    16  0 1.0000000000
## GO:0007638  BP    16  0 1.0000000000
## GO:0061952  BP    16  0 1.0000000000
## GO:0098885  BP    16  0 1.0000000000
## GO:0044068  BP    16  0 1.0000000000
## GO:0003159  BP    16  0 1.0000000000
## GO:0043518  BP    16  0 1.0000000000
## GO:0060766  BP    16  0 1.0000000000
## GO:0070885  BP    16  0 1.0000000000
## GO:0106057  BP    16  0 1.0000000000
## GO:0090051  BP    16  0 1.0000000000
## GO:1900016  BP    16  0 1.0000000000
## GO:0032688  BP    16  0 1.0000000000
## GO:0002689  BP    16  0 1.0000000000
## GO:0060192  BP    16  0 1.0000000000
## GO:0048715  BP    16  0 1.0000000000
## GO:0014067  BP    16  0 1.0000000000
## GO:0032105  BP    16  0 1.0000000000
## GO:0032108  BP    16  0 1.0000000000
## GO:2001015  BP    16  0 1.0000000000
## GO:0051151  BP    16  0 1.0000000000
## GO:2000647  BP    16  0 1.0000000000
## GO:0045947  BP    16  0 1.0000000000
## GO:1902187  BP    16  0 1.0000000000
## GO:0055057  BP    16  0 1.0000000000
## GO:0016322  BP    16  0 1.0000000000
## GO:0036445  BP    16  0 1.0000000000
## GO:0002283  BP    16  0 1.0000000000
## GO:0072672  BP    16  0 1.0000000000
## GO:0043584  BP    16  0 1.0000000000
## GO:0046112  BP    16  0 1.0000000000
## GO:0036035  BP    16  0 1.0000000000
## GO:0043084  BP    16  0 1.0000000000
## GO:0018027  BP    16  0 1.0000000000
## GO:0070262  BP    16  0 1.0000000000
## GO:0043923  BP    16  0 1.0000000000
## GO:0002866  BP    16  0 1.0000000000
## GO:1902004  BP    16  0 1.0000000000
## GO:0010875  BP    16  0 1.0000000000
## GO:1900119  BP    16  0 1.0000000000
## GO:1904996  BP    16  0 1.0000000000
## GO:1905155  BP    16  0 1.0000000000
## GO:0062033  BP    16  0 1.0000000000
## GO:0060100  BP    16  0 1.0000000000
## GO:1901881  BP    16  0 1.0000000000
## GO:2000651  BP    16  0 1.0000000000
## GO:0032230  BP    16  0 1.0000000000
## GO:0002830  BP    16  0 1.0000000000
## GO:1905564  BP    16  0 1.0000000000
## GO:1902188  BP    16  0 1.0000000000
## GO:0045059  BP    16  0 1.0000000000
## GO:0098974  BP    16  0 1.0000000000
## GO:0099188  BP    16  0 1.0000000000
## GO:1901160  BP    16  0 1.0000000000
## GO:0042448  BP    16  0 1.0000000000
## GO:0016540  BP    16  0 1.0000000000
## GO:1902414  BP    16  0 1.0000000000
## GO:0009147  BP    16  0 1.0000000000
## GO:0009218  BP    16  0 1.0000000000
## GO:0072529  BP    16  0 1.0000000000
## GO:0015697  BP    16  0 1.0000000000
## GO:0034315  BP    16  0 1.0000000000
## GO:0045898  BP    16  0 1.0000000000
## GO:0106070  BP    16  0 1.0000000000
## GO:1902337  BP    16  0 1.0000000000
## GO:0090335  BP    16  0 1.0000000000
## GO:2000479  BP    16  0 1.0000000000
## GO:0010752  BP    16  0 1.0000000000
## GO:1903779  BP    16  0 1.0000000000
## GO:0042659  BP    16  0 1.0000000000
## GO:1901722  BP    16  0 1.0000000000
## GO:1900037  BP    16  0 1.0000000000
## GO:0090196  BP    16  0 1.0000000000
## GO:0030449  BP    16  0 1.0000000000
## GO:0002739  BP    16  0 1.0000000000
## GO:0040034  BP    16  0 1.0000000000
## GO:1903541  BP    16  0 1.0000000000
## GO:0010310  BP    16  0 1.0000000000
## GO:0048302  BP    16  0 1.0000000000
## GO:0051709  BP    16  0 1.0000000000
## GO:2001053  BP    16  0 1.0000000000
## GO:1901524  BP    16  0 1.0000000000
## GO:0045655  BP    16  0 1.0000000000
## GO:2000291  BP    16  0 1.0000000000
## GO:0098696  BP    16  0 1.0000000000
## GO:0051386  BP    16  0 1.0000000000
## GO:0032239  BP    16  0 1.0000000000
## GO:0044065  BP    16  0 1.0000000000
## GO:0060314  BP    16  0 1.0000000000
## GO:0014733  BP    16  0 1.0000000000
## GO:0090231  BP    16  0 1.0000000000
## GO:0090128  BP    16  0 1.0000000000
## GO:0006359  BP    16  0 1.0000000000
## GO:0001977  BP    16  0 1.0000000000
## GO:0010224  BP    16  0 1.0000000000
## GO:0097329  BP    16  0 1.0000000000
## GO:0031000  BP    16  0 1.0000000000
## GO:0036270  BP    16  0 1.0000000000
## GO:0032570  BP    16  0 1.0000000000
## GO:0032252  BP    16  0 1.0000000000
## GO:0014856  BP    16  0 1.0000000000
## GO:0046519  BP    16  0 1.0000000000
## GO:0006684  BP    16  0 1.0000000000
## GO:0030322  BP    16  0 1.0000000000
## GO:0008272  BP    16  0 1.0000000000
## GO:0021978  BP    16  0 1.0000000000
## GO:0034134  BP    16  0 1.0000000000
## GO:0019985  BP    16  0 1.0000000000
## GO:0060979  BP    16  0 1.0000000000
## GO:0060579  BP    16  0 1.0000000000
## GO:0003222  BP    16  0 1.0000000000
## GO:0042359  BP    16  0 1.0000000000
## GO:0061158  BP    17  0 1.0000000000
## GO:0043373  BP    17  0 1.0000000000
## GO:0007216  BP    17  0 1.0000000000
## GO:0006474  BP    17  0 1.0000000000
## GO:0000966  BP    17  0 1.0000000000
## GO:0090502  BP    17  0 1.0000000000
## GO:0006614  BP    17  0 1.0000000000
## GO:0045064  BP    17  0 1.0000000000
## GO:0007202  BP    17  0 1.0000000000
## GO:0044406  BP    17  0 1.0000000000
## GO:0060413  BP    17  0 1.0000000000
## GO:0015701  BP    17  0 1.0000000000
## GO:0007350  BP    17  0 1.0000000000
## GO:1902656  BP    17  0 1.0000000000
## GO:0048739  BP    17  0 1.0000000000
## GO:0035459  BP    17  0 1.0000000000
## GO:0034331  BP    17  0 1.0000000000
## GO:0042074  BP    17  0 1.0000000000
## GO:0060973  BP    17  0 1.0000000000
## GO:0071360  BP    17  0 1.0000000000
## GO:0035729  BP    17  0 1.0000000000
## GO:0098761  BP    17  0 1.0000000000
## GO:0036120  BP    17  0 1.0000000000
## GO:0021681  BP    17  0 1.0000000000
## GO:0048875  BP    17  0 1.0000000000
## GO:0050755  BP    17  0 1.0000000000
## GO:0090195  BP    17  0 1.0000000000
## GO:0035988  BP    17  0 1.0000000000
## GO:0031498  BP    17  0 1.0000000000
## GO:0009109  BP    17  0 1.0000000000
## GO:0002024  BP    17  0 1.0000000000
## GO:0042756  BP    17  0 1.0000000000
## GO:0060788  BP    17  0 1.0000000000
## GO:0071697  BP    17  0 1.0000000000
## GO:0071786  BP    17  0 1.0000000000
## GO:0003198  BP    17  0 1.0000000000
## GO:0072663  BP    17  0 1.0000000000
## GO:0048853  BP    17  0 1.0000000000
## GO:0036065  BP    17  0 1.0000000000
## GO:0014051  BP    17  0 1.0000000000
## GO:0034349  BP    17  0 1.0000000000
## GO:0006677  BP    17  0 1.0000000000
## GO:0003422  BP    17  0 1.0000000000
## GO:0043968  BP    17  0 1.0000000000
## GO:0080182  BP    17  0 1.0000000000
## GO:0036124  BP    17  0 1.0000000000
## GO:0008334  BP    17  0 1.0000000000
## GO:0050665  BP    17  0 1.0000000000
## GO:0021854  BP    17  0 1.0000000000
## GO:0000188  BP    17  0 1.0000000000
## GO:0071545  BP    17  0 1.0000000000
## GO:0048291  BP    17  0 1.0000000000
## GO:0048368  BP    17  0 1.0000000000
## GO:0010934  BP    17  0 1.0000000000
## GO:0030277  BP    17  0 1.0000000000
## GO:0060644  BP    17  0 1.0000000000
## GO:0000463  BP    17  0 1.0000000000
## GO:0032438  BP    17  0 1.0000000000
## GO:0032402  BP    17  0 1.0000000000
## GO:0086012  BP    17  0 1.0000000000
## GO:0060081  BP    17  0 1.0000000000
## GO:0097152  BP    17  0 1.0000000000
## GO:0072234  BP    17  0 1.0000000000
## GO:0006555  BP    17  0 1.0000000000
## GO:0030033  BP    17  0 1.0000000000
## GO:2001170  BP    17  0 1.0000000000
## GO:1902992  BP    17  0 1.0000000000
## GO:1903960  BP    17  0 1.0000000000
## GO:0010454  BP    17  0 1.0000000000
## GO:2000042  BP    17  0 1.0000000000
## GO:0051895  BP    17  0 1.0000000000
## GO:0060967  BP    17  0 1.0000000000
## GO:0060253  BP    17  0 1.0000000000
## GO:1903019  BP    17  0 1.0000000000
## GO:0035067  BP    17  0 1.0000000000
## GO:0061179  BP    17  0 1.0000000000
## GO:0090185  BP    17  0 1.0000000000
## GO:0010888  BP    17  0 1.0000000000
## GO:0051350  BP    17  0 1.0000000000
## GO:0045653  BP    17  0 1.0000000000
## GO:1905331  BP    17  0 1.0000000000
## GO:0040015  BP    17  0 1.0000000000
## GO:0070571  BP    17  0 1.0000000000
## GO:1902176  BP    17  0 1.0000000000
## GO:0060149  BP    17  0 1.0000000000
## GO:0032460  BP    17  0 1.0000000000
## GO:0042135  BP    17  0 1.0000000000
## GO:0038092  BP    17  0 1.0000000000
## GO:0030575  BP    17  0 1.0000000000
## GO:0009164  BP    17  0 1.0000000000
## GO:0043574  BP    17  0 1.0000000000
## GO:0046337  BP    17  0 1.0000000000
## GO:0046838  BP    17  0 1.0000000000
## GO:0045026  BP    17  0 1.0000000000
## GO:0045579  BP    17  0 1.0000000000
## GO:0070886  BP    17  0 1.0000000000
## GO:0106058  BP    17  0 1.0000000000
## GO:0045793  BP    17  0 1.0000000000
## GO:2001028  BP    17  0 1.0000000000
## GO:0045603  BP    17  0 1.0000000000
## GO:0045725  BP    17  0 1.0000000000
## GO:0002922  BP    17  0 1.0000000000
## GO:0032305  BP    17  0 1.0000000000
## GO:0002839  BP    17  0 1.0000000000
## GO:0032740  BP    17  0 1.0000000000
## GO:0045410  BP    17  0 1.0000000000
## GO:0140131  BP    17  0 1.0000000000
## GO:0045836  BP    17  0 1.0000000000
## GO:0051000  BP    17  0 1.0000000000
## GO:0032516  BP    17  0 1.0000000000
## GO:0001921  BP    17  0 1.0000000000
## GO:0002836  BP    17  0 1.0000000000
## GO:0045989  BP    17  0 1.0000000000
## GO:1904355  BP    17  0 1.0000000000
## GO:0071636  BP    17  0 1.0000000000
## GO:0010867  BP    17  0 1.0000000000
## GO:0009886  BP    17  0 1.0000000000
## GO:0099171  BP    17  0 1.0000000000
## GO:0032310  BP    17  0 1.0000000000
## GO:0035269  BP    17  0 1.0000000000
## GO:0034501  BP    17  0 1.0000000000
## GO:0035372  BP    17  0 1.0000000000
## GO:0072662  BP    17  0 1.0000000000
## GO:0006625  BP    17  0 1.0000000000
## GO:0032986  BP    17  0 1.0000000000
## GO:0001522  BP    17  0 1.0000000000
## GO:0003184  BP    17  0 1.0000000000
## GO:1901663  BP    17  0 1.0000000000
## GO:0050855  BP    17  0 1.0000000000
## GO:2001185  BP    17  0 1.0000000000
## GO:2000001  BP    17  0 1.0000000000
## GO:0060628  BP    17  0 1.0000000000
## GO:0035020  BP    17  0 1.0000000000
## GO:0060046  BP    17  0 1.0000000000
## GO:1904748  BP    17  0 1.0000000000
## GO:0045540  BP    17  0 1.0000000000
## GO:0007096  BP    17  0 1.0000000000
## GO:0090192  BP    17  0 1.0000000000
## GO:0002883  BP    17  0 1.0000000000
## GO:0010919  BP    17  0 1.0000000000
## GO:1902713  BP    17  0 1.0000000000
## GO:1900452  BP    17  0 1.0000000000
## GO:1900363  BP    17  0 1.0000000000
## GO:2000380  BP    17  0 1.0000000000
## GO:1905244  BP    17  0 1.0000000000
## GO:0060544  BP    17  0 1.0000000000
## GO:0042487  BP    17  0 1.0000000000
## GO:0071071  BP    17  0 1.0000000000
## GO:2000257  BP    17  0 1.0000000000
## GO:0106118  BP    17  0 1.0000000000
## GO:0032225  BP    17  0 1.0000000000
## GO:0070243  BP    17  0 1.0000000000
## GO:0043555  BP    17  0 1.0000000000
## GO:0006448  BP    17  0 1.0000000000
## GO:1900746  BP    17  0 1.0000000000
## GO:0098760  BP    17  0 1.0000000000
## GO:0043278  BP    17  0 1.0000000000
## GO:0046549  BP    17  0 1.0000000000
## GO:0001820  BP    17  0 1.0000000000
## GO:0007288  BP    17  0 1.0000000000
## GO:0001967  BP    17  0 1.0000000000
## GO:0002098  BP    17  0 1.0000000000
## GO:0006744  BP    17  0 1.0000000000
## GO:0055012  BP    17  0 1.0000000000
## GO:0046755  BP    17  0 1.0000000000
## GO:0071625  BP    17  0 1.0000000000
## GO:0006833  BP    17  0 1.0000000000
## GO:0035313  BP    17  0 1.0000000000
## GO:0070935  BP    18  0 1.0000000000
## GO:0006700  BP    18  0 1.0000000000
## GO:0038093  BP    18  0 1.0000000000
## GO:0002031  BP    18  0 1.0000000000
## GO:0007252  BP    18  0 1.0000000000
## GO:0039529  BP    18  0 1.0000000000
## GO:0006085  BP    18  0 1.0000000000
## GO:0001675  BP    18  0 1.0000000000
## GO:0009309  BP    18  0 1.0000000000
## GO:0048791  BP    18  0 1.0000000000
## GO:0060947  BP    18  0 1.0000000000
## GO:0010002  BP    18  0 1.0000000000
## GO:0030002  BP    18  0 1.0000000000
## GO:0042401  BP    18  0 1.0000000000
## GO:0043094  BP    18  0 1.0000000000
## GO:0042219  BP    18  0 1.0000000000
## GO:0030320  BP    18  0 1.0000000000
## GO:0048268  BP    18  0 1.0000000000
## GO:0022038  BP    18  0 1.0000000000
## GO:0006613  BP    18  0 1.0000000000
## GO:0021542  BP    18  0 1.0000000000
## GO:0050961  BP    18  0 1.0000000000
## GO:0050965  BP    18  0 1.0000000000
## GO:0034312  BP    18  0 1.0000000000
## GO:0007398  BP    18  0 1.0000000000
## GO:0071696  BP    18  0 1.0000000000
## GO:0072148  BP    18  0 1.0000000000
## GO:0035089  BP    18  0 1.0000000000
## GO:0032401  BP    18  0 1.0000000000
## GO:0042249  BP    18  0 1.0000000000
## GO:0030952  BP    18  0 1.0000000000
## GO:0030540  BP    18  0 1.0000000000
## GO:0015812  BP    18  0 1.0000000000
## GO:0009251  BP    18  0 1.0000000000
## GO:0051156  BP    18  0 1.0000000000
## GO:0005980  BP    18  0 1.0000000000
## GO:0006027  BP    18  0 1.0000000000
## GO:0016137  BP    18  0 1.0000000000
## GO:0032274  BP    18  0 1.0000000000
## GO:0020027  BP    18  0 1.0000000000
## GO:0051608  BP    18  0 1.0000000000
## GO:0035518  BP    18  0 1.0000000000
## GO:0042447  BP    18  0 1.0000000000
## GO:0002524  BP    18  0 1.0000000000
## GO:0001833  BP    18  0 1.0000000000
## GO:0045324  BP    18  0 1.0000000000
## GO:0034389  BP    18  0 1.0000000000
## GO:0042711  BP    18  0 1.0000000000
## GO:0086011  BP    18  0 1.0000000000
## GO:0001710  BP    18  0 1.0000000000
## GO:0035278  BP    18  0 1.0000000000
## GO:0006851  BP    18  0 1.0000000000
## GO:0006390  BP    18  0 1.0000000000
## GO:0060572  BP    18  0 1.0000000000
## GO:1904262  BP    18  0 1.0000000000
## GO:0060044  BP    18  0 1.0000000000
## GO:0033604  BP    18  0 1.0000000000
## GO:0042754  BP    18  0 1.0000000000
## GO:0045721  BP    18  0 1.0000000000
## GO:0032700  BP    18  0 1.0000000000
## GO:0045837  BP    18  0 1.0000000000
## GO:0010832  BP    18  0 1.0000000000
## GO:0060547  BP    18  0 1.0000000000
## GO:0045019  BP    18  0 1.0000000000
## GO:1904406  BP    18  0 1.0000000000
## GO:0030809  BP    18  0 1.0000000000
## GO:0010801  BP    18  0 1.0000000000
## GO:1900372  BP    18  0 1.0000000000
## GO:0051444  BP    18  0 1.0000000000
## GO:1904706  BP    18  0 1.0000000000
## GO:0072578  BP    18  0 1.0000000000
## GO:0042415  BP    18  0 1.0000000000
## GO:0048243  BP    18  0 1.0000000000
## GO:0042790  BP    18  0 1.0000000000
## GO:0016584  BP    18  0 1.0000000000
## GO:0002076  BP    18  0 1.0000000000
## GO:0036158  BP    18  0 1.0000000000
## GO:0016486  BP    18  0 1.0000000000
## GO:0006656  BP    18  0 1.0000000000
## GO:0017121  BP    18  0 1.0000000000
## GO:0034587  BP    18  0 1.0000000000
## GO:0048753  BP    18  0 1.0000000000
## GO:0051904  BP    18  0 1.0000000000
## GO:0016973  BP    18  0 1.0000000000
## GO:0032793  BP    18  0 1.0000000000
## GO:1903599  BP    18  0 1.0000000000
## GO:0031281  BP    18  0 1.0000000000
## GO:0046321  BP    18  0 1.0000000000
## GO:0010763  BP    18  0 1.0000000000
## GO:0045722  BP    18  0 1.0000000000
## GO:0070131  BP    18  0 1.0000000000
## GO:1900153  BP    18  0 1.0000000000
## GO:1903209  BP    18  0 1.0000000000
## GO:0071435  BP    18  0 1.0000000000
## GO:0097623  BP    18  0 1.0000000000
## GO:0021783  BP    18  0 1.0000000000
## GO:0030150  BP    18  0 1.0000000000
## GO:0006622  BP    18  0 1.0000000000
## GO:1904424  BP    18  0 1.0000000000
## GO:2000319  BP    18  0 1.0000000000
## GO:2000810  BP    18  0 1.0000000000
## GO:1902547  BP    18  0 1.0000000000
## GO:2000846  BP    18  0 1.0000000000
## GO:2000641  BP    18  0 1.0000000000
## GO:2000696  BP    18  0 1.0000000000
## GO:0032674  BP    18  0 1.0000000000
## GO:0010566  BP    18  0 1.0000000000
## GO:0014041  BP    18  0 1.0000000000
## GO:1902855  BP    18  0 1.0000000000
## GO:0014061  BP    18  0 1.0000000000
## GO:0071801  BP    18  0 1.0000000000
## GO:0150052  BP    18  0 1.0000000000
## GO:0099150  BP    18  0 1.0000000000
## GO:1903909  BP    18  0 1.0000000000
## GO:0001991  BP    18  0 1.0000000000
## GO:0060850  BP    18  0 1.0000000000
## GO:0039531  BP    18  0 1.0000000000
## GO:0072077  BP    18  0 1.0000000000
## GO:0000712  BP    18  0 1.0000000000
## GO:0060416  BP    18  0 1.0000000000
## GO:0014072  BP    18  0 1.0000000000
## GO:0044321  BP    18  0 1.0000000000
## GO:0036119  BP    18  0 1.0000000000
## GO:0034695  BP    18  0 1.0000000000
## GO:0033574  BP    18  0 1.0000000000
## GO:0042670  BP    18  0 1.0000000000
## GO:0043252  BP    18  0 1.0000000000
## GO:0060712  BP    18  0 1.0000000000
## GO:0021756  BP    18  0 1.0000000000
## GO:0097091  BP    18  0 1.0000000000
## GO:0034138  BP    18  0 1.0000000000
## GO:0060707  BP    18  0 1.0000000000
## GO:0006743  BP    18  0 1.0000000000
## GO:0043162  BP    18  0 1.0000000000
## GO:0060841  BP    18  0 1.0000000000
## GO:0021514  BP    18  0 1.0000000000
## GO:0032011  BP    19  0 1.0000000000
## GO:0015740  BP    19  0 1.0000000000
## GO:0043046  BP    19  0 1.0000000000
## GO:0009435  BP    19  0 1.0000000000
## GO:0010818  BP    19  0 1.0000000000
## GO:0046184  BP    19  0 1.0000000000
## GO:0002363  BP    19  0 1.0000000000
## GO:0008209  BP    19  0 1.0000000000
## GO:0002495  BP    19  0 1.0000000000
## GO:0003180  BP    19  0 1.0000000000
## GO:0006309  BP    19  0 1.0000000000
## GO:0009074  BP    19  0 1.0000000000
## GO:0060088  BP    19  0 1.0000000000
## GO:0002043  BP    19  0 1.0000000000
## GO:0046068  BP    19  0 1.0000000000
## GO:0003214  BP    19  0 1.0000000000
## GO:0003215  BP    19  0 1.0000000000
## GO:0001502  BP    19  0 1.0000000000
## GO:0021535  BP    19  0 1.0000000000
## GO:1904385  BP    19  0 1.0000000000
## GO:0006883  BP    19  0 1.0000000000
## GO:0021692  BP    19  0 1.0000000000
## GO:0035930  BP    19  0 1.0000000000
## GO:0033962  BP    19  0 1.0000000000
## GO:0051818  BP    19  0 1.0000000000
## GO:0034643  BP    19  0 1.0000000000
## GO:0051905  BP    19  0 1.0000000000
## GO:0006071  BP    19  0 1.0000000000
## GO:0032634  BP    19  0 1.0000000000
## GO:0051546  BP    19  0 1.0000000000
## GO:0051883  BP    19  0 1.0000000000
## GO:0042789  BP    19  0 1.0000000000
## GO:0060231  BP    19  0 1.0000000000
## GO:0099118  BP    19  0 1.0000000000
## GO:0033617  BP    19  0 1.0000000000
## GO:0048311  BP    19  0 1.0000000000
## GO:0047497  BP    19  0 1.0000000000
## GO:0031571  BP    19  0 1.0000000000
## GO:0071605  BP    19  0 1.0000000000
## GO:1902579  BP    19  0 1.0000000000
## GO:0044766  BP    19  0 1.0000000000
## GO:0030889  BP    19  0 1.0000000000
## GO:2000104  BP    19  0 1.0000000000
## GO:0002710  BP    19  0 1.0000000000
## GO:0050860  BP    19  0 1.0000000000
## GO:0051956  BP    19  0 1.0000000000
## GO:0048712  BP    19  0 1.0000000000
## GO:0030502  BP    19  0 1.0000000000
## GO:2000773  BP    19  0 1.0000000000
## GO:0031936  BP    19  0 1.0000000000
## GO:0050774  BP    19  0 1.0000000000
## GO:1902236  BP    19  0 1.0000000000
## GO:0040037  BP    19  0 1.0000000000
## GO:0034111  BP    19  0 1.0000000000
## GO:0032695  BP    19  0 1.0000000000
## GO:0045953  BP    19  0 1.0000000000
## GO:0010544  BP    19  0 1.0000000000
## GO:0010766  BP    19  0 1.0000000000
## GO:0032211  BP    19  0 1.0000000000
## GO:0040033  BP    19  0 1.0000000000
## GO:0010529  BP    19  0 1.0000000000
## GO:0050884  BP    19  0 1.0000000000
## GO:0034656  BP    19  0 1.0000000000
## GO:0070989  BP    19  0 1.0000000000
## GO:0060746  BP    19  0 1.0000000000
## GO:0030220  BP    19  0 1.0000000000
## GO:0030859  BP    19  0 1.0000000000
## GO:0006595  BP    19  0 1.0000000000
## GO:0044794  BP    19  0 1.0000000000
## GO:0002726  BP    19  0 1.0000000000
## GO:2000251  BP    19  0 1.0000000000
## GO:0060456  BP    19  0 1.0000000000
## GO:1900451  BP    19  0 1.0000000000
## GO:0070875  BP    19  0 1.0000000000
## GO:0046886  BP    19  0 1.0000000000
## GO:0051349  BP    19  0 1.0000000000
## GO:0090026  BP    19  0 1.0000000000
## GO:0061081  BP    19  0 1.0000000000
## GO:0046827  BP    19  0 1.0000000000
## GO:1904754  BP    19  0 1.0000000000
## GO:0010623  BP    19  0 1.0000000000
## GO:0070208  BP    19  0 1.0000000000
## GO:0045116  BP    19  0 1.0000000000
## GO:0098840  BP    19  0 1.0000000000
## GO:0016075  BP    19  0 1.0000000000
## GO:0032012  BP    19  0 1.0000000000
## GO:1900424  BP    19  0 1.0000000000
## GO:1902259  BP    19  0 1.0000000000
## GO:1905276  BP    19  0 1.0000000000
## GO:2000114  BP    19  0 1.0000000000
## GO:0031998  BP    19  0 1.0000000000
## GO:2000269  BP    19  0 1.0000000000
## GO:1903975  BP    19  0 1.0000000000
## GO:0060123  BP    19  0 1.0000000000
## GO:2000345  BP    19  0 1.0000000000
## GO:0032656  BP    19  0 1.0000000000
## GO:0045076  BP    19  0 1.0000000000
## GO:0010984  BP    19  0 1.0000000000
## GO:0071637  BP    19  0 1.0000000000
## GO:0032823  BP    19  0 1.0000000000
## GO:0060099  BP    19  0 1.0000000000
## GO:1905874  BP    19  0 1.0000000000
## GO:0090036  BP    19  0 1.0000000000
## GO:1903214  BP    19  0 1.0000000000
## GO:0010880  BP    19  0 1.0000000000
## GO:0032095  BP    19  0 1.0000000000
## GO:0048172  BP    19  0 1.0000000000
## GO:0090030  BP    19  0 1.0000000000
## GO:0002643  BP    19  0 1.0000000000
## GO:0045974  BP    19  0 1.0000000000
## GO:0010528  BP    19  0 1.0000000000
## GO:0010447  BP    19  0 1.0000000000
## GO:0001975  BP    19  0 1.0000000000
## GO:0070723  BP    19  0 1.0000000000
## GO:0035728  BP    19  0 1.0000000000
## GO:0035994  BP    19  0 1.0000000000
## GO:0072520  BP    19  0 1.0000000000
## GO:0051238  BP    19  0 1.0000000000
## GO:0016074  BP    19  0 1.0000000000
## GO:0034063  BP    19  0 1.0000000000
## GO:1902644  BP    19  0 1.0000000000
## GO:0072189  BP    19  0 1.0000000000
## GO:0080111  BP    20  0 1.0000000000
## GO:0044783  BP    20  0 1.0000000000
## GO:0002755  BP    20  0 1.0000000000
## GO:0032148  BP    20  0 1.0000000000
## GO:0048490  BP    20  0 1.0000000000
## GO:0002504  BP    20  0 1.0000000000
## GO:0006525  BP    20  0 1.0000000000
## GO:0048143  BP    20  0 1.0000000000
## GO:0006699  BP    20  0 1.0000000000
## GO:0035584  BP    20  0 1.0000000000
## GO:0098743  BP    20  0 1.0000000000
## GO:0061323  BP    20  0 1.0000000000
## GO:0044247  BP    20  0 1.0000000000
## GO:0046514  BP    20  0 1.0000000000
## GO:0055064  BP    20  0 1.0000000000
## GO:0060294  BP    20  0 1.0000000000
## GO:0046697  BP    20  0 1.0000000000
## GO:0036336  BP    20  0 1.0000000000
## GO:0009200  BP    20  0 1.0000000000
## GO:0050966  BP    20  0 1.0000000000
## GO:0050910  BP    20  0 1.0000000000
## GO:1990403  BP    20  0 1.0000000000
## GO:0048557  BP    20  0 1.0000000000
## GO:0048245  BP    20  0 1.0000000000
## GO:0061162  BP    20  0 1.0000000000
## GO:0008210  BP    20  0 1.0000000000
## GO:1990182  BP    20  0 1.0000000000
## GO:0042730  BP    20  0 1.0000000000
## GO:0001573  BP    20  0 1.0000000000
## GO:0001696  BP    20  0 1.0000000000
## GO:0006688  BP    20  0 1.0000000000
## GO:0070828  BP    20  0 1.0000000000
## GO:0070498  BP    20  0 1.0000000000
## GO:0016226  BP    20  0 1.0000000000
## GO:0051383  BP    20  0 1.0000000000
## GO:0006089  BP    20  0 1.0000000000
## GO:0002523  BP    20  0 1.0000000000
## GO:0006691  BP    20  0 1.0000000000
## GO:0001946  BP    20  0 1.0000000000
## GO:0006379  BP    20  0 1.0000000000
## GO:0002313  BP    20  0 1.0000000000
## GO:0035855  BP    20  0 1.0000000000
## GO:0031163  BP    20  0 1.0000000000
## GO:0072243  BP    20  0 1.0000000000
## GO:0044819  BP    20  0 1.0000000000
## GO:0032288  BP    20  0 1.0000000000
## GO:0043011  BP    20  0 1.0000000000
## GO:0045623  BP    20  0 1.0000000000
## GO:1903392  BP    20  0 1.0000000000
## GO:2000726  BP    20  0 1.0000000000
## GO:0071157  BP    20  0 1.0000000000
## GO:0051195  BP    20  0 1.0000000000
## GO:0051481  BP    20  0 1.0000000000
## GO:1902254  BP    20  0 1.0000000000
## GO:0033033  BP    20  0 1.0000000000
## GO:0002716  BP    20  0 1.0000000000
## GO:0048261  BP    20  0 1.0000000000
## GO:0090201  BP    20  0 1.0000000000
## GO:0045986  BP    20  0 1.0000000000
## GO:2000678  BP    20  0 1.0000000000
## GO:0072079  BP    20  0 1.0000000000
## GO:0043931  BP    20  0 1.0000000000
## GO:0034377  BP    20  0 1.0000000000
## GO:0034369  BP    20  0 1.0000000000
## GO:0097320  BP    20  0 1.0000000000
## GO:0036344  BP    20  0 1.0000000000
## GO:1902993  BP    20  0 1.0000000000
## GO:0033605  BP    20  0 1.0000000000
## GO:0033630  BP    20  0 1.0000000000
## GO:1900409  BP    20  0 1.0000000000
## GO:0060252  BP    20  0 1.0000000000
## GO:0045821  BP    20  0 1.0000000000
## GO:0045838  BP    20  0 1.0000000000
## GO:0045948  BP    20  0 1.0000000000
## GO:0050434  BP    20  0 1.0000000000
## GO:0034368  BP    20  0 1.0000000000
## GO:0042451  BP    20  0 1.0000000000
## GO:0046129  BP    20  0 1.0000000000
## GO:0046131  BP    20  0 1.0000000000
## GO:0070269  BP    20  0 1.0000000000
## GO:0031167  BP    20  0 1.0000000000
## GO:0002577  BP    20  0 1.0000000000
## GO:2000136  BP    20  0 1.0000000000
## GO:0042053  BP    20  0 1.0000000000
## GO:1900101  BP    20  0 1.0000000000
## GO:1904994  BP    20  0 1.0000000000
## GO:0033599  BP    20  0 1.0000000000
## GO:1905153  BP    20  0 1.0000000000
## GO:1901028  BP    20  0 1.0000000000
## GO:1900151  BP    20  0 1.0000000000
## GO:1903798  BP    20  0 1.0000000000
## GO:0010869  BP    20  0 1.0000000000
## GO:0034143  BP    20  0 1.0000000000
## GO:0060307  BP    20  0 1.0000000000
## GO:0072087  BP    20  0 1.0000000000
## GO:0014075  BP    20  0 1.0000000000
## GO:1990776  BP    20  0 1.0000000000
## GO:0010039  BP    20  0 1.0000000000
## GO:0032495  BP    20  0 1.0000000000
## GO:0010842  BP    20  0 1.0000000000
## GO:0008090  BP    20  0 1.0000000000
## GO:0034472  BP    20  0 1.0000000000
## GO:0099514  BP    20  0 1.0000000000
## GO:0099517  BP    20  0 1.0000000000
## GO:0046653  BP    20  0 1.0000000000
## GO:0070633  BP    20  0 1.0000000000
## GO:0007035  BP    20  0 1.0000000000
## GO:0048199  BP    20  0 1.0000000000
## GO:0042178  BP    20  0 1.0000000000
## GO:0043369  BP    21  0 1.0000000000
## GO:0015813  BP    21  0 1.0000000000
## GO:0007190  BP    21  0 1.0000000000
## GO:0017000  BP    21  0 1.0000000000
## GO:0008356  BP    21  0 1.0000000000
## GO:0003283  BP    21  0 1.0000000000
## GO:0032291  BP    21  0 1.0000000000
## GO:0051016  BP    21  0 1.0000000000
## GO:0022010  BP    21  0 1.0000000000
## GO:0007635  BP    21  0 1.0000000000
## GO:0000469  BP    21  0 1.0000000000
## GO:0051220  BP    21  0 1.0000000000
## GO:0050962  BP    21  0 1.0000000000
## GO:0050908  BP    21  0 1.0000000000
## GO:0046339  BP    21  0 1.0000000000
## GO:0061339  BP    21  0 1.0000000000
## GO:0097734  BP    21  0 1.0000000000
## GO:0044346  BP    21  0 1.0000000000
## GO:0003094  BP    21  0 1.0000000000
## GO:0006541  BP    21  0 1.0000000000
## GO:0006516  BP    21  0 1.0000000000
## GO:0007625  BP    21  0 1.0000000000
## GO:0006783  BP    21  0 1.0000000000
## GO:0043984  BP    21  0 1.0000000000
## GO:0060333  BP    21  0 1.0000000000
## GO:0042094  BP    21  0 1.0000000000
## GO:0045475  BP    21  0 1.0000000000
## GO:0036303  BP    21  0 1.0000000000
## GO:0000466  BP    21  0 1.0000000000
## GO:0042438  BP    21  0 1.0000000000
## GO:0032400  BP    21  0 1.0000000000
## GO:0031579  BP    21  0 1.0000000000
## GO:0072170  BP    21  0 1.0000000000
## GO:0006120  BP    21  0 1.0000000000
## GO:0008053  BP    21  0 1.0000000000
## GO:0007095  BP    21  0 1.0000000000
## GO:0046716  BP    21  0 1.0000000000
## GO:0051450  BP    21  0 1.0000000000
## GO:1901223  BP    21  0 1.0000000000
## GO:0032682  BP    21  0 1.0000000000
## GO:0060457  BP    21  0 1.0000000000
## GO:0046325  BP    21  0 1.0000000000
## GO:0032693  BP    21  0 1.0000000000
## GO:0051447  BP    21  0 1.0000000000
## GO:1901017  BP    21  0 1.0000000000
## GO:0001976  BP    21  0 1.0000000000
## GO:0140058  BP    21  0 1.0000000000
## GO:0098969  BP    21  0 1.0000000000
## GO:0048486  BP    21  0 1.0000000000
## GO:0035357  BP    21  0 1.0000000000
## GO:0006907  BP    21  0 1.0000000000
## GO:0046174  BP    21  0 1.0000000000
## GO:0090050  BP    21  0 1.0000000000
## GO:0032332  BP    21  0 1.0000000000
## GO:0051197  BP    21  0 1.0000000000
## GO:1900017  BP    21  0 1.0000000000
## GO:2000193  BP    21  0 1.0000000000
## GO:0010560  BP    21  0 1.0000000000
## GO:0031065  BP    21  0 1.0000000000
## GO:0002863  BP    21  0 1.0000000000
## GO:0070230  BP    21  0 1.0000000000
## GO:0010759  BP    21  0 1.0000000000
## GO:2001224  BP    21  0 1.0000000000
## GO:0051770  BP    21  0 1.0000000000
## GO:0030813  BP    21  0 1.0000000000
## GO:0032930  BP    21  0 1.0000000000
## GO:1901522  BP    21  0 1.0000000000
## GO:0042535  BP    21  0 1.0000000000
## GO:0048569  BP    21  0 1.0000000000
## GO:0097107  BP    21  0 1.0000000000
## GO:0015732  BP    21  0 1.0000000000
## GO:0000413  BP    21  0 1.0000000000
## GO:0034367  BP    21  0 1.0000000000
## GO:0003177  BP    21  0 1.0000000000
## GO:2000209  BP    21  0 1.0000000000
## GO:0042069  BP    21  0 1.0000000000
## GO:2001032  BP    21  0 1.0000000000
## GO:0006349  BP    21  0 1.0000000000
## GO:0051023  BP    21  0 1.0000000000
## GO:2000482  BP    21  0 1.0000000000
## GO:1901623  BP    21  0 1.0000000000
## GO:0010743  BP    21  0 1.0000000000
## GO:0051900  BP    21  0 1.0000000000
## GO:1901673  BP    21  0 1.0000000000
## GO:0090330  BP    21  0 1.0000000000
## GO:1901626  BP    21  0 1.0000000000
## GO:0070920  BP    21  0 1.0000000000
## GO:0010866  BP    21  0 1.0000000000
## GO:1904666  BP    21  0 1.0000000000
## GO:0014808  BP    21  0 1.0000000000
## GO:0019430  BP    21  0 1.0000000000
## GO:0098780  BP    21  0 1.0000000000
## GO:0034694  BP    21  0 1.0000000000
## GO:0031290  BP    21  0 1.0000000000
## GO:0000028  BP    21  0 1.0000000000
## GO:0044273  BP    21  0 1.0000000000
## GO:0002097  BP    21  0 1.0000000000
## GO:0043586  BP    21  0 1.0000000000
## GO:0071577  BP    21  0 1.0000000000
## GO:0035510  BP    22  0 1.0000000000
## GO:0006353  BP    22  0 1.0000000000
## GO:0035493  BP    22  0 1.0000000000
## GO:0060009  BP    22  0 1.0000000000
## GO:0019400  BP    22  0 1.0000000000
## GO:0048532  BP    22  0 1.0000000000
## GO:0009067  BP    22  0 1.0000000000
## GO:0042537  BP    22  0 1.0000000000
## GO:0070977  BP    22  0 1.0000000000
## GO:0060602  BP    22  0 1.0000000000
## GO:0072111  BP    22  0 1.0000000000
## GO:0071475  BP    22  0 1.0000000000
## GO:0071870  BP    22  0 1.0000000000
## GO:0003433  BP    22  0 1.0000000000
## GO:0002374  BP    22  0 1.0000000000
## GO:0002183  BP    22  0 1.0000000000
## GO:0097062  BP    22  0 1.0000000000
## GO:0098581  BP    22  0 1.0000000000
## GO:0016048  BP    22  0 1.0000000000
## GO:0021516  BP    22  0 1.0000000000
## GO:0043153  BP    22  0 1.0000000000
## GO:0051654  BP    22  0 1.0000000000
## GO:1903540  BP    22  0 1.0000000000
## GO:0030252  BP    22  0 1.0000000000
## GO:0003418  BP    22  0 1.0000000000
## GO:0044851  BP    22  0 1.0000000000
## GO:0031649  BP    22  0 1.0000000000
## GO:0070734  BP    22  0 1.0000000000
## GO:0070841  BP    22  0 1.0000000000
## GO:0060080  BP    22  0 1.0000000000
## GO:0032616  BP    22  0 1.0000000000
## GO:0060575  BP    22  0 1.0000000000
## GO:0032367  BP    22  0 1.0000000000
## GO:0032366  BP    22  0 1.0000000000
## GO:0007141  BP    22  0 1.0000000000
## GO:0060749  BP    22  0 1.0000000000
## GO:0061377  BP    22  0 1.0000000000
## GO:0072273  BP    22  0 1.0000000000
## GO:0032042  BP    22  0 1.0000000000
## GO:0000423  BP    22  0 1.0000000000
## GO:0032780  BP    22  0 1.0000000000
## GO:1901889  BP    22  0 1.0000000000
## GO:0032331  BP    22  0 1.0000000000
## GO:0045683  BP    22  0 1.0000000000
## GO:0032691  BP    22  0 1.0000000000
## GO:0046823  BP    22  0 1.0000000000
## GO:2000757  BP    22  0 1.0000000000
## GO:0046597  BP    22  0 1.0000000000
## GO:0032897  BP    22  0 1.0000000000
## GO:0048857  BP    22  0 1.0000000000
## GO:0098877  BP    22  0 1.0000000000
## GO:0001780  BP    22  0 1.0000000000
## GO:0015874  BP    22  0 1.0000000000
## GO:0048339  BP    22  0 1.0000000000
## GO:0018230  BP    22  0 1.0000000000
## GO:0018231  BP    22  0 1.0000000000
## GO:0090382  BP    22  0 1.0000000000
## GO:0051875  BP    22  0 1.0000000000
## GO:0071800  BP    22  0 1.0000000000
## GO:0045624  BP    22  0 1.0000000000
## GO:0046641  BP    22  0 1.0000000000
## GO:0050857  BP    22  0 1.0000000000
## GO:0010666  BP    22  0 1.0000000000
## GO:2000353  BP    22  0 1.0000000000
## GO:0045606  BP    22  0 1.0000000000
## GO:1903055  BP    22  0 1.0000000000
## GO:0046628  BP    22  0 1.0000000000
## GO:0033145  BP    22  0 1.0000000000
## GO:0010884  BP    22  0 1.0000000000
## GO:0033008  BP    22  0 1.0000000000
## GO:0043306  BP    22  0 1.0000000000
## GO:0031643  BP    22  0 1.0000000000
## GO:1901741  BP    22  0 1.0000000000
## GO:2000010  BP    22  0 1.0000000000
## GO:1902307  BP    22  0 1.0000000000
## GO:0003084  BP    22  0 1.0000000000
## GO:1904469  BP    22  0 1.0000000000
## GO:0099170  BP    22  0 1.0000000000
## GO:0071459  BP    22  0 1.0000000000
## GO:0035268  BP    22  0 1.0000000000
## GO:0002864  BP    22  0 1.0000000000
## GO:0032098  BP    22  0 1.0000000000
## GO:0046599  BP    22  0 1.0000000000
## GO:2001026  BP    22  0 1.0000000000
## GO:0051797  BP    22  0 1.0000000000
## GO:0032303  BP    22  0 1.0000000000
## GO:0002837  BP    22  0 1.0000000000
## GO:0051043  BP    22  0 1.0000000000
## GO:0072215  BP    22  0 1.0000000000
## GO:1902914  BP    22  0 1.0000000000
## GO:0002834  BP    22  0 1.0000000000
## GO:0007063  BP    22  0 1.0000000000
## GO:1905562  BP    22  0 1.0000000000
## GO:1903514  BP    22  0 1.0000000000
## GO:0097205  BP    22  0 1.0000000000
## GO:0008535  BP    22  0 1.0000000000
## GO:0010996  BP    22  0 1.0000000000
## GO:0051602  BP    22  0 1.0000000000
## GO:0034405  BP    22  0 1.0000000000
## GO:0014850  BP    22  0 1.0000000000
## GO:0036314  BP    22  0 1.0000000000
## GO:0035634  BP    22  0 1.0000000000
## GO:0002115  BP    22  0 1.0000000000
## GO:0007130  BP    22  0 1.0000000000
## GO:0070242  BP    22  0 1.0000000000
## GO:0009404  BP    22  0 1.0000000000
## GO:0060438  BP    22  0 1.0000000000
## GO:0032196  BP    22  0 1.0000000000
## GO:0003323  BP    22  0 1.0000000000
## GO:0101023  BP    22  0 1.0000000000
## GO:0099625  BP    22  0 1.0000000000
## GO:0009110  BP    22  0 1.0000000000
## GO:0015986  BP    23  0 1.0000000000
## GO:0035743  BP    23  0 1.0000000000
## GO:0022616  BP    23  0 1.0000000000
## GO:0003176  BP    23  0 1.0000000000
## GO:0002093  BP    23  0 1.0000000000
## GO:0015721  BP    23  0 1.0000000000
## GO:0022403  BP    23  0 1.0000000000
## GO:0072202  BP    23  0 1.0000000000
## GO:0071276  BP    23  0 1.0000000000
## GO:0071359  BP    23  0 1.0000000000
## GO:0071218  BP    23  0 1.0000000000
## GO:0071868  BP    23  0 1.0000000000
## GO:0071450  BP    23  0 1.0000000000
## GO:0071467  BP    23  0 1.0000000000
## GO:0071451  BP    23  0 1.0000000000
## GO:0039528  BP    23  0 1.0000000000
## GO:0015985  BP    23  0 1.0000000000
## GO:0140112  BP    23  0 1.0000000000
## GO:0008211  BP    23  0 1.0000000000
## GO:0046475  BP    23  0 1.0000000000
## GO:0032959  BP    23  0 1.0000000000
## GO:0060972  BP    23  0 1.0000000000
## GO:0034383  BP    23  0 1.0000000000
## GO:0002320  BP    23  0 1.0000000000
## GO:0051457  BP    23  0 1.0000000000
## GO:0030539  BP    23  0 1.0000000000
## GO:0097502  BP    23  0 1.0000000000
## GO:0006582  BP    23  0 1.0000000000
## GO:0048333  BP    23  0 1.0000000000
## GO:0006346  BP    23  0 1.0000000000
## GO:0007020  BP    23  0 1.0000000000
## GO:1902410  BP    23  0 1.0000000000
## GO:0072337  BP    23  0 1.0000000000
## GO:0002903  BP    23  0 1.0000000000
## GO:0043371  BP    23  0 1.0000000000
## GO:0045736  BP    23  0 1.0000000000
## GO:0002719  BP    23  0 1.0000000000
## GO:0001911  BP    23  0 1.0000000000
## GO:0050765  BP    23  0 1.0000000000
## GO:1903077  BP    23  0 1.0000000000
## GO:1903306  BP    23  0 1.0000000000
## GO:0009648  BP    23  0 1.0000000000
## GO:0000272  BP    23  0 1.0000000000
## GO:0046931  BP    23  0 1.0000000000
## GO:0002827  BP    23  0 1.0000000000
## GO:0090190  BP    23  0 1.0000000000
## GO:1903020  BP    23  0 1.0000000000
## GO:0032727  BP    23  0 1.0000000000
## GO:0010592  BP    23  0 1.0000000000
## GO:0031954  BP    23  0 1.0000000000
## GO:1902884  BP    23  0 1.0000000000
## GO:0010663  BP    23  0 1.0000000000
## GO:0045943  BP    23  0 1.0000000000
## GO:0032968  BP    23  0 1.0000000000
## GO:0060261  BP    23  0 1.0000000000
## GO:0043687  BP    23  0 1.0000000000
## GO:0036010  BP    23  0 1.0000000000
## GO:0006144  BP    23  0 1.0000000000
## GO:0009154  BP    23  0 1.0000000000
## GO:0060390  BP    23  0 1.0000000000
## GO:2000316  BP    23  0 1.0000000000
## GO:0010874  BP    23  0 1.0000000000
## GO:0099149  BP    23  0 1.0000000000
## GO:0010738  BP    23  0 1.0000000000
## GO:0043576  BP    23  0 1.0000000000
## GO:2000831  BP    23  0 1.0000000000
## GO:1900242  BP    23  0 1.0000000000
## GO:0051969  BP    23  0 1.0000000000
## GO:0071869  BP    23  0 1.0000000000
## GO:0009261  BP    23  0 1.0000000000
## GO:0006837  BP    23  0 1.0000000000
## GO:0023019  BP    23  0 1.0000000000
## GO:0043501  BP    23  0 1.0000000000
## GO:0048485  BP    23  0 1.0000000000
## GO:0045056  BP    23  0 1.0000000000
## GO:0097186  BP    24  0 1.0000000000
## GO:0003181  BP    24  0 1.0000000000
## GO:0098869  BP    24  0 1.0000000000
## GO:0071392  BP    24  0 1.0000000000
## GO:0006882  BP    24  0 1.0000000000
## GO:0009190  BP    24  0 1.0000000000
## GO:0052652  BP    24  0 1.0000000000
## GO:0060216  BP    24  0 1.0000000000
## GO:0034311  BP    24  0 1.0000000000
## GO:0009048  BP    24  0 1.0000000000
## GO:0003272  BP    24  0 1.0000000000
## GO:0072677  BP    24  0 1.0000000000
## GO:0070199  BP    24  0 1.0000000000
## GO:0042044  BP    24  0 1.0000000000
## GO:0009065  BP    24  0 1.0000000000
## GO:0016578  BP    24  0 1.0000000000
## GO:0002418  BP    24  0 1.0000000000
## GO:0033622  BP    24  0 1.0000000000
## GO:0072643  BP    24  0 1.0000000000
## GO:0072207  BP    24  0 1.0000000000
## GO:0042474  BP    24  0 1.0000000000
## GO:0051882  BP    24  0 1.0000000000
## GO:0070584  BP    24  0 1.0000000000
## GO:0006312  BP    24  0 1.0000000000
## GO:0007064  BP    24  0 1.0000000000
## GO:0052472  BP    24  0 1.0000000000
## GO:0043921  BP    24  0 1.0000000000
## GO:0019048  BP    24  0 1.0000000000
## GO:0052312  BP    24  0 1.0000000000
## GO:1905208  BP    24  0 1.0000000000
## GO:0050687  BP    24  0 1.0000000000
## GO:0045922  BP    24  0 1.0000000000
## GO:0031061  BP    24  0 1.0000000000
## GO:0050995  BP    24  0 1.0000000000
## GO:0048025  BP    24  0 1.0000000000
## GO:1903204  BP    24  0 1.0000000000
## GO:1901984  BP    24  0 1.0000000000
## GO:0097150  BP    24  0 1.0000000000
## GO:0021889  BP    24  0 1.0000000000
## GO:0030728  BP    24  0 1.0000000000
## GO:0046856  BP    24  0 1.0000000000
## GO:0002693  BP    24  0 1.0000000000
## GO:0045723  BP    24  0 1.0000000000
## GO:2000637  BP    24  0 1.0000000000
## GO:0032352  BP    24  0 1.0000000000
## GO:0032753  BP    24  0 1.0000000000
## GO:0032770  BP    24  0 1.0000000000
## GO:0006301  BP    24  0 1.0000000000
## GO:0010499  BP    24  0 1.0000000000
## GO:0007205  BP    24  0 1.0000000000
## GO:0065005  BP    24  0 1.0000000000
## GO:0006221  BP    24  0 1.0000000000
## GO:0099623  BP    24  0 1.0000000000
## GO:0035561  BP    24  0 1.0000000000
## GO:0048670  BP    24  0 1.0000000000
## GO:0032878  BP    24  0 1.0000000000
## GO:0051580  BP    24  0 1.0000000000
## GO:0043496  BP    24  0 1.0000000000
## GO:0033233  BP    24  0 1.0000000000
## GO:1900120  BP    24  0 1.0000000000
## GO:1902683  BP    24  0 1.0000000000
## GO:0035813  BP    24  0 1.0000000000
## GO:0032928  BP    24  0 1.0000000000
## GO:0046685  BP    24  0 1.0000000000
## GO:0035455  BP    24  0 1.0000000000
## GO:0071867  BP    24  0 1.0000000000
## GO:0042572  BP    24  0 1.0000000000
## GO:0062009  BP    24  0 1.0000000000
## GO:0006706  BP    24  0 1.0000000000
## GO:0021544  BP    24  0 1.0000000000
## GO:0034505  BP    24  0 1.0000000000
## GO:0001829  BP    24  0 1.0000000000
## GO:0019068  BP    24  0 1.0000000000
## GO:0090114  BP    25  0 1.0000000000
## GO:0095500  BP    25  0 1.0000000000
## GO:0071616  BP    25  0 1.0000000000
## GO:0030325  BP    25  0 1.0000000000
## GO:0031100  BP    25  0 1.0000000000
## GO:0002478  BP    25  0 1.0000000000
## GO:0007413  BP    25  0 1.0000000000
## GO:0071711  BP    25  0 1.0000000000
## GO:0048148  BP    25  0 1.0000000000
## GO:0048266  BP    25  0 1.0000000000
## GO:0086019  BP    25  0 1.0000000000
## GO:0071312  BP    25  0 1.0000000000
## GO:0071234  BP    25  0 1.0000000000
## GO:0021895  BP    25  0 1.0000000000
## GO:0021801  BP    25  0 1.0000000000
## GO:0050832  BP    25  0 1.0000000000
## GO:0009595  BP    25  0 1.0000000000
## GO:0032469  BP    25  0 1.0000000000
## GO:0009649  BP    25  0 1.0000000000
## GO:0003351  BP    25  0 1.0000000000
## GO:0010669  BP    25  0 1.0000000000
## GO:0085029  BP    25  0 1.0000000000
## GO:0006760  BP    25  0 1.0000000000
## GO:1901658  BP    25  0 1.0000000000
## GO:0019320  BP    25  0 1.0000000000
## GO:0043486  BP    25  0 1.0000000000
## GO:0042430  BP    25  0 1.0000000000
## GO:0006925  BP    25  0 1.0000000000
## GO:0072606  BP    25  0 1.0000000000
## GO:0010742  BP    25  0 1.0000000000
## GO:0006298  BP    25  0 1.0000000000
## GO:0046426  BP    25  0 1.0000000000
## GO:0035024  BP    25  0 1.0000000000
## GO:0090344  BP    25  0 1.0000000000
## GO:2001039  BP    25  0 1.0000000000
## GO:1904030  BP    25  0 1.0000000000
## GO:0042059  BP    25  0 1.0000000000
## GO:1903206  BP    25  0 1.0000000000
## GO:0032703  BP    25  0 1.0000000000
## GO:1902230  BP    25  0 1.0000000000
## GO:0032515  BP    25  0 1.0000000000
## GO:0120033  BP    25  0 1.0000000000
## GO:1904376  BP    25  0 1.0000000000
## GO:1901032  BP    25  0 1.0000000000
## GO:1903671  BP    25  0 1.0000000000
## GO:2000737  BP    25  0 1.0000000000
## GO:0010894  BP    25  0 1.0000000000
## GO:0045939  BP    25  0 1.0000000000
## GO:1905809  BP    25  0 1.0000000000
## GO:1904357  BP    25  0 1.0000000000
## GO:0032480  BP    25  0 1.0000000000
## GO:0070050  BP    25  0 1.0000000000
## GO:0106030  BP    25  0 1.0000000000
## GO:0098810  BP    25  0 1.0000000000
## GO:0030903  BP    25  0 1.0000000000
## GO:0000289  BP    25  0 1.0000000000
## GO:0043171  BP    25  0 1.0000000000
## GO:0018200  BP    25  0 1.0000000000
## GO:0014821  BP    25  0 1.0000000000
## GO:0006817  BP    25  0 1.0000000000
## GO:0031639  BP    25  0 1.0000000000
## GO:0030194  BP    25  0 1.0000000000
## GO:0090280  BP    25  0 1.0000000000
## GO:0032376  BP    25  0 1.0000000000
## GO:0045737  BP    25  0 1.0000000000
## GO:0045648  BP    25  0 1.0000000000
## GO:0051894  BP    25  0 1.0000000000
## GO:1900048  BP    25  0 1.0000000000
## GO:0061213  BP    25  0 1.0000000000
## GO:0071677  BP    25  0 1.0000000000
## GO:0001956  BP    25  0 1.0000000000
## GO:0090023  BP    25  0 1.0000000000
## GO:0060148  BP    25  0 1.0000000000
## GO:1901798  BP    25  0 1.0000000000
## GO:0032373  BP    25  0 1.0000000000
## GO:0034123  BP    25  0 1.0000000000
## GO:2000679  BP    25  0 1.0000000000
## GO:0010575  BP    25  0 1.0000000000
## GO:0001516  BP    25  0 1.0000000000
## GO:0046457  BP    25  0 1.0000000000
## GO:0018126  BP    25  0 1.0000000000
## GO:0051205  BP    25  0 1.0000000000
## GO:0032800  BP    25  0 1.0000000000
## GO:0060004  BP    25  0 1.0000000000
## GO:2000765  BP    25  0 1.0000000000
## GO:1903649  BP    25  0 1.0000000000
## GO:1903747  BP    25  0 1.0000000000
## GO:0014048  BP    25  0 1.0000000000
## GO:1905939  BP    25  0 1.0000000000
## GO:0034114  BP    25  0 1.0000000000
## GO:0043567  BP    25  0 1.0000000000
## GO:0090140  BP    25  0 1.0000000000
## GO:1901739  BP    25  0 1.0000000000
## GO:0150077  BP    25  0 1.0000000000
## GO:0010640  BP    25  0 1.0000000000
## GO:0032104  BP    25  0 1.0000000000
## GO:0032107  BP    25  0 1.0000000000
## GO:0060338  BP    25  0 1.0000000000
## GO:1904752  BP    25  0 1.0000000000
## GO:0010165  BP    25  0 1.0000000000
## GO:0046688  BP    25  0 1.0000000000
## GO:0055094  BP    25  0 1.0000000000
## GO:0051788  BP    25  0 1.0000000000
## GO:0080053  BP    25  0 1.0000000000
## GO:0042573  BP    25  0 1.0000000000
## GO:0050951  BP    25  0 1.0000000000
## GO:1903831  BP    25  0 1.0000000000
## GO:0021513  BP    25  0 1.0000000000
## GO:0031629  BP    25  0 1.0000000000
## GO:0070193  BP    25  0 1.0000000000
## GO:0022030  BP    25  0 1.0000000000
## GO:0035384  BP    25  0 1.0000000000
## GO:0042403  BP    25  0 1.0000000000
## GO:1904738  BP    25  0 1.0000000000
## GO:0055069  BP    25  0 1.0000000000
## GO:0000737  BP    26  0 1.0000000000
## GO:0051123  BP    26  0 1.0000000000
## GO:0089718  BP    26  0 1.0000000000
## GO:0006026  BP    26  0 1.0000000000
## GO:0048799  BP    26  0 1.0000000000
## GO:0045117  BP    26  0 1.0000000000
## GO:0014898  BP    26  0 1.0000000000
## GO:0055003  BP    26  0 1.0000000000
## GO:0009713  BP    26  0 1.0000000000
## GO:0042423  BP    26  0 1.0000000000
## GO:0071474  BP    26  0 1.0000000000
## GO:0071549  BP    26  0 1.0000000000
## GO:0007620  BP    26  0 1.0000000000
## GO:0007549  BP    26  0 1.0000000000
## GO:0072575  BP    26  0 1.0000000000
## GO:0061436  BP    26  0 1.0000000000
## GO:0090077  BP    26  0 1.0000000000
## GO:0072012  BP    26  0 1.0000000000
## GO:1901071  BP    26  0 1.0000000000
## GO:0071425  BP    26  0 1.0000000000
## GO:0072574  BP    26  0 1.0000000000
## GO:0033522  BP    26  0 1.0000000000
## GO:0045109  BP    26  0 1.0000000000
## GO:0006891  BP    26  0 1.0000000000
## GO:0060716  BP    26  0 1.0000000000
## GO:0016556  BP    26  0 1.0000000000
## GO:0009299  BP    26  0 1.0000000000
## GO:0000460  BP    26  0 1.0000000000
## GO:0034453  BP    26  0 1.0000000000
## GO:0032528  BP    26  0 1.0000000000
## GO:0099010  BP    26  0 1.0000000000
## GO:0003299  BP    26  0 1.0000000000
## GO:1903579  BP    26  0 1.0000000000
## GO:1904893  BP    26  0 1.0000000000
## GO:0070233  BP    26  0 1.0000000000
## GO:0050858  BP    26  0 1.0000000000
## GO:0070168  BP    26  0 1.0000000000
## GO:2000780  BP    26  0 1.0000000000
## GO:0010829  BP    26  0 1.0000000000
## GO:1901380  BP    26  0 1.0000000000
## GO:0048642  BP    26  0 1.0000000000
## GO:0051497  BP    26  0 1.0000000000
## GO:0007263  BP    26  0 1.0000000000
## GO:0051767  BP    26  0 1.0000000000
## GO:0006730  BP    26  0 1.0000000000
## GO:0006779  BP    26  0 1.0000000000
## GO:0042104  BP    26  0 1.0000000000
## GO:1900078  BP    26  0 1.0000000000
## GO:0045742  BP    26  0 1.0000000000
## GO:1900273  BP    26  0 1.0000000000
## GO:1905523  BP    26  0 1.0000000000
## GO:0010863  BP    26  0 1.0000000000
## GO:0050927  BP    26  0 1.0000000000
## GO:2000738  BP    26  0 1.0000000000
## GO:0090208  BP    26  0 1.0000000000
## GO:0036342  BP    26  0 1.0000000000
## GO:0034067  BP    26  0 1.0000000000
## GO:0006213  BP    26  0 1.0000000000
## GO:0000154  BP    26  0 1.0000000000
## GO:2000311  BP    26  0 1.0000000000
## GO:0051125  BP    26  0 1.0000000000
## GO:0045761  BP    26  0 1.0000000000
## GO:1903010  BP    26  0 1.0000000000
## GO:0090189  BP    26  0 1.0000000000
## GO:0098901  BP    26  0 1.0000000000
## GO:0007176  BP    26  0 1.0000000000
## GO:0051570  BP    26  0 1.0000000000
## GO:0070129  BP    26  0 1.0000000000
## GO:0090025  BP    26  0 1.0000000000
## GO:0051769  BP    26  0 1.0000000000
## GO:2000050  BP    26  0 1.0000000000
## GO:0033688  BP    26  0 1.0000000000
## GO:1902175  BP    26  0 1.0000000000
## GO:1902473  BP    26  0 1.0000000000
## GO:0010155  BP    26  0 1.0000000000
## GO:1904353  BP    26  0 1.0000000000
## GO:0035809  BP    26  0 1.0000000000
## GO:0035812  BP    26  0 1.0000000000
## GO:0000303  BP    26  0 1.0000000000
## GO:0016180  BP    26  0 1.0000000000
## GO:0007289  BP    26  0 1.0000000000
## GO:0035929  BP    26  0 1.0000000000
## GO:0016082  BP    26  0 1.0000000000
## GO:0019433  BP    26  0 1.0000000000
## GO:0060065  BP    26  0 1.0000000000
## GO:0099500  BP    26  0 1.0000000000
## GO:0009394  BP    27  0 1.0000000000
## GO:0036037  BP    27  0 1.0000000000
## GO:0031365  BP    27  0 1.0000000000
## GO:0060008  BP    27  0 1.0000000000
## GO:0003171  BP    27  0 1.0000000000
## GO:0060219  BP    27  0 1.0000000000
## GO:0014887  BP    27  0 1.0000000000
## GO:0060536  BP    27  0 1.0000000000
## GO:0021533  BP    27  0 1.0000000000
## GO:1905145  BP    27  0 1.0000000000
## GO:0071361  BP    27  0 1.0000000000
## GO:0071402  BP    27  0 1.0000000000
## GO:0071472  BP    27  0 1.0000000000
## GO:0090103  BP    27  0 1.0000000000
## GO:0019692  BP    27  0 1.0000000000
## GO:0008340  BP    27  0 1.0000000000
## GO:0035987  BP    27  0 1.0000000000
## GO:0032509  BP    27  0 1.0000000000
## GO:0021871  BP    27  0 1.0000000000
## GO:0007214  BP    27  0 1.0000000000
## GO:0016577  BP    27  0 1.0000000000
## GO:0070076  BP    27  0 1.0000000000
## GO:0030212  BP    27  0 1.0000000000
## GO:0042538  BP    27  0 1.0000000000
## GO:0048305  BP    27  0 1.0000000000
## GO:0032957  BP    27  0 1.0000000000
## GO:0032365  BP    27  0 1.0000000000
## GO:0061440  BP    27  0 1.0000000000
## GO:0060713  BP    27  0 1.0000000000
## GO:0050901  BP    27  0 1.0000000000
## GO:0006376  BP    27  0 1.0000000000
## GO:0000470  BP    27  0 1.0000000000
## GO:0002335  BP    27  0 1.0000000000
## GO:0003338  BP    27  0 1.0000000000
## GO:0051560  BP    27  0 1.0000000000
## GO:0045738  BP    27  0 1.0000000000
## GO:1901185  BP    27  0 1.0000000000
## GO:0046639  BP    27  0 1.0000000000
## GO:0050849  BP    27  0 1.0000000000
## GO:0031342  BP    27  0 1.0000000000
## GO:0051354  BP    27  0 1.0000000000
## GO:0061099  BP    27  0 1.0000000000
## GO:1900543  BP    27  0 1.0000000000
## GO:2000272  BP    27  0 1.0000000000
## GO:0003085  BP    27  0 1.0000000000
## GO:0009163  BP    27  0 1.0000000000
## GO:0018195  BP    27  0 1.0000000000
## GO:0045332  BP    27  0 1.0000000000
## GO:0010971  BP    27  0 1.0000000000
## GO:0046852  BP    27  0 1.0000000000
## GO:0045780  BP    27  0 1.0000000000
## GO:0045956  BP    27  0 1.0000000000
## GO:2000727  BP    27  0 1.0000000000
## GO:0060045  BP    27  0 1.0000000000
## GO:0042753  BP    27  0 1.0000000000
## GO:1903861  BP    27  0 1.0000000000
## GO:0061003  BP    27  0 1.0000000000
## GO:0071624  BP    27  0 1.0000000000
## GO:0010460  BP    27  0 1.0000000000
## GO:0045830  BP    27  0 1.0000000000
## GO:1903489  BP    27  0 1.0000000000
## GO:0050996  BP    27  0 1.0000000000
## GO:0002052  BP    27  0 1.0000000000
## GO:1901018  BP    27  0 1.0000000000
## GO:0010954  BP    27  0 1.0000000000
## GO:0010893  BP    27  0 1.0000000000
## GO:0036003  BP    27  0 1.0000000000
## GO:0071108  BP    27  0 1.0000000000
## GO:0006515  BP    27  0 1.0000000000
## GO:0072528  BP    27  0 1.0000000000
## GO:0032801  BP    27  0 1.0000000000
## GO:0032925  BP    27  0 1.0000000000
## GO:1901532  BP    27  0 1.0000000000
## GO:0045408  BP    27  0 1.0000000000
## GO:0031440  BP    27  0 1.0000000000
## GO:0032069  BP    27  0 1.0000000000
## GO:0050926  BP    27  0 1.0000000000
## GO:0003071  BP    27  0 1.0000000000
## GO:0061437  BP    27  0 1.0000000000
## GO:0045730  BP    27  0 1.0000000000
## GO:1905144  BP    27  0 1.0000000000
## GO:0000305  BP    27  0 1.0000000000
## GO:0002347  BP    27  0 1.0000000000
## GO:0061298  BP    27  0 1.0000000000
## GO:0042455  BP    27  0 1.0000000000
## GO:0044550  BP    27  0 1.0000000000
## GO:0048745  BP    27  0 1.0000000000
## GO:0021511  BP    27  0 1.0000000000
## GO:0033014  BP    27  0 1.0000000000
## GO:0045061  BP    27  0 1.0000000000
## GO:0030878  BP    27  0 1.0000000000
## GO:0060343  BP    27  0 1.0000000000
## GO:0044342  BP    27  0 1.0000000000
## GO:0039694  BP    27  0 1.0000000000
## GO:0002360  BP    28  0 1.0000000000
## GO:0072539  BP    28  0 1.0000000000
## GO:0060444  BP    28  0 1.0000000000
## GO:0060445  BP    28  0 1.0000000000
## GO:0061311  BP    28  0 1.0000000000
## GO:0021952  BP    28  0 1.0000000000
## GO:0034508  BP    28  0 1.0000000000
## GO:0021697  BP    28  0 1.0000000000
## GO:0002029  BP    28  0 1.0000000000
## GO:0048596  BP    28  0 1.0000000000
## GO:0035162  BP    28  0 1.0000000000
## GO:0010458  BP    28  0 1.0000000000
## GO:0002068  BP    28  0 1.0000000000
## GO:0048820  BP    28  0 1.0000000000
## GO:0060384  BP    28  0 1.0000000000
## GO:0042226  BP    28  0 1.0000000000
## GO:0036297  BP    28  0 1.0000000000
## GO:0002089  BP    28  0 1.0000000000
## GO:0034204  BP    28  0 1.0000000000
## GO:0072576  BP    28  0 1.0000000000
## GO:0001945  BP    28  0 1.0000000000
## GO:0051307  BP    28  0 1.0000000000
## GO:0044003  BP    28  0 1.0000000000
## GO:0044788  BP    28  0 1.0000000000
## GO:0022401  BP    28  0 1.0000000000
## GO:0048521  BP    28  0 1.0000000000
## GO:0045992  BP    28  0 1.0000000000
## GO:0010719  BP    28  0 1.0000000000
## GO:0045822  BP    28  0 1.0000000000
## GO:0032369  BP    28  0 1.0000000000
## GO:2000178  BP    28  0 1.0000000000
## GO:0051589  BP    28  0 1.0000000000
## GO:0045980  BP    28  0 1.0000000000
## GO:0032891  BP    28  0 1.0000000000
## GO:0045671  BP    28  0 1.0000000000
## GO:0001759  BP    28  0 1.0000000000
## GO:0035335  BP    28  0 1.0000000000
## GO:0060039  BP    28  0 1.0000000000
## GO:0060037  BP    28  0 1.0000000000
## GO:1901186  BP    28  0 1.0000000000
## GO:1902932  BP    28  0 1.0000000000
## GO:0051957  BP    28  0 1.0000000000
## GO:1903846  BP    28  0 1.0000000000
## GO:0051984  BP    28  0 1.0000000000
## GO:0045724  BP    28  0 1.0000000000
## GO:0050820  BP    28  0 1.0000000000
## GO:0051194  BP    28  0 1.0000000000
## GO:1904031  BP    28  0 1.0000000000
## GO:0043032  BP    28  0 1.0000000000
## GO:0051446  BP    28  0 1.0000000000
## GO:0045663  BP    28  0 1.0000000000
## GO:1900745  BP    28  0 1.0000000000
## GO:0090312  BP    28  0 1.0000000000
## GO:0090314  BP    28  0 1.0000000000
## GO:0030511  BP    28  0 1.0000000000
## GO:0098698  BP    28  0 1.0000000000
## GO:0071168  BP    28  0 1.0000000000
## GO:0070198  BP    28  0 1.0000000000
## GO:0006195  BP    28  0 1.0000000000
## GO:2000310  BP    28  0 1.0000000000
## GO:0060765  BP    28  0 1.0000000000
## GO:0061050  BP    28  0 1.0000000000
## GO:0045187  BP    28  0 1.0000000000
## GO:0080154  BP    28  0 1.0000000000
## GO:0010962  BP    28  0 1.0000000000
## GO:0005979  BP    28  0 1.0000000000
## GO:0031063  BP    28  0 1.0000000000
## GO:0032647  BP    28  0 1.0000000000
## GO:0061217  BP    28  0 1.0000000000
## GO:0010939  BP    28  0 1.0000000000
## GO:0045589  BP    28  0 1.0000000000
## GO:0090169  BP    28  0 1.0000000000
## GO:0033198  BP    28  0 1.0000000000
## GO:0007530  BP    28  0 1.0000000000
## GO:0048103  BP    28  0 1.0000000000
## GO:0006929  BP    28  0 1.0000000000
## GO:0002507  BP    28  0 1.0000000000
## GO:0086005  BP    28  0 1.0000000000
## GO:0006270  BP    29  0 1.0000000000
## GO:0006336  BP    29  0 1.0000000000
## GO:0000731  BP    29  0 1.0000000000
## GO:0046039  BP    29  0 1.0000000000
## GO:0006734  BP    29  0 1.0000000000
## GO:0031295  BP    29  0 1.0000000000
## GO:0071880  BP    29  0 1.0000000000
## GO:0043090  BP    29  0 1.0000000000
## GO:0030262  BP    29  0 1.0000000000
## GO:0060117  BP    29  0 1.0000000000
## GO:0008206  BP    29  0 1.0000000000
## GO:0099622  BP    29  0 1.0000000000
## GO:0034629  BP    29  0 1.0000000000
## GO:0071480  BP    29  0 1.0000000000
## GO:0071353  BP    29  0 1.0000000000
## GO:0071354  BP    29  0 1.0000000000
## GO:0003413  BP    29  0 1.0000000000
## GO:0050802  BP    29  0 1.0000000000
## GO:0006536  BP    29  0 1.0000000000
## GO:0060914  BP    29  0 1.0000000000
## GO:0007007  BP    29  0 1.0000000000
## GO:0045292  BP    29  0 1.0000000000
## GO:0030318  BP    29  0 1.0000000000
## GO:0010586  BP    29  0 1.0000000000
## GO:0097345  BP    29  0 1.0000000000
## GO:0030224  BP    29  0 1.0000000000
## GO:1903131  BP    29  0 1.0000000000
## GO:0046365  BP    29  0 1.0000000000
## GO:0060571  BP    29  0 1.0000000000
## GO:0044458  BP    29  0 1.0000000000
## GO:0033119  BP    29  0 1.0000000000
## GO:0043951  BP    29  0 1.0000000000
## GO:1902042  BP    29  0 1.0000000000
## GO:0033137  BP    29  0 1.0000000000
## GO:0099637  BP    29  0 1.0000000000
## GO:0042119  BP    29  0 1.0000000000
## GO:0033687  BP    29  0 1.0000000000
## GO:0003148  BP    29  0 1.0000000000
## GO:0007602  BP    29  0 1.0000000000
## GO:0002230  BP    29  0 1.0000000000
## GO:0031116  BP    29  0 1.0000000000
## GO:0033141  BP    29  0 1.0000000000
## GO:0010800  BP    29  0 1.0000000000
## GO:0043552  BP    29  0 1.0000000000
## GO:1903319  BP    29  0 1.0000000000
## GO:0002092  BP    29  0 1.0000000000
## GO:0099632  BP    29  0 1.0000000000
## GO:0090181  BP    29  0 1.0000000000
## GO:1902235  BP    29  0 1.0000000000
## GO:1903487  BP    29  0 1.0000000000
## GO:0001919  BP    29  0 1.0000000000
## GO:1900027  BP    29  0 1.0000000000
## GO:0034391  BP    29  0 1.0000000000
## GO:0060260  BP    29  0 1.0000000000
## GO:0071548  BP    29  0 1.0000000000
## GO:0033273  BP    29  0 1.0000000000
## GO:1990126  BP    29  0 1.0000000000
## GO:0070296  BP    29  0 1.0000000000
## GO:0072422  BP    29  0 1.0000000000
## GO:0072401  BP    29  0 1.0000000000
## GO:0072395  BP    29  0 1.0000000000
## GO:0034390  BP    29  0 1.0000000000
## GO:0030149  BP    29  0 1.0000000000
## GO:0030488  BP    29  0 1.0000000000
## GO:0034724  BP    30  0 1.0000000000
## GO:0002438  BP    30  0 1.0000000000
## GO:0023058  BP    30  0 1.0000000000
## GO:0008608  BP    30  0 1.0000000000
## GO:0060317  BP    30  0 1.0000000000
## GO:0006921  BP    30  0 1.0000000000
## GO:0051085  BP    30  0 1.0000000000
## GO:0021602  BP    30  0 1.0000000000
## GO:0021904  BP    30  0 1.0000000000
## GO:0035767  BP    30  0 1.0000000000
## GO:0090505  BP    30  0 1.0000000000
## GO:0000132  BP    30  0 1.0000000000
## GO:0035640  BP    30  0 1.0000000000
## GO:0022617  BP    30  0 1.0000000000
## GO:0042168  BP    30  0 1.0000000000
## GO:0015012  BP    30  0 1.0000000000
## GO:0035329  BP    30  0 1.0000000000
## GO:0010390  BP    30  0 1.0000000000
## GO:0042744  BP    30  0 1.0000000000
## GO:0032607  BP    30  0 1.0000000000
## GO:0070306  BP    30  0 1.0000000000
## GO:0022011  BP    30  0 1.0000000000
## GO:0061082  BP    30  0 1.0000000000
## GO:0070266  BP    30  0 1.0000000000
## GO:0034260  BP    30  0 1.0000000000
## GO:0055022  BP    30  0 1.0000000000
## GO:0061037  BP    30  0 1.0000000000
## GO:0061117  BP    30  0 1.0000000000
## GO:0032692  BP    30  0 1.0000000000
## GO:0016242  BP    30  0 1.0000000000
## GO:0031645  BP    30  0 1.0000000000
## GO:0099645  BP    30  0 1.0000000000
## GO:0032292  BP    30  0 1.0000000000
## GO:0043372  BP    30  0 1.0000000000
## GO:1902751  BP    30  0 1.0000000000
## GO:0035066  BP    30  0 1.0000000000
## GO:2000778  BP    30  0 1.0000000000
## GO:1902745  BP    30  0 1.0000000000
## GO:0048026  BP    30  0 1.0000000000
## GO:0033005  BP    30  0 1.0000000000
## GO:0048714  BP    30  0 1.0000000000
## GO:0010922  BP    30  0 1.0000000000
## GO:0048643  BP    30  0 1.0000000000
## GO:0060143  BP    30  0 1.0000000000
## GO:0008214  BP    30  0 1.0000000000
## GO:0006482  BP    30  0 1.0000000000
## GO:0099633  BP    30  0 1.0000000000
## GO:0042026  BP    30  0 1.0000000000
## GO:0009303  BP    30  0 1.0000000000
## GO:0002902  BP    30  0 1.0000000000
## GO:0002724  BP    30  0 1.0000000000
## GO:0002825  BP    30  0 1.0000000000
## GO:1902003  BP    30  0 1.0000000000
## GO:1903859  BP    30  0 1.0000000000
## GO:0044062  BP    30  0 1.0000000000
## GO:1900117  BP    30  0 1.0000000000
## GO:0051569  BP    30  0 1.0000000000
## GO:0034110  BP    30  0 1.0000000000
## GO:0032673  BP    30  0 1.0000000000
## GO:1902253  BP    30  0 1.0000000000
## GO:0042481  BP    30  0 1.0000000000
## GO:1900274  BP    30  0 1.0000000000
## GO:0042534  BP    30  0 1.0000000000
## GO:0010803  BP    30  0 1.0000000000
## GO:0031297  BP    30  0 1.0000000000
## GO:0010043  BP    30  0 1.0000000000
## GO:0048384  BP    30  0 1.0000000000
## GO:0042533  BP    30  0 1.0000000000
## GO:0003309  BP    30  0 1.0000000000
## GO:0000038  BP    30  0 1.0000000000
## GO:0044319  BP    30  0 1.0000000000
## GO:0006829  BP    30  0 1.0000000000
## GO:0006335  BP    31  0 1.0000000000
## GO:0034723  BP    31  0 1.0000000000
## GO:0006506  BP    31  0 1.0000000000
## GO:0071875  BP    31  0 1.0000000000
## GO:0043276  BP    31  0 1.0000000000
## GO:0019884  BP    31  0 1.0000000000
## GO:1903963  BP    31  0 1.0000000000
## GO:0050482  BP    31  0 1.0000000000
## GO:0097352  BP    31  0 1.0000000000
## GO:0001832  BP    31  0 1.0000000000
## GO:0060795  BP    31  0 1.0000000000
## GO:0006884  BP    31  0 1.0000000000
## GO:0009584  BP    31  0 1.0000000000
## GO:0001958  BP    31  0 1.0000000000
## GO:0090504  BP    31  0 1.0000000000
## GO:0019373  BP    31  0 1.0000000000
## GO:0090162  BP    31  0 1.0000000000
## GO:1901659  BP    31  0 1.0000000000
## GO:0060218  BP    31  0 1.0000000000
## GO:0008299  BP    31  0 1.0000000000
## GO:0048535  BP    31  0 1.0000000000
## GO:0031294  BP    31  0 1.0000000000
## GO:0061157  BP    31  0 1.0000000000
## GO:0001893  BP    31  0 1.0000000000
## GO:0000462  BP    31  0 1.0000000000
## GO:0086010  BP    31  0 1.0000000000
## GO:0044818  BP    31  0 1.0000000000
## GO:2000515  BP    31  0 1.0000000000
## GO:0032232  BP    31  0 1.0000000000
## GO:0043537  BP    31  0 1.0000000000
## GO:1901020  BP    31  0 1.0000000000
## GO:0010614  BP    31  0 1.0000000000
## GO:0042036  BP    31  0 1.0000000000
## GO:2000352  BP    31  0 1.0000000000
## GO:0045920  BP    31  0 1.0000000000
## GO:0045932  BP    31  0 1.0000000000
## GO:0045662  BP    31  0 1.0000000000
## GO:1905476  BP    31  0 1.0000000000
## GO:1901797  BP    31  0 1.0000000000
## GO:0048011  BP    31  0 1.0000000000
## GO:0009225  BP    31  0 1.0000000000
## GO:0001556  BP    31  0 1.0000000000
## GO:2000144  BP    31  0 1.0000000000
## GO:1903393  BP    31  0 1.0000000000
## GO:0061036  BP    31  0 1.0000000000
## GO:0032967  BP    31  0 1.0000000000
## GO:2000781  BP    31  0 1.0000000000
## GO:0051491  BP    31  0 1.0000000000
## GO:0050718  BP    31  0 1.0000000000
## GO:0043302  BP    31  0 1.0000000000
## GO:0032816  BP    31  0 1.0000000000
## GO:0140239  BP    31  0 1.0000000000
## GO:0098884  BP    31  0 1.0000000000
## GO:0055075  BP    31  0 1.0000000000
## GO:0070979  BP    31  0 1.0000000000
## GO:0070536  BP    31  0 1.0000000000
## GO:1901661  BP    31  0 1.0000000000
## GO:0044030  BP    31  0 1.0000000000
## GO:0033081  BP    31  0 1.0000000000
## GO:0043457  BP    31  0 1.0000000000
## GO:0042749  BP    31  0 1.0000000000
## GO:0042634  BP    31  0 1.0000000000
## GO:0010758  BP    31  0 1.0000000000
## GO:0045652  BP    31  0 1.0000000000
## GO:0060632  BP    31  0 1.0000000000
## GO:0090022  BP    31  0 1.0000000000
## GO:0050999  BP    31  0 1.0000000000
## GO:0033139  BP    31  0 1.0000000000
## GO:2001014  BP    31  0 1.0000000000
## GO:1903421  BP    31  0 1.0000000000
## GO:0002026  BP    31  0 1.0000000000
## GO:0002828  BP    31  0 1.0000000000
## GO:0010574  BP    31  0 1.0000000000
## GO:0033561  BP    31  0 1.0000000000
## GO:0045066  BP    31  0 1.0000000000
## GO:0090075  BP    31  0 1.0000000000
## GO:0036075  BP    31  0 1.0000000000
## GO:0070670  BP    31  0 1.0000000000
## GO:0070741  BP    31  0 1.0000000000
## GO:1905314  BP    31  0 1.0000000000
## GO:0000387  BP    31  0 1.0000000000
## GO:0060074  BP    31  0 1.0000000000
## GO:0099560  BP    31  0 1.0000000000
## GO:0006099  BP    31  0 1.0000000000
## GO:0006767  BP    31  0 1.0000000000
## GO:0032508  BP    32  0 1.0000000000
## GO:0031572  BP    32  0 1.0000000000
## GO:0006505  BP    32  0 1.0000000000
## GO:0072538  BP    32  0 1.0000000000
## GO:0097242  BP    32  0 1.0000000000
## GO:0002486  BP    32  0 1.0000000000
## GO:0060561  BP    32  0 1.0000000000
## GO:0070286  BP    32  0 1.0000000000
## GO:0060706  BP    32  0 1.0000000000
## GO:1904646  BP    32  0 1.0000000000
## GO:0051642  BP    32  0 1.0000000000
## GO:0022410  BP    32  0 1.0000000000
## GO:0006101  BP    32  0 1.0000000000
## GO:0048668  BP    32  0 1.0000000000
## GO:0060977  BP    32  0 1.0000000000
## GO:0017004  BP    32  0 1.0000000000
## GO:0009262  BP    32  0 1.0000000000
## GO:0048048  BP    32  0 1.0000000000
## GO:0060669  BP    32  0 1.0000000000
## GO:0046466  BP    32  0 1.0000000000
## GO:0071985  BP    32  0 1.0000000000
## GO:0001779  BP    32  0 1.0000000000
## GO:0034661  BP    32  0 1.0000000000
## GO:0032689  BP    32  0 1.0000000000
## GO:0050686  BP    32  0 1.0000000000
## GO:1900181  BP    32  0 1.0000000000
## GO:0007274  BP    32  0 1.0000000000
## GO:0036475  BP    32  0 1.0000000000
## GO:0002446  BP    32  0 1.0000000000
## GO:0007097  BP    32  0 1.0000000000
## GO:0007031  BP    32  0 1.0000000000
## GO:2001171  BP    32  0 1.0000000000
## GO:0035025  BP    32  0 1.0000000000
## GO:0032728  BP    32  0 1.0000000000
## GO:0032743  BP    32  0 1.0000000000
## GO:1902110  BP    32  0 1.0000000000
## GO:0045672  BP    32  0 1.0000000000
## GO:0043243  BP    32  0 1.0000000000
## GO:0032212  BP    32  0 1.0000000000
## GO:0006623  BP    32  0 1.0000000000
## GO:0042558  BP    32  0 1.0000000000
## GO:0006220  BP    32  0 1.0000000000
## GO:0045577  BP    32  0 1.0000000000
## GO:0010453  BP    32  0 1.0000000000
## GO:2000191  BP    32  0 1.0000000000
## GO:0040036  BP    32  0 1.0000000000
## GO:0045616  BP    32  0 1.0000000000
## GO:0010591  BP    32  0 1.0000000000
## GO:0060306  BP    32  0 1.0000000000
## GO:1903203  BP    32  0 1.0000000000
## GO:0051150  BP    32  0 1.0000000000
## GO:0030947  BP    32  0 1.0000000000
## GO:1902186  BP    32  0 1.0000000000
## GO:0003016  BP    32  0 1.0000000000
## GO:0001964  BP    32  0 1.0000000000
## GO:0051180  BP    32  0 1.0000000000
## GO:0034314  BP    33  0 1.0000000000
## GO:0006308  BP    33  0 1.0000000000
## GO:0050779  BP    33  0 1.0000000000
## GO:0014044  BP    33  0 1.0000000000
## GO:0006084  BP    33  0 1.0000000000
## GO:0002484  BP    33  0 1.0000000000
## GO:0002476  BP    33  0 1.0000000000
## GO:0021680  BP    33  0 1.0000000000
## GO:0048566  BP    33  0 1.0000000000
## GO:0001706  BP    33  0 1.0000000000
## GO:0035883  BP    33  0 1.0000000000
## GO:0048013  BP    33  0 1.0000000000
## GO:0040001  BP    33  0 1.0000000000
## GO:0006775  BP    33  0 1.0000000000
## GO:0060487  BP    33  0 1.0000000000
## GO:0033598  BP    33  0 1.0000000000
## GO:0071709  BP    33  0 1.0000000000
## GO:0061842  BP    33  0 1.0000000000
## GO:0099563  BP    33  0 1.0000000000
## GO:0010667  BP    33  0 1.0000000000
## GO:2001240  BP    33  0 1.0000000000
## GO:0007026  BP    33  0 1.0000000000
## GO:0014741  BP    33  0 1.0000000000
## GO:1901099  BP    33  0 1.0000000000
## GO:0045879  BP    33  0 1.0000000000
## GO:0071827  BP    33  0 1.0000000000
## GO:0043950  BP    33  0 1.0000000000
## GO:1901890  BP    33  0 1.0000000000
## GO:0032467  BP    33  0 1.0000000000
## GO:2000108  BP    33  0 1.0000000000
## GO:0090218  BP    33  0 1.0000000000
## GO:0031112  BP    33  0 1.0000000000
## GO:0045070  BP    33  0 1.0000000000
## GO:0060740  BP    33  0 1.0000000000
## GO:0071539  BP    33  0 1.0000000000
## GO:0045047  BP    33  0 1.0000000000
## GO:1903146  BP    33  0 1.0000000000
## GO:0002691  BP    33  0 1.0000000000
## GO:0086091  BP    33  0 1.0000000000
## GO:1903205  BP    33  0 1.0000000000
## GO:0032660  BP    33  0 1.0000000000
## GO:0010837  BP    33  0 1.0000000000
## GO:0002082  BP    33  0 1.0000000000
## GO:0010543  BP    33  0 1.0000000000
## GO:1905606  BP    33  0 1.0000000000
## GO:2000036  BP    33  0 1.0000000000
## GO:0003081  BP    33  0 1.0000000000
## GO:1904467  BP    33  0 1.0000000000
## GO:0046596  BP    33  0 1.0000000000
## GO:0035094  BP    33  0 1.0000000000
## GO:0048240  BP    33  0 1.0000000000
## GO:0007271  BP    33  0 1.0000000000
## GO:0034142  BP    33  0 1.0000000000
## GO:0070897  BP    33  0 1.0000000000
## GO:0010573  BP    33  0 1.0000000000
## GO:0021591  BP    33  0 1.0000000000
## GO:0006984  BP    34  0 1.0000000000
## GO:0048194  BP    34  0 1.0000000000
## GO:0006739  BP    34  0 1.0000000000
## GO:0000186  BP    34  0 1.0000000000
## GO:0002428  BP    34  0 1.0000000000
## GO:0003209  BP    34  0 1.0000000000
## GO:0044275  BP    34  0 1.0000000000
## GO:0042832  BP    34  0 1.0000000000
## GO:0035116  BP    34  0 1.0000000000
## GO:0003203  BP    34  0 1.0000000000
## GO:0035890  BP    34  0 1.0000000000
## GO:0035891  BP    34  0 1.0000000000
## GO:0140115  BP    34  0 1.0000000000
## GO:0014047  BP    34  0 1.0000000000
## GO:0031069  BP    34  0 1.0000000000
## GO:0060479  BP    34  0 1.0000000000
## GO:0000002  BP    34  0 1.0000000000
## GO:1902686  BP    34  0 1.0000000000
## GO:0008045  BP    34  0 1.0000000000
## GO:0052192  BP    34  0 1.0000000000
## GO:0052126  BP    34  0 1.0000000000
## GO:0001773  BP    34  0 1.0000000000
## GO:0050869  BP    34  0 1.0000000000
## GO:0032435  BP    34  0 1.0000000000
## GO:0009311  BP    34  0 1.0000000000
## GO:0018208  BP    34  0 1.0000000000
## GO:2000406  BP    34  0 1.0000000000
## GO:0010714  BP    34  0 1.0000000000
## GO:0050716  BP    34  0 1.0000000000
## GO:1902624  BP    34  0 1.0000000000
## GO:2000758  BP    34  0 1.0000000000
## GO:1905898  BP    34  0 1.0000000000
## GO:0099068  BP    34  0 1.0000000000
## GO:0060512  BP    34  0 1.0000000000
## GO:0010737  BP    34  0 1.0000000000
## GO:1905508  BP    34  0 1.0000000000
## GO:0018345  BP    34  0 1.0000000000
## GO:2000785  BP    34  0 1.0000000000
## GO:0048679  BP    34  0 1.0000000000
## GO:1901976  BP    34  0 1.0000000000
## GO:1903429  BP    34  0 1.0000000000
## GO:0033032  BP    34  0 1.0000000000
## GO:0090313  BP    34  0 1.0000000000
## GO:0090322  BP    34  0 1.0000000000
## GO:0006356  BP    34  0 1.0000000000
## GO:0071634  BP    34  0 1.0000000000
## GO:0031338  BP    34  0 1.0000000000
## GO:0097366  BP    34  0 1.0000000000
## GO:0002021  BP    34  0 1.0000000000
## GO:0032094  BP    34  0 1.0000000000
## GO:0002931  BP    34  0 1.0000000000
## GO:0019076  BP    34  0 1.0000000000
## GO:0051084  BP    35  0 1.0000000000
## GO:0046464  BP    35  0 1.0000000000
## GO:0055090  BP    35  0 1.0000000000
## GO:0035909  BP    35  0 1.0000000000
## GO:0009072  BP    35  0 1.0000000000
## GO:0021846  BP    35  0 1.0000000000
## GO:1990748  BP    35  0 1.0000000000
## GO:1990090  BP    35  0 1.0000000000
## GO:0001539  BP    35  0 1.0000000000
## GO:0060285  BP    35  0 1.0000000000
## GO:0042745  BP    35  0 1.0000000000
## GO:0009187  BP    35  0 1.0000000000
## GO:0019835  BP    35  0 1.0000000000
## GO:0060441  BP    35  0 1.0000000000
## GO:0007143  BP    35  0 1.0000000000
## GO:0036230  BP    35  0 1.0000000000
## GO:1901068  BP    35  0 1.0000000000
## GO:0030201  BP    35  0 1.0000000000
## GO:0051567  BP    35  0 1.0000000000
## GO:0016572  BP    35  0 1.0000000000
## GO:0006972  BP    35  0 1.0000000000
## GO:0051452  BP    35  0 1.0000000000
## GO:0031424  BP    35  0 1.0000000000
## GO:0055083  BP    35  0 1.0000000000
## GO:0008156  BP    35  0 1.0000000000
## GO:2000171  BP    35  0 1.0000000000
## GO:0048147  BP    35  0 1.0000000000
## GO:0045686  BP    35  0 1.0000000000
## GO:1902116  BP    35  0 1.0000000000
## GO:0002701  BP    35  0 1.0000000000
## GO:0035308  BP    35  0 1.0000000000
## GO:0032205  BP    35  0 1.0000000000
## GO:0034122  BP    35  0 1.0000000000
## GO:0015804  BP    35  0 1.0000000000
## GO:0046461  BP    35  0 1.0000000000
## GO:0033866  BP    35  0 1.0000000000
## GO:0034381  BP    35  0 1.0000000000
## GO:0032786  BP    35  0 1.0000000000
## GO:0032733  BP    35  0 1.0000000000
## GO:1902895  BP    35  0 1.0000000000
## GO:0045940  BP    35  0 1.0000000000
## GO:0051973  BP    35  0 1.0000000000
## GO:1904707  BP    35  0 1.0000000000
## GO:0097106  BP    35  0 1.0000000000
## GO:0006471  BP    35  0 1.0000000000
## GO:0009954  BP    35  0 1.0000000000
## GO:0034033  BP    35  0 1.0000000000
## GO:0043516  BP    35  0 1.0000000000
## GO:2000249  BP    35  0 1.0000000000
## GO:1903959  BP    35  0 1.0000000000
## GO:0048710  BP    35  0 1.0000000000
## GO:0033238  BP    35  0 1.0000000000
## GO:2001038  BP    35  0 1.0000000000
## GO:0031279  BP    35  0 1.0000000000
## GO:0046320  BP    35  0 1.0000000000
## GO:0070873  BP    35  0 1.0000000000
## GO:0033146  BP    35  0 1.0000000000
## GO:0043304  BP    35  0 1.0000000000
## GO:0032228  BP    35  0 1.0000000000
## GO:0060142  BP    35  0 1.0000000000
## GO:0043114  BP    35  0 1.0000000000
## GO:0014823  BP    35  0 1.0000000000
## GO:0046686  BP    35  0 1.0000000000
## GO:1990089  BP    35  0 1.0000000000
## GO:0034030  BP    35  0 1.0000000000
## GO:0019432  BP    35  0 1.0000000000
## GO:0070328  BP    35  0 1.0000000000
## GO:1990774  BP    35  0 1.0000000000
## GO:0038084  BP    35  0 1.0000000000
## GO:0006458  BP    36  0 1.0000000000
## GO:0034205  BP    36  0 1.0000000000
## GO:0003401  BP    36  0 1.0000000000
## GO:0098751  BP    36  0 1.0000000000
## GO:0071320  BP    36  0 1.0000000000
## GO:0071398  BP    36  0 1.0000000000
## GO:0072583  BP    36  0 1.0000000000
## GO:0051181  BP    36  0 1.0000000000
## GO:0030574  BP    36  0 1.0000000000
## GO:0035115  BP    36  0 1.0000000000
## GO:0051294  BP    36  0 1.0000000000
## GO:0001702  BP    36  0 1.0000000000
## GO:0003417  BP    36  0 1.0000000000
## GO:0061384  BP    36  0 1.0000000000
## GO:0048009  BP    36  0 1.0000000000
## GO:0007617  BP    36  0 1.0000000000
## GO:0046329  BP    36  0 1.0000000000
## GO:0051953  BP    36  0 1.0000000000
## GO:0060969  BP    36  0 1.0000000000
## GO:1903427  BP    36  0 1.0000000000
## GO:0010664  BP    36  0 1.0000000000
## GO:0046839  BP    36  0 1.0000000000
## GO:2000516  BP    36  0 1.0000000000
## GO:0045745  BP    36  0 1.0000000000
## GO:1905209  BP    36  0 1.0000000000
## GO:0051482  BP    36  0 1.0000000000
## GO:1904037  BP    36  0 1.0000000000
## GO:0045815  BP    36  0 1.0000000000
## GO:0032735  BP    36  0 1.0000000000
## GO:0045987  BP    36  0 1.0000000000
## GO:1904358  BP    36  0 1.0000000000
## GO:0070528  BP    36  0 1.0000000000
## GO:0061462  BP    36  0 1.0000000000
## GO:1902991  BP    36  0 1.0000000000
## GO:0045601  BP    36  0 1.0000000000
## GO:0002920  BP    36  0 1.0000000000
## GO:0002861  BP    36  0 1.0000000000
## GO:0048169  BP    36  0 1.0000000000
## GO:0033006  BP    36  0 1.0000000000
## GO:0031114  BP    36  0 1.0000000000
## GO:0034243  BP    36  0 1.0000000000
## GO:0033363  BP    36  0 1.0000000000
## GO:0042501  BP    36  0 1.0000000000
## GO:0072348  BP    36  0 1.0000000000
## GO:0001963  BP    36  0 1.0000000000
## GO:0071604  BP    36  0 1.0000000000
## GO:0035886  BP    36  0 1.0000000000
## GO:0042311  BP    36  0 1.0000000000
## GO:0006903  BP    36  0 1.0000000000
## GO:0001782  BP    37  0 1.0000000000
## GO:0060071  BP    37  0 1.0000000000
## GO:0007340  BP    37  0 1.0000000000
## GO:0051693  BP    37  0 1.0000000000
## GO:0019934  BP    37  0 1.0000000000
## GO:0086065  BP    37  0 1.0000000000
## GO:0036474  BP    37  0 1.0000000000
## GO:0071391  BP    37  0 1.0000000000
## GO:0021799  BP    37  0 1.0000000000
## GO:0002753  BP    37  0 1.0000000000
## GO:0097028  BP    37  0 1.0000000000
## GO:0035850  BP    37  0 1.0000000000
## GO:0072599  BP    37  0 1.0000000000
## GO:0021884  BP    37  0 1.0000000000
## GO:0071514  BP    37  0 1.0000000000
## GO:0032633  BP    37  0 1.0000000000
## GO:0050892  BP    37  0 1.0000000000
## GO:0061756  BP    37  0 1.0000000000
## GO:0007094  BP    37  0 1.0000000000
## GO:0033028  BP    37  0 1.0000000000
## GO:0045746  BP    37  0 1.0000000000
## GO:1903792  BP    37  0 1.0000000000
## GO:0033144  BP    37  0 1.0000000000
## GO:1903318  BP    37  0 1.0000000000
## GO:0010955  BP    37  0 1.0000000000
## GO:0048665  BP    37  0 1.0000000000
## GO:0033260  BP    37  0 1.0000000000
## GO:0000184  BP    37  0 1.0000000000
## GO:0009112  BP    37  0 1.0000000000
## GO:0051647  BP    37  0 1.0000000000
## GO:0014003  BP    37  0 1.0000000000
## GO:0015695  BP    37  0 1.0000000000
## GO:0046470  BP    37  0 1.0000000000
## GO:0060674  BP    37  0 1.0000000000
## GO:0002675  BP    37  0 1.0000000000
## GO:0071158  BP    37  0 1.0000000000
## GO:0045684  BP    37  0 1.0000000000
## GO:2000463  BP    37  0 1.0000000000
## GO:0002053  BP    37  0 1.0000000000
## GO:0035794  BP    37  0 1.0000000000
## GO:0045954  BP    37  0 1.0000000000
## GO:0002717  BP    37  0 1.0000000000
## GO:0030810  BP    37  0 1.0000000000
## GO:1900373  BP    37  0 1.0000000000
## GO:0045880  BP    37  0 1.0000000000
## GO:0071825  BP    37  0 1.0000000000
## GO:1903432  BP    37  0 1.0000000000
## GO:0046640  BP    37  0 1.0000000000
## GO:1902229  BP    37  0 1.0000000000
## GO:0045191  BP    37  0 1.0000000000
## GO:0040020  BP    37  0 1.0000000000
## GO:0032885  BP    37  0 1.0000000000
## GO:0099174  BP    37  0 1.0000000000
## GO:1901385  BP    37  0 1.0000000000
## GO:0000027  BP    37  0 1.0000000000
## GO:0007435  BP    37  0 1.0000000000
## GO:0071173  BP    37  0 1.0000000000
## GO:0000096  BP    37  0 1.0000000000
## GO:0042554  BP    37  0 1.0000000000
## GO:0016233  BP    37  0 1.0000000000
## GO:0006383  BP    37  0 1.0000000000
## GO:0072350  BP    37  0 1.0000000000
## GO:0042092  BP    37  0 1.0000000000
## GO:0032392  BP    38  0 1.0000000000
## GO:0045005  BP    38  0 1.0000000000
## GO:1902475  BP    38  0 1.0000000000
## GO:0016601  BP    38  0 1.0000000000
## GO:0046463  BP    38  0 1.0000000000
## GO:0002475  BP    38  0 1.0000000000
## GO:0014002  BP    38  0 1.0000000000
## GO:0006284  BP    38  0 1.0000000000
## GO:0016339  BP    38  0 1.0000000000
## GO:0003230  BP    38  0 1.0000000000
## GO:0042149  BP    38  0 1.0000000000
## GO:0007099  BP    38  0 1.0000000000
## GO:0032506  BP    38  0 1.0000000000
## GO:0000578  BP    38  0 1.0000000000
## GO:0007616  BP    38  0 1.0000000000
## GO:0072595  BP    38  0 1.0000000000
## GO:0072210  BP    38  0 1.0000000000
## GO:0043628  BP    38  0 1.0000000000
## GO:0001953  BP    38  0 1.0000000000
## GO:0043267  BP    38  0 1.0000000000
## GO:0099590  BP    38  0 1.0000000000
## GO:0046460  BP    38  0 1.0000000000
## GO:0046854  BP    38  0 1.0000000000
## GO:0006778  BP    38  0 1.0000000000
## GO:0043368  BP    38  0 1.0000000000
## GO:0032781  BP    38  0 1.0000000000
## GO:0030513  BP    38  0 1.0000000000
## GO:0040019  BP    38  0 1.0000000000
## GO:2000403  BP    38  0 1.0000000000
## GO:0010831  BP    38  0 1.0000000000
## GO:2001025  BP    38  0 1.0000000000
## GO:1900026  BP    38  0 1.0000000000
## GO:0051968  BP    38  0 1.0000000000
## GO:0097300  BP    38  0 1.0000000000
## GO:0032594  BP    38  0 1.0000000000
## GO:0045622  BP    38  0 1.0000000000
## GO:0046006  BP    38  0 1.0000000000
## GO:0031935  BP    38  0 1.0000000000
## GO:0060259  BP    38  0 1.0000000000
## GO:0010762  BP    38  0 1.0000000000
## GO:0051339  BP    38  0 1.0000000000
## GO:0060236  BP    38  0 1.0000000000
## GO:0070570  BP    38  0 1.0000000000
## GO:1904645  BP    38  0 1.0000000000
## GO:0048265  BP    38  0 1.0000000000
## GO:0001562  BP    38  0 1.0000000000
## GO:0006636  BP    38  0 1.0000000000
## GO:0008207  BP    39  0 1.0000000000
## GO:0043001  BP    39  0 1.0000000000
## GO:0007257  BP    39  0 1.0000000000
## GO:0030521  BP    39  0 1.0000000000
## GO:0002483  BP    39  0 1.0000000000
## GO:0019885  BP    39  0 1.0000000000
## GO:0044331  BP    39  0 1.0000000000
## GO:0071357  BP    39  0 1.0000000000
## GO:0098534  BP    39  0 1.0000000000
## GO:1902476  BP    39  0 1.0000000000
## GO:0044364  BP    39  0 1.0000000000
## GO:0031076  BP    39  0 1.0000000000
## GO:0097009  BP    39  0 1.0000000000
## GO:0048730  BP    39  0 1.0000000000
## GO:0006826  BP    39  0 1.0000000000
## GO:0031640  BP    39  0 1.0000000000
## GO:0071174  BP    39  0 1.0000000000
## GO:2001024  BP    39  0 1.0000000000
## GO:0006998  BP    39  0 1.0000000000
## GO:0050931  BP    39  0 1.0000000000
## GO:0021983  BP    39  0 1.0000000000
## GO:1900087  BP    39  0 1.0000000000
## GO:0032008  BP    39  0 1.0000000000
## GO:1901021  BP    39  0 1.0000000000
## GO:0010613  BP    39  0 1.0000000000
## GO:1905710  BP    39  0 1.0000000000
## GO:0010661  BP    39  0 1.0000000000
## GO:2000142  BP    39  0 1.0000000000
## GO:0090049  BP    39  0 1.0000000000
## GO:0090175  BP    39  0 1.0000000000
## GO:0060251  BP    39  0 1.0000000000
## GO:0046885  BP    39  0 1.0000000000
## GO:1902108  BP    39  0 1.0000000000
## GO:1902692  BP    39  0 1.0000000000
## GO:0043551  BP    39  0 1.0000000000
## GO:0044088  BP    39  0 1.0000000000
## GO:0009620  BP    39  0 1.0000000000
## GO:0009651  BP    39  0 1.0000000000
## GO:0009069  BP    39  0 1.0000000000
## GO:0030431  BP    39  0 1.0000000000
## GO:0010092  BP    39  0 1.0000000000
## GO:1901998  BP    39  0 1.0000000000
## GO:0060337  BP    39  0 1.0000000000
## GO:0014037  BP    40  0 1.0000000000
## GO:0002369  BP    40  0 1.0000000000
## GO:0046633  BP    40  0 1.0000000000
## GO:0007339  BP    40  0 1.0000000000
## GO:0001835  BP    40  0 1.0000000000
## GO:0042398  BP    40  0 1.0000000000
## GO:0071542  BP    40  0 1.0000000000
## GO:0045022  BP    40  0 1.0000000000
## GO:0048821  BP    40  0 1.0000000000
## GO:0060325  BP    40  0 1.0000000000
## GO:0035188  BP    40  0 1.0000000000
## GO:0046456  BP    40  0 1.0000000000
## GO:0032620  BP    40  0 1.0000000000
## GO:0060603  BP    40  0 1.0000000000
## GO:0044091  BP    40  0 1.0000000000
## GO:0000266  BP    40  0 1.0000000000
## GO:0044764  BP    40  0 1.0000000000
## GO:0002323  BP    40  0 1.0000000000
## GO:0110111  BP    40  0 1.0000000000
## GO:0002686  BP    40  0 1.0000000000
## GO:0038179  BP    40  0 1.0000000000
## GO:0071684  BP    40  0 1.0000000000
## GO:0045851  BP    40  0 1.0000000000
## GO:0045911  BP    40  0 1.0000000000
## GO:0045747  BP    40  0 1.0000000000
## GO:0048520  BP    40  0 1.0000000000
## GO:0031062  BP    40  0 1.0000000000
## GO:1905332  BP    40  0 1.0000000000
## GO:0014742  BP    40  0 1.0000000000
## GO:0035307  BP    40  0 1.0000000000
## GO:2000273  BP    40  0 1.0000000000
## GO:0034105  BP    40  0 1.0000000000
## GO:0006693  BP    40  0 1.0000000000
## GO:0006692  BP    40  0 1.0000000000
## GO:0070207  BP    40  0 1.0000000000
## GO:0044743  BP    40  0 1.0000000000
## GO:0072523  BP    40  0 1.0000000000
## GO:0001881  BP    40  0 1.0000000000
## GO:0070884  BP    40  0 1.0000000000
## GO:0106056  BP    40  0 1.0000000000
## GO:0086004  BP    40  0 1.0000000000
## GO:1903053  BP    40  0 1.0000000000
## GO:0010470  BP    40  0 1.0000000000
## GO:0050706  BP    40  0 1.0000000000
## GO:0046825  BP    40  0 1.0000000000
## GO:0098801  BP    40  0 1.0000000000
## GO:0009409  BP    40  0 1.0000000000
## GO:0009268  BP    40  0 1.0000000000
## GO:0003009  BP    40  0 1.0000000000
## GO:0048741  BP    40  0 1.0000000000
## GO:0001783  BP    41  0 1.0000000000
## GO:0006953  BP    41  0 1.0000000000
## GO:0046164  BP    41  0 1.0000000000
## GO:0009066  BP    41  0 1.0000000000
## GO:0061049  BP    41  0 1.0000000000
## GO:0033059  BP    41  0 1.0000000000
## GO:0071364  BP    41  0 1.0000000000
## GO:0021955  BP    41  0 1.0000000000
## GO:0021696  BP    41  0 1.0000000000
## GO:0033344  BP    41  0 1.0000000000
## GO:0097484  BP    41  0 1.0000000000
## GO:0042417  BP    41  0 1.0000000000
## GO:0045197  BP    41  0 1.0000000000
## GO:0060122  BP    41  0 1.0000000000
## GO:0006509  BP    41  0 1.0000000000
## GO:0086009  BP    41  0 1.0000000000
## GO:2000279  BP    41  0 1.0000000000
## GO:0010972  BP    41  0 1.0000000000
## GO:1903170  BP    41  0 1.0000000000
## GO:0055026  BP    41  0 1.0000000000
## GO:2001258  BP    41  0 1.0000000000
## GO:0001937  BP    41  0 1.0000000000
## GO:0046627  BP    41  0 1.0000000000
## GO:1905953  BP    41  0 1.0000000000
## GO:0045841  BP    41  0 1.0000000000
## GO:0051154  BP    41  0 1.0000000000
## GO:0038083  BP    41  0 1.0000000000
## GO:0045494  BP    41  0 1.0000000000
## GO:0003301  BP    41  0 1.0000000000
## GO:0003298  BP    41  0 1.0000000000
## GO:0030501  BP    41  0 1.0000000000
## GO:0046326  BP    41  0 1.0000000000
## GO:0035774  BP    41  0 1.0000000000
## GO:0050685  BP    41  0 1.0000000000
## GO:0051281  BP    41  0 1.0000000000
## GO:1903672  BP    41  0 1.0000000000
## GO:0099084  BP    41  0 1.0000000000
## GO:0050856  BP    41  0 1.0000000000
## GO:0033628  BP    41  0 1.0000000000
## GO:2000772  BP    41  0 1.0000000000
## GO:0042304  BP    41  0 1.0000000000
## GO:1905521  BP    41  0 1.0000000000
## GO:1900744  BP    41  0 1.0000000000
## GO:2000008  BP    41  0 1.0000000000
## GO:0046782  BP    41  0 1.0000000000
## GO:0007431  BP    41  0 1.0000000000
## GO:0031577  BP    41  0 1.0000000000
## GO:0006418  BP    41  0 1.0000000000
## GO:0019883  BP    42  0 1.0000000000
## GO:1902742  BP    42  0 1.0000000000
## GO:0001709  BP    42  0 1.0000000000
## GO:0034198  BP    42  0 1.0000000000
## GO:0030866  BP    42  0 1.0000000000
## GO:0006687  BP    42  0 1.0000000000
## GO:0048873  BP    42  0 1.0000000000
## GO:0032958  BP    42  0 1.0000000000
## GO:0048255  BP    42  0 1.0000000000
## GO:0000959  BP    42  0 1.0000000000
## GO:0007080  BP    42  0 1.0000000000
## GO:0030835  BP    42  0 1.0000000000
## GO:0002823  BP    42  0 1.0000000000
## GO:0046636  BP    42  0 1.0000000000
## GO:1903523  BP    42  0 1.0000000000
## GO:2000816  BP    42  0 1.0000000000
## GO:0046621  BP    42  0 1.0000000000
## GO:0045740  BP    42  0 1.0000000000
## GO:0055023  BP    42  0 1.0000000000
## GO:0045923  BP    42  0 1.0000000000
## GO:0010518  BP    42  0 1.0000000000
## GO:0010765  BP    42  0 1.0000000000
## GO:1900015  BP    42  0 1.0000000000
## GO:0050691  BP    42  0 1.0000000000
## GO:0010559  BP    42  0 1.0000000000
## GO:2000826  BP    42  0 1.0000000000
## GO:1902743  BP    42  0 1.0000000000
## GO:0010883  BP    42  0 1.0000000000
## GO:0032768  BP    42  0 1.0000000000
## GO:1902622  BP    42  0 1.0000000000
## GO:0090224  BP    42  0 1.0000000000
## GO:0042220  BP    42  0 1.0000000000
## GO:0097178  BP    42  0 1.0000000000
## GO:0021522  BP    42  0 1.0000000000
## GO:0098927  BP    42  0 1.0000000000
## GO:0038202  BP    43  0 1.0000000000
## GO:0032924  BP    43  0 1.0000000000
## GO:0006040  BP    43  0 1.0000000000
## GO:0043277  BP    43  0 1.0000000000
## GO:0048854  BP    43  0 1.0000000000
## GO:0086002  BP    43  0 1.0000000000
## GO:0031670  BP    43  0 1.0000000000
## GO:0031128  BP    43  0 1.0000000000
## GO:0003416  BP    43  0 1.0000000000
## GO:0072666  BP    43  0 1.0000000000
## GO:0051293  BP    43  0 1.0000000000
## GO:0042462  BP    43  0 1.0000000000
## GO:0009250  BP    43  0 1.0000000000
## GO:0005978  BP    43  0 1.0000000000
## GO:0042771  BP    43  0 1.0000000000
## GO:0008631  BP    43  0 1.0000000000
## GO:0048246  BP    43  0 1.0000000000
## GO:0030490  BP    43  0 1.0000000000
## GO:0051673  BP    43  0 1.0000000000
## GO:0031057  BP    43  0 1.0000000000
## GO:1902100  BP    43  0 1.0000000000
## GO:0009395  BP    43  0 1.0000000000
## GO:0010907  BP    43  0 1.0000000000
## GO:0045823  BP    43  0 1.0000000000
## GO:0040018  BP    43  0 1.0000000000
## GO:1901381  BP    43  0 1.0000000000
## GO:1901985  BP    43  0 1.0000000000
## GO:0042307  BP    43  0 1.0000000000
## GO:1990573  BP    43  0 1.0000000000
## GO:0016925  BP    43  0 1.0000000000
## GO:0070232  BP    43  0 1.0000000000
## GO:0010824  BP    43  0 1.0000000000
## GO:0032374  BP    43  0 1.0000000000
## GO:0060964  BP    43  0 1.0000000000
## GO:1901031  BP    43  0 1.0000000000
## GO:0032371  BP    43  0 1.0000000000
## GO:0006890  BP    43  0 1.0000000000
## GO:0043403  BP    43  0 1.0000000000
## GO:0016073  BP    43  0 1.0000000000
## GO:0043044  BP    44  0 1.0000000000
## GO:0070830  BP    44  0 1.0000000000
## GO:0001569  BP    44  0 1.0000000000
## GO:0071385  BP    44  0 1.0000000000
## GO:0043616  BP    44  0 1.0000000000
## GO:0042181  BP    44  0 1.0000000000
## GO:0014904  BP    44  0 1.0000000000
## GO:0098781  BP    44  0 1.0000000000
## GO:0043124  BP    44  0 1.0000000000
## GO:1905819  BP    44  0 1.0000000000
## GO:0051898  BP    44  0 1.0000000000
## GO:0032873  BP    44  0 1.0000000000
## GO:0070303  BP    44  0 1.0000000000
## GO:0070527  BP    44  0 1.0000000000
## GO:0050918  BP    44  0 1.0000000000
## GO:0061098  BP    44  0 1.0000000000
## GO:0003156  BP    44  0 1.0000000000
## GO:0010569  BP    44  0 1.0000000000
## GO:0032881  BP    44  0 1.0000000000
## GO:0070849  BP    44  0 1.0000000000
## GO:0034340  BP    44  0 1.0000000000
## GO:0043039  BP    44  0 1.0000000000
## GO:0006904  BP    44  0 1.0000000000
## GO:0019083  BP    44  0 1.0000000000
## GO:0010257  BP    45  0 1.0000000000
## GO:0043038  BP    45  0 1.0000000000
## GO:0042987  BP    45  0 1.0000000000
## GO:0002063  BP    45  0 1.0000000000
## GO:0002534  BP    45  0 1.0000000000
## GO:0050974  BP    45  0 1.0000000000
## GO:0007212  BP    45  0 1.0000000000
## GO:0014046  BP    45  0 1.0000000000
## GO:0061028  BP    45  0 1.0000000000
## GO:0035136  BP    45  0 1.0000000000
## GO:0061647  BP    45  0 1.0000000000
## GO:0002269  BP    45  0 1.0000000000
## GO:0006378  BP    45  0 1.0000000000
## GO:0060135  BP    45  0 1.0000000000
## GO:0001774  BP    45  0 1.0000000000
## GO:0032981  BP    45  0 1.0000000000
## GO:0051646  BP    45  0 1.0000000000
## GO:0010259  BP    45  0 1.0000000000
## GO:1900077  BP    45  0 1.0000000000
## GO:0033048  BP    45  0 1.0000000000
## GO:0019228  BP    45  0 1.0000000000
## GO:0018023  BP    45  0 1.0000000000
## GO:1903580  BP    45  0 1.0000000000
## GO:0001961  BP    45  0 1.0000000000
## GO:0060421  BP    45  0 1.0000000000
## GO:0090184  BP    45  0 1.0000000000
## GO:0002888  BP    45  0 1.0000000000
## GO:0035196  BP    45  0 1.0000000000
## GO:0032965  BP    45  0 1.0000000000
## GO:0014059  BP    45  0 1.0000000000
## GO:0003254  BP    45  0 1.0000000000
## GO:0010464  BP    45  0 1.0000000000
## GO:1902893  BP    45  0 1.0000000000
## GO:0031952  BP    45  0 1.0000000000
## GO:0090207  BP    45  0 1.0000000000
## GO:0000245  BP    45  0 1.0000000000
## GO:0120192  BP    45  0 1.0000000000
## GO:0019674  BP    46  0 1.0000000000
## GO:0043029  BP    46  0 1.0000000000
## GO:0045010  BP    46  0 1.0000000000
## GO:0050798  BP    46  0 1.0000000000
## GO:0007628  BP    46  0 1.0000000000
## GO:0098868  BP    46  0 1.0000000000
## GO:0006576  BP    46  0 1.0000000000
## GO:0071384  BP    46  0 1.0000000000
## GO:0035458  BP    46  0 1.0000000000
## GO:0006695  BP    46  0 1.0000000000
## GO:0098754  BP    46  0 1.0000000000
## GO:0032456  BP    46  0 1.0000000000
## GO:0003382  BP    46  0 1.0000000000
## GO:0060323  BP    46  0 1.0000000000
## GO:0072604  BP    46  0 1.0000000000
## GO:0042073  BP    46  0 1.0000000000
## GO:0032007  BP    46  0 1.0000000000
## GO:0010677  BP    46  0 1.0000000000
## GO:0002707  BP    46  0 1.0000000000
## GO:0031111  BP    46  0 1.0000000000
## GO:0021772  BP    46  0 1.0000000000
## GO:0018198  BP    46  0 1.0000000000
## GO:0033120  BP    46  0 1.0000000000
## GO:0032757  BP    46  0 1.0000000000
## GO:1903727  BP    46  0 1.0000000000
## GO:0001941  BP    46  0 1.0000000000
## GO:2000404  BP    46  0 1.0000000000
## GO:0090279  BP    46  0 1.0000000000
## GO:0060966  BP    46  0 1.0000000000
## GO:0006110  BP    46  0 1.0000000000
## GO:0030811  BP    46  0 1.0000000000
## GO:0010799  BP    46  0 1.0000000000
## GO:0060147  BP    46  0 1.0000000000
## GO:1990928  BP    46  0 1.0000000000
## GO:0035036  BP    46  0 1.0000000000
## GO:0048536  BP    46  0 1.0000000000
## GO:0033013  BP    46  0 1.0000000000
## GO:0043631  BP    47  0 1.0000000000
## GO:0071300  BP    47  0 1.0000000000
## GO:0030261  BP    47  0 1.0000000000
## GO:0031050  BP    47  0 1.0000000000
## GO:0003197  BP    47  0 1.0000000000
## GO:0003179  BP    47  0 1.0000000000
## GO:0016574  BP    47  0 1.0000000000
## GO:0032309  BP    47  0 1.0000000000
## GO:0050702  BP    47  0 1.0000000000
## GO:0030520  BP    47  0 1.0000000000
## GO:0045581  BP    47  0 1.0000000000
## GO:0002820  BP    47  0 1.0000000000
## GO:0120163  BP    47  0 1.0000000000
## GO:0033046  BP    47  0 1.0000000000
## GO:0021532  BP    47  0 1.0000000000
## GO:0001504  BP    47  0 1.0000000000
## GO:0010718  BP    47  0 1.0000000000
## GO:0002639  BP    47  0 1.0000000000
## GO:0045429  BP    47  0 1.0000000000
## GO:0070918  BP    47  0 1.0000000000
## GO:2001239  BP    47  0 1.0000000000
## GO:1902041  BP    47  0 1.0000000000
## GO:0051489  BP    47  0 1.0000000000
## GO:1903018  BP    47  0 1.0000000000
## GO:0050704  BP    47  0 1.0000000000
## GO:0001990  BP    47  0 1.0000000000
## GO:1902653  BP    47  0 1.0000000000
## GO:0006368  BP    47  0 1.0000000000
## GO:0048010  BP    47  0 1.0000000000
## GO:0043489  BP    48  0 1.0000000000
## GO:0050435  BP    48  0 1.0000000000
## GO:0008089  BP    48  0 1.0000000000
## GO:0048483  BP    48  0 1.0000000000
## GO:0044848  BP    48  0 1.0000000000
## GO:0050873  BP    48  0 1.0000000000
## GO:0044786  BP    48  0 1.0000000000
## GO:0061005  BP    48  0 1.0000000000
## GO:0001580  BP    48  0 1.0000000000
## GO:0042755  BP    48  0 1.0000000000
## GO:0007157  BP    48  0 1.0000000000
## GO:0045104  BP    48  0 1.0000000000
## GO:0043303  BP    48  0 1.0000000000
## GO:0007520  BP    48  0 1.0000000000
## GO:0045910  BP    48  0 1.0000000000
## GO:0030857  BP    48  0 1.0000000000
## GO:0021988  BP    48  0 1.0000000000
## GO:0022602  BP    48  0 1.0000000000
## GO:0038066  BP    48  0 1.0000000000
## GO:0002714  BP    48  0 1.0000000000
## GO:0050850  BP    48  0 1.0000000000
## GO:1902808  BP    48  0 1.0000000000
## GO:0002891  BP    48  0 1.0000000000
## GO:0032731  BP    48  0 1.0000000000
## GO:0051590  BP    48  0 1.0000000000
## GO:1904407  BP    48  0 1.0000000000
## GO:0032892  BP    48  0 1.0000000000
## GO:0010862  BP    48  0 1.0000000000
## GO:1904591  BP    48  0 1.0000000000
## GO:0010107  BP    48  0 1.0000000000
## GO:0070534  BP    48  0 1.0000000000
## GO:0031648  BP    48  0 1.0000000000
## GO:0007131  BP    48  0 1.0000000000
## GO:1903115  BP    48  0 1.0000000000
## GO:2000725  BP    48  0 1.0000000000
## GO:0090342  BP    48  0 1.0000000000
## GO:0043550  BP    48  0 1.0000000000
## GO:0090311  BP    48  0 1.0000000000
## GO:0051972  BP    48  0 1.0000000000
## GO:0051653  BP    48  0 1.0000000000
## GO:0047496  BP    48  0 1.0000000000
## GO:0090659  BP    48  0 1.0000000000
## GO:0017001  BP    49  0 1.0000000000
## GO:0002474  BP    49  0 1.0000000000
## GO:0033173  BP    49  0 1.0000000000
## GO:0071470  BP    49  0 1.0000000000
## GO:0098586  BP    49  0 1.0000000000
## GO:0090102  BP    49  0 1.0000000000
## GO:0021545  BP    49  0 1.0000000000
## GO:0035088  BP    49  0 1.0000000000
## GO:0061245  BP    49  0 1.0000000000
## GO:0035825  BP    49  0 1.0000000000
## GO:0045103  BP    49  0 1.0000000000
## GO:0046834  BP    49  0 1.0000000000
## GO:0002279  BP    49  0 1.0000000000
## GO:0002448  BP    49  0 1.0000000000
## GO:0030195  BP    49  0 1.0000000000
## GO:1904036  BP    49  0 1.0000000000
## GO:0070229  BP    49  0 1.0000000000
## GO:0048599  BP    49  0 1.0000000000
## GO:0001916  BP    49  0 1.0000000000
## GO:0046638  BP    49  0 1.0000000000
## GO:0070169  BP    49  0 1.0000000000
## GO:0051955  BP    49  0 1.0000000000
## GO:0045646  BP    49  0 1.0000000000
## GO:0043300  BP    49  0 1.0000000000
## GO:0032941  BP    49  0 1.0000000000
## GO:0061912  BP    49  0 1.0000000000
## GO:0014888  BP    49  0 1.0000000000
## GO:0060612  BP    50  0 1.0000000000
## GO:0030865  BP    50  0 1.0000000000
## GO:0006303  BP    50  0 1.0000000000
## GO:0048701  BP    50  0 1.0000000000
## GO:0010761  BP    50  0 1.0000000000
## GO:0035137  BP    50  0 1.0000000000
## GO:0042491  BP    50  0 1.0000000000
## GO:0006406  BP    50  0 1.0000000000
## GO:0071427  BP    50  0 1.0000000000
## GO:0050891  BP    50  0 1.0000000000
## GO:0051985  BP    50  0 1.0000000000
## GO:0010596  BP    50  0 1.0000000000
## GO:1900047  BP    50  0 1.0000000000
## GO:0032715  BP    50  0 1.0000000000
## GO:0051055  BP    50  0 1.0000000000
## GO:1902373  BP    50  0 1.0000000000
## GO:2000059  BP    50  0 1.0000000000
## GO:0008038  BP    50  0 1.0000000000
## GO:0000288  BP    50  0 1.0000000000
## GO:0046189  BP    50  0 1.0000000000
## GO:0010828  BP    50  0 1.0000000000
## GO:0061014  BP    50  0 1.0000000000
## GO:0045981  BP    50  0 1.0000000000
## GO:1900544  BP    50  0 1.0000000000
## GO:0099054  BP    50  0 1.0000000000
## GO:0043370  BP    50  0 1.0000000000
## GO:0090329  BP    50  0 1.0000000000
## GO:1902930  BP    50  0 1.0000000000
## GO:0060043  BP    50  0 1.0000000000
## GO:0032330  BP    50  0 1.0000000000
## GO:0071622  BP    50  0 1.0000000000
## GO:0033003  BP    50  0 1.0000000000
## GO:0071675  BP    50  0 1.0000000000
## GO:0010332  BP    50  0 1.0000000000
## GO:0007129  BP    50  0 1.0000000000
## GO:0120193  BP    50  0 1.0000000000
## GO:0006360  BP    50  0 1.0000000000
## GO:0031146  BP    51  0 1.0000000000
## GO:0031103  BP    51  0 1.0000000000
## GO:0001974  BP    51  0 1.0000000000
## GO:0009583  BP    51  0 1.0000000000
## GO:0031018  BP    51  0 1.0000000000
## GO:0007032  BP    51  0 1.0000000000
## GO:0048806  BP    51  0 1.0000000000
## GO:0060428  BP    51  0 1.0000000000
## GO:0007140  BP    51  0 1.0000000000
## GO:0033619  BP    51  0 1.0000000000
## GO:0072132  BP    51  0 1.0000000000
## GO:0030901  BP    51  0 1.0000000000
## GO:0070265  BP    51  0 1.0000000000
## GO:0045912  BP    51  0 1.0000000000
## GO:0050819  BP    51  0 1.0000000000
## GO:0051954  BP    51  0 1.0000000000
## GO:0051353  BP    51  0 1.0000000000
## GO:0060760  BP    51  0 1.0000000000
## GO:0032206  BP    51  0 1.0000000000
## GO:0032784  BP    51  0 1.0000000000
## GO:0030834  BP    51  0 1.0000000000
## GO:0061001  BP    51  0 1.0000000000
## GO:0044058  BP    51  0 1.0000000000
## GO:0006111  BP    51  0 1.0000000000
## GO:0032648  BP    51  0 1.0000000000
## GO:2000649  BP    51  0 1.0000000000
## GO:0043618  BP    51  0 1.0000000000
## GO:0019098  BP    51  0 1.0000000000
## GO:0032355  BP    51  0 1.0000000000
## GO:0070542  BP    51  0 1.0000000000
## GO:0050913  BP    51  0 1.0000000000
## GO:0017145  BP    51  0 1.0000000000
## GO:0060412  BP    51  0 1.0000000000
## GO:0001662  BP    52  0 1.0000000000
## GO:0097720  BP    52  0 1.0000000000
## GO:0060351  BP    52  0 1.0000000000
## GO:0035924  BP    52  0 1.0000000000
## GO:0021587  BP    52  0 1.0000000000
## GO:0061077  BP    52  0 1.0000000000
## GO:0050912  BP    52  0 1.0000000000
## GO:1901570  BP    52  0 1.0000000000
## GO:0048247  BP    52  0 1.0000000000
## GO:0007019  BP    52  0 1.0000000000
## GO:1902750  BP    52  0 1.0000000000
## GO:0001960  BP    52  0 1.0000000000
## GO:1903202  BP    52  0 1.0000000000
## GO:0046148  BP    52  0 1.0000000000
## GO:0001954  BP    52  0 1.0000000000
## GO:0043268  BP    52  0 1.0000000000
## GO:0032481  BP    52  0 1.0000000000
## GO:0061614  BP    52  0 1.0000000000
## GO:0072698  BP    52  0 1.0000000000
## GO:0072527  BP    52  0 1.0000000000
## GO:0010712  BP    52  0 1.0000000000
## GO:1900271  BP    52  0 1.0000000000
## GO:0097035  BP    52  0 1.0000000000
## GO:2001222  BP    52  0 1.0000000000
## GO:0048713  BP    52  0 1.0000000000
## GO:2000677  BP    52  0 1.0000000000
## GO:0001895  BP    52  0 1.0000000000
## GO:0031529  BP    52  0 1.0000000000
## GO:0016126  BP    52  0 1.0000000000
## GO:0009948  BP    53  0 1.0000000000
## GO:0002209  BP    53  0 1.0000000000
## GO:0071242  BP    53  0 1.0000000000
## GO:0048546  BP    53  0 1.0000000000
## GO:1901571  BP    53  0 1.0000000000
## GO:0061900  BP    53  0 1.0000000000
## GO:0034113  BP    53  0 1.0000000000
## GO:0071715  BP    53  0 1.0000000000
## GO:0032608  BP    53  0 1.0000000000
## GO:0051703  BP    53  0 1.0000000000
## GO:0045190  BP    53  0 1.0000000000
## GO:0030219  BP    53  0 1.0000000000
## GO:0098815  BP    53  0 1.0000000000
## GO:0030514  BP    53  0 1.0000000000
## GO:0043392  BP    53  0 1.0000000000
## GO:1900408  BP    53  0 1.0000000000
## GO:0014014  BP    53  0 1.0000000000
## GO:0009994  BP    53  0 1.0000000000
## GO:0045777  BP    53  0 1.0000000000
## GO:0002720  BP    53  0 1.0000000000
## GO:0045933  BP    53  0 1.0000000000
## GO:0030850  BP    53  0 1.0000000000
## GO:0031113  BP    53  0 1.0000000000
## GO:0046902  BP    53  0 1.0000000000
## GO:0030071  BP    53  0 1.0000000000
## GO:0042269  BP    53  0 1.0000000000
## GO:0010517  BP    53  0 1.0000000000
## GO:0043666  BP    53  0 1.0000000000
## GO:0051930  BP    53  0 1.0000000000
## GO:1900024  BP    53  0 1.0000000000
## GO:0032210  BP    53  0 1.0000000000
## GO:1904705  BP    53  0 1.0000000000
## GO:0045214  BP    53  0 1.0000000000
## GO:0035176  BP    53  0 1.0000000000
## GO:0055078  BP    53  0 1.0000000000
## GO:0002208  BP    53  0 1.0000000000
## GO:0002204  BP    53  0 1.0000000000
## GO:0051932  BP    53  0 1.0000000000
## GO:0061383  BP    53  0 1.0000000000
## GO:1990874  BP    53  0 1.0000000000
## GO:0055010  BP    53  0 1.0000000000
## GO:0099518  BP    53  0 1.0000000000
## GO:0043297  BP    54  0 1.0000000000
## GO:0086001  BP    54  0 1.0000000000
## GO:0032964  BP    54  0 1.0000000000
## GO:0030199  BP    54  0 1.0000000000
## GO:0035272  BP    54  0 1.0000000000
## GO:0042738  BP    54  0 1.0000000000
## GO:0014009  BP    54  0 1.0000000000
## GO:0046503  BP    54  0 1.0000000000
## GO:0051568  BP    54  0 1.0000000000
## GO:0045599  BP    54  0 1.0000000000
## GO:0006289  BP    54  0 1.0000000000
## GO:0055025  BP    54  0 1.0000000000
## GO:0045687  BP    54  0 1.0000000000
## GO:0060193  BP    54  0 1.0000000000
## GO:2000648  BP    54  0 1.0000000000
## GO:0051496  BP    54  0 1.0000000000
## GO:0051290  BP    54  0 1.0000000000
## GO:0001914  BP    54  0 1.0000000000
## GO:0044060  BP    54  0 1.0000000000
## GO:2000351  BP    54  0 1.0000000000
## GO:0045604  BP    54  0 1.0000000000
## GO:0035065  BP    54  0 1.0000000000
## GO:0032350  BP    54  0 1.0000000000
## GO:0043030  BP    54  0 1.0000000000
## GO:0002715  BP    54  0 1.0000000000
## GO:1903533  BP    54  0 1.0000000000
## GO:0051931  BP    54  0 1.0000000000
## GO:0007585  BP    54  0 1.0000000000
## GO:0046718  BP    54  0 1.0000000000
## GO:0045058  BP    55  0 1.0000000000
## GO:0030042  BP    55  0 1.0000000000
## GO:0002042  BP    55  0 1.0000000000
## GO:0046513  BP    55  0 1.0000000000
## GO:0021795  BP    55  0 1.0000000000
## GO:0048066  BP    55  0 1.0000000000
## GO:0035315  BP    55  0 1.0000000000
## GO:0050701  BP    55  0 1.0000000000
## GO:0002548  BP    55  0 1.0000000000
## GO:0046580  BP    55  0 1.0000000000
## GO:0046676  BP    55  0 1.0000000000
## GO:0010823  BP    55  0 1.0000000000
## GO:0045839  BP    55  0 1.0000000000
## GO:0050732  BP    55  0 1.0000000000
## GO:0007528  BP    55  0 1.0000000000
## GO:0045773  BP    55  0 1.0000000000
## GO:0050775  BP    55  0 1.0000000000
## GO:0035306  BP    55  0 1.0000000000
## GO:0002833  BP    55  0 1.0000000000
## GO:0042531  BP    55  0 1.0000000000
## GO:0061512  BP    55  0 1.0000000000
## GO:1903539  BP    55  0 1.0000000000
## GO:0043470  BP    55  0 1.0000000000
## GO:0010665  BP    55  0 1.0000000000
## GO:0032653  BP    55  0 1.0000000000
## GO:0032655  BP    55  0 1.0000000000
## GO:0003044  BP    55  0 1.0000000000
## GO:0001523  BP    55  0 1.0000000000
## GO:0035019  BP    55  0 1.0000000000
## GO:0006900  BP    55  0 1.0000000000
## GO:0019369  BP    56  0 1.0000000000
## GO:0009712  BP    56  0 1.0000000000
## GO:0006584  BP    56  0 1.0000000000
## GO:0008333  BP    56  0 1.0000000000
## GO:0007588  BP    56  0 1.0000000000
## GO:0042596  BP    56  0 1.0000000000
## GO:0021575  BP    56  0 1.0000000000
## GO:0042743  BP    56  0 1.0000000000
## GO:0002227  BP    56  0 1.0000000000
## GO:0065002  BP    56  0 1.0000000000
## GO:1905517  BP    56  0 1.0000000000
## GO:0007618  BP    56  0 1.0000000000
## GO:0044773  BP    56  0 1.0000000000
## GO:0002704  BP    56  0 1.0000000000
## GO:0045620  BP    56  0 1.0000000000
## GO:0060761  BP    56  0 1.0000000000
## GO:1902883  BP    56  0 1.0000000000
## GO:0035567  BP    56  0 1.0000000000
## GO:0043536  BP    56  0 1.0000000000
## GO:0032732  BP    56  0 1.0000000000
## GO:0090303  BP    56  0 1.0000000000
## GO:0043620  BP    56  0 1.0000000000
## GO:0051196  BP    56  0 1.0000000000
## GO:1900449  BP    56  0 1.0000000000
## GO:1902099  BP    56  0 1.0000000000
## GO:0031641  BP    56  0 1.0000000000
## GO:0072347  BP    56  0 1.0000000000
## GO:0035456  BP    56  0 1.0000000000
## GO:0007062  BP    56  0 1.0000000000
## GO:0048538  BP    56  0 1.0000000000
## GO:0030104  BP    56  0 1.0000000000
## GO:0001825  BP    57  0 1.0000000000
## GO:0006879  BP    57  0 1.0000000000
## GO:0016101  BP    57  0 1.0000000000
## GO:0072577  BP    57  0 1.0000000000
## GO:0001736  BP    57  0 1.0000000000
## GO:0001754  BP    57  0 1.0000000000
## GO:0002067  BP    57  0 1.0000000000
## GO:0009247  BP    57  0 1.0000000000
## GO:0003170  BP    57  0 1.0000000000
## GO:0048016  BP    57  0 1.0000000000
## GO:0010463  BP    57  0 1.0000000000
## GO:0051310  BP    57  0 1.0000000000
## GO:0007091  BP    57  0 1.0000000000
## GO:0042775  BP    57  0 1.0000000000
## GO:0090307  BP    57  0 1.0000000000
## GO:0050879  BP    57  0 1.0000000000
## GO:0050881  BP    57  0 1.0000000000
## GO:0045071  BP    57  0 1.0000000000
## GO:0042551  BP    57  0 1.0000000000
## GO:0000726  BP    57  0 1.0000000000
## GO:0046622  BP    57  0 1.0000000000
## GO:0048260  BP    57  0 1.0000000000
## GO:0099172  BP    57  0 1.0000000000
## GO:0071806  BP    57  0 1.0000000000
## GO:0050854  BP    57  0 1.0000000000
## GO:0090109  BP    57  0 1.0000000000
## GO:0051893  BP    57  0 1.0000000000
## GO:0050994  BP    57  0 1.0000000000
## GO:0019080  BP    57  0 1.0000000000
## GO:0090501  BP    58  0 1.0000000000
## GO:0070231  BP    58  0 1.0000000000
## GO:0072678  BP    58  0 1.0000000000
## GO:0098930  BP    58  0 1.0000000000
## GO:0061337  BP    58  0 1.0000000000
## GO:0043954  BP    58  0 1.0000000000
## GO:0051187  BP    58  0 1.0000000000
## GO:0051806  BP    58  0 1.0000000000
## GO:0044409  BP    58  0 1.0000000000
## GO:0030260  BP    58  0 1.0000000000
## GO:0051828  BP    58  0 1.0000000000
## GO:0007164  BP    58  0 1.0000000000
## GO:0032835  BP    58  0 1.0000000000
## GO:0032615  BP    58  0 1.0000000000
## GO:0015909  BP    58  0 1.0000000000
## GO:0060443  BP    58  0 1.0000000000
## GO:0002011  BP    58  0 1.0000000000
## GO:1902369  BP    58  0 1.0000000000
## GO:0010656  BP    58  0 1.0000000000
## GO:1901616  BP    58  0 1.0000000000
## GO:1903902  BP    58  0 1.0000000000
## GO:0044380  BP    58  0 1.0000000000
## GO:0072665  BP    58  0 1.0000000000
## GO:0046128  BP    58  0 1.0000000000
## GO:0098900  BP    58  0 1.0000000000
## GO:0046605  BP    58  0 1.0000000000
## GO:0032663  BP    58  0 1.0000000000
## GO:0051445  BP    58  0 1.0000000000
## GO:0010965  BP    58  0 1.0000000000
## GO:0010662  BP    58  0 1.0000000000
## GO:0043330  BP    58  0 1.0000000000
## GO:0016447  BP    58  0 1.0000000000
## GO:0021517  BP    58  0 1.0000000000
## GO:0015807  BP    59  0 1.0000000000
## GO:0010659  BP    59  0 1.0000000000
## GO:0031122  BP    59  0 1.0000000000
## GO:0050907  BP    59  0 1.0000000000
## GO:0015872  BP    59  0 1.0000000000
## GO:0060986  BP    59  0 1.0000000000
## GO:0007029  BP    59  0 1.0000000000
## GO:0008347  BP    59  0 1.0000000000
## GO:0006749  BP    59  0 1.0000000000
## GO:0060119  BP    59  0 1.0000000000
## GO:0098661  BP    59  0 1.0000000000
## GO:0032613  BP    59  0 1.0000000000
## GO:0060711  BP    59  0 1.0000000000
## GO:0031124  BP    59  0 1.0000000000
## GO:0045806  BP    59  0 1.0000000000
## GO:0051148  BP    59  0 1.0000000000
## GO:0006661  BP    59  0 1.0000000000
## GO:0010524  BP    59  0 1.0000000000
## GO:2001238  BP    59  0 1.0000000000
## GO:1903078  BP    59  0 1.0000000000
## GO:0070936  BP    59  0 1.0000000000
## GO:0070972  BP    59  0 1.0000000000
## GO:2000401  BP    59  0 1.0000000000
## GO:1901016  BP    59  0 1.0000000000
## GO:1901607  BP    60  0 1.0000000000
## GO:0042982  BP    60  0 1.0000000000
## GO:0070098  BP    60  0 1.0000000000
## GO:0050982  BP    60  0 1.0000000000
## GO:0060324  BP    60  0 1.0000000000
## GO:0046847  BP    60  0 1.0000000000
## GO:0001947  BP    60  0 1.0000000000
## GO:0007595  BP    60  0 1.0000000000
## GO:0044784  BP    60  0 1.0000000000
## GO:0045744  BP    60  0 1.0000000000
## GO:2000134  BP    60  0 1.0000000000
## GO:0030837  BP    60  0 1.0000000000
## GO:0045776  BP    60  0 1.0000000000
## GO:0045824  BP    60  0 1.0000000000
## GO:0031102  BP    60  0 1.0000000000
## GO:0071156  BP    60  0 1.0000000000
## GO:1902017  BP    60  0 1.0000000000
## GO:0090183  BP    60  0 1.0000000000
## GO:0006446  BP    60  0 1.0000000000
## GO:0033209  BP    60  0 1.0000000000
## GO:0042773  BP    61  0 1.0000000000
## GO:0021515  BP    61  0 1.0000000000
## GO:0048512  BP    61  0 1.0000000000
## GO:0045143  BP    61  0 1.0000000000
## GO:0048286  BP    61  0 1.0000000000
## GO:0007040  BP    61  0 1.0000000000
## GO:0080171  BP    61  0 1.0000000000
## GO:0010812  BP    61  0 1.0000000000
## GO:0051058  BP    61  0 1.0000000000
## GO:0042698  BP    61  0 1.0000000000
## GO:0042461  BP    61  0 1.0000000000
## GO:0045600  BP    61  0 1.0000000000
## GO:0045840  BP    61  0 1.0000000000
## GO:1903428  BP    61  0 1.0000000000
## GO:1903307  BP    61  0 1.0000000000
## GO:0006493  BP    61  0 1.0000000000
## GO:1905207  BP    61  0 1.0000000000
## GO:0042058  BP    61  0 1.0000000000
## GO:0097006  BP    61  0 1.0000000000
## GO:1902305  BP    61  0 1.0000000000
## GO:0051591  BP    61  0 1.0000000000
## GO:0015800  BP    62  0 1.0000000000
## GO:0010171  BP    62  0 1.0000000000
## GO:0086003  BP    62  0 1.0000000000
## GO:0060038  BP    62  0 1.0000000000
## GO:0071260  BP    62  0 1.0000000000
## GO:0021695  BP    62  0 1.0000000000
## GO:0070988  BP    62  0 1.0000000000
## GO:0061951  BP    62  0 1.0000000000
## GO:0043966  BP    62  0 1.0000000000
## GO:0002437  BP    62  0 1.0000000000
## GO:0051306  BP    62  0 1.0000000000
## GO:1905268  BP    62  0 1.0000000000
## GO:0045668  BP    62  0 1.0000000000
## GO:0032720  BP    62  0 1.0000000000
## GO:0018149  BP    62  0 1.0000000000
## GO:0048008  BP    62  0 1.0000000000
## GO:0030858  BP    62  0 1.0000000000
## GO:0014911  BP    62  0 1.0000000000
## GO:0034308  BP    62  0 1.0000000000
## GO:0070206  BP    62  0 1.0000000000
## GO:0042278  BP    62  0 1.0000000000
## GO:0043949  BP    62  0 1.0000000000
## GO:0060393  BP    62  0 1.0000000000
## GO:1904356  BP    62  0 1.0000000000
## GO:0010658  BP    62  0 1.0000000000
## GO:0006721  BP    62  0 1.0000000000
## GO:0006367  BP    62  0 1.0000000000
## GO:0003229  BP    62  0 1.0000000000
## GO:0030330  BP    63  0 1.0000000000
## GO:0006278  BP    63  0 1.0000000000
## GO:0035904  BP    63  0 1.0000000000
## GO:0045454  BP    63  0 1.0000000000
## GO:0008652  BP    63  0 1.0000000000
## GO:0043967  BP    63  0 1.0000000000
## GO:0070059  BP    63  0 1.0000000000
## GO:1903556  BP    63  0 1.0000000000
## GO:0015914  BP    63  0 1.0000000000
## GO:0043388  BP    63  0 1.0000000000
## GO:0046579  BP    63  0 1.0000000000
## GO:0032722  BP    63  0 1.0000000000
## GO:0060999  BP    63  0 1.0000000000
## GO:0140238  BP    63  0 1.0000000000
## GO:2001169  BP    63  0 1.0000000000
## GO:0043462  BP    63  0 1.0000000000
## GO:0002712  BP    63  0 1.0000000000
## GO:0002889  BP    63  0 1.0000000000
## GO:0032677  BP    63  0 1.0000000000
## GO:0045661  BP    63  0 1.0000000000
## GO:0010830  BP    63  0 1.0000000000
## GO:0099601  BP    63  0 1.0000000000
## GO:2000756  BP    63  0 1.0000000000
## GO:0034121  BP    63  0 1.0000000000
## GO:0007622  BP    63  0 1.0000000000
## GO:0048488  BP    63  0 1.0000000000
## GO:0007004  BP    63  0 1.0000000000
## GO:0042246  BP    63  0 1.0000000000
## GO:0001658  BP    64  0 1.0000000000
## GO:1901264  BP    64  0 1.0000000000
## GO:0009988  BP    64  0 1.0000000000
## GO:0034605  BP    64  0 1.0000000000
## GO:0071479  BP    64  0 1.0000000000
## GO:0090398  BP    64  0 1.0000000000
## GO:0007566  BP    64  0 1.0000000000
## GO:0009880  BP    64  0 1.0000000000
## GO:0044774  BP    64  0 1.0000000000
## GO:0042267  BP    64  0 1.0000000000
## GO:0051926  BP    64  0 1.0000000000
## GO:1902807  BP    64  0 1.0000000000
## GO:0030512  BP    64  0 1.0000000000
## GO:0032233  BP    64  0 1.0000000000
## GO:0010676  BP    64  0 1.0000000000
## GO:0046824  BP    64  0 1.0000000000
## GO:2000514  BP    64  0 1.0000000000
## GO:1903391  BP    64  0 1.0000000000
## GO:0000381  BP    64  0 1.0000000000
## GO:1905818  BP    64  0 1.0000000000
## GO:0042306  BP    64  0 1.0000000000
## GO:2000736  BP    64  0 1.0000000000
## GO:0043331  BP    64  0 1.0000000000
## GO:0060042  BP    64  0 1.0000000000
## GO:0048278  BP    64  0 1.0000000000
## GO:0006354  BP    65  0 1.0000000000
## GO:0006893  BP    65  0 1.0000000000
## GO:0001510  BP    65  0 1.0000000000
## GO:0000422  BP    65  0 1.0000000000
## GO:0033627  BP    65  0 1.0000000000
## GO:0045123  BP    65  0 1.0000000000
## GO:0009064  BP    65  0 1.0000000000
## GO:0002381  BP    65  0 1.0000000000
## GO:0043647  BP    65  0 1.0000000000
## GO:0030032  BP    65  0 1.0000000000
## GO:0060425  BP    65  0 1.0000000000
## GO:0001707  BP    65  0 1.0000000000
## GO:0061726  BP    65  0 1.0000000000
## GO:2000242  BP    65  0 1.0000000000
## GO:0003407  BP    65  0 1.0000000000
## GO:0150076  BP    65  0 1.0000000000
## GO:0060389  BP    65  0 1.0000000000
## GO:0042440  BP    65  0 1.0000000000
## GO:1903793  BP    65  0 1.0000000000
## GO:0090559  BP    65  0 1.0000000000
## GO:0002886  BP    65  0 1.0000000000
## GO:0019748  BP    65  0 1.0000000000
## GO:0016445  BP    65  0 1.0000000000
## GO:0031638  BP    65  0 1.0000000000
## GO:1904322  BP    66  0 1.0000000000
## GO:0032922  BP    66  0 1.0000000000
## GO:0032623  BP    66  0 1.0000000000
## GO:0002228  BP    66  0 1.0000000000
## GO:1903845  BP    66  0 1.0000000000
## GO:0090278  BP    66  0 1.0000000000
## GO:0045739  BP    66  0 1.0000000000
## GO:1904377  BP    66  0 1.0000000000
## GO:0034394  BP    66  0 1.0000000000
## GO:1901184  BP    66  0 1.0000000000
## GO:0046324  BP    66  0 1.0000000000
## GO:1904321  BP    66  0 1.0000000000
## GO:0071426  BP    66  0 1.0000000000
## GO:0042274  BP    66  0 1.0000000000
## GO:0140253  BP    67  0 1.0000000000
## GO:0033692  BP    67  0 1.0000000000
## GO:0051298  BP    67  0 1.0000000000
## GO:0061371  BP    67  0 1.0000000000
## GO:0003143  BP    67  0 1.0000000000
## GO:0001885  BP    67  0 1.0000000000
## GO:0097194  BP    67  0 1.0000000000
## GO:0006635  BP    67  0 1.0000000000
## GO:0050710  BP    67  0 1.0000000000
## GO:0051784  BP    67  0 1.0000000000
## GO:2000378  BP    67  0 1.0000000000
## GO:1905515  BP    67  0 1.0000000000
## GO:0016239  BP    67  0 1.0000000000
## GO:2000179  BP    67  0 1.0000000000
## GO:0043113  BP    67  0 1.0000000000
## GO:0002673  BP    67  0 1.0000000000
## GO:0060688  BP    67  0 1.0000000000
## GO:0048168  BP    67  0 1.0000000000
## GO:0006940  BP    67  0 1.0000000000
## GO:0048678  BP    67  0 1.0000000000
## GO:0061478  BP    67  0 1.0000000000
## GO:0071166  BP    67  0 1.0000000000
## GO:0016444  BP    67  0 1.0000000000
## GO:0002562  BP    67  0 1.0000000000
## GO:0006801  BP    67  0 1.0000000000
## GO:0000768  BP    67  0 1.0000000000
## GO:0032482  BP    68  0 1.0000000000
## GO:0055081  BP    68  0 1.0000000000
## GO:0048002  BP    68  0 1.0000000000
## GO:0035082  BP    68  0 1.0000000000
## GO:1904888  BP    68  0 1.0000000000
## GO:0006855  BP    68  0 1.0000000000
## GO:0034109  BP    68  0 1.0000000000
## GO:2001244  BP    68  0 1.0000000000
## GO:0045669  BP    68  0 1.0000000000
## GO:0006513  BP    68  0 1.0000000000
## GO:0046637  BP    68  0 1.0000000000
## GO:0051453  BP    68  0 1.0000000000
## GO:0045428  BP    68  0 1.0000000000
## GO:0006305  BP    69  0 1.0000000000
## GO:0006306  BP    69  0 1.0000000000
## GO:0060997  BP    69  0 1.0000000000
## GO:0021536  BP    69  0 1.0000000000
## GO:0007492  BP    69  0 1.0000000000
## GO:0032637  BP    69  0 1.0000000000
## GO:0043299  BP    69  0 1.0000000000
## GO:0045576  BP    69  0 1.0000000000
## GO:0048332  BP    69  0 1.0000000000
## GO:0000281  BP    69  0 1.0000000000
## GO:0043407  BP    69  0 1.0000000000
## GO:0010633  BP    69  0 1.0000000000
## GO:2000107  BP    69  0 1.0000000000
## GO:0007405  BP    69  0 1.0000000000
## GO:0050885  BP    69  0 1.0000000000
## GO:0001541  BP    69  0 1.0000000000
## GO:0046635  BP    69  0 1.0000000000
## GO:0048146  BP    69  0 1.0000000000
## GO:0032370  BP    69  0 1.0000000000
## GO:0055117  BP    69  0 1.0000000000
## GO:0061035  BP    69  0 1.0000000000
## GO:0033047  BP    69  0 1.0000000000
## GO:1904589  BP    69  0 1.0000000000
## GO:1903670  BP    69  0 1.0000000000
## GO:0006949  BP    69  0 1.0000000000
## GO:0008542  BP    69  0 1.0000000000
## GO:0006766  BP    69  0 1.0000000000
## GO:0006081  BP    70  0 1.0000000000
## GO:1990869  BP    70  0 1.0000000000
## GO:0003341  BP    70  0 1.0000000000
## GO:0019915  BP    70  0 1.0000000000
## GO:0002385  BP    70  0 1.0000000000
## GO:0042130  BP    70  0 1.0000000000
## GO:2001021  BP    70  0 1.0000000000
## GO:0046173  BP    70  0 1.0000000000
## GO:0051057  BP    70  0 1.0000000000
## GO:1903725  BP    70  0 1.0000000000
## GO:0002090  BP    70  0 1.0000000000
## GO:1901796  BP    70  0 1.0000000000
## GO:0048641  BP    70  0 1.0000000000
## GO:1990868  BP    70  0 1.0000000000
## GO:0009119  BP    70  0 1.0000000000
## GO:0050909  BP    70  0 1.0000000000
## GO:0022029  BP    70  0 1.0000000000
## GO:0070192  BP    71  0 1.0000000000
## GO:0042733  BP    71  0 1.0000000000
## GO:0032413  BP    71  0 1.0000000000
## GO:0061045  BP    71  0 1.0000000000
## GO:0002711  BP    71  0 1.0000000000
## GO:0014068  BP    71  0 1.0000000000
## GO:0097120  BP    71  0 1.0000000000
## GO:0010611  BP    71  0 1.0000000000
## GO:0050433  BP    71  0 1.0000000000
## GO:0042509  BP    71  0 1.0000000000
## GO:0042255  BP    71  0 1.0000000000
## GO:0060675  BP    71  0 1.0000000000
## GO:0048645  BP    72  0 1.0000000000
## GO:0016575  BP    72  0 1.0000000000
## GO:0072171  BP    72  0 1.0000000000
## GO:0030239  BP    72  0 1.0000000000
## GO:0002251  BP    72  0 1.0000000000
## GO:0097755  BP    72  0 1.0000000000
## GO:0000079  BP    72  0 1.0000000000
## GO:0043627  BP    72  0 1.0000000000
## GO:0006400  BP    72  0 1.0000000000
## GO:0007632  BP    72  0 1.0000000000
## GO:0009060  BP    73  0 1.0000000000
## GO:0019731  BP    73  0 1.0000000000
## GO:0021885  BP    73  0 1.0000000000
## GO:0006094  BP    73  0 1.0000000000
## GO:1990542  BP    73  0 1.0000000000
## GO:0051851  BP    73  0 1.0000000000
## GO:0031397  BP    73  0 1.0000000000
## GO:0007422  BP    73  0 1.0000000000
## GO:1903036  BP    73  0 1.0000000000
## GO:0051155  BP    73  0 1.0000000000
## GO:0051865  BP    73  0 1.0000000000
## GO:0006626  BP    73  0 1.0000000000
## GO:2000779  BP    73  0 1.0000000000
## GO:0031060  BP    73  0 1.0000000000
## GO:0002637  BP    73  0 1.0000000000
## GO:0060191  BP    73  0 1.0000000000
## GO:0045670  BP    73  0 1.0000000000
## GO:0050810  BP    73  0 1.0000000000
## GO:0051145  BP    73  0 1.0000000000
## GO:0006414  BP    73  0 1.0000000000
## GO:0006919  BP    74  0 1.0000000000
## GO:0007193  BP    74  0 1.0000000000
## GO:0003333  BP    74  0 1.0000000000
## GO:0050432  BP    74  0 1.0000000000
## GO:0002066  BP    74  0 1.0000000000
## GO:0008543  BP    74  0 1.0000000000
## GO:0021766  BP    74  0 1.0000000000
## GO:0010507  BP    74  0 1.0000000000
## GO:1901880  BP    74  0 1.0000000000
## GO:2000573  BP    74  0 1.0000000000
## GO:1901224  BP    74  0 1.0000000000
## GO:0042108  BP    74  0 1.0000000000
## GO:0002532  BP    74  0 1.0000000000
## GO:0032651  BP    74  0 1.0000000000
## GO:0014743  BP    74  0 1.0000000000
## GO:1903201  BP    74  0 1.0000000000
## GO:1901983  BP    74  0 1.0000000000
## GO:0097327  BP    74  0 1.0000000000
## GO:0036465  BP    74  0 1.0000000000
## GO:0051303  BP    75  0 1.0000000000
## GO:0008625  BP    75  0 1.0000000000
## GO:0046323  BP    75  0 1.0000000000
## GO:0042446  BP    75  0 1.0000000000
## GO:0032418  BP    75  0 1.0000000000
## GO:0032507  BP    75  0 1.0000000000
## GO:0032543  BP    75  0 1.0000000000
## GO:0051705  BP    75  0 1.0000000000
## GO:0070373  BP    75  0 1.0000000000
## GO:0032272  BP    75  0 1.0000000000
## GO:0045843  BP    75  0 1.0000000000
## GO:0060563  BP    75  0 1.0000000000
## GO:0140056  BP    75  0 1.0000000000
## GO:0000271  BP    75  0 1.0000000000
## GO:1900182  BP    75  0 1.0000000000
## GO:0030641  BP    75  0 1.0000000000
## GO:0051193  BP    75  0 1.0000000000
## GO:0046626  BP    75  0 1.0000000000
## GO:0030808  BP    75  0 1.0000000000
## GO:0061097  BP    75  0 1.0000000000
## GO:1900371  BP    75  0 1.0000000000
## GO:0002200  BP    75  0 1.0000000000
## GO:0007260  BP    75  0 1.0000000000
## GO:0006405  BP    76  0 1.0000000000
## GO:0001913  BP    76  0 1.0000000000
## GO:1901606  BP    76  0 1.0000000000
## GO:0000380  BP    76  0 1.0000000000
## GO:0048844  BP    76  0 1.0000000000
## GO:0008088  BP    76  0 1.0000000000
## GO:0055008  BP    76  0 1.0000000000
## GO:0007045  BP    76  0 1.0000000000
## GO:0050000  BP    76  0 1.0000000000
## GO:0060350  BP    76  0 1.0000000000
## GO:0048041  BP    76  0 1.0000000000
## GO:0021879  BP    76  0 1.0000000000
## GO:0019319  BP    76  0 1.0000000000
## GO:0006809  BP    76  0 1.0000000000
## GO:0030168  BP    76  0 1.0000000000
## GO:1904029  BP    76  0 1.0000000000
## GO:0070228  BP    76  0 1.0000000000
## GO:0071277  BP    77  0 1.0000000000
## GO:0071347  BP    77  0 1.0000000000
## GO:0030301  BP    77  0 1.0000000000
## GO:0006835  BP    77  0 1.0000000000
## GO:0072332  BP    77  0 1.0000000000
## GO:0061180  BP    77  0 1.0000000000
## GO:0033108  BP    77  0 1.0000000000
## GO:0001738  BP    77  0 1.0000000000
## GO:0032088  BP    77  0 1.0000000000
## GO:0048635  BP    77  0 1.0000000000
## GO:2001259  BP    77  0 1.0000000000
## GO:0032729  BP    77  0 1.0000000000
## GO:0051785  BP    77  0 1.0000000000
## GO:0050766  BP    77  0 1.0000000000
## GO:0030193  BP    77  0 1.0000000000
## GO:0055021  BP    77  0 1.0000000000
## GO:0050688  BP    77  0 1.0000000000
## GO:0051966  BP    77  0 1.0000000000
## GO:0001756  BP    77  0 1.0000000000
## GO:0030148  BP    77  0 1.0000000000
## GO:0015918  BP    77  0 1.0000000000
## GO:0014855  BP    77  0 1.0000000000
## GO:0010833  BP    77  0 1.0000000000
## GO:0034637  BP    78  0 1.0000000000
## GO:0006073  BP    78  0 1.0000000000
## GO:0034644  BP    78  0 1.0000000000
## GO:0060976  BP    78  0 1.0000000000
## GO:0044042  BP    78  0 1.0000000000
## GO:0005977  BP    78  0 1.0000000000
## GO:0046785  BP    78  0 1.0000000000
## GO:0061515  BP    78  0 1.0000000000
## GO:1901862  BP    78  0 1.0000000000
## GO:0043507  BP    78  0 1.0000000000
## GO:0010389  BP    78  0 1.0000000000
## GO:1900046  BP    78  0 1.0000000000
## GO:0051881  BP    78  0 1.0000000000
## GO:0045471  BP    78  0 1.0000000000
## GO:0003208  BP    79  0 1.0000000000
## GO:0097192  BP    79  0 1.0000000000
## GO:0051702  BP    79  0 1.0000000000
## GO:0048663  BP    79  0 1.0000000000
## GO:0051781  BP    79  0 1.0000000000
## GO:0043525  BP    79  0 1.0000000000
## GO:1902117  BP    79  0 1.0000000000
## GO:0032465  BP    79  0 1.0000000000
## GO:0033143  BP    79  0 1.0000000000
## GO:0032890  BP    79  0 1.0000000000
## GO:0051279  BP    79  0 1.0000000000
## GO:0042147  BP    79  0 1.0000000000
## GO:0038034  BP    79  0 1.0000000000
## GO:0002312  BP    80  0 1.0000000000
## GO:0060113  BP    80  0 1.0000000000
## GO:0022406  BP    80  0 1.0000000000
## GO:0043154  BP    80  0 1.0000000000
## GO:0010923  BP    80  0 1.0000000000
## GO:0032410  BP    80  0 1.0000000000
## GO:0072078  BP    80  0 1.0000000000
## GO:0021675  BP    80  0 1.0000000000
## GO:0046209  BP    80  0 1.0000000000
## GO:1904427  BP    80  0 1.0000000000
## GO:0030500  BP    80  0 1.0000000000
## GO:0045682  BP    80  0 1.0000000000
## GO:0070613  BP    80  0 1.0000000000
## GO:0044106  BP    81  0 1.0000000000
## GO:0006664  BP    81  0 1.0000000000
## GO:1903312  BP    81  0 1.0000000000
## GO:0007218  BP    81  0 1.0000000000
## GO:0072384  BP    81  0 1.0000000000
## GO:0046530  BP    81  0 1.0000000000
## GO:0031646  BP    81  0 1.0000000000
## GO:2000243  BP    81  0 1.0000000000
## GO:0050818  BP    81  0 1.0000000000
## GO:0061178  BP    81  0 1.0000000000
## GO:0032479  BP    81  0 1.0000000000
## GO:0022904  BP    81  0 1.0000000000
## GO:0043279  BP    81  0 1.0000000000
## GO:0042273  BP    81  0 1.0000000000
## GO:0090630  BP    82  0 1.0000000000
## GO:0006637  BP    82  0 1.0000000000
## GO:0035050  BP    82  0 1.0000000000
## GO:0006720  BP    82  0 1.0000000000
## GO:1903509  BP    82  0 1.0000000000
## GO:0051899  BP    82  0 1.0000000000
## GO:0046364  BP    82  0 1.0000000000
## GO:0048747  BP    82  0 1.0000000000
## GO:1903901  BP    82  0 1.0000000000
## GO:0072088  BP    82  0 1.0000000000
## GO:0015748  BP    82  0 1.0000000000
## GO:0002718  BP    82  0 1.0000000000
## GO:1903317  BP    82  0 1.0000000000
## GO:0032204  BP    82  0 1.0000000000
## GO:0035383  BP    82  0 1.0000000000
## GO:0006672  BP    83  0 1.0000000000
## GO:0097581  BP    83  0 1.0000000000
## GO:0071674  BP    83  0 1.0000000000
## GO:0043242  BP    83  0 1.0000000000
## GO:1903321  BP    83  0 1.0000000000
## GO:0072028  BP    83  0 1.0000000000
## GO:1901992  BP    83  0 1.0000000000
## GO:1901019  BP    83  0 1.0000000000
## GO:1901888  BP    83  0 1.0000000000
## GO:0033045  BP    83  0 1.0000000000
## GO:0006942  BP    83  0 1.0000000000
## GO:0044728  BP    84  0 1.0000000000
## GO:0006342  BP    84  0 1.0000000000
## GO:0050672  BP    84  0 1.0000000000
## GO:0032945  BP    84  0 1.0000000000
## GO:0003151  BP    84  0 1.0000000000
## GO:0045913  BP    84  0 1.0000000000
## GO:0048636  BP    84  0 1.0000000000
## GO:0045844  BP    84  0 1.0000000000
## GO:0048524  BP    84  0 1.0000000000
## GO:2001057  BP    84  0 1.0000000000
## GO:0060420  BP    84  0 1.0000000000
## GO:1901379  BP    84  0 1.0000000000
## GO:0008589  BP    84  0 1.0000000000
## GO:0006970  BP    84  0 1.0000000000
## GO:0034333  BP    85  0 1.0000000000
## GO:0048708  BP    85  0 1.0000000000
## GO:0042632  BP    85  0 1.0000000000
## GO:0022900  BP    85  0 1.0000000000
## GO:0098659  BP    85  0 1.0000000000
## GO:0099587  BP    85  0 1.0000000000
## GO:0002088  BP    85  0 1.0000000000
## GO:0002275  BP    85  0 1.0000000000
## GO:1901863  BP    85  0 1.0000000000
## GO:0034502  BP    85  0 1.0000000000
## GO:0035418  BP    85  0 1.0000000000
## GO:1900407  BP    85  0 1.0000000000
## GO:0051341  BP    85  0 1.0000000000
## GO:0051384  BP    85  0 1.0000000000
## GO:0032606  BP    85  0 1.0000000000
## GO:0070509  BP    86  0 1.0000000000
## GO:0060411  BP    86  0 1.0000000000
## GO:0007044  BP    86  0 1.0000000000
## GO:0009593  BP    86  0 1.0000000000
## GO:0043648  BP    86  0 1.0000000000
## GO:0060079  BP    86  0 1.0000000000
## GO:0015908  BP    86  0 1.0000000000
## GO:0032611  BP    86  0 1.0000000000
## GO:0055072  BP    86  0 1.0000000000
## GO:0042490  BP    86  0 1.0000000000
## GO:0001912  BP    86  0 1.0000000000
## GO:0008593  BP    86  0 1.0000000000
## GO:0010827  BP    86  0 1.0000000000
## GO:0035304  BP    86  0 1.0000000000
## GO:0061333  BP    86  0 1.0000000000
## GO:0055092  BP    86  0 1.0000000000
## GO:0003281  BP    86  0 1.0000000000
## GO:0070252  BP    87  0 1.0000000000
## GO:2000117  BP    87  0 1.0000000000
## GO:0042475  BP    87  0 1.0000000000
## GO:0002690  BP    87  0 1.0000000000
## GO:0010717  BP    87  0 1.0000000000
## GO:1901879  BP    87  0 1.0000000000
## GO:0072091  BP    87  0 1.0000000000
## GO:0033077  BP    88  0 1.0000000000
## GO:0044344  BP    88  0 1.0000000000
## GO:0006112  BP    88  0 1.0000000000
## GO:0070664  BP    88  0 1.0000000000
## GO:1903035  BP    88  0 1.0000000000
## GO:0009116  BP    88  0 1.0000000000
## GO:0051149  BP    88  0 1.0000000000
## GO:0032642  BP    88  0 1.0000000000
## GO:0019217  BP    88  0 1.0000000000
## GO:0031110  BP    88  0 1.0000000000
## GO:0051492  BP    88  0 1.0000000000
## GO:0035914  BP    88  0 1.0000000000
## GO:0051937  BP    89  0 1.0000000000
## GO:0070301  BP    89  0 1.0000000000
## GO:0021872  BP    89  0 1.0000000000
## GO:0035773  BP    89  0 1.0000000000
## GO:0007229  BP    89  0 1.0000000000
## GO:0001656  BP    89  0 1.0000000000
## GO:0060415  BP    89  0 1.0000000000
## GO:1904063  BP    89  0 1.0000000000
## GO:1903008  BP    89  0 1.0000000000
## GO:0031016  BP    89  0 1.0000000000
## GO:0014015  BP    89  0 1.0000000000
## GO:1905954  BP    89  0 1.0000000000
## GO:1900076  BP    89  0 1.0000000000
## GO:1904035  BP    89  0 1.0000000000
## GO:0031960  BP    89  0 1.0000000000
## GO:0000041  BP    89  0 1.0000000000
## GO:0019226  BP    89  0 1.0000000000
## GO:0060395  BP    90  0 1.0000000000
## GO:0009063  BP    90  0 1.0000000000
## GO:0072655  BP    90  0 1.0000000000
## GO:0006096  BP    90  0 1.0000000000
## GO:0045814  BP    90  0 1.0000000000
## GO:0045833  BP    90  0 1.0000000000
## GO:1903313  BP    90  0 1.0000000000
## GO:0006497  BP    90  0 1.0000000000
## GO:1902600  BP    90  0 1.0000000000
## GO:0043535  BP    90  0 1.0000000000
## GO:0040014  BP    90  0 1.0000000000
## GO:0071774  BP    90  0 1.0000000000
## GO:0032526  BP    90  0 1.0000000000
## GO:0042770  BP    90  0 1.0000000000
## GO:0006757  BP    91  0 1.0000000000
## GO:0009308  BP    91  0 1.0000000000
## GO:0009798  BP    91  0 1.0000000000
## GO:0021954  BP    91  0 1.0000000000
## GO:0001938  BP    91  0 1.0000000000
## GO:1903578  BP    91  0 1.0000000000
## GO:0045685  BP    91  0 1.0000000000
## GO:0032652  BP    91  0 1.0000000000
## GO:0002028  BP    91  0 1.0000000000
## GO:0046683  BP    91  0 1.0000000000
## GO:0032602  BP    92  0 1.0000000000
## GO:0030838  BP    92  0 1.0000000000
## GO:0006476  BP    92  0 1.0000000000
## GO:0060998  BP    92  0 1.0000000000
## GO:0006885  BP    92  0 1.0000000000
## GO:0000045  BP    93  0 1.0000000000
## GO:0036473  BP    93  0 1.0000000000
## GO:0061640  BP    93  0 1.0000000000
## GO:0009062  BP    93  0 1.0000000000
## GO:0007215  BP    93  0 1.0000000000
## GO:0001676  BP    93  0 1.0000000000
## GO:0042116  BP    93  0 1.0000000000
## GO:0051817  BP    93  0 1.0000000000
## GO:0045445  BP    93  0 1.0000000000
## GO:0035305  BP    93  0 1.0000000000
## GO:0046889  BP    93  0 1.0000000000
## GO:0043506  BP    93  0 1.0000000000
## GO:0002027  BP    93  0 1.0000000000
## GO:0061844  BP    94  0 1.0000000000
## GO:0002181  BP    94  0 1.0000000000
## GO:0097061  BP    94  0 1.0000000000
## GO:0042866  BP    94  0 1.0000000000
## GO:0002709  BP    94  0 1.0000000000
## GO:1902749  BP    94  0 1.0000000000
## GO:0060968  BP    94  0 1.0000000000
## GO:1902882  BP    94  0 1.0000000000
## GO:0045069  BP    94  0 1.0000000000
## GO:0070555  BP    94  0 1.0000000000
## GO:0060021  BP    94  0 1.0000000000
## GO:0001570  BP    94  0 1.0000000000
## GO:0006906  BP    94  0 1.0000000000
## GO:0046916  BP    95  0 1.0000000000
## GO:0051304  BP    95  0 1.0000000000
## GO:0007173  BP    95  0 1.0000000000
## GO:0001704  BP    95  0 1.0000000000
## GO:0042158  BP    95  0 1.0000000000
## GO:0046888  BP    95  0 1.0000000000
## GO:0048477  BP    95  0 1.0000000000
## GO:0045582  BP    95  0 1.0000000000
## GO:0070585  BP    95  0 1.0000000000
## GO:0006352  BP    96  0 1.0000000000
## GO:0030004  BP    96  0 1.0000000000
## GO:0071456  BP    96  0 1.0000000000
## GO:0099565  BP    96  0 1.0000000000
## GO:0140029  BP    96  0 1.0000000000
## GO:0030279  BP    96  0 1.0000000000
## GO:0007200  BP    96  0 1.0000000000
## GO:1901989  BP    96  0 1.0000000000
## GO:0120162  BP    96  0 1.0000000000
## GO:0050795  BP    96  0 1.0000000000
## GO:0014066  BP    96  0 1.0000000000
## GO:0099072  BP    96  0 1.0000000000
## GO:0061053  BP    96  0 1.0000000000
## GO:0006304  BP    97  0 1.0000000000
## GO:1905037  BP    97  0 1.0000000000
## GO:0072676  BP    97  0 1.0000000000
## GO:0045132  BP    97  0 1.0000000000
## GO:0048644  BP    97  0 1.0000000000
## GO:0002444  BP    97  0 1.0000000000
## GO:2001243  BP    97  0 1.0000000000
## GO:0048525  BP    97  0 1.0000000000
## GO:0006334  BP    97  0 1.0000000000
## GO:0006119  BP    97  0 1.0000000000
## GO:0010595  BP    97  0 1.0000000000
## GO:0031058  BP    97  0 1.0000000000
## GO:0030510  BP    97  0 1.0000000000
## GO:0070167  BP    97  0 1.0000000000
## GO:0043502  BP    97  0 1.0000000000
## GO:0046031  BP    98  0 1.0000000000
## GO:0071482  BP    98  0 1.0000000000
## GO:0019395  BP    98  0 1.0000000000
## GO:0021761  BP    98  0 1.0000000000
## GO:0070227  BP    98  0 1.0000000000
## GO:0007041  BP    98  0 1.0000000000
## GO:0007006  BP    98  0 1.0000000000
## GO:2001237  BP    98  0 1.0000000000
## GO:0072080  BP    98  0 1.0000000000
## GO:0042102  BP    98  0 1.0000000000
## GO:0032760  BP    98  0 1.0000000000
## GO:0043488  BP    98  0 1.0000000000
## GO:0010660  BP    98  0 1.0000000000
## GO:0006821  BP    99  0 1.0000000000
## GO:0060993  BP    99  0 1.0000000000
## GO:0033555  BP    99  0 1.0000000000
## GO:0062014  BP    99  0 1.0000000000
## GO:0033865  BP    99  0 1.0000000000
## GO:0045921  BP    99  0 1.0000000000
## GO:0032755  BP    99  0 1.0000000000
## GO:1903557  BP    99  0 1.0000000000
## GO:0006892  BP    99  0 1.0000000000
## GO:0034032  BP    99  0 1.0000000000
## GO:0033875  BP    99  0 1.0000000000
## GO:0006641  BP    99  0 1.0000000000
## GO:0098876  BP    99  0 1.0000000000
## GO:0055013  BP   100  0 1.0000000000
## GO:0034440  BP   100  0 1.0000000000
## GO:0001578  BP   100  0 1.0000000000
## GO:0030593  BP   100  0 1.0000000000
## GO:0090174  BP   100  0 1.0000000000
## GO:0031343  BP   100  0 1.0000000000
## GO:0045778  BP   100  0 1.0000000000
## GO:0002702  BP   100  0 1.0000000000
## GO:0032006  BP   100  0 1.0000000000
## GO:0110020  BP   100  0 1.0000000000
## GO:0060359  BP   100  0 1.0000000000
## GO:0007584  BP   100  0 1.0000000000
## GO:0000077  BP   101  0 1.0000000000
## GO:0031532  BP   101  0 1.0000000000
## GO:0003300  BP   101  0 1.0000000000
## GO:0051651  BP   101  0 1.0000000000
## GO:0110110  BP   101  0 1.0000000000
## GO:0090263  BP   101  0 1.0000000000
## GO:2001022  BP   101  0 1.0000000000
## GO:1901222  BP   101  0 1.0000000000
## GO:0050848  BP   101  0 1.0000000000
## GO:0055024  BP   101  0 1.0000000000
## GO:2000300  BP   101  0 1.0000000000
## GO:0034446  BP   101  0 1.0000000000
## GO:0033559  BP   101  0 1.0000000000
## GO:0031123  BP   102  0 1.0000000000
## GO:0002367  BP   102  0 1.0000000000
## GO:0050886  BP   102  0 1.0000000000
## GO:0106027  BP   102  0 1.0000000000
## GO:0046427  BP   102  0 1.0000000000
## GO:0050772  BP   102  0 1.0000000000
## GO:0051897  BP   102  0 1.0000000000
## GO:1905477  BP   102  0 1.0000000000
## GO:0010522  BP   102  0 1.0000000000
## GO:0019218  BP   102  0 1.0000000000
## GO:0021510  BP   102  0 1.0000000000
## GO:0051225  BP   102  0 1.0000000000
## GO:0001708  BP   103  0 1.0000000000
## GO:0030038  BP   103  0 1.0000000000
## GO:0009953  BP   103  0 1.0000000000
## GO:0030317  BP   103  0 1.0000000000
## GO:0098732  BP   103  0 1.0000000000
## GO:0140053  BP   103  0 1.0000000000
## GO:0010657  BP   103  0 1.0000000000
## GO:0006165  BP   103  0 1.0000000000
## GO:0048709  BP   103  0 1.0000000000
## GO:0035601  BP   103  0 1.0000000000
## GO:0051289  BP   103  0 1.0000000000
## GO:0009135  BP   103  0 1.0000000000
## GO:0009179  BP   103  0 1.0000000000
## GO:0000018  BP   103  0 1.0000000000
## GO:0032231  BP   103  0 1.0000000000
## GO:0043255  BP   103  0 1.0000000000
## GO:1900542  BP   103  0 1.0000000000
## GO:1903426  BP   103  0 1.0000000000
## GO:0017015  BP   103  0 1.0000000000
## GO:0009408  BP   103  0 1.0000000000
## GO:0043149  BP   103  0 1.0000000000
## GO:0002224  BP   103  0 1.0000000000
## GO:1905039  BP   104  0 1.0000000000
## GO:0044264  BP   104  0 1.0000000000
## GO:0021549  BP   104  0 1.0000000000
## GO:0032612  BP   104  0 1.0000000000
## GO:0030518  BP   104  0 1.0000000000
## GO:0072163  BP   104  0 1.0000000000
## GO:0072164  BP   104  0 1.0000000000
## GO:0042136  BP   104  0 1.0000000000
## GO:1903825  BP   104  0 1.0000000000
## GO:0007009  BP   104  0 1.0000000000
## GO:0046634  BP   104  0 1.0000000000
## GO:0051983  BP   104  0 1.0000000000
## GO:0061326  BP   104  0 1.0000000000
## GO:0097722  BP   104  0 1.0000000000
## GO:0006413  BP   104  0 1.0000000000
## GO:0001657  BP   104  0 1.0000000000
## GO:0038127  BP   105  0 1.0000000000
## GO:0008306  BP   105  0 1.0000000000
## GO:0055017  BP   105  0 1.0000000000
## GO:0034754  BP   105  0 1.0000000000
## GO:0048704  BP   105  0 1.0000000000
## GO:0007052  BP   105  0 1.0000000000
## GO:0034766  BP   105  0 1.0000000000
## GO:0000956  BP   105  0 1.0000000000
## GO:0046939  BP   105  0 1.0000000000
## GO:0043473  BP   105  0 1.0000000000
## GO:1903844  BP   105  0 1.0000000000
## GO:0048024  BP   105  0 1.0000000000
## GO:0016241  BP   105  0 1.0000000000
## GO:0050764  BP   105  0 1.0000000000
## GO:0043266  BP   105  0 1.0000000000
## GO:0019236  BP   105  0 1.0000000000
## GO:0035282  BP   105  0 1.0000000000
## GO:0014897  BP   105  0 1.0000000000
## GO:0035249  BP   105  0 1.0000000000
## GO:0060840  BP   106  0 1.0000000000
## GO:0055006  BP   106  0 1.0000000000
## GO:0022600  BP   106  0 1.0000000000
## GO:0045446  BP   106  0 1.0000000000
## GO:0046474  BP   106  0 1.0000000000
## GO:0045185  BP   106  0 1.0000000000
## GO:0032091  BP   106  0 1.0000000000
## GO:0019359  BP   106  0 1.0000000000
## GO:1904894  BP   106  0 1.0000000000
## GO:0120034  BP   106  0 1.0000000000
## GO:0048661  BP   106  0 1.0000000000
## GO:1902803  BP   106  0 1.0000000000
## GO:0038061  BP   107  0 1.0000000000
## GO:0007043  BP   107  0 1.0000000000
## GO:0001823  BP   107  0 1.0000000000
## GO:0014896  BP   107  0 1.0000000000
## GO:0006275  BP   107  0 1.0000000000
## GO:0043487  BP   107  0 1.0000000000
## GO:0048145  BP   107  0 1.0000000000
## GO:0006140  BP   107  0 1.0000000000
## GO:0003014  BP   107  0 1.0000000000
## GO:0014074  BP   107  0 1.0000000000
## GO:0009185  BP   107  0 1.0000000000
## GO:0030048  BP   108  0 1.0000000000
## GO:1904659  BP   108  0 1.0000000000
## GO:0051028  BP   108  0 1.0000000000
## GO:0030316  BP   108  0 1.0000000000
## GO:1900006  BP   108  0 1.0000000000
## GO:0045621  BP   108  0 1.0000000000
## GO:0001959  BP   108  0 1.0000000000
## GO:2000106  BP   108  0 1.0000000000
## GO:0035725  BP   108  0 1.0000000000
## GO:0008344  BP   109  0 1.0000000000
## GO:0021987  BP   109  0 1.0000000000
## GO:0032963  BP   109  0 1.0000000000
## GO:0050829  BP   109  0 1.0000000000
## GO:0048144  BP   109  0 1.0000000000
## GO:0008645  BP   109  0 1.0000000000
## GO:0034968  BP   109  0 1.0000000000
## GO:0015844  BP   109  0 1.0000000000
## GO:0072009  BP   109  0 1.0000000000
## GO:0018958  BP   109  0 1.0000000000
## GO:0032092  BP   109  0 1.0000000000
## GO:2000379  BP   109  0 1.0000000000
## GO:0006612  BP   109  0 1.0000000000
## GO:0019363  BP   109  0 1.0000000000
## GO:0042035  BP   109  0 1.0000000000
## GO:0032649  BP   109  0 1.0000000000
## GO:0001910  BP   109  0 1.0000000000
## GO:1903076  BP   109  0 1.0000000000
## GO:0048259  BP   109  0 1.0000000000
## GO:0000086  BP   110  0 1.0000000000
## GO:0019882  BP   110  0 1.0000000000
## GO:1901657  BP   110  0 1.0000000000
## GO:0007156  BP   110  0 1.0000000000
## GO:0006690  BP   110  0 1.0000000000
## GO:0001843  BP   110  0 1.0000000000
## GO:0090100  BP   110  0 1.0000000000
## GO:0031570  BP   111  0 1.0000000000
## GO:0021782  BP   111  0 1.0000000000
## GO:0001942  BP   111  0 1.0000000000
## GO:0007127  BP   111  0 1.0000000000
## GO:0015749  BP   111  0 1.0000000000
## GO:0071901  BP   111  0 1.0000000000
## GO:0002688  BP   111  0 1.0000000000
## GO:0043401  BP   111  0 1.0000000000
## GO:0060606  BP   111  0 1.0000000000
## GO:0019079  BP   111  0 1.0000000000
## GO:0007589  BP   112  0 1.0000000000
## GO:0034219  BP   112  0 1.0000000000
## GO:0001892  BP   112  0 1.0000000000
## GO:0008630  BP   112  0 1.0000000000
## GO:0072329  BP   112  0 1.0000000000
## GO:0043123  BP   112  0 1.0000000000
## GO:1905269  BP   112  0 1.0000000000
## GO:1905330  BP   112  0 1.0000000000
## GO:0046822  BP   112  0 1.0000000000
## GO:0060078  BP   112  0 1.0000000000
## GO:0006805  BP   112  0 1.0000000000
## GO:1904019  BP   113  0 1.0000000000
## GO:0008585  BP   113  0 1.0000000000
## GO:0090101  BP   113  0 1.0000000000
## GO:0090305  BP   113  0 1.0000000000
## GO:0072525  BP   113  0 1.0000000000
## GO:0001952  BP   113  0 1.0000000000
## GO:2000177  BP   113  0 1.0000000000
## GO:0098773  BP   113  0 1.0000000000
## GO:0043534  BP   114  0 1.0000000000
## GO:0022405  BP   114  0 1.0000000000
## GO:0060419  BP   114  0 1.0000000000
## GO:0042472  BP   114  0 1.0000000000
## GO:0046467  BP   114  0 1.0000000000
## GO:0022404  BP   114  0 1.0000000000
## GO:0032414  BP   114  0 1.0000000000
## GO:2000045  BP   114  0 1.0000000000
## GO:0048814  BP   114  0 1.0000000000
## GO:0000187  BP   115  0 1.0000000000
## GO:0019730  BP   115  0 1.0000000000
## GO:0071346  BP   115  0 1.0000000000
## GO:0005976  BP   115  0 1.0000000000
## GO:0016579  BP   115  0 1.0000000000
## GO:0032368  BP   115  0 1.0000000000
## GO:0043244  BP   115  0 1.0000000000
## GO:2001023  BP   115  0 1.0000000000
## GO:0051209  BP   115  0 1.0000000000
## GO:0008033  BP   115  0 1.0000000000
## GO:0030282  BP   116  0 1.0000000000
## GO:0010927  BP   116  0 1.0000000000
## GO:0046545  BP   116  0 1.0000000000
## GO:0098739  BP   116  0 1.0000000000
## GO:0061982  BP   116  0 1.0000000000
## GO:0022037  BP   116  0 1.0000000000
## GO:0051261  BP   116  0 1.0000000000
## GO:0002040  BP   116  0 1.0000000000
## GO:0051701  BP   117  0 1.0000000000
## GO:0007498  BP   117  0 1.0000000000
## GO:0043500  BP   117  0 1.0000000000
## GO:0051283  BP   117  0 1.0000000000
## GO:0014020  BP   117  0 1.0000000000
## GO:0006282  BP   117  0 1.0000000000
## GO:0060349  BP   118  0 1.0000000000
## GO:0042476  BP   118  0 1.0000000000
## GO:0019751  BP   118  0 1.0000000000
## GO:0006090  BP   118  0 1.0000000000
## GO:0051952  BP   118  0 1.0000000000
## GO:0046620  BP   118  0 1.0000000000
## GO:0060759  BP   118  0 1.0000000000
## GO:0031929  BP   119  0 1.0000000000
## GO:0003158  BP   119  0 1.0000000000
## GO:0050868  BP   119  0 1.0000000000
## GO:0090090  BP   119  0 1.0000000000
## GO:1990266  BP   119  0 1.0000000000
## GO:0043280  BP   119  0 1.0000000000
## GO:2000278  BP   119  0 1.0000000000
## GO:0051282  BP   119  0 1.0000000000
## GO:0003073  BP   119  0 1.0000000000
## GO:1901136  BP   120  0 1.0000000000
## GO:0002062  BP   120  0 1.0000000000
## GO:0031109  BP   120  0 1.0000000000
## GO:0010508  BP   120  0 1.0000000000
## GO:1901216  BP   120  0 1.0000000000
## GO:0045727  BP   120  0 1.0000000000
## GO:0044070  BP   120  0 1.0000000000
## GO:0051208  BP   120  0 1.0000000000
## GO:0007030  BP   121  0 1.0000000000
## GO:0046717  BP   121  0 1.0000000000
## GO:0036294  BP   121  0 1.0000000000
## GO:0031497  BP   121  0 1.0000000000
## GO:0042089  BP   121  0 1.0000000000
## GO:0048565  BP   121  0 1.0000000000
## GO:0008286  BP   121  0 1.0000000000
## GO:0001889  BP   121  0 1.0000000000
## GO:0009132  BP   121  0 1.0000000000
## GO:0032411  BP   121  0 1.0000000000
## GO:0006611  BP   121  0 1.0000000000
## GO:1903409  BP   121  0 1.0000000000
## GO:0010906  BP   121  0 1.0000000000
## GO:1900180  BP   121  0 1.0000000000
## GO:0042542  BP   121  0 1.0000000000
## GO:0002526  BP   122  0 1.0000000000
## GO:0006639  BP   122  0 1.0000000000
## GO:0015837  BP   122  0 1.0000000000
## GO:0007098  BP   122  0 1.0000000000
## GO:0060996  BP   122  0 1.0000000000
## GO:0007586  BP   122  0 1.0000000000
## GO:0032609  BP   122  0 1.0000000000
## GO:0006997  BP   122  0 1.0000000000
## GO:0048284  BP   122  0 1.0000000000
## GO:0018022  BP   122  0 1.0000000000
## GO:0042752  BP   122  0 1.0000000000
## GO:0061013  BP   122  0 1.0000000000
## GO:0006888  BP   123  0 1.0000000000
## GO:0071621  BP   123  0 1.0000000000
## GO:0042157  BP   123  0 1.0000000000
## GO:0010921  BP   123  0 1.0000000000
## GO:0051153  BP   123  0 1.0000000000
## GO:0006665  BP   123  0 1.0000000000
## GO:0060048  BP   124  0 1.0000000000
## GO:0007368  BP   124  0 1.0000000000
## GO:0061008  BP   124  0 1.0000000000
## GO:0014902  BP   124  0 1.0000000000
## GO:0006638  BP   124  0 1.0000000000
## GO:0033138  BP   124  0 1.0000000000
## GO:0000723  BP   124  0 1.0000000000
## GO:0042107  BP   125  0 1.0000000000
## GO:0007631  BP   125  0 1.0000000000
## GO:0018107  BP   125  0 1.0000000000
## GO:0032273  BP   125  0 1.0000000000
## GO:0099175  BP   125  0 1.0000000000
## GO:0010212  BP   125  0 1.0000000000
## GO:0050852  BP   126  0 1.0000000000
## GO:0034332  BP   126  0 1.0000000000
## GO:0008203  BP   126  0 1.0000000000
## GO:0009582  BP   126  0 1.0000000000
## GO:0031623  BP   126  0 1.0000000000
## GO:0032200  BP   126  0 1.0000000000
## GO:0055076  BP   126  0 1.0000000000
## GO:0044839  BP   127  0 1.0000000000
## GO:0009581  BP   127  0 1.0000000000
## GO:0000724  BP   127  0 1.0000000000
## GO:0014065  BP   127  0 1.0000000000
## GO:0010811  BP   127  0 1.0000000000
## GO:0000725  BP   127  0 1.0000000000
## GO:0010565  BP   127  0 1.0000000000
## GO:0043467  BP   127  0 1.0000000000
## GO:0051592  BP   127  0 1.0000000000
## GO:0003279  BP   128  0 1.0000000000
## GO:0035195  BP   128  0 1.0000000000
## GO:0051092  BP   128  0 1.0000000000
## GO:1902806  BP   128  0 1.0000000000
## GO:0050830  BP   129  0 1.0000000000
## GO:0046488  BP   129  0 1.0000000000
## GO:0051101  BP   129  0 1.0000000000
## GO:0045995  BP   129  0 1.0000000000
## GO:0001936  BP   129  0 1.0000000000
## GO:0007189  BP   130  0 1.0000000000
## GO:1902850  BP   130  0 1.0000000000
## GO:0031023  BP   130  0 1.0000000000
## GO:0007093  BP   130  0 1.0000000000
## GO:0008277  BP   130  0 1.0000000000
## GO:0015696  BP   131  0 1.0000000000
## GO:0030218  BP   131  0 1.0000000000
## GO:0042633  BP   131  0 1.0000000000
## GO:0042303  BP   131  0 1.0000000000
## GO:1903038  BP   131  0 1.0000000000
## GO:0090316  BP   131  0 1.0000000000
## GO:0031341  BP   131  0 1.0000000000
## GO:0010469  BP   131  0 1.0000000000
## GO:1902652  BP   131  0 1.0000000000
## GO:0001508  BP   132  0 1.0000000000
## GO:0071887  BP   132  0 1.0000000000
## GO:0001841  BP   132  0 1.0000000000
## GO:0030177  BP   132  0 1.0000000000
## GO:0016999  BP   133  0 1.0000000000
## GO:1901655  BP   133  0 1.0000000000
## GO:0050906  BP   133  0 1.0000000000
## GO:0009855  BP   133  0 1.0000000000
## GO:0001837  BP   133  0 1.0000000000
## GO:1901568  BP   133  0 1.0000000000
## GO:0061025  BP   133  0 1.0000000000
## GO:0034763  BP   133  0 1.0000000000
## GO:0018210  BP   133  0 1.0000000000
## GO:0046928  BP   133  0 1.0000000000
## GO:0007034  BP   133  0 1.0000000000
## GO:0055123  BP   134  0 1.0000000000
## GO:0006633  BP   134  0 1.0000000000
## GO:0002698  BP   134  0 1.0000000000
## GO:0051928  BP   134  0 1.0000000000
## GO:0035194  BP   134  0 1.0000000000
## GO:1904375  BP   134  0 1.0000000000
## GO:0009799  BP   134  0 1.0000000000
## GO:0006261  BP   135  0 1.0000000000
## GO:0071453  BP   135  0 1.0000000000
## GO:0051168  BP   135  0 1.0000000000
## GO:0070646  BP   135  0 1.0000000000
## GO:0035023  BP   135  0 1.0000000000
## GO:0045598  BP   135  0 1.0000000000
## GO:0072331  BP   135  0 1.0000000000
## GO:0016125  BP   135  0 1.0000000000
## GO:0097553  BP   136  0 1.0000000000
## GO:0043624  BP   136  0 1.0000000000
## GO:0097306  BP   136  0 1.0000000000
## GO:0042471  BP   136  0 1.0000000000
## GO:0035270  BP   136  0 1.0000000000
## GO:0017148  BP   136  0 1.0000000000
## GO:0050905  BP   136  0 1.0000000000
## GO:0009166  BP   136  0 1.0000000000
## GO:2001056  BP   136  0 1.0000000000
## GO:0009791  BP   136  0 1.0000000000
## GO:0017158  BP   136  0 1.0000000000
## GO:0006754  BP   137  0 1.0000000000
## GO:0002456  BP   137  0 1.0000000000
## GO:0048593  BP   137  0 1.0000000000
## GO:0034728  BP   137  0 1.0000000000
## GO:0002221  BP   137  0 1.0000000000
## GO:0016441  BP   137  0 1.0000000000
## GO:0009411  BP   137  0 1.0000000000
## GO:0034341  BP   137  0 1.0000000000
## GO:0009451  BP   138  0 1.0000000000
## GO:0007050  BP   138  0 1.0000000000
## GO:0030010  BP   138  0 1.0000000000
## GO:0016571  BP   138  0 1.0000000000
## GO:0016079  BP   138  0 1.0000000000
## GO:0048706  BP   139  0 1.0000000000
## GO:0016573  BP   139  0 1.0000000000
## GO:0002758  BP   139  0 1.0000000000
## GO:0015698  BP   139  0 1.0000000000
## GO:0030216  BP   139  0 1.0000000000
## GO:0043484  BP   139  0 1.0000000000
## GO:0007338  BP   139  0 1.0000000000
## GO:0071333  BP   140  0 1.0000000000
## GO:0002824  BP   140  0 1.0000000000
## GO:0050921  BP   140  0 1.0000000000
## GO:0072089  BP   140  0 1.0000000000
## GO:0046165  BP   141  0 1.0000000000
## GO:0006338  BP   141  0 1.0000000000
## GO:0045017  BP   141  0 1.0000000000
## GO:0001909  BP   141  0 1.0000000000
## GO:0055088  BP   141  0 1.0000000000
## GO:0035637  BP   141  0 1.0000000000
## GO:0061041  BP   141  0 1.0000000000
## GO:0016052  BP   142  0 1.0000000000
## GO:0071331  BP   142  0 1.0000000000
## GO:0106106  BP   142  0 1.0000000000
## GO:0034101  BP   142  0 1.0000000000
## GO:0050680  BP   142  0 1.0000000000
## GO:0050729  BP   142  0 1.0000000000
## GO:0120161  BP   142  0 1.0000000000
## GO:0045667  BP   142  0 1.0000000000
## GO:0055007  BP   143  0 1.0000000000
## GO:0071326  BP   143  0 1.0000000000
## GO:0009267  BP   143  0 1.0000000000
## GO:0035113  BP   143  0 1.0000000000
## GO:0030326  BP   143  0 1.0000000000
## GO:0001935  BP   143  0 1.0000000000
## GO:0072073  BP   143  0 1.0000000000
## GO:0090288  BP   143  0 1.0000000000
## GO:1901991  BP   143  0 1.0000000000
## GO:0031333  BP   143  0 1.0000000000
## GO:0046330  BP   143  0 1.0000000000
## GO:0010634  BP   143  0 1.0000000000
## GO:0019233  BP   143  0 1.0000000000
## GO:0007224  BP   143  0 1.0000000000
## GO:0006333  BP   144  0 1.0000000000
## GO:0002065  BP   144  0 1.0000000000
## GO:0018393  BP   144  0 1.0000000000
## GO:0007613  BP   144  0 1.0000000000
## GO:0034250  BP   144  0 1.0000000000
## GO:0002687  BP   144  0 1.0000000000
## GO:0002708  BP   144  0 1.0000000000
## GO:0050684  BP   144  0 1.0000000000
## GO:0098693  BP   144  0 1.0000000000
## GO:0045216  BP   145  0 1.0000000000
## GO:0007292  BP   145  0 1.0000000000
## GO:0031099  BP   145  0 1.0000000000
## GO:1905952  BP   145  0 1.0000000000
## GO:1903900  BP   145  0 1.0000000000
## GO:0097530  BP   146  0 1.0000000000
## GO:0000070  BP   146  0 1.0000000000
## GO:2001251  BP   146  0 1.0000000000
## GO:0072006  BP   146  0 1.0000000000
## GO:0008643  BP   147  0 1.0000000000
## GO:0016482  BP   147  0 1.0000000000
## GO:0046660  BP   147  0 1.0000000000
## GO:0006475  BP   147  0 1.0000000000
## GO:1902904  BP   147  0 1.0000000000
## GO:0042133  BP   147  0 1.0000000000
## GO:0002821  BP   147  0 1.0000000000
## GO:0009206  BP   147  0 1.0000000000
## GO:0030856  BP   147  0 1.0000000000
## GO:0050658  BP   148  0 1.0000000000
## GO:0003206  BP   148  0 1.0000000000
## GO:0003231  BP   148  0 1.0000000000
## GO:0055067  BP   148  0 1.0000000000
## GO:0050657  BP   148  0 1.0000000000
## GO:1901292  BP   148  0 1.0000000000
## GO:0009145  BP   148  0 1.0000000000
## GO:0002700  BP   148  0 1.0000000000
## GO:0030183  BP   149  0 1.0000000000
## GO:0001824  BP   149  0 1.0000000000
## GO:0050728  BP   149  0 1.0000000000
## GO:0006865  BP   150  0 1.0000000000
## GO:0071322  BP   150  0 1.0000000000
## GO:0034614  BP   150  0 1.0000000000
## GO:0022612  BP   150  0 1.0000000000
## GO:0015718  BP   150  0 1.0000000000
## GO:0050715  BP   150  0 1.0000000000
## GO:0045580  BP   150  0 1.0000000000
## GO:0014013  BP   150  0 1.0000000000
## GO:0009201  BP   150  0 1.0000000000
## GO:0051236  BP   151  0 1.0000000000
## GO:0030178  BP   151  0 1.0000000000
## GO:0006910  BP   151  0 1.0000000000
## GO:0006606  BP   151  0 1.0000000000
## GO:0042737  BP   152  0 1.0000000000
## GO:0051250  BP   152  0 1.0000000000
## GO:0050709  BP   152  0 1.0000000000
## GO:0010675  BP   152  0 1.0000000000
## GO:0051053  BP   153  0 1.0000000000
## GO:0010950  BP   153  0 1.0000000000
## GO:0006457  BP   153  0 1.0000000000
## GO:0031056  BP   153  0 1.0000000000
## GO:0032675  BP   153  0 1.0000000000
## GO:0071248  BP   154  0 1.0000000000
## GO:0071478  BP   154  0 1.0000000000
## GO:0001838  BP   154  0 1.0000000000
## GO:0006937  BP   154  0 1.0000000000
## GO:0007569  BP   155  0 1.0000000000
## GO:0051170  BP   155  0 1.0000000000
## GO:0051494  BP   155  0 1.0000000000
## GO:0018394  BP   155  0 1.0000000000
## GO:0062013  BP   155  0 1.0000000000
## GO:0051896  BP   155  0 1.0000000000
## GO:1990845  BP   156  0 1.0000000000
## GO:0007596  BP   156  0 1.0000000000
## GO:0071383  BP   156  0 1.0000000000
## GO:0034249  BP   156  0 1.0000000000
## GO:0051302  BP   156  0 1.0000000000
## GO:0006694  BP   156  0 1.0000000000
## GO:0060402  BP   157  0 1.0000000000
## GO:0071466  BP   157  0 1.0000000000
## GO:0000910  BP   157  0 1.0000000000
## GO:0048015  BP   157  0 1.0000000000
## GO:0045834  BP   157  0 1.0000000000
## GO:0033135  BP   157  0 1.0000000000
## GO:0002244  BP   158  0 1.0000000000
## GO:0007599  BP   158  0 1.0000000000
## GO:0009755  BP   158  0 1.0000000000
## GO:0050777  BP   158  0 1.0000000000
## GO:0046496  BP   158  0 1.0000000000
## GO:0021543  BP   158  0 1.0000000000
## GO:0008654  BP   158  0 1.0000000000
## GO:0009127  BP   158  0 1.0000000000
## GO:0009168  BP   158  0 1.0000000000
## GO:0006941  BP   158  0 1.0000000000
## GO:0007601  BP   158  0 1.0000000000
## GO:0001678  BP   159  0 1.0000000000
## GO:0050817  BP   159  0 1.0000000000
## GO:0099111  BP   159  0 1.0000000000
## GO:0042552  BP   159  0 1.0000000000
## GO:0030833  BP   159  0 1.0000000000
## GO:0010970  BP   159  0 1.0000000000
## GO:0031214  BP   160  0 1.0000000000
## GO:0007565  BP   160  0 1.0000000000
## GO:0048017  BP   160  0 1.0000000000
## GO:0035821  BP   160  0 1.0000000000
## GO:1901988  BP   160  0 1.0000000000
## GO:0009142  BP   160  0 1.0000000000
## GO:0051291  BP   160  0 1.0000000000
## GO:0019362  BP   160  0 1.0000000000
## GO:1903169  BP   160  0 1.0000000000
## GO:0072175  BP   161  0 1.0000000000
## GO:2001236  BP   161  0 1.0000000000
## GO:0051147  BP   161  0 1.0000000000
## GO:0008366  BP   162  0 1.0000000000
## GO:0071356  BP   162  0 1.0000000000
## GO:0007272  BP   162  0 1.0000000000
## GO:0031047  BP   162  0 1.0000000000
## GO:0032635  BP   162  0 1.0000000000
## GO:0002792  BP   162  0 1.0000000000
## GO:0010952  BP   162  0 1.0000000000
## GO:0009156  BP   162  0 1.0000000000
## GO:0050953  BP   162  0 1.0000000000
## GO:0007033  BP   162  0 1.0000000000
## GO:0045333  BP   163  0 1.0000000000
## GO:0030879  BP   163  0 1.0000000000
## GO:1904064  BP   163  0 1.0000000000
## GO:0007088  BP   163  0 1.0000000000
## GO:0009266  BP   163  0 1.0000000000
## GO:0060041  BP   163  0 1.0000000000
## GO:0002218  BP   164  0 1.0000000000
## GO:0030902  BP   164  0 1.0000000000
## GO:0006643  BP   164  0 1.0000000000
## GO:0032680  BP   164  0 1.0000000000
## GO:0051017  BP   165  0 1.0000000000
## GO:0006958  BP   165  0 1.0000000000
## GO:0072524  BP   165  0 1.0000000000
## GO:0043122  BP   165  0 1.0000000000
## GO:0046425  BP   165  0 1.0000000000
## GO:0007051  BP   165  0 1.0000000000
## GO:0019827  BP   165  0 1.0000000000
## GO:0007179  BP   165  0 1.0000000000
## GO:0045931  BP   166  0 1.0000000000
## GO:1903555  BP   166  0 1.0000000000
## GO:0042594  BP   166  0 1.0000000000
## GO:0071897  BP   167  0 1.0000000000
## GO:0035303  BP   167  0 1.0000000000
## GO:0006399  BP   167  0 1.0000000000
## GO:0032640  BP   167  0 1.0000000000
## GO:0030509  BP   168  0 1.0000000000
## GO:0061572  BP   168  0 1.0000000000
## GO:0097164  BP   168  0 1.0000000000
## GO:0009124  BP   168  0 1.0000000000
## GO:2001257  BP   168  0 1.0000000000
## GO:0006323  BP   169  0 1.0000000000
## GO:0098727  BP   169  0 1.0000000000
## GO:0050821  BP   169  0 1.0000000000
## GO:2001242  BP   169  0 1.0000000000
## GO:0097237  BP   170  0 1.0000000000
## GO:0060401  BP   170  0 1.0000000000
## GO:0007369  BP   170  0 1.0000000000
## GO:0001890  BP   170  0 1.0000000000
## GO:1904892  BP   170  0 1.0000000000
## GO:0042129  BP   170  0 1.0000000000
## GO:0046890  BP   170  0 1.0000000000
## GO:0071706  BP   170  0 1.0000000000
## GO:0000082  BP   171  0 1.0000000000
## GO:0030705  BP   171  0 1.0000000000
## GO:0007612  BP   171  0 1.0000000000
## GO:0043409  BP   171  0 1.0000000000
## GO:0043271  BP   171  0 1.0000000000
## GO:0032874  BP   171  0 1.0000000000
## GO:0006403  BP   172  0 1.0000000000
## GO:0071230  BP   172  0 1.0000000000
## GO:0034404  BP   172  0 1.0000000000
## GO:0070304  BP   172  0 1.0000000000
## GO:0065004  BP   172  0 1.0000000000
## GO:2000241  BP   172  0 1.0000000000
## GO:1901654  BP   172  0 1.0000000000
## GO:0051100  BP   173  0 1.0000000000
## GO:0031644  BP   173  0 1.0000000000
## GO:0030041  BP   174  0 1.0000000000
## GO:0006575  BP   174  0 1.0000000000
## GO:0035107  BP   175  0 1.0000000000
## GO:0017156  BP   175  0 1.0000000000
## GO:0035108  BP   175  0 1.0000000000
## GO:0045807  BP   175  0 1.0000000000
## GO:0043902  BP   175  0 1.0000000000
## GO:0097480  BP   176  0 1.0000000000
## GO:0048592  BP   176  0 1.0000000000
## GO:0002262  BP   176  0 1.0000000000
## GO:0002705  BP   176  0 1.0000000000
## GO:0008213  BP   176  0 1.0000000000
## GO:0006479  BP   176  0 1.0000000000
## GO:0008064  BP   176  0 1.0000000000
## GO:0016202  BP   176  0 1.0000000000
## GO:0009612  BP   176  0 1.0000000000
## GO:0048489  BP   176  0 1.0000000000
## GO:0035148  BP   176  0 1.0000000000
## GO:0007219  BP   177  0 1.0000000000
## GO:0006733  BP   177  0 1.0000000000
## GO:0008016  BP   177  0 1.0000000000
## GO:0000075  BP   178  0 1.0000000000
## GO:0048813  BP   178  0 1.0000000000
## GO:0010951  BP   178  0 1.0000000000
## GO:0043524  BP   178  0 1.0000000000
## GO:0051588  BP   178  0 1.0000000000
## GO:0019933  BP   179  0 1.0000000000
## GO:0001906  BP   179  0 1.0000000000
## GO:0071773  BP   179  0 1.0000000000
## GO:0140013  BP   179  0 1.0000000000
## GO:0006839  BP   179  0 1.0000000000
## GO:0034767  BP   179  0 1.0000000000
## GO:0030832  BP   179  0 1.0000000000
## GO:1901861  BP   179  0 1.0000000000
## GO:1903034  BP   179  0 1.0000000000
## GO:0071772  BP   179  0 1.0000000000
## GO:0034612  BP   179  0 1.0000000000
## GO:0001659  BP   179  0 1.0000000000
## GO:0002455  BP   180  0 1.0000000000
## GO:0048634  BP   180  0 1.0000000000
## GO:0000819  BP   180  0 1.0000000000
## GO:0098656  BP   181  0 1.0000000000
## GO:0015931  BP   181  0 1.0000000000
## GO:0009749  BP   181  0 1.0000000000
## GO:0007259  BP   182  0 1.0000000000
## GO:0035051  BP   182  0 1.0000000000
## GO:0016331  BP   182  0 1.0000000000
## GO:0002695  BP   182  0 1.0000000000
## GO:2001252  BP   182  0 1.0000000000
## GO:0045619  BP   182  0 1.0000000000
## GO:0120032  BP   182  0 1.0000000000
## GO:0061351  BP   183  0 1.0000000000
## GO:0051262  BP   183  0 1.0000000000
## GO:0050792  BP   183  0 1.0000000000
## GO:0048754  BP   184  0 1.0000000000
## GO:0060491  BP   184  0 1.0000000000
## GO:0009746  BP   184  0 1.0000000000
## GO:0044843  BP   185  0 1.0000000000
## GO:0009566  BP   185  0 1.0000000000
## GO:0051668  BP   185  0 1.0000000000
## GO:0001764  BP   185  0 1.0000000000
## GO:0007269  BP   185  0 1.0000000000
## GO:0045766  BP   185  0 1.0000000000
## GO:0010770  BP   185  0 1.0000000000
## GO:0043200  BP   185  0 1.0000000000
## GO:0034284  BP   185  0 1.0000000000
## GO:0043491  BP   186  0 1.0000000000
## GO:0006109  BP   186  0 1.0000000000
## GO:1905475  BP   186  0 1.0000000000
## GO:1903305  BP   186  0 1.0000000000
## GO:0099643  BP   186  0 1.0000000000
## GO:0097696  BP   187  0 1.0000000000
## GO:0030534  BP   187  0 1.0000000000
## GO:0006956  BP   187  0 1.0000000000
## GO:0022408  BP   187  0 1.0000000000
## GO:0050870  BP   187  0 1.0000000000
## GO:0006473  BP   187  0 1.0000000000
## GO:0097479  BP   187  0 1.0000000000
## GO:0046328  BP   188  0 1.0000000000
## GO:0006911  BP   189  0 1.0000000000
## GO:0002822  BP   189  0 1.0000000000
## GO:0071695  BP   190  0 1.0000000000
## GO:0044706  BP   190  0 1.0000000000
## GO:0071804  BP   191  0 1.0000000000
## GO:0021915  BP   191  0 1.0000000000
## GO:0071805  BP   191  0 1.0000000000
## GO:0050773  BP   191  0 1.0000000000
## GO:0007249  BP   193  0 1.0000000000
## GO:1901605  BP   193  0 1.0000000000
## GO:0032869  BP   193  0 1.0000000000
## GO:0055002  BP   193  0 1.0000000000
## GO:0016051  BP   194  0 1.0000000000
## GO:0031669  BP   194  0 1.0000000000
## GO:0009108  BP   194  0 1.0000000000
## GO:0006006  BP   194  0 1.0000000000
## GO:0016236  BP   194  0 1.0000000000
## GO:0099173  BP   194  0 1.0000000000
## GO:0000209  BP   194  0 1.0000000000
## GO:0007266  BP   195  0 1.0000000000
## GO:0003205  BP   195  0 1.0000000000
## GO:0042180  BP   195  0 1.0000000000
## GO:0050731  BP   195  0 1.0000000000
## GO:1902905  BP   195  0 1.0000000000
## GO:0002706  BP   195  0 1.0000000000
## GO:0051783  BP   195  0 1.0000000000
## GO:1902275  BP   197  0 1.0000000000
## GO:0007519  BP   197  0 1.0000000000
## GO:0048469  BP   198  0 1.0000000000
## GO:1903046  BP   198  0 1.0000000000
## GO:0099024  BP   198  0 1.0000000000
## GO:0006364  BP   198  0 1.0000000000
## GO:0043903  BP   198  0 1.0000000000
## GO:0009743  BP   198  0 1.0000000000
## GO:0044242  BP   199  0 1.0000000000
## GO:0071236  BP   199  0 1.0000000000
## GO:0030522  BP   199  0 1.0000000000
## GO:0001649  BP   199  0 1.0000000000
## GO:0050679  BP   199  0 1.0000000000
## GO:0072376  BP   199  0 1.0000000000
## GO:0070507  BP   199  0 1.0000000000
## GO:0019058  BP   199  0 1.0000000000
## GO:0032388  BP   200  0 1.0000000000
## GO:0008217  BP   200  0 1.0000000000
## GO:2000377  BP   200  0 1.0000000000
## GO:0008154  BP   201  0 1.0000000000
## GO:0048736  BP   201  0 1.0000000000
## GO:0060173  BP   201  0 1.0000000000
## GO:0043281  BP   201  0 1.0000000000
## GO:0002685  BP   201  0 1.0000000000
## GO:0000302  BP   201  0 1.0000000000
## GO:0098742  BP   202  0 1.0000000000
## GO:0050866  BP   203  0 1.0000000000
## GO:1903039  BP   203  0 1.0000000000
## GO:0031032  BP   204  0 1.0000000000
## GO:0007188  BP   204  0 1.0000000000
## GO:0007160  BP   204  0 1.0000000000
## GO:0071560  BP   204  0 1.0000000000
## GO:0016197  BP   204  0 1.0000000000
## GO:1904018  BP   204  0 1.0000000000
## GO:0042098  BP   205  0 1.0000000000
## GO:0010324  BP   205  0 1.0000000000
## GO:0051099  BP   205  0 1.0000000000
## GO:0043112  BP   205  0 1.0000000000
## GO:0002819  BP   205  0 1.0000000000
## GO:0034329  BP   206  0 1.0000000000
## GO:1902115  BP   206  0 1.0000000000
## GO:0060538  BP   206  0 1.0000000000
## GO:0015893  BP   207  0 1.0000000000
## GO:0006402  BP   207  0 1.0000000000
## GO:0055001  BP   207  0 1.0000000000
## GO:0097529  BP   207  0 1.0000000000
## GO:0007623  BP   208  0 1.0000000000
## GO:0071559  BP   208  0 1.0000000000
## GO:0019722  BP   209  0 1.0000000000
## GO:0017038  BP   209  0 1.0000000000
## GO:2000027  BP   209  0 1.0000000000
## GO:2001020  BP   209  0 1.0000000000
## GO:0097305  BP   209  0 1.0000000000
## GO:0071103  BP   210  0 1.0000000000
## GO:0019935  BP   210  0 1.0000000000
## GO:0046434  BP   210  0 1.0000000000
## GO:0051216  BP   211  0 1.0000000000
## GO:0060047  BP   211  0 1.0000000000
## GO:0048839  BP   211  0 1.0000000000
## GO:0030595  BP   211  0 1.0000000000
## GO:0010810  BP   211  0 1.0000000000
## GO:0006814  BP   211  0 1.0000000000
## GO:0035264  BP   212  0 1.0000000000
## GO:0032984  BP   212  0 1.0000000000
## GO:0046395  BP   213  0 1.0000000000
## GO:0009913  BP   213  0 1.0000000000
## GO:0016054  BP   213  0 1.0000000000
## GO:0050707  BP   213  0 1.0000000000
## GO:0048639  BP   214  0 1.0000000000
## GO:0002274  BP   215  0 1.0000000000
## GO:0035265  BP   215  0 1.0000000000
## GO:0071824  BP   215  0 1.0000000000
## GO:0032271  BP   215  0 1.0000000000
## GO:0007163  BP   216  0 1.0000000000
## GO:0048545  BP   216  0 1.0000000000
## GO:0043547  BP   217  0 1.0000000000
## GO:0042445  BP   218  0 1.0000000000
## GO:0030258  BP   218  0 1.0000000000
## GO:0070374  BP   218  0 1.0000000000
## GO:0051495  BP   218  0 1.0000000000
## GO:0007286  BP   218  0 1.0000000000
## GO:0030324  BP   219  0 1.0000000000
## GO:0006302  BP   220  0 1.0000000000
## GO:0031348  BP   220  0 1.0000000000
## GO:0043406  BP   220  0 1.0000000000
## GO:0003015  BP   221  0 1.0000000000
## GO:0061138  BP   221  0 1.0000000000
## GO:0006898  BP   222  0 1.0000000000
## GO:0030323  BP   222  0 1.0000000000
## GO:0031668  BP   223  0 1.0000000000
## GO:0090150  BP   223  0 1.0000000000
## GO:0019318  BP   223  0 1.0000000000
## GO:0009152  BP   223  0 1.0000000000
## GO:0022618  BP   223  0 1.0000000000
## GO:0099504  BP   223  0 1.0000000000
## GO:0060828  BP   224  0 1.0000000000
## GO:0071241  BP   225  0 1.0000000000
## GO:0021953  BP   225  0 1.0000000000
## GO:0006650  BP   225  0 1.0000000000
## GO:0032868  BP   225  0 1.0000000000
## GO:0010948  BP   226  0 1.0000000000
## GO:2000116  BP   226  0 1.0000000000
## GO:0051607  BP   227  0 1.0000000000
## GO:0048515  BP   227  0 1.0000000000
## GO:0051606  BP   228  0 1.0000000000
## GO:0046578  BP   228  0 1.0000000000
## GO:0097191  BP   229  0 1.0000000000
## GO:1901617  BP   229  0 1.0000000000
## GO:0016072  BP   230  0 1.0000000000
## GO:0009952  BP   231  0 1.0000000000
## GO:0060348  BP   231  0 1.0000000000
## GO:2001234  BP   231  0 1.0000000000
## GO:0043543  BP   231  0 1.0000000000
## GO:1903531  BP   232  0 1.0000000000
## GO:0045089  BP   232  0 1.0000000000
## GO:0032872  BP   232  0 1.0000000000
## GO:0009410  BP   232  0 1.0000000000
## GO:0009260  BP   232  0 1.0000000000
## GO:0007187  BP   233  0 1.0000000000
## GO:0045930  BP   233  0 1.0000000000
## GO:0034764  BP   233  0 1.0000000000
## GO:0030278  BP   233  0 1.0000000000
## GO:0090092  BP   233  0 1.0000000000
## GO:0006813  BP   234  0 1.0000000000
## GO:0070302  BP   234  0 1.0000000000
## GO:0032886  BP   235  0 1.0000000000
## GO:0071826  BP   236  0 1.0000000000
## GO:0006401  BP   238  0 1.0000000000
## GO:0045444  BP   238  0 1.0000000000
## GO:0006470  BP   238  0 1.0000000000
## GO:0010001  BP   239  0 1.0000000000
## GO:0015850  BP   239  0 1.0000000000
## GO:0016485  BP   239  0 1.0000000000
## GO:0090257  BP   239  0 1.0000000000
## GO:0046390  BP   239  0 1.0000000000
## GO:0001763  BP   240  0 1.0000000000
## GO:0046777  BP   240  0 1.0000000000
## GO:0006164  BP   240  0 1.0000000000
## GO:0043393  BP   240  0 1.0000000000
## GO:0043583  BP   242  0 1.0000000000
## GO:0010466  BP   242  0 1.0000000000
## GO:0022409  BP   242  0 1.0000000000
## GO:0006260  BP   243  0 1.0000000000
## GO:0071375  BP   244  0 1.0000000000
## GO:0050663  BP   244  0 1.0000000000
## GO:1901215  BP   244  0 1.0000000000
## GO:0051091  BP   244  0 1.0000000000
## GO:0017157  BP   244  0 1.0000000000
## GO:0060291  BP   245  0 1.0000000000
## GO:0051054  BP   245  0 1.0000000000
## GO:0072522  BP   245  0 1.0000000000
## GO:0099003  BP   246  0 1.0000000000
## GO:0046034  BP   247  0 1.0000000000
## GO:0007568  BP   247  0 1.0000000000
## GO:0002064  BP   247  0 1.0000000000
## GO:0010506  BP   247  0 1.0000000000
## GO:0032147  BP   248  0 1.0000000000
## GO:0090068  BP   249  0 1.0000000000
## GO:0031503  BP   249  0 1.0000000000
## GO:0021537  BP   249  0 1.0000000000
## GO:0002703  BP   250  0 1.0000000000
## GO:0051188  BP   251  0 1.0000000000
## GO:0060541  BP   251  0 1.0000000000
## GO:0002377  BP   252  0 1.0000000000
## GO:0005996  BP   253  0 1.0000000000
## GO:1903311  BP   253  0 1.0000000000
## GO:0015980  BP   254  0 1.0000000000
## GO:0007626  BP   254  0 1.0000000000
## GO:0032412  BP   254  0 1.0000000000
## GO:0034330  BP   255  0 1.0000000000
## GO:0110053  BP   255  0 1.0000000000
## GO:0000375  BP   256  0 1.0000000000
## GO:0000377  BP   256  0 1.0000000000
## GO:0000398  BP   256  0 1.0000000000
## GO:0006605  BP   256  0 1.0000000000
## GO:0045055  BP   256  0 1.0000000000
## GO:0140014  BP   257  0 1.0000000000
## GO:0051650  BP   258  0 1.0000000000
## GO:0098813  BP   258  0 1.0000000000
## GO:0016064  BP   259  0 1.0000000000
## GO:0001818  BP   259  0 1.0000000000
## GO:0002699  BP   259  0 1.0000000000
## GO:1901990  BP   259  0 1.0000000000
## GO:0051056  BP   259  0 1.0000000000
## GO:0016050  BP   259  0 1.0000000000
## GO:0048738  BP   260  0 1.0000000000
## GO:0016458  BP   260  0 1.0000000000
## GO:0006520  BP   261  0 1.0000000000
## GO:0051048  BP   261  0 1.0000000000
## GO:0022898  BP   262  0 1.0000000000
## GO:0048705  BP   262  0 1.0000000000
## GO:0019724  BP   263  0 1.0000000000
## GO:0048193  BP   263  0 1.0000000000
## GO:0050730  BP   263  0 1.0000000000
## GO:0072330  BP   264  0 1.0000000000
## GO:0043523  BP   264  0 1.0000000000
## GO:0042593  BP   265  0 1.0000000000
## GO:0033500  BP   266  0 1.0000000000
## GO:0007605  BP   266  0 1.0000000000
## GO:0008037  BP   267  0 1.0000000000
## GO:0034599  BP   268  0 1.0000000000
## GO:0010038  BP   269  0 1.0000000000
## GO:0009615  BP   270  0 1.0000000000
## GO:0030198  BP   271  0 1.0000000000
## GO:0090287  BP   271  0 1.0000000000
## GO:0034504  BP   272  0 1.0000000000
## GO:0009167  BP   272  0 1.0000000000
## GO:0009205  BP   272  0 1.0000000000
## GO:0051924  BP   272  0 1.0000000000
## GO:0032409  BP   272  0 1.0000000000
## GO:0009126  BP   273  0 1.0000000000
## GO:0051258  BP   274  0 1.0000000000
## GO:0007018  BP   275  0 1.0000000000
## GO:0031647  BP   275  0 1.0000000000
## GO:0009161  BP   276  0 1.0000000000
## GO:0009199  BP   276  0 1.0000000000
## GO:0051648  BP   277  0 1.0000000000
## GO:0071229  BP   278  0 1.0000000000
## GO:0060070  BP   279  0 1.0000000000
## GO:0071902  BP   279  0 1.0000000000
## GO:0072659  BP   279  0 1.0000000000
## GO:0006310  BP   280  0 1.0000000000
## GO:0070588  BP   280  0 1.0000000000
## GO:0003007  BP   280  0 1.0000000000
## GO:0001822  BP   281  0 1.0000000000
## GO:0009144  BP   281  0 1.0000000000
## GO:0016032  BP   283  0 1.0000000000
## GO:0045165  BP   284  0 1.0000000000
## GO:0044262  BP   284  0 1.0000000000
## GO:0007162  BP   284  0 1.0000000000
## GO:0040029  BP   284  0 1.0000000000
## GO:0071496  BP   285  0 1.0000000000
## GO:0061448  BP   285  0 1.0000000000
## GO:0009123  BP   285  0 1.0000000000
## GO:0009165  BP   285  0 1.0000000000
## GO:0043414  BP   286  0 1.0000000000
## GO:1901653  BP   287  0 1.0000000000
## GO:1903037  BP   287  0 1.0000000000
## GO:0072593  BP   288  0 1.0000000000
## GO:0051169  BP   289  0 1.0000000000
## GO:0006913  BP   289  0 1.0000000000
## GO:0045088  BP   289  0 1.0000000000
## GO:1901987  BP   290  0 1.0000000000
## GO:0009416  BP   290  0 1.0000000000
## GO:1901293  BP   291  0 1.0000000000
## GO:0048511  BP   291  0 1.0000000000
## GO:0071214  BP   292  0 1.0000000000
## GO:0104004  BP   292  0 1.0000000000
## GO:0097193  BP   292  0 1.0000000000
## GO:0007611  BP   292  0 1.0000000000
## GO:0030111  BP   292  0 1.0000000000
## GO:0051402  BP   293  0 1.0000000000
## GO:0030100  BP   293  0 1.0000000000
## GO:0043588  BP   293  0 1.0000000000
## GO:0016358  BP   294  0 1.0000000000
## GO:0042254  BP   294  0 1.0000000000
## GO:0043087  BP   295  0 1.0000000000
## GO:0050954  BP   296  0 1.0000000000
## GO:0006836  BP   297  0 1.0000000000
## GO:1903829  BP   297  0 1.0000000000
## GO:0009141  BP   298  0 1.0000000000
## GO:0060326  BP   299  0 1.0000000000
## GO:0060271  BP   299  0 1.0000000000
## GO:0051604  BP   300  0 1.0000000000
## GO:0046942  BP   301  0 1.0000000000
## GO:0090596  BP   301  0 1.0000000000
## GO:0008202  BP   301  0 1.0000000000
## GO:0015849  BP   302  0 1.0000000000
## GO:0072001  BP   302  0 1.0000000000
## GO:0050863  BP   304  0 1.0000000000
## GO:0046677  BP   305  0 1.0000000000
## GO:0016042  BP   306  0 1.0000000000
## GO:0070372  BP   306  0 1.0000000000
## GO:1990830  BP   311  0 1.0000000000
## GO:1990823  BP   311  0 1.0000000000
## GO:0044282  BP   311  0 1.0000000000
## GO:0032103  BP   312  0 1.0000000000
## GO:0006066  BP   314  0 1.0000000000
## GO:0051321  BP   314  0 1.0000000000
## GO:0043062  BP   315  0 1.0000000000
## GO:0051146  BP   316  0 1.0000000000
## GO:0007059  BP   317  0 1.0000000000
## GO:0021700  BP   317  0 1.0000000000
## GO:0048562  BP   318  0 1.0000000000
## GO:0018105  BP   318  0 1.0000000000
## GO:0007159  BP   319  0 1.0000000000
## GO:0018108  BP   319  0 1.0000000000
## GO:0051235  BP   322  0 1.0000000000
## GO:0018212  BP   322  0 1.0000000000
## GO:0043270  BP   322  0 1.0000000000
## GO:0070371  BP   323  0 1.0000000000
## GO:0042063  BP   323  0 1.0000000000
## GO:0043434  BP   324  0 1.0000000000
## GO:0046486  BP   325  0 1.0000000000
## GO:0050890  BP   326  0 1.0000000000
## GO:0044782  BP   327  0 1.0000000000
## GO:0008544  BP   329  0 1.0000000000
## GO:0006869  BP   330  0 1.0000000000
## GO:0006732  BP   331  0 1.0000000000
## GO:0006417  BP   332  0 1.0000000000
## GO:0006909  BP   336  0 1.0000000000
## GO:0052548  BP   337  0 1.0000000000
## GO:0032259  BP   338  0 1.0000000000
## GO:0019216  BP   338  0 1.0000000000
## GO:0031589  BP   339  0 1.0000000000
## GO:0007281  BP   339  0 1.0000000000
## GO:0050900  BP   340  0 1.0000000000
## GO:0019221  BP   341  0 1.0000000000
## GO:0050878  BP   342  0 1.0000000000
## GO:0034470  BP   343  0 1.0000000000
## GO:0018209  BP   343  0 1.0000000000
## GO:0044403  BP   343  0 1.0000000000
## GO:1990778  BP   344  0 1.0000000000
## GO:0032956  BP   344  0 1.0000000000
## GO:0009636  BP   344  0 1.0000000000
## GO:0018205  BP   345  0 1.0000000000
## GO:0002440  BP   345  0 1.0000000000
## GO:0001655  BP   346  0 1.0000000000
## GO:0043010  BP   348  0 1.0000000000
## GO:0006644  BP   348  0 1.0000000000
## GO:1902903  BP   348  0 1.0000000000
## GO:0045787  BP   349  0 1.0000000000
## GO:1904062  BP   349  0 1.0000000000
## GO:0050806  BP   350  0 1.0000000000
## GO:0050727  BP   354  0 1.0000000000
## GO:0006959  BP   355  0 1.0000000000
## GO:0044772  BP   356  0 1.0000000000
## GO:0033044  BP   356  0 1.0000000000
## GO:0022411  BP   357  0 1.0000000000
## GO:0007178  BP   357  0 1.0000000000
## GO:0050678  BP   358  0 1.0000000000
## GO:0062012  BP   359  0 1.0000000000
## GO:0042060  BP   360  0 1.0000000000
## GO:0046394  BP   362  0 1.0000000000
## GO:0010976  BP   362  0 1.0000000000
## GO:0016053  BP   363  0 1.0000000000
## GO:0008380  BP   364  0 1.0000000000
## GO:0001101  BP   364  0 1.0000000000
## GO:0016311  BP   366  0 1.0000000000
## GO:1901214  BP   368  0 1.0000000000
## GO:0010876  BP   370  0 1.0000000000
## GO:0031349  BP   370  0 1.0000000000
## GO:0031667  BP   371  0 1.0000000000
## GO:0001505  BP   372  0 1.0000000000
## GO:0003002  BP   373  0 1.0000000000
## GO:0072594  BP   374  0 1.0000000000
## GO:0006887  BP   375  0 1.0000000000
## GO:0006631  BP   376  0 1.0000000000
## GO:0006091  BP   379  0 1.0000000000
## GO:0035690  BP   380  0 1.0000000000
## GO:0060562  BP   380  0 1.0000000000
## GO:0001503  BP   381  0 1.0000000000
## GO:0034248  BP   382  0 1.0000000000
## GO:0010256  BP   384  0 1.0000000000
## GO:1901652  BP   384  0 1.0000000000
## GO:0006914  BP   386  0 1.0000000000
## GO:0030900  BP   386  0 1.0000000000
## GO:0061919  BP   386  0 1.0000000000
## GO:0032970  BP   393  0 1.0000000000
## GO:0044770  BP   394  0 1.0000000000
## GO:0042692  BP   395  0 1.0000000000
## GO:0022407  BP   395  0 1.0000000000
## GO:0009314  BP   395  0 1.0000000000
## GO:0001654  BP   397  0 1.0000000000
## GO:0007015  BP   400  0 1.0000000000
## GO:0150063  BP   400  0 1.0000000000
## GO:0009991  BP   401  0 1.0000000000
## GO:0051346  BP   402  0 1.0000000000
## GO:0010639  BP   403  0 1.0000000000
## GO:0051098  BP   403  0 1.0000000000
## GO:0048880  BP   403  0 1.0000000000
## GO:0070997  BP   405  0 1.0000000000
## GO:0044419  BP   408  0 1.0000000000
## GO:0000280  BP   409  0 1.0000000000
## GO:0045785  BP   411  0 1.0000000000
## GO:0052547  BP   411  0 1.0000000000
## GO:0007265  BP   414  0 1.0000000000
## GO:0015711  BP   415  0 1.0000000000
## GO:0002697  BP   420  0 1.0000000000
## GO:0010959  BP   421  0 1.0000000000
## GO:0006816  BP   423  0 1.0000000000
## GO:0009150  BP   423  0 1.0000000000
## GO:0007517  BP   424  0 1.0000000000
## GO:0050673  BP   425  0 1.0000000000
## GO:0002449  BP   425  0 1.0000000000
## GO:0034655  BP   425  0 1.0000000000
## GO:0016570  BP   427  0 1.0000000000
## GO:0019932  BP   427  0 1.0000000000
## GO:0016055  BP   428  0 1.0000000000
## GO:0042742  BP   428  0 1.0000000000
## GO:0198738  BP   430  0 1.0000000000
## GO:0009259  BP   433  0 1.0000000000
## GO:0022412  BP   436  0 1.0000000000
## GO:0045860  BP   438  0 1.0000000000
## GO:0042391  BP   439  0 1.0000000000
## GO:0022613  BP   439  0 1.0000000000
## GO:0051052  BP   440  0 1.0000000000
## GO:0016569  BP   444  0 1.0000000000
## GO:0006163  BP   447  0 1.0000000000
## GO:0006397  BP   448  0 1.0000000000
## GO:0001819  BP   449  0 1.0000000000
## GO:0014706  BP   449  0 1.0000000000
## GO:0019693  BP   450  0 1.0000000000
## GO:0045786  BP   452  0 1.0000000000
## GO:0015672  BP   455  0 1.0000000000
## GO:0048285  BP   456  0 1.0000000000
## GO:0045666  BP   461  0 1.0000000000
## GO:0044270  BP   463  0 1.0000000000
## GO:0006281  BP   464  0 1.0000000000
## GO:0031346  BP   466  0 1.0000000000
## GO:0048732  BP   467  0 1.0000000000
## GO:0034660  BP   467  0 1.0000000000
## GO:0007389  BP   468  0 1.0000000000
## GO:0046700  BP   469  0 1.0000000000
## GO:0070838  BP   472  0 1.0000000000
## GO:0060537  BP   472  0 1.0000000000
## GO:0051656  BP   473  0 1.0000000000
## GO:0072511  BP   475  0 1.0000000000
## GO:0033674  BP   476  0 1.0000000000
## GO:0034765  BP   478  0 1.0000000000
## GO:1901615  BP   481  0 1.0000000000
## GO:0071407  BP   482  0 1.0000000000
## GO:0019439  BP   483  0 1.0000000000
## GO:0007264  BP   485  0 1.0000000000
## GO:0120031  BP   488  0 1.0000000000
## GO:0072521  BP   490  0 1.0000000000
## GO:0048568  BP   493  0 1.0000000000
## GO:0007346  BP   493  0 1.0000000000
## GO:0010035  BP   493  0 1.0000000000
## GO:0009611  BP   495  0 1.0000000000
## GO:0030031  BP   501  0 1.0000000000
## GO:0090407  BP   503  0 1.0000000000
## GO:0010608  BP   504  0 1.0000000000
## GO:0002443  BP   507  0 1.0000000000
## GO:0051186  BP   509  0 1.0000000000
## GO:0051345  BP   510  0 1.0000000000
## GO:1901361  BP   513  0 1.0000000000
## GO:0032870  BP   518  0 1.0000000000
## GO:0043410  BP   519  0 1.0000000000
## GO:1905114  BP   521  0 1.0000000000
## GO:1902532  BP   527  0 1.0000000000
## GO:0001501  BP   530  0 1.0000000000
## GO:0001701  BP   538  0 1.0000000000
## GO:0051493  BP   538  0 1.0000000000
## GO:0072657  BP   543  0 1.0000000000
## GO:0008610  BP   545  0 1.0000000000
## GO:0005975  BP   546  0 1.0000000000
## GO:0006820  BP   549  0 1.0000000000
## GO:0002009  BP   553  0 1.0000000000
## GO:0007169  BP   553  0 1.0000000000
## GO:0009117  BP   555  0 1.0000000000
## GO:0006753  BP   564  0 1.0000000000
## GO:0071417  BP   568  0 1.0000000000
## GO:0000226  BP   568  0 1.0000000000
## GO:0034762  BP   568  0 1.0000000000
## GO:0060627  BP   568  0 1.0000000000
## GO:0032787  BP   570  0 1.0000000000
## GO:0051301  BP   574  0 1.0000000000
## GO:0050769  BP   580  0 1.0000000000
## GO:0010564  BP   585  0 1.0000000000
## GO:0051640  BP   596  0 1.0000000000
## GO:0071363  BP   602  0 1.0000000000
## GO:0007423  BP   606  0 1.0000000000
## GO:0098662  BP   613  0 1.0000000000
## GO:0006412  BP   614  0 1.0000000000
## GO:0070848  BP   615  0 1.0000000000
## GO:0030855  BP   626  0 1.0000000000
## GO:0007507  BP   628  0 1.0000000000
## GO:0055086  BP   630  0 1.0000000000
## GO:1901699  BP   631  0 1.0000000000
## GO:0007420  BP   634  0 1.0000000000
## GO:0043043  BP   636  0 1.0000000000
## GO:0048598  BP   637  0 1.0000000000
## GO:0016071  BP   637  0 1.0000000000
## GO:0031347  BP   640  0 1.0000000000
## GO:1903047  BP   644  0 1.0000000000
## GO:0044283  BP   650  0 1.0000000000
## GO:0098660  BP   656  0 1.0000000000
## GO:0030036  BP   663  0 1.0000000000
## GO:0098542  BP   667  0 1.0000000000
## GO:0048729  BP   677  0 1.0000000000
## GO:0001817  BP   679  0 1.0000000000
## GO:0097435  BP   681  0 1.0000000000
## GO:0030155  BP   686  0 1.0000000000
## GO:0060322  BP   688  0 1.0000000000
## GO:0098655  BP   690  0 1.0000000000
## GO:0006954  BP   691  0 1.0000000000
## GO:0061061  BP   701  0 1.0000000000
## GO:0098609  BP   720  0 1.0000000000
## GO:0017144  BP   727  0 1.0000000000
## GO:0007610  BP   728  0 1.0000000000
## GO:0043269  BP   732  0 1.0000000000
## GO:0014070  BP   734  0 1.0000000000
## GO:0006325  BP   735  0 1.0000000000
## GO:0006974  BP   740  0 1.0000000000
## GO:0043604  BP   741  0 1.0000000000
## GO:0006897  BP   741  0 1.0000000000
## GO:0030029  BP   746  0 1.0000000000
## GO:0001816  BP   755  0 1.0000000000
## GO:0007017  BP   759  0 1.0000000000
## GO:0033365  BP   774  0 1.0000000000
## GO:0061024  BP   780  0 1.0000000000
## GO:0006518  BP   788  0 1.0000000000
## GO:0070925  BP   796  0 1.0000000000
## GO:0000278  BP   799  0 1.0000000000
## GO:0006396  BP   822  0 1.0000000000
## GO:0043009  BP   824  0 1.0000000000
## GO:0030001  BP   839  0 1.0000000000
## GO:0009792  BP   841  0 1.0000000000
## GO:0000122  BP   857  0 1.0000000000
## GO:0098657  BP   872  0 1.0000000000
## GO:0055114  BP   872  0 1.0000000000
## GO:0034220  BP   878  0 1.0000000000
## GO:0007417  BP   888  0 1.0000000000
## GO:0007167  BP   890  0 1.0000000000
## GO:0019752  BP   902  0 1.0000000000
## GO:0071345  BP   907  0 1.0000000000
## GO:0006259  BP   915  0 1.0000000000
## GO:0044255  BP   932  0 1.0000000000
## GO:0019637  BP   954  0 1.0000000000
## GO:0051726  BP   955  0 1.0000000000
## GO:0051336  BP   985  0 1.0000000000
## GO:0001934  BP   989  0 1.0000000000
## GO:0034622  BP   996  0 1.0000000000
## GO:0034097  BP  1004  0 1.0000000000
## GO:1902533  BP  1005  0 1.0000000000
## GO:0043603  BP  1008  0 1.0000000000
## GO:0042327  BP  1043  0 1.0000000000
## GO:0009887  BP  1090  0 1.0000000000
## GO:0006812  BP  1101  0 1.0000000000
## GO:0051276  BP  1103  0 1.0000000000
## GO:0022402  BP  1108  0 1.0000000000
## GO:0045937  BP  1112  0 1.0000000000
## GO:0010562  BP  1112  0 1.0000000000
## GO:0007608  BP  1138  0 1.0000000000
## GO:0060429  BP  1172  0 1.0000000000
## GO:0071495  BP  1223  0 1.0000000000
## GO:0045944  BP  1226  0 1.0000000000
## GO:0009790  BP  1231  0 1.0000000000
## GO:0007606  BP  1236  0 1.0000000000
## GO:0006629  BP  1258  0 1.0000000000
## GO:0007155  BP  1298  0 1.0000000000
## GO:0007010  BP  1305  0 1.0000000000
## GO:0022610  BP  1310  0 1.0000000000
## GO:0016192  BP  1501  0 1.0000000000
## GO:0006811  BP  1565  0 1.0000000000
## GO:0007049  BP  1639  0 1.0000000000
## GO:0007600  BP  1791  0 1.0000000000
## GO:0007186  BP  1921  0 1.0000000000
## GO:0006357  BP  1993  0 1.0000000000
## GO:0006366  BP  2049  0 1.0000000000
## GO:0050877  BP  2299  0 1.0000000000

We can additionally extract the top N genes per cluster directly (with filtering) using the following function:

#top_10_genes_per_cluster <- Platypus::GEX_topN_DE_genes_per_cluster(GEX_cluster_genes.output = gene_expression_cluster, n.genes = 10, by_FC = T)
#head(top_10_genes_per_cluster)

We can also perform a Gene Set Enrichment Analysis (GSEA) using the GEX_GSEA function. For this, the user needs to provide the path to a gmt file containing the gene sets, which can be downloaded for example from MSigDB. For instance we can perform GSEA for cluster0 and look at the most significant pathways.

#gsea_covid <- Platypus::GEX_GSEA(GEX.cluster.genes.output = gene_expression_cluster, MT.Rb.filter = T, path_to_pathways = "~/Downloads/c7.all.v7.2.symbols.gmt")

We can also extract and test for differentially expressed genes between the two samples (or between other subgroups). This can be done using the GEX_DEgenes_persample function.

This function allows us to also create a heatmap displaying the top most up or down regulated genes for each cluster based on log fold change (avg_logFC) or p value (adj_p_value). Additionally, the user can determine the number of up and downreulated genes to be displayed for each sample. In this case the output returns a list where the first element contains the dataframe with the differntial expression information and the second element contains the heatmap displaying the most regulated genes.

DE_genes_per_sample <- Platypus::GEX_DEgenes_persample(automate.GEX=covid_gex[[1]],min.pct = .25,sample1 = "1",sample2 = "2",return.plot = TRUE,up.genes = 10,down.genes = 10,logFC = F)

head(DE_genes_per_sample) 
## [[1]]
##                  p_val  avg_logFC pct.1 pct.2     p_val_adj   SYMBOL
## NFKBIA    0.000000e+00  0.8996877 0.725 0.587  0.000000e+00   NFKBIA
## BTG1      0.000000e+00  0.6064070 0.845 0.720  0.000000e+00     BTG1
## HLA-C     0.000000e+00 -0.3396652 0.967 0.983  0.000000e+00    HLA-C
## HLA-A     0.000000e+00 -0.5445422 0.957 0.984  0.000000e+00    HLA-A
## PCBP2    2.896477e-255  0.3700177 0.920 0.885 9.522746e-251    PCBP2
## FAM118A  3.057245e-222 -0.4947610 0.069 0.278 1.005131e-217  FAM118A
## TSC22D3  4.734327e-201 -0.3714507 0.861 0.960 1.556505e-196  TSC22D3
## CXCR4    1.087261e-181 -0.4931392 0.617 0.802 3.574587e-177    CXCR4
## PRELID1  5.505342e-174  0.4786890 0.276 0.089 1.809991e-169  PRELID1
## KLF6     4.646266e-154 -0.5034534 0.809 0.905 1.527553e-149     KLF6
## VIM      2.654338e-151 -0.3947177 0.846 0.917 8.726668e-147      VIM
## SARAF    9.378011e-144 -0.2957595 0.866 0.939 3.083209e-139    SARAF
## HSPA8    1.202391e-132 -0.2803840 0.870 0.922 3.953102e-128    HSPA8
## TNFAIP3  1.632729e-132 -0.4817316 0.517 0.716 5.367924e-128  TNFAIP3
## IL7R     1.638084e-132 -0.4878520 0.503 0.676 5.385529e-128     IL7R
## ANXA1    3.943680e-122 -0.5563983 0.314 0.504 1.296564e-117    ANXA1
## IL32     1.620191e-119 -0.4171539 0.508 0.680 5.326701e-115     IL32
## CD99     8.710685e-117 -0.3235645 0.536 0.724 2.863812e-112     CD99
## TXNIP    1.383117e-115 -0.3258373 0.772 0.869 4.547273e-111    TXNIP
## PBXIP1    1.915240e-96 -0.3479170 0.305 0.487  6.296736e-92   PBXIP1
## SRGN      2.518130e-96 -0.3294131 0.411 0.598  8.278855e-92     SRGN
## RGS1      4.612443e-92 -0.3784394 0.139 0.286  1.516433e-87     RGS1
## SPOCK2    3.276535e-90 -0.3210727 0.343 0.529  1.077226e-85   SPOCK2
## HSPA5     1.565771e-84 -0.2923971 0.542 0.703  5.147786e-80    HSPA5
## IL10RA    9.456229e-83 -0.3172981 0.240 0.406  3.108924e-78   IL10RA
## S100A4    5.009801e-82 -0.4488849 0.496 0.642  1.647072e-77   S100A4
## DNAJB1    1.138277e-79 -0.3009583 0.594 0.740  3.742313e-75   DNAJB1
## JUN       1.786361e-77 -0.3004425 0.883 0.960  5.873020e-73      JUN
## CTSW      1.768831e-76 -0.3909337 0.171 0.307  5.815384e-72     CTSW
## ZFP36     1.601689e-74 -0.3786965 0.826 0.893  5.265873e-70    ZFP36
## FYB1      9.123657e-74 -0.2952076 0.487 0.635  2.999585e-69     FYB1
## CD3G      9.124841e-74 -0.2724506 0.317 0.479  2.999974e-69     CD3G
## LMNA      2.194227e-72 -0.4785821 0.145 0.272  7.213961e-68     LMNA
## HLA-DRB1  3.332024e-72  0.6418958 0.441 0.334  1.095470e-67 HLA-DRB1
## AQP3      6.486072e-72 -0.3340246 0.245 0.393  2.132426e-67     AQP3
## HLA-DPB1  1.466154e-70  0.4585405 0.491 0.361  4.820273e-66 HLA-DPB1
## ITM2A     1.804191e-69 -0.3458677 0.220 0.359  5.931639e-65    ITM2A
## GATA3     3.254616e-67 -0.3012522 0.166 0.298  1.070020e-62    GATA3
## HLA-DPA1  1.424199e-66  0.4507256 0.474 0.347  4.682339e-62 HLA-DPA1
## SELPLG    1.221749e-64 -0.2507197 0.251 0.397  4.016743e-60   SELPLG
## S100A10   2.373305e-64 -0.2958594 0.545 0.681  7.802715e-60  S100A10
## ANXA2     3.635696e-62 -0.2554230 0.138 0.255  1.195308e-57    ANXA2
## ARL4C     1.189477e-61 -0.2679551 0.255 0.400  3.910645e-57    ARL4C
## PTGER4    2.116696e-61 -0.2638042 0.360 0.512  6.959063e-57   PTGER4
## IDS       9.782014e-60 -0.3600471 0.393 0.549  3.216033e-55      IDS
## ADGRE5    1.056441e-58 -0.3028844 0.289 0.434  3.473262e-54   ADGRE5
## TOB1      2.998277e-57  0.3662033 0.336 0.231  9.857434e-53     TOB1
## MCUB      7.881534e-56  0.3110650 0.348 0.242  2.591212e-51     MCUB
## PIK3IP1   1.889160e-55 -0.2629484 0.373 0.515  6.210993e-51  PIK3IP1
## RNF125    6.600567e-53 -0.2576393 0.146 0.257  2.170068e-48   RNF125
## KHDRBS1   9.153790e-52  0.2795679 0.272 0.172  3.009491e-47  KHDRBS1
## GPR183    5.455880e-51 -0.2739015 0.257 0.382  1.793730e-46   GPR183
## RGS2      6.654934e-51 -0.2618680 0.176 0.292  2.187943e-46     RGS2
## PNPLA2    1.307596e-49  0.2736002 0.323 0.222  4.298983e-45   PNPLA2
## SNHG7     1.977701e-46  0.2853047 0.313 0.217  6.502087e-42    SNHG7
## AHNAK     4.844469e-44 -0.3048118 0.343 0.465  1.592716e-39    AHNAK
## CD79A     7.110747e-36  0.2521323 0.428 0.321  2.337800e-31    CD79A
## CD79B     1.811498e-32  0.3009347 0.388 0.303  5.955661e-28    CD79B
## NCF1      4.958511e-30  0.3033667 0.428 0.361  1.630210e-25     NCF1
## CD74      8.248717e-20  0.3449176 0.844 0.870  2.711931e-15     CD74
## HLA-DRB5  1.895633e-03 -0.2511181 0.418 0.353  1.000000e+00 HLA-DRB5
## 
## [[2]]
nrow(DE_genes_per_sample[[1]]) ##71 rows 
## [1] 61

3. VDJ Repertoire anaylsis

3.1 Reading in the clonotype data

Now we can analyze the VDJ repertoire data before integrating GEX libraries. This may be useful if only VDJ libraries have been sequenced without the accompanying gene expression data. We first start by reading in the clonotypes based on the default 10x cellranger clonotyping strategy and augmenting the amount of clonal information in the dataframe containing the clonotype information. The first step is to use the VDJ_analyze function on the directory of the outputs from cellranger vdj. The larger BAM files can be removed to save space as the current pipeline does not require these files.

## [1] "1 from 2 repertoires"
## ================================================================================[1] "2 from 2 repertoires"
## ================================================================================
## [1] 2
## [1] "1 from 2 repertoires"
## ================================================================================[1] "2 from 2 repertoires"
## ================================================================================

The output from VDJ_analyze contains various information, including which barcodes make up the clonal family, the nt_clone_ids incase the clonotyping method is changed using the VDJ_clonotype function. Furthermore, the majority germline gene per clonal family is extracted from the contigs file.

##  [1] "clonotype_id"   "frequency"      "proportion"     "cdr3s_aa"      
##  [5] "cdr3s_nt"       "HC_count"       "IGK_count"      "IGL_count"     
##  [9] "LC_count"       "CDRH3_aa"       "CDRL3_aa"       "CDRH3_nt"      
## [13] "CDRL3_nt"       "CDR3_aa_pasted" "CDR3_nt_pasted" "HC_cgene"      
## [17] "HC_vgene"       "HC_dgene"       "HC_jgene"       "LC_cgene"      
## [21] "LC_vgene"       "LC_jgene"       "barcodes"       "nt_clone_ids"

3.2 Changing the clonotype strategy

Often paired nucleotide CDRH3 and CDRL3 clonotype may not be the best strategy given somatic hypermutation may occur in the CDR3 region. Therefore there could be highly similar clones that likely bind the same antigen that are officially part of different clonal families. To address this we have added a function that allows for various heuristic clonoptying strategies. This involves clonotpying by identical amino acid CDRH3 + CDRL3 seuqence, identical germline usage, or seqeunce homology requirements. This will then update the original clonotyping object from VDJ_analyze by updating the clonotype_id column with the new amino acid acid (or other strategy) used for clonotyping. Similarly, the new clonal family determinant can be found in the new_unique_clone. In the case below, the new_unique_clone will contain the amino acid seqeunce of the heavy chain and light chain pasted together. If multiple nucleotide clones are merged by changing the clonotyping strategy, their barcodes can be found in the barcodse column.

In the example that follows, we use VDJ_clonotype to group cells into clones based on identical CDRH3 + CDRL3 amino acid sequence. We will compare this to the case in which we group B cells by using the same germline genes (both heavy chain and light chain)

## Loading required package: stringdist
## [1] 2
##  [1] "clonotype_id"     "frequency"        "proportion"       "cdr3s_aa"        
##  [5] "cdr3s_nt"         "HC_count"         "IGK_count"        "IGL_count"       
##  [9] "LC_count"         "CDRH3_aa"         "CDRL3_aa"         "CDRH3_nt"        
## [13] "CDRL3_nt"         "CDR3_aa_pasted"   "CDR3_nt_pasted"   "HC_cgene"        
## [17] "HC_vgene"         "HC_dgene"         "HC_jgene"         "LC_cgene"        
## [21] "LC_vgene"         "LC_jgene"         "barcodes"         "nt_clone_ids"    
## [25] "new_unique_clone" "nt_clone_cdrh3s"  "nt_clone_cdrl3s"
## [1] 2296
## [1] 1956

We can see that the clonotype_id column now contains the new ids based on this clonotyping strategy. We can always recover the nucleotide ids by looking at the nt_clones_ids.

3.3 Getting clonal information at the level of the single cell

So far the functions have been at the clonal level, thereby ignoring cell-specific features that may vary across a clonal family, such as isotypes, sequence variants, etc. The VDJ_per_clone function will provide this information by returning a nested list in which the outer list element corresponds to the repertoire (e.g. list[[1]] is the first directory given as input to the VDJ_analyze function). The inner list element corresponds to a dataframe for each clone. Within this dataframe it is possible to extract information such as the germline gene usage for heavy and light chains (e.g. HC_Vgene is the V gene of the IGH for antibodies or the V gene of the TRB for T cells). Furthermore, one can extract the full sequence of the heavy and light chain for each cell barcode based on the output from cellranger. One issue with this is that the sequence returned from the fasta files from cellranger extend beyond the FR1 to FR4 region (e.g. constant region, signal peptide), which may be problematic for downstream experimental validation/expression. The same occurs for the germline sequence - again as determined by cellranger. The germline information can be found in the full_HC_germline and full_LC_germline columns in the inner list elements. To obtain the B/TCR sequence that is clonable, one can either proceed with the call_MIXCR function or export the sequences and use a different alignment tool.

## [1] "No contig.list supplied. Assuming contigs should be extracted from working directory"
## [1] "Reading in output files"
## [1] "1 from 2 repertoires"
## ================================================================================[1] "2 from 2 repertoires"
## ================================================================================
## [1] "There are 2298 unique nucleotide B cell clones in patient1"
## [1] "There are 101 unique B cells in the most abundant clone in patient1"
## [1] "There are 69 unique B cells in the most abundant clone in patient2"
##  [1] "barcode"             "clonotype_id"        "isotype_hc"         
##  [4] "isotype_lc"          "HC_vgene"            "HC_jgene"           
##  [7] "LC_vgene"            "LC_jgene"            "full_HC_sequence"   
## [10] "full_LC_sequence"    "full_HC_germline"    "full_LC_germline"   
## [13] "trimmed_LC_sequence" "trimmed_HC_sequence" "trimmed_HC_germline"
## [16] "trimmed_LC_germline" "umi_count"           "contig_id_hc"       
## [19] "contig_id_lc"
## [1] "No contig.list supplied. Assuming contigs should be extracted from working directory"
## [1] "Reading in output files"
## [1] "1 from 2 repertoires"
## ================================================================================[1] "2 from 2 repertoires"
## ================================================================================

3.4 Extracting full-length sequences from the VDJRegion

To quantify the number of somatic variants or to extract full-length sequences for expression, it is often useful to have the nucleotide sequence from framework region 1 (FR1) to framework region 4 (FR4). Using the call_MIXCR function, the full-length VDJRegion sequences can be added to the clonal information and easily extracted thereafter. This function works on UNIX/mac and furthermore requires that mixcr is already downloaded locally (and license agreement . One just needs to supply the directory to the executable in the call_MIXCR function as below. Either “mmu” or “hsa” for mouse and human, respectively. Again the format is similar to the input, in that the outer list corresponds to the individual repertoire and the inner list is a dataframe with various information, including the full-length VDJ sequences (e.g. VDJ.AA.LC and VDJ.AA.HC for the light and heavy chain amino acid sequence). You will notice that the germline sequence is still very long (e.g. in the example below looking at the “full_HC_germline” length is over 600 nucleotides). this will be filled in using the separate function VDJ_extract_germline.

## [1] 2298
##  [1] "barcode"             "clonotype_id"        "isotype_hc"         
##  [4] "isotype_lc"          "HC_vgene"            "HC_jgene"           
##  [7] "LC_vgene"            "LC_jgene"            "full_HC_sequence"   
## [10] "full_LC_sequence"    "full_HC_germline"    "full_LC_germline"   
## [13] "trimmed_LC_sequence" "trimmed_HC_sequence" "trimmed_HC_germline"
## [16] "trimmed_LC_germline" "umi_count"           "contig_id_hc"       
## [19] "contig_id_lc"        "FRH1.NT"             "FRH2.NT"            
## [22] "FRH3.NT"             "FRH4.NT"             "CDRH1.NT"           
## [25] "CDRH2.NT"            "CDRH3.NT"            "FRL1.NT"            
## [28] "FRL2.NT"             "FRL3.NT"             "FRL4.NT"            
## [31] "CDRL1.NT"            "CDRL2.NT"            "CDRL3.NT"           
## [34] "FRH1.AA"             "FRH2.AA"             "FRH3.AA"            
## [37] "FRH4.AA"             "CDRH1.AA"            "CDRH2.AA"           
## [40] "CDRH3.AA"            "FRL1.AA"             "FRL2.AA"            
## [43] "FRL3.AA"             "FRL4.AA"             "CDRL1.AA"           
## [46] "CDRL2.AA"            "CDRL3.AA"            "bestVHlignment"     
## [49] "bestVLAlignment"     "bestJHAlignment"     "bestJLAlignment"    
## [52] "isotype"             "AA.Jmutations.hc"    "AA.Jmutations.lc"   
## [55] "NT.Jmutations.hc"    "NT.Jmutations.lc"    "AA.Vmutations.hc"   
## [58] "AA.Vmutations.lc"    "NT.Vmutations.hc"    "NT.Vmutations.lc"   
## [61] "bestVHAlignment"     "VDJ.AA.HC"           "VDJ.AA.LC"          
## [64] "VDJ.NT.HC"           "VDJ.NT.LC"           "VDJ.NT.HC.LC"       
## [67] "VDJ.AA.HC.LC"
## [1] 126
## [1] 682

3.5 Extracting full-length germline sequence corresponding to the VDJRegion

Extracting the germline column can be accomplished using the VDJ_extract_germline, which takes the germline sequence as determined by cellranger. The output contains all the germline sequences in dataframe format for a given repertoire. The original clonotype identifier can be found in the descrR1 column, as seen below.

##  [1] "targetSequences"    "targetQualities"    "allVHitsWithScore" 
##  [4] "allDHitsWithScore"  "allJHitsWithScore"  "allCHitsWithScore" 
##  [7] "allVAlignments"     "allDAlignments"     "allJAlignments"    
## [10] "allCAlignments"     "nSeqFR1"            "minQualFR1"        
## [13] "nSeqCDR1"           "minQualCDR1"        "nSeqFR2"           
## [16] "minQualFR2"         "nSeqCDR2"           "minQualCDR2"       
## [19] "nSeqFR3"            "minQualFR3"         "nSeqCDR3"          
## [22] "minQualCDR3"        "nSeqFR4"            "minQualFR4"        
## [25] "aaSeqFR1"           "aaSeqCDR1"          "aaSeqFR2"          
## [28] "aaSeqCDR2"          "aaSeqFR3"           "aaSeqCDR3"         
## [31] "aaSeqFR4"           "refPoints"          "descrsR1"          
## [34] "bestVAlignment"     "bestDAlignment"     "bestJAlignment"    
## [37] "aaMutationsVRegion" "aaMutationsJRegion" "nMutationsVRegion" 
## [40] "nMutationsJRegion"  "VDJ.NT.HC"          "VDJ.AA.HC"         
## [43] "VDJ.NT.LC"          "VDJ.AA.LC"          "VDJ.AA.HC.LC"      
## [46] "VDJ.NT.HC.LC"
## [1] 2298
## [1] 1472
## [1] "CAREL_FDYW"
## [1] "clonotype4"
## [1] 262
## [1] 131
## [1] 131

3.6 Extracting trimmmed VDJ region sequence and germline

The function VDJ_per_clone additionally supplies trimmed VDJ sequences and the corresponding trimmed germline sequences in the case that the all_contig_annotations.json file is available. This can be useful to compute the somatic hypermutation rate only on the VDJ region for single cells in the clonotype. The columns named “full_seq_”, “sequence_”, and “trimmed_ref_” represent the sequence returned from the fasta files from cellranger, the sequence trimmed at the VDJ region, and the germline sequence trimmed at the VDJ region (followed by HC for Heavy Chain and LC for Light Chain). This data does not require MiXCR alignment, however, it is not necessarily starting at Framework1 so please use with caution if future plans involve cloning BCR/TCR. We have commented this out as the test data did not include the JSON file at the time.

3.7 Organizing full-length sequences into clonal lineages easily exportable for phylogenetics.

After extracting the germline sequences and the full-length VDJRegion sequences, we can combine this information and group the sequences into clonal lineages that can individually be exported for downstream phylogenetics or into the VDJ_tree function within Platypus. The output list is similar to the output of other VDJ functions, in which the outer list element corresponds to the repertoire and the inner list element corresponds to the individual clone/clonal families. Here the heavy chain and light chain have been pasted together but in case one wants to separate them, the information can be found in the output of the VDJ_extract_germline function. For example, above the output of the VDJ_extract_germline function was extracted_covid_germline[[1]][[1]]$VDJ.AA.HC.LC[2]. In this sequence there is a "_" at the end of the heavy chain and light chain sequences. So one can split the strings for this and use this sequence to create the phylogenetic trees.

## [1] "Seq"  "Name"
## [1] "QVQLVESGGGLVKPVGSLRLSCEASGFIFSDYDMSWIRQAPGKGLEWVSYISSTDTTPYYVDSVKGRFTISRDNAKNSLFLQMNSLRVEDTAVYYCARVNVQPAFGTFNRRFDYWGQGTLVNVSSDIQMTQSPSSLSASVGDRVTITCQASQDIRNSLNWYQQKAGKAPRLLIYAASNLETGVPSRFGGSGSETYYTFTISSLQPEDVATYYCQQYGSLPWTFGQGTRLYIR"
## [1] "clonotype3_1_IGHA1_AACCATGAGTGGAGTC-1"
## [1] "clonotype7_3_IGHA1_AGTGAGGTCGAGAACG-1"
## [1] "clonotype7_3_IGHA1_TCTTCGGGTTGACGTT-1"
## [2] "clonotype7_3_IGHA1_TCTTTCCGTGATGTGG-1"
## [3] "clonotype7_3_IGHA1_TGACTTTTCCCTGACT-1"
## [4] "clonotype7_3_IGHA1_TGGTTAGCATGGAATA-1"
## [5] "clonotype7_3_IGHA1_TTTGTCATCGCCATAA-1"
## [6] "germline"

3.8 Neighbor-joining phylogenetic trees

The output of the VDJ_clonal_lineage function can be used as input to the VDJ_tree to produce quick, neighbor-joining phylogenetic trees. It is important that the VDJRegion is considered (or that the sequences from 10x have been trimmed) as this function does not involve a multiple string alignment - instead it creates a distance matrix from all sequences. The min number of unique sequences can be specified (e.g. if there are 50 cells in a clonl lineage, but only one unique antibody sequence, this tree will not be produced). Similarly the number of max sequences can be specified, which will cause then invoke random sampling. Plotting the first tree we can see the that there is one variant (named Seq_1) that has 90 cells (seen by the Freq_90) and it is very close to the germline (Seq_6_Freq_1). We know it is the germline because it is the highest sequence variant and it is set as the root.

## Loading required package: ape
## 
## Attaching package: 'ape'
## The following object is masked from 'package:Biostrings':
## 
##     complement
## The following objects are masked from 'package:seqinr':
## 
##     as.alignment, consensus
## The following objects are masked from 'package:igraph':
## 
##     edges, mst, ring
## Loading required package: phytools
## Loading required package: maps
## [1] 1
## [1] 2

3.9 Plotting per-cell isotype information

Additional VDJ functions include plotting isotype distribution per clone. This can be performed by the VDJ_isotypes_per_clone function and setting the number of clones to show. The following code extracts and plots the isotype distribution of the top 30 clones. We can see a clear IgA isotype majority of the top four clones in the first patient when using the default clonotyping strategy. We can additionally use the new clonotyping strategies to compare how changing the clonal defintion impacts the clonal expansion profiles. We simply supply the output from VDJ_clonotype

We can see a clear IgA isotype majority of the top four clones in the first patient.

In the second patient (second repertoire entered in original VDJ_analyze) we also see a similarly expanded IgA clone with over 60 cell barcodes.

3.10 Sequence similarity networks

Other functions are specifically tailored to repertoire analysis - such as VDJ_network, which creates a sequence similarity network between repertoires or within a repertoire by connecting those clones with sequence similarity. This function relies upon igraph to visually display and construct the graph - which means that networks with high number of sequences will not display easily. In the following example we take the top 60 most expanded clones from the output of VDJ_analyze and use this as input into the network construction function. Setting the per.mouse argument to false indicates that one network for multiple repertoires should be produced.

For more details see the documentation of the VDJ_network function, but essentially information such as clonal frequency and which sample (here still indicated by the “mouse” column) are stored in the second element of the output list. Here we can see only a few clones that are showing connections (produced by edges between those with 8 amino acid or less distance between heavy and light chain paired CDR3 sequence homology)

3.11 Germline gene usage heatmaps

It is also possible to produce heatmaps of the germline gene usage in the context of heavy chain V gene and light chain V gene. The output of the VDJ_Vgene_usage function is a matrix for each repertoire corresponding to the order specified by VDJ_analyze. The outer list corresponds to the sample and the inner list corresponds to a matrix, where the rows correspond to the heavy chain V genes and the columns correspond to the light chains of the V genes. Therefore the output[[1]][i,j] corresponds to the number of clones using the combination of IGH-Vgene[i] and IGK/L-Vgene[j].

## [1] "matrix"
## [1] "IGHV3-11" "IGHV4-39" "IGHV1-69" "IGHV4-61" "IGHV4-34" "IGHV3-23"
## [1] "IGKV1-33" "IGKV1-6"  "IGKV3-11" "IGLV2-14" "IGKV1-5"  "IGLV1-44"

This can then be easily plotted as a heatmap to observe patterns between repertoires or can be used to calculate V gene correlation using the “pheatmap” package.

Platypus also allows a seperate analysis of V gene usage for HC and LC. The VDJ_Vgene_usage_barplot allows the user to plot most frequently used IgH or IgK/L Vgenes. By default, this function only provides visulizations for the HC V genes, but can also provide for the LC if LC.Vgene is set to TRUE. The User can also select the number of most used genes to be depicted.

Furthermore, we can also produce a circular visualization of how V and J genes are combined throughout the repertoire. In the example that follows we use VDJ_VJ_usage_circos to look at the V gene with the corresponding J gene for each expanded clonotype.

## Loading required package: circlize
## Warning: package 'circlize' was built under R version 3.6.2
## ========================================
## circlize version 0.4.12
## CRAN page: https://cran.r-project.org/package=circlize
## Github page: https://github.com/jokergoo/circlize
## Documentation: https://jokergoo.github.io/circlize_book/book/
## 
## If you use it in published research, please cite:
## Gu, Z. circlize implements and enhances circular visualization
##   in R. Bioinformatics 2014.
## 
## This message can be suppressed by:
##   suppressPackageStartupMessages(library(circlize))
## ========================================
## 
## Attaching package: 'circlize'
## The following object is masked from 'package:igraph':
## 
##     degree

## [[1]]
## standardGeneric for "plot" defined from package "graphics"
## 
## function (x, y, ...) 
## standardGeneric("plot")
## <environment: 0x7ff1e3a738c0>
## Methods may be defined for arguments: x, y
## Use  showMethods("plot")  for currently available ones.
## 
## [[2]]
## [[2]][[1]]
##              IGKJ4 IGKJ2 IGLJ2 IGKJ1 IGKJ3 IGLJ1 IGLJ7 IGKJ5 IGLJ3 None IGLJ6
## IGKV1D-39       80    27     0    33    14     0     0     6     2    0     0
## IGKV1-33        16     8     0     3     2     0     0     2     0    0     0
## IGKV2-28         9    25     0    20     8     1     0     7     0    0     0
## IGLV1-40         2     0    31     0     0    17     0     0    11    0     0
## IGKV1-5         19    28     1    66     5     1     0     2     0    1     0
## IGKV2D-40        3     1     0     1     5     0     0     1     0    0     0
## IGKV3-11        30    15     0    14     6     0     0     7     0    0     0
## IGLV1-47         0     1    13     0     0     9     1     0    12    0     0
## IGKV3-20        32    41     4    51     9     3     0    16     3    0     0
## IGLV3-10         0     0     3     0     0     0     0     0     2    0     0
## IGLV3-19         0     0    20     0     0     2     2     0     4    0     0
## IGKV1-17         4     3     0    12     0     0     0     0     1    0     0
## IGLV2-14         0     0    28     2     0    18     0     0     8    0     0
## IGLV1-44         0     0    25     2     0    18     0     0    21    0     0
## IGKV1D-33       10     6     0     6     9     0     0     5     0    0     0
## IGKV2D-24        0     0     0     1     0     0     0     1     0    0     0
## IGKV1D-16        0     1     0     1     0     0     0     1     0    0     0
## IGLV1-36         0     0     4     0     0     1     0     0     1    0     0
## IGKV3-15        26    21     1    25     6     1     0     3     4    0     0
## IGLV2-11         0     1     9     0     0     5     0     0     5    0     0
## IGLV2-23         0     0    15     0     0     6     0     0    11    0     0
## IGKV1-39         2     1     0     3     0     0     0     2     0    0     0
## IGKV4-1         12    17     0    22     3     0     0     0     0    0     0
## IGKV2D-26        3     0     0     1     0     0     0     0     0    0     0
## IGKV2D-29        4     1     0     4     0     1     0     2     0    0     0
## IGKV1-8          4     4     0     3     0     0     0     1     0    0     0
## IGKV1-9         17     6     0     5     1     0     0     1     1    1     0
## IGKV1-27         5     1     0     2     6     0     0     0     0    0     0
## IGLV8-61         0     0     1     0     0     0     0     0     6    0     0
## IGLV1-51         0     0    31     1     0     8     0     0    24    0     0
## IGKV1D-13        1     2     1     2     2     0     0     3     0    0     0
## IGLV7-43         0     0     2     0     0     0     0     0     5    0     0
## IGLV3-1          0     0    20     2     0     6     0     0     2    0     0
## IGLV4-69         0     0     6     0     0     0     0     0     5    0     0
## None             0     0     0     5     0     3     0     0     0    0     0
## IGKV1-12        10     4     1    10     5     0     0     1     0    0     0
## IGKV1D-17        2     1     0     3     0     0     0     0     0    0     0
## IGKV2-30         1     7     1     8     0     0     0     0     0    0     0
## IGLV3-21         0     0    12     0     0     7     1     0     5    0     0
## IGKV1-6          5     2     0     4     1     0     0     0     0    0     0
## IGKV3D-15        0     5     0     4     1     0     0     0     0    0     0
## IGLV6-57         0     0     7     0     0     0     0     0     7    0     0
## IGLV2-8          0     0    11     0     0     9     0     0     2    0     0
## IGKV1-16         7     5     0     5     1     0     0     4     0    0     0
## IGKV2D-28        0     0     0     3     2     0     0     0     0    0     0
## IGKV2-24         0     5     0     4     1     0     0     0     0    0     0
## IGLV7-46         0     0     3     0     0     1     1     0     5    0     0
## IGKV1D-37        0     1     0     2     0     0     0     0     0    0     0
## IGKV1D-8         1     1     0     2     0     0     0     0     0    0     0
## IGLV3-25         0     0     7     0     0     6     0     0     4    0     1
## IGLV3-27         0     0     0     0     0     0     0     0     3    0     0
## IGLV10-54        0     0     1     0     0     1     0     0     0    0     0
## IGLV5-45         0     0     1     0     0     0     0     0     1    0     0
## IGKV2D-30        0     0     0     0     1     0     0     0     0    0     0
## IGKV1D-43        2     0     0     0     0     0     0     0     0    0     0
## IGLV2-18         0     0     3     0     0     1     0     0     0    0     0
## IGKV3D-20        1     0     0     0     1     0     0     0     0    0     0
## IGLV3-9          0     0     0     0     0     0     0     0     4    0     0
## IGKV5-2          0     0     0     0     0     1     0     0     0    0     0
## IGKV3-7          0     0     1     0     0     0     0     0     0    0     0
## IGLV9-49         0     0     1     0     0     0     0     0     0    0     0
## IGKV6D-21        0     0     0     2     0     0     0     0     0    0     0
## IGLV4-60         0     0     0     0     0     0     0     0     1    0     0
## IGKV6-21         0     0     0     0     0     0     0     2     0    0     0
## IGHV3-48         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-18         0     0     0     0     0     0     0     0     0    0     0
## IGHV4-34         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-23         0     0     0     0     0     0     0     0     0    0     0
## IGHV2-26         0     0     0     0     0     0     0     0     0    0     0
## IGHV4-31         0     0     0     0     0     0     0     0     0    0     0
## IGHV2-70D        0     0     0     0     0     0     0     0     0    0     0
## IGHV1-2          0     0     0     0     0     0     0     0     0    0     0
## IGHV3-33         0     0     0     0     0     0     0     0     0    0     0
## IGHV7-81         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-15         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-69         0     0     0     0     0     0     0     0     0    0     0
## IGHV2-70         0     0     0     0     0     0     0     0     0    0     0
## IGHV4-39         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-24         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-30         0     0     0     0     0     0     0     0     0    0     0
## IGHV4-30-2       0     0     0     0     0     0     0     0     0    0     0
## IGHV1-8          0     0     0     0     0     0     0     0     0    0     0
## IGHV5-10-1       0     0     0     0     0     0     0     0     0    0     0
## IGHV3-7          0     0     0     0     0     0     0     0     0    0     0
## IGHV4-61         0     0     0     0     0     0     0     0     0    0     0
## IGHV2-5          0     0     0     0     0     0     0     0     0    0     0
## IGHV3-21         0     0     0     0     0     0     0     0     0    0     0
## IGHV6-1          0     0     0     0     0     0     0     0     0    0     0
## IGHV3-49         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-69D        0     0     0     0     0     0     0     0     0    0     0
## IGHV1-69-2       0     0     0     0     0     0     0     0     0    0     0
## IGHV5-51         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-43         0     0     0     0     0     0     0     0     0    0     0
## IGHV4-59         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-53         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-11         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-3          0     0     0     0     0     0     0     0     0    0     0
## IGHV3-66         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-74         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-58         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-72         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-46         0     0     0     0     0     0     0     0     0    0     0
## IGHV1-45         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-64         0     0     0     0     0     0     0     0     0    0     0
## IGHV4-4          0     0     0     0     0     0     0     0     0    0     0
## IGHV3-64D        0     0     0     0     0     0     0     0     0    0     0
## IGHV3-13         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-73         0     0     0     0     0     0     0     0     0    0     0
## IGHV3-20         0     0     0     0     0     0     0     0     0    0     0
## IGHV1/OR15-1     0     0     0     0     0     0     0     0     0    0     0
## IGHV4-28         0     0     0     0     0     0     0     0     0    0     0
##              IGHJ4 IGHJ6 IGHJ3 IGHJ5 IGHJ2 IGHJ1
## IGKV1D-39        0     0     0     0     0     0
## IGKV1-33         0     0     0     0     0     0
## IGKV2-28         0     0     0     0     0     0
## IGLV1-40         0     0     0     0     0     0
## IGKV1-5          0     0     0     0     0     0
## IGKV2D-40        0     0     0     0     0     0
## IGKV3-11         0     0     0     0     0     0
## IGLV1-47         0     0     0     0     0     0
## IGKV3-20         0     0     0     0     0     0
## IGLV3-10         0     0     0     0     0     0
## IGLV3-19         0     0     0     0     0     0
## IGKV1-17         0     0     0     0     0     0
## IGLV2-14         0     0     0     0     0     0
## IGLV1-44         0     0     0     0     0     0
## IGKV1D-33        0     0     0     0     0     0
## IGKV2D-24        0     0     0     0     0     0
## IGKV1D-16        0     0     0     0     0     0
## IGLV1-36         0     0     0     0     0     0
## IGKV3-15         0     0     0     0     0     0
## IGLV2-11         0     0     0     0     0     0
## IGLV2-23         0     0     0     0     0     0
## IGKV1-39         0     0     0     0     0     0
## IGKV4-1          0     0     0     0     0     0
## IGKV2D-26        0     0     0     0     0     0
## IGKV2D-29        0     0     0     0     0     0
## IGKV1-8          0     0     0     0     0     0
## IGKV1-9          0     0     0     0     0     0
## IGKV1-27         0     0     0     0     0     0
## IGLV8-61         0     0     0     0     0     0
## IGLV1-51         0     0     0     0     0     0
## IGKV1D-13        0     0     0     0     0     0
## IGLV7-43         0     0     0     0     0     0
## IGLV3-1          0     0     0     0     0     0
## IGLV4-69         0     0     0     0     0     0
## None             0     0     0     0     0     0
## IGKV1-12         0     0     0     0     0     0
## IGKV1D-17        0     0     0     0     0     0
## IGKV2-30         0     0     0     0     0     0
## IGLV3-21         0     0     0     0     0     0
## IGKV1-6          0     0     0     0     0     0
## IGKV3D-15        0     0     0     0     0     0
## IGLV6-57         0     0     0     0     0     0
## IGLV2-8          0     0     0     0     0     0
## IGKV1-16         0     0     0     0     0     0
## IGKV2D-28        0     0     0     0     0     0
## IGKV2-24         0     0     0     0     0     0
## IGLV7-46         0     0     0     0     0     0
## IGKV1D-37        0     0     0     0     0     0
## IGKV1D-8         0     0     0     0     0     0
## IGLV3-25         0     0     0     0     0     0
## IGLV3-27         0     0     0     0     0     0
## IGLV10-54        0     0     0     0     0     0
## IGLV5-45         0     0     0     0     0     0
## IGKV2D-30        0     0     0     0     0     0
## IGKV1D-43        0     0     0     0     0     0
## IGLV2-18         0     0     0     0     0     0
## IGKV3D-20        0     0     0     0     0     0
## IGLV3-9          0     0     0     0     0     0
## IGKV5-2          0     0     0     0     0     0
## IGKV3-7          0     0     0     0     0     0
## IGLV9-49         0     0     0     0     0     0
## IGKV6D-21        0     0     0     0     0     0
## IGLV4-60         0     0     0     0     0     0
## IGKV6-21         0     0     0     0     0     0
## IGHV3-48       108     9     4     3     4     2
## IGHV1-18        29    25    11    11     2     0
## IGHV4-34        23    17     5     7     5     2
## IGHV3-23        97    19    28    12     6     6
## IGHV2-26         2     1    10     3     2     0
## IGHV4-31        13     0     1     0     2     0
## IGHV2-70D        4     0     2     3     0     1
## IGHV1-2         19     8    10     6     2     3
## IGHV3-33        71    29    22    13     9     5
## IGHV7-81         0     0     0     3     0     0
## IGHV3-15        28     4     8     4     1     3
## IGHV1-69         6     5     1     4     1     3
## IGHV2-70         8     7     2     1     0     0
## IGHV4-39        52     4    11    22     3     1
## IGHV1-24        14     0     4     1     3     1
## IGHV3-30        37     8     8     3     1     2
## IGHV4-30-2      30     5     6     4     1     0
## IGHV1-8          7     2     2     3     0     0
## IGHV5-10-1      11     3     7     3     0     0
## IGHV3-7         29     9    14     4     2     2
## IGHV4-61         8     0     1     6     0     0
## IGHV2-5         21     2     2     1     0     1
## IGHV3-21        30     7    16     1     1     0
## IGHV6-1          6     6     0     0     0     0
## IGHV3-49        10     1     2     2     0     1
## IGHV1-69D       15     9     6     3     0     1
## IGHV1-69-2       6     1     0     1     1     0
## IGHV5-51        21    12     6     2     2     1
## IGHV3-43        22     4     1     4     5     1
## IGHV4-59        37    12    15    10     3     3
## IGHV3-53         7     2     0     1     0     0
## IGHV3-11        18     7     2     1     0     0
## IGHV1-3         13     5     0     0     0     0
## IGHV3-66        13     4     2     2     0     0
## IGHV3-74        12     7     6     0     1     1
## IGHV1-58         1     1     1     0     0     0
## IGHV3-72         7     0     1     0     0     1
## IGHV1-46         9     1     4     3     0     0
## IGHV1-45         0     1     0     1     0     0
## IGHV3-64         1     1     0     1     1     1
## IGHV4-4          4     1     2     3     0     0
## IGHV3-64D        5     2     2     3     0     1
## IGHV3-13         3     1     1     1     0     0
## IGHV3-73         4     2     0     0     0     0
## IGHV3-20         2     1     3     0     1     0
## IGHV1/OR15-1     0     0     0     1     0     0
## IGHV4-28         0     0     1     0     0     0

## [[1]]
## standardGeneric for "plot" defined from package "graphics"
## 
## function (x, y, ...) 
## standardGeneric("plot")
## <environment: 0x7ff1e3a738c0>
## Methods may be defined for arguments: x, y
## Use  showMethods("plot")  for currently available ones.
## 
## [[2]]
## [[2]][[1]]
##              TRAJ50 TRAJ37 TRAJ54 TRAJ29 TRAJ12 TRAJ33 TRAJ23 TRAJ28 TRAJ4
## TRAV14/DV4        6      0      2      3      3      1      7      3     1
## TRAV4             0      6      0      1      1      1      1      3     1
## TRAV39            0      0      4      0      0      1      0      0     0
## TRAV12-2          2      2      2      5      1      1      3      1     2
## TRAV8-4           1      2      3      5      3      0      4      2     1
## TRAV19            0      5      3      0      0      5      2      4     1
## TRAV13-1          2     10      1      7      4      8      8      3     3
## TRAV38-1          4      0      6      1      0      0      1      5     0
## TRAV17            2      3      4      3      3      2      4      3     5
## TRAV9-2           0      3      5      2      1      2      2      1     2
## TRAV12-1          0      7      1      3      8      2      1      4     2
## TRAV8-2           0      1      0      0      1      0      0      0     0
## TRAV21            0      9      2      4      4      6      1      3     3
## TRAV38-2/DV8      0      0      3      1      0      1      1      1     0
## TRAV16            0      0      2      1      2      0      0      0     1
## TRAV8-6           0      0      2      4      3      0      2      0     0
## TRAV23/DV6        1      4      3      3      2      2      1      0     1
## TRAV29/DV5        2      5      3      1      1      1      5      9     1
## TRAV8-3           1      3      0      1      0      0      3      0     2
## TRAV27            0      3      0      0      0      1      5      1     1
## TRAV35            0      2      4      1      0      1      1      0     0
## TRAV3             0      4      0      1      0      0      0      1     3
## TRAV8-1           0      0      0      0      0      2      2      0     1
## TRAV13-2          1      2      0      3      3      1      2      3     2
## TRAV26-2          0      2      1      2      0      1      1      2     1
## TRAV1-2           0      0      0      3      0     18      3      1     1
## TRAV41            0      0      1      0      0      0      0      1     0
## TRAV20            0      3      2      2      0      4      6      0     0
## TRAV12-3          0      2      3      3      1      3      1      2     1
## None              1      0      0      4      3      0      4      2     2
## TRAV10            1      1      0      1      2      3      1      0     0
## TRAV26-1          0      0      0      0      1      0      0      0     0
## TRAV2             0      3      0      3      1      3      3      0     1
## TRAV1-1           0      0      0      0      1      4      2      1     0
## TRAV6             0      3      0      0      0      0      1      1     4
## TRAV24            0      0      1      2      0      0      3      0     0
## TRAV25            0      5      0      2      1      1      2      1     0
## TRAV36/DV7        0      1      2      1      0      0      0      1     0
## TRAV5             0      3      0      4      1      2      0      0     0
## TRAV30            0      1      0      0      0      1      0      0     0
## TRAV22            0      3      2      1      0      0      3      1     0
## TRAV34            0      0      0      1      0      0      0      0     0
## TRAV40            0      0      0      0      0      0      0      0     0
## TRAV18            0      0      0      0      0      0      0      0     0
## TRBV11-1          0      0      0      0      0      0      0      0     0
## TRBV6-1           0      0      0      0      0      0      0      0     0
## TRBV20-1          0      0      0      0      0      0      0      0     0
## TRBV7-2           0      0      0      0      0      0      0      0     0
## TRBV4-1           0      0      0      0      0      0      0      0     0
## TRBV7-9           0      0      0      0      0      0      0      0     0
## TRBV7-8           0      0      0      0      0      0      0      0     0
## TRBV10-3          0      0      0      0      0      0      0      0     0
## TRBV28            0      0      0      0      0      0      0      0     0
## TRBV6-5           0      0      0      0      0      0      0      0     0
## TRBV6-2           0      0      0      0      0      0      0      0     0
## TRBV3-1           0      0      0      0      0      0      0      0     0
## TRBV4-3           0      0      0      0      0      0      0      0     0
## TRBV5-6           0      0      0      0      0      0      0      0     0
## TRBV27            0      0      0      0      0      0      0      0     0
## TRBV5-5           0      0      0      0      0      0      0      0     0
## TRBV10-1          0      0      0      0      0      0      0      0     0
## TRBV11-3          0      0      0      0      0      0      0      0     0
## TRBV7-3           0      0      0      0      0      0      0      0     0
## TRBV12-4          0      0      0      0      0      0      0      0     0
## TRBV5-1           0      0      0      0      0      0      0      0     0
## TRBV30            0      0      0      0      0      0      0      0     0
## TRBV11-2          0      0      0      0      0      0      0      0     0
## TRBV12-3          0      0      0      0      0      0      0      0     0
## TRBV10-2          0      0      0      0      0      0      0      0     0
## TRBV2             0      0      0      0      0      0      0      0     0
## TRBV15            0      0      0      0      0      0      0      0     0
## TRBV25-1          0      0      0      0      0      0      0      0     0
## TRBV21-1          0      0      0      0      0      0      0      0     0
## TRBV19            0      0      0      0      0      0      0      0     0
## TRBV7-7           0      0      0      0      0      0      0      0     0
## TRBV18            0      0      0      0      0      0      0      0     0
## TRBV13            0      0      0      0      0      0      0      0     0
## TRBV24-1          0      0      0      0      0      0      0      0     0
## TRBV7-6           0      0      0      0      0      0      0      0     0
## TRBV9             0      0      0      0      0      0      0      0     0
## TRBV5-4           0      0      0      0      0      0      0      0     0
## TRBV6-6           0      0      0      0      0      0      0      0     0
## TRBV4-2           0      0      0      0      0      0      0      0     0
## TRBV29-1          0      0      0      0      0      0      0      0     0
## TRBV12-5          0      0      0      0      0      0      0      0     0
## TRBV14            0      0      0      0      0      0      0      0     0
## TRBV23-1          0      0      0      0      0      0      0      0     0
## TRBV5-8           0      0      0      0      0      0      0      0     0
## TRBV6-4           0      0      0      0      0      0      0      0     0
## TRBV7-1           0      0      0      0      0      0      0      0     0
## TRBV5-3           0      0      0      0      0      0      0      0     0
## TRBV16            0      0      0      0      0      0      0      0     0
## TRBV7-4           0      0      0      0      0      0      0      0     0
##              TRAJ24 TRAJ43 TRAJ17 TRAJ52 TRAJ44 TRAJ7 TRAJ6 TRAJ21 TRAJ26 TRAJ8
## TRAV14/DV4        1      0      2      5      1     1     3      1      3     0
## TRAV4             0      2      1      0      0     0     0      1      1     0
## TRAV39            0      2      1      0      3     0     0      1      0     0
## TRAV12-2          1      3      2      1      4     0     2      4      2     0
## TRAV8-4           0      1      2      1      2     0     1      1      1     1
## TRAV19            4      2      6      1      2     1     1      4      4     3
## TRAV13-1          5      3      7      3      2     1     3      2      3     0
## TRAV38-1          1      3      1      4      4     0     0      0      0     0
## TRAV17            1      1      1      4      1     1     1      2      0     0
## TRAV9-2           5      0      1      3      0     1     6      1      2     3
## TRAV12-1          1      5      4      2      3     0     1      4      2     7
## TRAV8-2           0      1      3      0      0     0     2      0      1     0
## TRAV21            3      5      3      3      1     1     1      3      4     0
## TRAV38-2/DV8      0      2      1      4      8     0     0      0      3     0
## TRAV16            1      0      0      1      1     3     0      1      0     1
## TRAV8-6           0      1      2      1      1     1     2      3      1     1
## TRAV23/DV6        3      0      2      3      3     0     0      1      1     2
## TRAV29/DV5        3      8      1      5      5     0     1      1      0     4
## TRAV8-3           0      4      2      0      4     2     4      1      4     0
## TRAV27            2      2      0      3      0     0     0      1      0     0
## TRAV35            0      3      0      4      0     0     0      1      2     0
## TRAV3             1      0      0      0      0     1     2      0      1     0
## TRAV8-1           0      0      0      0      1     2     3      3      2     1
## TRAV13-2          3      0      5      4      1     1     0      0      1     2
## TRAV26-2          0      1      2      1      1     0     0      0      2     0
## TRAV1-2           2      0      0      0      0     0     1      1      0     0
## TRAV41            0      0      0      1      1     0     1      0      0     0
## TRAV20            1      0      1      2      0     1     0      0      5     0
## TRAV12-3          0      1      2      5      1     1     1      1      1     1
## None              0      0      2      1      3     0     2      1      0     0
## TRAV10            0      2      2      0      1     0     2      1      1     0
## TRAV26-1          1      1      1      0      1     0     0      0      0     0
## TRAV2             3      0      1      0      0     0     1      2      0     2
## TRAV1-1           1      0      2      0      0     0     2      1      0     1
## TRAV6             0      0      0      0      0     0     1      0      1     0
## TRAV24            1      0      1      2      1     0     0      1      0     1
## TRAV25            1      1      2      1      1     0     1      1      0     0
## TRAV36/DV7        0      1      0      2      0     0     0      1      1     0
## TRAV5             0      0      0      0      0     0     3      0      0     4
## TRAV30            0      0      0      2      1     0     0      0      0     0
## TRAV22            1      2      3      1      1     0     0      1      0     0
## TRAV34            0      0      0      0      1     0     1      1      0     0
## TRAV40            0      0      0      0      0     0     0      0      0     0
## TRAV18            0      0      0      0      0     0     0      0      0     0
## TRBV11-1          0      0      0      0      0     0     0      0      0     0
## TRBV6-1           0      0      0      0      0     0     0      0      0     0
## TRBV20-1          0      0      0      0      0     0     0      0      0     0
## TRBV7-2           0      0      0      0      0     0     0      0      0     0
## TRBV4-1           0      0      0      0      0     0     0      0      0     0
## TRBV7-9           0      0      0      0      0     0     0      0      0     0
## TRBV7-8           0      0      0      0      0     0     0      0      0     0
## TRBV10-3          0      0      0      0      0     0     0      0      0     0
## TRBV28            0      0      0      0      0     0     0      0      0     0
## TRBV6-5           0      0      0      0      0     0     0      0      0     0
## TRBV6-2           0      0      0      0      0     0     0      0      0     0
## TRBV3-1           0      0      0      0      0     0     0      0      0     0
## TRBV4-3           0      0      0      0      0     0     0      0      0     0
## TRBV5-6           0      0      0      0      0     0     0      0      0     0
## TRBV27            0      0      0      0      0     0     0      0      0     0
## TRBV5-5           0      0      0      0      0     0     0      0      0     0
## TRBV10-1          0      0      0      0      0     0     0      0      0     0
## TRBV11-3          0      0      0      0      0     0     0      0      0     0
## TRBV7-3           0      0      0      0      0     0     0      0      0     0
## TRBV12-4          0      0      0      0      0     0     0      0      0     0
## TRBV5-1           0      0      0      0      0     0     0      0      0     0
## TRBV30            0      0      0      0      0     0     0      0      0     0
## TRBV11-2          0      0      0      0      0     0     0      0      0     0
## TRBV12-3          0      0      0      0      0     0     0      0      0     0
## TRBV10-2          0      0      0      0      0     0     0      0      0     0
## TRBV2             0      0      0      0      0     0     0      0      0     0
## TRBV15            0      0      0      0      0     0     0      0      0     0
## TRBV25-1          0      0      0      0      0     0     0      0      0     0
## TRBV21-1          0      0      0      0      0     0     0      0      0     0
## TRBV19            0      0      0      0      0     0     0      0      0     0
## TRBV7-7           0      0      0      0      0     0     0      0      0     0
## TRBV18            0      0      0      0      0     0     0      0      0     0
## TRBV13            0      0      0      0      0     0     0      0      0     0
## TRBV24-1          0      0      0      0      0     0     0      0      0     0
## TRBV7-6           0      0      0      0      0     0     0      0      0     0
## TRBV9             0      0      0      0      0     0     0      0      0     0
## TRBV5-4           0      0      0      0      0     0     0      0      0     0
## TRBV6-6           0      0      0      0      0     0     0      0      0     0
## TRBV4-2           0      0      0      0      0     0     0      0      0     0
## TRBV29-1          0      0      0      0      0     0     0      0      0     0
## TRBV12-5          0      0      0      0      0     0     0      0      0     0
## TRBV14            0      0      0      0      0     0     0      0      0     0
## TRBV23-1          0      0      0      0      0     0     0      0      0     0
## TRBV5-8           0      0      0      0      0     0     0      0      0     0
## TRBV6-4           0      0      0      0      0     0     0      0      0     0
## TRBV7-1           0      0      0      0      0     0     0      0      0     0
## TRBV5-3           0      0      0      0      0     0     0      0      0     0
## TRBV16            0      0      0      0      0     0     0      0      0     0
## TRBV7-4           0      0      0      0      0     0     0      0      0     0
##              TRAJ49 TRAJ56 TRAJ13 TRAJ48 TRAJ39 TRAJ27 TRAJ40 TRAJ30 TRAJ20
## TRAV14/DV4        6      1      1      1      5      4      2      2      1
## TRAV4             0      0      1      0      1      0      0      2      0
## TRAV39            2      0      0      3      1      0      4      1      0
## TRAV12-2          4      0      3      2      1      1      4      2      6
## TRAV8-4           4      1      5      1      2      0      0      1      3
## TRAV19            4      2      3      2      1      1      2      2      2
## TRAV13-1          5      0      6      2      2      4      4      3     10
## TRAV38-1          6      1      0      2      4      0      3      1      1
## TRAV17            0      1      4      1      3      1      3      6      4
## TRAV9-2           3      1      0      1      1      1      5      6      4
## TRAV12-1          0      0      5      1      1      4      4      1      8
## TRAV8-2           1      0      1      0      0      1      0      0      1
## TRAV21            4      2      1      0      5      1      2      1      3
## TRAV38-2/DV8      9      2      0      0      3      2      5      2      1
## TRAV16            1      0      1      1      1      2      1      0      1
## TRAV8-6           3      1      0      1      1      1      2      0      1
## TRAV23/DV6        2      0      3      3      1      2      2      0      2
## TRAV29/DV5        6      5      0      4      5      5     14      2      4
## TRAV8-3           3      0      2      1      1      2      0      1      2
## TRAV27            4      0      1      1      0      4      2      1      7
## TRAV35            4      3      0      3      3      2      2      0      1
## TRAV3             0      1      2      2      2      0      3      0      0
## TRAV8-1           1      0      4      0      0      0      1      0      1
## TRAV13-2          3      0      2      2      2      2      3      1      2
## TRAV26-2          1      0      0      2      3      1      2      1      0
## TRAV1-2           0      0      2      1      4      2      0      1      2
## TRAV41           10      0      0      3      0      1      2      1      0
## TRAV20            1      2      3      2      2      3      3      2      4
## TRAV12-3          3      0      2      1      5      3      0      0      1
## None              2      0      4      1      9      3      2      1      4
## TRAV10            1      0      0      0      0      4      1      0      3
## TRAV26-1          0      0      1      1      1      1      0      2      2
## TRAV2             1      0      4      0      2      2      0      0      3
## TRAV1-1           0      0      0      0      0      2      1      2      0
## TRAV6             1      0      3      1      1      2      0      2      1
## TRAV24            4      0      0      1      0      2      0      0      1
## TRAV25            4      0      3      1      0      0      1      2      3
## TRAV36/DV7        3      0      1      2      1      1      1      1      0
## TRAV5             2      0      3      1      2      0      0      2      1
## TRAV30            2      1      1      0      1      1      0      0      1
## TRAV22            1      1      1      0      0      2      3      2      3
## TRAV34            0      0      1      0      0      1      0      0      0
## TRAV40            0      0      0      0      0      0      0      0      0
## TRAV18            0      1      0      0      0      0      0      0      0
## TRBV11-1          0      0      0      0      0      0      0      0      0
## TRBV6-1           0      0      0      0      0      0      0      0      0
## TRBV20-1          0      0      0      0      0      0      0      0      0
## TRBV7-2           0      0      0      0      0      0      0      0      0
## TRBV4-1           0      0      0      0      0      0      0      0      0
## TRBV7-9           0      0      0      0      0      0      0      0      0
## TRBV7-8           0      0      0      0      0      0      0      0      0
## TRBV10-3          0      0      0      0      0      0      0      0      0
## TRBV28            0      0      0      0      0      0      0      0      0
## TRBV6-5           0      0      0      0      0      0      0      0      0
## TRBV6-2           0      0      0      0      0      0      0      0      0
## TRBV3-1           0      0      0      0      0      0      0      0      0
## TRBV4-3           0      0      0      0      0      0      0      0      0
## TRBV5-6           0      0      0      0      0      0      0      0      0
## TRBV27            0      0      0      0      0      0      0      0      0
## TRBV5-5           0      0      0      0      0      0      0      0      0
## TRBV10-1          0      0      0      0      0      0      0      0      0
## TRBV11-3          0      0      0      0      0      0      0      0      0
## TRBV7-3           0      0      0      0      0      0      0      0      0
## TRBV12-4          0      0      0      0      0      0      0      0      0
## TRBV5-1           0      0      0      0      0      0      0      0      0
## TRBV30            0      0      0      0      0      0      0      0      0
## TRBV11-2          0      0      0      0      0      0      0      0      0
## TRBV12-3          0      0      0      0      0      0      0      0      0
## TRBV10-2          0      0      0      0      0      0      0      0      0
## TRBV2             0      0      0      0      0      0      0      0      0
## TRBV15            0      0      0      0      0      0      0      0      0
## TRBV25-1          0      0      0      0      0      0      0      0      0
## TRBV21-1          0      0      0      0      0      0      0      0      0
## TRBV19            0      0      0      0      0      0      0      0      0
## TRBV7-7           0      0      0      0      0      0      0      0      0
## TRBV18            0      0      0      0      0      0      0      0      0
## TRBV13            0      0      0      0      0      0      0      0      0
## TRBV24-1          0      0      0      0      0      0      0      0      0
## TRBV7-6           0      0      0      0      0      0      0      0      0
## TRBV9             0      0      0      0      0      0      0      0      0
## TRBV5-4           0      0      0      0      0      0      0      0      0
## TRBV6-6           0      0      0      0      0      0      0      0      0
## TRBV4-2           0      0      0      0      0      0      0      0      0
## TRBV29-1          0      0      0      0      0      0      0      0      0
## TRBV12-5          0      0      0      0      0      0      0      0      0
## TRBV14            0      0      0      0      0      0      0      0      0
## TRBV23-1          0      0      0      0      0      0      0      0      0
## TRBV5-8           0      0      0      0      0      0      0      0      0
## TRBV6-4           0      0      0      0      0      0      0      0      0
## TRBV7-1           0      0      0      0      0      0      0      0      0
## TRBV5-3           0      0      0      0      0      0      0      0      0
## TRBV16            0      0      0      0      0      0      0      0      0
## TRBV7-4           0      0      0      0      0      0      0      0      0
##              TRAJ31 TRAJ32 TRAJ53 TRAJ9 TRAJ47 TRAJ22 TRAJ45 TRAJ42 TRAJ18
## TRAV14/DV4        2      0      1     3      1      2      2      3      1
## TRAV4             2      0      0     3      1      2      0      0      0
## TRAV39            1      2      0     0      1      0      1      3      1
## TRAV12-2          0      0      4     3      1      4      5      4      4
## TRAV8-4           0      0      2     4      2      5      0      2      0
## TRAV19            3      2      3     2      2      0      1      3      0
## TRAV13-1          4      2      1     2      2      5      2      5      5
## TRAV38-1          3      0      2     0      4      0      1      1      1
## TRAV17            7      3      6     1      1      5      2      3      0
## TRAV9-2           1      3      2     8      2      2      2      4      1
## TRAV12-1          2      3      1     8      2      0      1      4      0
## TRAV8-2           0      1      0     1      1      0      1      1      0
## TRAV21            3      3      1     2      0      5      3      4      1
## TRAV38-2/DV8      3      1      0     0      3      0      2      4      0
## TRAV16            0      0      0     0      0      2      1      1      2
## TRAV8-6           1      1      0     2      0      1      0      1      1
## TRAV23/DV6        1      1      4     0      1      0      0      1      3
## TRAV29/DV5        5      3      6     2      3      8      6      8      2
## TRAV8-3           1      0      0     1      4      1      5      4      1
## TRAV27            1      2      4     1      0      3      0      3      0
## TRAV35            0      1      2     0      0      1      3      1      0
## TRAV3             0      2      0     2      3      1      1      2      0
## TRAV8-1           2      0      0     1      1      0      0      2      0
## TRAV13-2          3      5      1     2      0      5      2      2      0
## TRAV26-2          4      1      2     2      1      0      3      0      0
## TRAV1-2           2      1      0     2      1      1      0      0      0
## TRAV41            0      1      0     0      1      2      4      7      2
## TRAV20            1      2      1     1      1      5      2      2      0
## TRAV12-3          1      1      1     2      0      3      2      0      2
## None              1      3      0     0      0      4      2      3     12
## TRAV10            0      0      0     0      0      0      1      0      3
## TRAV26-1          2      0      0     0      0      0      2      1      1
## TRAV2             3      1      0     2      0      1      0      2      0
## TRAV1-1           3      0      0     1      0      1      0      0      0
## TRAV6             0      0      0     0      0      0      0      0      1
## TRAV24            0      0      3     0      0      2      0      0      1
## TRAV25            2      2      1     1      1      2      0      1      0
## TRAV36/DV7        0      0      1     0      0      0      1      1      0
## TRAV5             1      1      0     0      0      3      1      0      1
## TRAV30            0      0      0     0      0      0      1      1      1
## TRAV22            1      0      1     0      0      0      1      1      3
## TRAV34            0      0      0     0      0      0      1      0      0
## TRAV40            0      0      0     0      0      0      0      0      0
## TRAV18            0      0      0     0      0      0      0      0      0
## TRBV11-1          0      0      0     0      0      0      0      0      0
## TRBV6-1           0      0      0     0      0      0      0      0      0
## TRBV20-1          0      0      0     0      0      0      0      0      0
## TRBV7-2           0      0      0     0      0      0      0      0      0
## TRBV4-1           0      0      0     0      0      0      0      0      0
## TRBV7-9           0      0      0     0      0      0      0      0      0
## TRBV7-8           0      0      0     0      0      0      0      0      0
## TRBV10-3          0      0      0     0      0      0      0      0      0
## TRBV28            0      0      0     0      0      0      0      0      0
## TRBV6-5           0      0      0     0      0      0      0      0      0
## TRBV6-2           0      0      0     0      0      0      0      0      0
## TRBV3-1           0      0      0     0      0      0      0      0      0
## TRBV4-3           0      0      0     0      0      0      0      0      0
## TRBV5-6           0      0      0     0      0      0      0      0      0
## TRBV27            0      0      0     0      0      0      0      0      0
## TRBV5-5           0      0      0     0      0      0      0      0      0
## TRBV10-1          0      0      0     0      0      0      0      0      0
## TRBV11-3          0      0      0     0      0      0      0      0      0
## TRBV7-3           0      0      0     0      0      0      0      0      0
## TRBV12-4          0      0      0     0      0      0      0      0      0
## TRBV5-1           0      0      0     0      0      0      0      0      0
## TRBV30            0      0      0     0      0      0      0      0      0
## TRBV11-2          0      0      0     0      0      0      0      0      0
## TRBV12-3          0      0      0     0      0      0      0      0      0
## TRBV10-2          0      0      0     0      0      0      0      0      0
## TRBV2             0      0      0     0      0      0      0      0      0
## TRBV15            0      0      0     0      0      0      0      0      0
## TRBV25-1          0      0      0     0      0      0      0      0      0
## TRBV21-1          0      0      0     0      0      0      0      0      0
## TRBV19            0      0      0     0      0      0      0      0      0
## TRBV7-7           0      0      0     0      0      0      0      0      0
## TRBV18            0      0      0     0      0      0      0      0      0
## TRBV13            0      0      0     0      0      0      0      0      0
## TRBV24-1          0      0      0     0      0      0      0      0      0
## TRBV7-6           0      0      0     0      0      0      0      0      0
## TRBV9             0      0      0     0      0      0      0      0      0
## TRBV5-4           0      0      0     0      0      0      0      0      0
## TRBV6-6           0      0      0     0      0      0      0      0      0
## TRBV4-2           0      0      0     0      0      0      0      0      0
## TRBV29-1          0      0      0     0      0      0      0      0      0
## TRBV12-5          0      0      0     0      0      0      0      0      0
## TRBV14            0      0      0     0      0      0      0      0      0
## TRBV23-1          0      0      0     0      0      0      0      0      0
## TRBV5-8           0      0      0     0      0      0      0      0      0
## TRBV6-4           0      0      0     0      0      0      0      0      0
## TRBV7-1           0      0      0     0      0      0      0      0      0
## TRBV5-3           0      0      0     0      0      0      0      0      0
## TRBV16            0      0      0     0      0      0      0      0      0
## TRBV7-4           0      0      0     0      0      0      0      0      0
##              TRAJ11 TRAJ10 None TRAJ15 TRAJ38 TRAJ35 TRAJ34 TRAJ36 TRAJ58 TRAJ3
## TRAV14/DV4        0      3    1      2      1      1      1      2      0     2
## TRAV4             0      1    0      1      1      0      0      0      0     3
## TRAV39            0      0    0      0      0      2      1      0      4     0
## TRAV12-2          4      1    1      0      2      1      4      2      1     3
## TRAV8-4           2      1    0      2      0      0      0      0      0     5
## TRAV19            0      4    3      1      0      2      5      1      3     1
## TRAV13-1          4      3    4      5      3      0      0      3      0     1
## TRAV38-1          0      1    0      0      0      0      1      3      3     0
## TRAV17            7      1    0      7      0      1      1      0      2     0
## TRAV9-2           0      2    0      8      0      1      2      3      0     3
## TRAV12-1          2      1    4      5      1      0      2      0      0     4
## TRAV8-2           0      2    1      0      0      0      0      0      0     1
## TRAV21            1      2    4      7      0      2      1      2      2     0
## TRAV38-2/DV8      0      0    1      0      0      0      1      0      1     0
## TRAV16            3      0    1      0      0      0      3      0      1     1
## TRAV8-6           2      0    1      2      0      0      0      1      0     1
## TRAV23/DV6        1      1    2      1      1      0      0      3      2     0
## TRAV29/DV5        0      0    0      2      0      1      2      3      0     2
## TRAV8-3           0      1    2      3      0      0      3      0      0     0
## TRAV27            1      2    0      0      0      1      1      1      1     1
## TRAV35            0      0    1      0      0      0      0      1      1     0
## TRAV3             1      2    5      1      0      1      5      2      0     1
## TRAV8-1           0      0    1      3      0      0      1      1      0     1
## TRAV13-2          0      4    2      3      0      1      0      2      0     2
## TRAV26-2          0      0    0      0      0      0      2      0      0     0
## TRAV1-2           1      4    1      4      1      1      3      1      0     2
## TRAV41            0      0    0      0      0      1      4      0      1     0
## TRAV20            0      1    1      0      0      3      0      0      2     2
## TRAV12-3          2      1    4      1      0      1      2      0      1     6
## None              3      8    2      0      7      2      2      1      0     0
## TRAV10            0      2    2      2      0      1      1      0      0     1
## TRAV26-1          0      0    0      1      0      1      0      0      0     0
## TRAV2             2      0    2      3      0      1      0      0      0     2
## TRAV1-1           0      0    3      4      0      1      0      1      0     1
## TRAV6             0      0    1      1      0      0      1      0      0     1
## TRAV24            1      0    0      3      2      0      0      2      1     0
## TRAV25            1      1    0      1      0      1      0      0      0     0
## TRAV36/DV7        0      1    0      0      0      0      0      0      1     0
## TRAV5             1      3    2      3      1      0      2      1      0     2
## TRAV30            0      0    1      0      2      0      1      0      0     0
## TRAV22            2      1    0      0      0      0      2      0      1     0
## TRAV34            0      0    0      0      0      0      0      0      0     0
## TRAV40            0      0    0      0      0      0      0      0      0     0
## TRAV18            0      0    0      0      0      0      0      0      0     0
## TRBV11-1          0      0    0      0      0      0      0      0      0     0
## TRBV6-1           0      0    1      0      0      0      0      0      0     0
## TRBV20-1          0      0    1      0      0      0      0      0      0     0
## TRBV7-2           0      0    0      0      0      0      0      0      0     0
## TRBV4-1           0      0    0      0      0      0      0      0      0     0
## TRBV7-9           0      0    0      0      0      0      0      0      0     0
## TRBV7-8           0      0    0      0      0      0      0      0      0     0
## TRBV10-3          0      0    0      0      0      0      0      0      0     0
## TRBV28            0      0    0      0      0      0      0      0      0     0
## TRBV6-5           0      0    0      0      0      0      0      0      0     0
## TRBV6-2           0      0    1      0      0      0      0      0      0     0
## TRBV3-1           0      0    0      0      0      0      0      0      0     0
## TRBV4-3           0      0    0      0      0      0      0      0      0     0
## TRBV5-6           0      0    0      0      0      0      0      0      0     0
## TRBV27            0      0    0      0      0      0      0      0      0     0
## TRBV5-5           0      0    0      0      0      0      0      0      0     0
## TRBV10-1          0      0    0      0      0      0      0      0      0     0
## TRBV11-3          0      0    0      0      0      0      0      0      0     0
## TRBV7-3           0      0    0      0      0      0      0      0      0     0
## TRBV12-4          0      0    0      0      0      0      0      0      0     0
## TRBV5-1           0      0    0      0      0      0      0      0      0     0
## TRBV30            0      0    0      0      0      0      0      0      0     0
## TRBV11-2          0      0    1      0      0      0      0      0      0     0
## TRBV12-3          0      0    0      0      0      0      0      0      0     0
## TRBV10-2          0      0    0      0      0      0      0      0      0     0
## TRBV2             0      0    0      0      0      0      0      0      0     0
## TRBV15            0      0    0      0      0      0      0      0      0     0
## TRBV25-1          0      0    1      0      0      0      0      0      0     0
## TRBV21-1          0      0    0      0      0      0      0      0      0     0
## TRBV19            0      0    0      0      0      0      0      0      0     0
## TRBV7-7           0      0    0      0      0      0      0      0      0     0
## TRBV18            0      0    3      0      0      0      0      0      0     0
## TRBV13            0      0    0      0      0      0      0      0      0     0
## TRBV24-1          0      0    0      0      0      0      0      0      0     0
## TRBV7-6           0      0    0      0      0      0      0      0      0     0
## TRBV9             0      0    0      0      0      0      0      0      0     0
## TRBV5-4           0      0    0      0      0      0      0      0      0     0
## TRBV6-6           0      0    0      0      0      0      0      0      0     0
## TRBV4-2           0      0    0      0      0      0      0      0      0     0
## TRBV29-1          0      0    0      0      0      0      0      0      0     0
## TRBV12-5          0      0    0      0      0      0      0      0      0     0
## TRBV14            0      0    1      0      0      0      0      0      0     0
## TRBV23-1          0      0    0      0      0      0      0      0      0     0
## TRBV5-8           0      0    0      0      0      0      0      0      0     0
## TRBV6-4           0      0    0      0      0      0      0      0      0     0
## TRBV7-1           0      0    0      0      0      0      0      0      0     0
## TRBV5-3           0      0    0      0      0      0      0      0      0     0
## TRBV16            0      0    0      0      0      0      0      0      0     0
## TRBV7-4           0      0    0      0      0      0      0      0      0     0
##              TRAJ5 TRAJ16 TRAJ57 TRAJ41 TRAJ46 TRAJ19 TRAJ25 TRBJ2-4 TRBJ1-2
## TRAV14/DV4       2      1      1      0      0      0      0       0       0
## TRAV4            3      1      0      1      0      0      0       0       0
## TRAV39           0      0      1      1      0      0      0       0       0
## TRAV12-2         3      0      1      1      0      0      0       0       0
## TRAV8-4          2      1      0      0      0      0      0       0       0
## TRAV19           3      0      5      1      0      0      0       0       0
## TRAV13-1         2      2      2      4      0      0      0       0       0
## TRAV38-1         0      1      2      3      0      0      0       0       0
## TRAV17           2      2      2      0      0      0      0       0       0
## TRAV9-2          1      1      1      0      0      0      0       0       0
## TRAV12-1         4      1      0      1      0      0      0       0       0
## TRAV8-2          0      2      0      1      0      0      0       0       0
## TRAV21           1      1      2      2      0      0      0       0       0
## TRAV38-2/DV8     0      1      2      3      1      0      0       0       0
## TRAV16           0      2      2      0      0      0      0       0       0
## TRAV8-6          0      2      1      0      0      0      0       0       0
## TRAV23/DV6       0      3      1      1      0      0      0       0       0
## TRAV29/DV5       0      1      3      2      1      0      0       0       0
## TRAV8-3          2      1      2      0      0      0      0       0       0
## TRAV27           0      0      0      1      0      0      0       0       0
## TRAV35           2      0      1      0      0      0      0       0       0
## TRAV3            1      1      0      2      0      0      0       0       0
## TRAV8-1          1      1      0      0      0      0      0       0       0
## TRAV13-2         0      2      0      0      0      0      0       0       0
## TRAV26-2         0      1      2      0      0      0      0       0       0
## TRAV1-2          1      1      0      0      0      0      0       0       0
## TRAV41           0      0      1      1      0      0      0       0       0
## TRAV20           0      2      0      2      0      0      0       0       0
## TRAV12-3         0      0      0      1      1      0      0       0       0
## None             1      2      0      0      0      1      1       0       0
## TRAV10           0      0      1      0      0      0      0       0       0
## TRAV26-1         0      0      0      1      0      0      0       0       0
## TRAV2            0      0      0      0      0      0      0       0       0
## TRAV1-1          1      1      0      0      0      0      0       0       0
## TRAV6            1      0      0      0      0      0      0       0       0
## TRAV24           0      0      1      0      0      0      0       0       0
## TRAV25           0      0      0      0      0      0      0       0       0
## TRAV36/DV7       0      1      2      0      0      0      0       0       0
## TRAV5            3      0      0      0      0      0      0       0       0
## TRAV30           1      0      0      1      0      0      0       0       0
## TRAV22           0      1      0      0      0      0      0       0       0
## TRAV34           0      0      0      1      0      0      0       0       0
## TRAV40           0      0      0      1      0      0      0       0       0
## TRAV18           0      0      0      0      0      0      0       0       0
## TRBV11-1         0      0      0      0      0      0      0       5       1
## TRBV6-1          0      0      0      0      0      0      0       2      12
## TRBV20-1         0      0      0      0      0      0      0       5      19
## TRBV7-2          0      0      0      0      0      0      0       3      11
## TRBV4-1          0      0      0      0      0      0      0       1       3
## TRBV7-9          0      0      0      0      0      0      0       4      10
## TRBV7-8          0      0      0      0      0      0      0       1       4
## TRBV10-3         0      0      0      0      0      0      0       0       4
## TRBV28           0      0      0      0      0      0      0       4      23
## TRBV6-5          0      0      0      0      0      0      0       0      13
## TRBV6-2          0      0      0      0      0      0      0       0       9
## TRBV3-1          0      0      0      0      0      0      0       3       9
## TRBV4-3          0      0      0      0      0      0      0       0       7
## TRBV5-6          0      0      0      0      0      0      0       0       5
## TRBV27           0      0      0      0      0      0      0       0      14
## TRBV5-5          0      0      0      0      0      0      0       0       2
## TRBV10-1         0      0      0      0      0      0      0       0       1
## TRBV11-3         0      0      0      0      0      0      0       0       1
## TRBV7-3          0      0      0      0      0      0      0       0       5
## TRBV12-4         0      0      0      0      0      0      0       3      13
## TRBV5-1          0      0      0      0      0      0      0       1       6
## TRBV30           0      0      0      0      0      0      0       0       6
## TRBV11-2         0      0      0      0      0      0      0       2       6
## TRBV12-3         0      0      0      0      0      0      0       0      13
## TRBV10-2         0      0      0      0      0      0      0       0       4
## TRBV2            0      0      0      0      0      0      0       0       6
## TRBV15           0      0      0      0      0      0      0       0       5
## TRBV25-1         0      0      0      0      0      0      0       0       4
## TRBV21-1         0      0      0      0      0      0      0       0       5
## TRBV19           0      0      0      0      0      0      0       1      17
## TRBV7-7          0      0      0      0      0      0      0       1       0
## TRBV18           0      0      0      0      0      0      0       1      10
## TRBV13           0      0      0      0      0      0      0       1       1
## TRBV24-1         0      0      0      0      0      0      0       0       8
## TRBV7-6          0      0      0      0      0      0      0       1       2
## TRBV9            0      0      0      0      0      0      0       1       9
## TRBV5-4          0      0      0      0      0      0      0       0       5
## TRBV6-6          0      0      0      0      0      0      0       1       6
## TRBV4-2          0      0      0      0      0      0      0       1       5
## TRBV29-1         0      0      0      0      0      0      0       2       8
## TRBV12-5         0      0      0      0      0      0      0       0       1
## TRBV14           0      0      0      0      0      0      0       0       2
## TRBV23-1         0      0      0      0      0      0      0       1       1
## TRBV5-8          0      0      0      0      0      0      0       0       1
## TRBV6-4          0      0      0      0      0      0      0       0       0
## TRBV7-1          0      0      0      0      0      0      0       0       0
## TRBV5-3          0      0      0      0      0      0      0       0       0
## TRBV16           0      0      0      0      0      0      0       0       2
## TRBV7-4          0      0      0      0      0      0      0       0       0
##              TRBJ1-4 TRBJ1-5 TRBJ2-1 TRBJ1-1 TRBJ2-2 TRBJ2-5 TRBJ2-7 TRBJ2-3
## TRAV14/DV4         0       0       0       0       0       0       0       0
## TRAV4              0       0       0       0       0       0       0       0
## TRAV39             0       0       0       0       0       0       0       0
## TRAV12-2           0       0       0       0       0       0       0       0
## TRAV8-4            0       0       0       0       0       0       0       0
## TRAV19             0       0       0       0       0       0       0       0
## TRAV13-1           0       0       0       0       0       0       0       0
## TRAV38-1           0       0       0       0       0       0       0       0
## TRAV17             0       0       0       0       0       0       0       0
## TRAV9-2            0       0       0       0       0       0       0       0
## TRAV12-1           0       0       0       0       0       0       0       0
## TRAV8-2            0       0       0       0       0       0       0       0
## TRAV21             0       0       0       0       0       0       0       0
## TRAV38-2/DV8       0       0       0       0       0       0       0       0
## TRAV16             0       0       0       0       0       0       0       0
## TRAV8-6            0       0       0       0       0       0       0       0
## TRAV23/DV6         0       0       0       0       0       0       0       0
## TRAV29/DV5         0       0       0       0       0       0       0       0
## TRAV8-3            0       0       0       0       0       0       0       0
## TRAV27             0       0       0       0       0       0       0       0
## TRAV35             0       0       0       0       0       0       0       0
## TRAV3              0       0       0       0       0       0       0       0
## TRAV8-1            0       0       0       0       0       0       0       0
## TRAV13-2           0       0       0       0       0       0       0       0
## TRAV26-2           0       0       0       0       0       0       0       0
## TRAV1-2            0       0       0       0       0       0       0       0
## TRAV41             0       0       0       0       0       0       0       0
## TRAV20             0       0       0       0       0       0       0       0
## TRAV12-3           0       0       0       0       0       0       0       0
## None               0       0       0       0       0       0       0       0
## TRAV10             0       0       0       0       0       0       0       0
## TRAV26-1           0       0       0       0       0       0       0       0
## TRAV2              0       0       0       0       0       0       0       0
## TRAV1-1            0       0       0       0       0       0       0       0
## TRAV6              0       0       0       0       0       0       0       0
## TRAV24             0       0       0       0       0       0       0       0
## TRAV25             0       0       0       0       0       0       0       0
## TRAV36/DV7         0       0       0       0       0       0       0       0
## TRAV5              0       0       0       0       0       0       0       0
## TRAV30             0       0       0       0       0       0       0       0
## TRAV22             0       0       0       0       0       0       0       0
## TRAV34             0       0       0       0       0       0       0       0
## TRAV40             0       0       0       0       0       0       0       0
## TRAV18             0       0       0       0       0       0       0       0
## TRBV11-1           1       0       1       2       1       1       1       1
## TRBV6-1            7       9       9       7       3       5      11       5
## TRBV20-1          13      19      38      23      13      16      35      11
## TRBV7-2            1      28      24      17       7       6      19      18
## TRBV4-1            3       3       3       4       2       1       6       2
## TRBV7-9            6       7      11      15      14      11      26       9
## TRBV7-8            2       5       1       1       6      13       7       4
## TRBV10-3           1       9       6      11       4       9      16       8
## TRBV28             9      24      23      26       8      20      32      15
## TRBV6-5            5      14      14      11       8       7      26      12
## TRBV6-2            8       6      17       8       6      11      17       3
## TRBV3-1            2       7      19       9       8       7      15       8
## TRBV4-3            5       4      11       3       4       7      12      12
## TRBV5-6            3       9       5       6       1       5       9       4
## TRBV27             4      12      21      14      16       7      22       7
## TRBV5-5            0       4       4       5       0       1       2       2
## TRBV10-1           1       2       3       1       2       2       2       1
## TRBV11-3           0       0       5       0       3       0       1       0
## TRBV7-3            0       3       6       7       0       4       3       2
## TRBV12-4           2       8       9      12       4       3      10       8
## TRBV5-1            5       8      17      14      12       9      17       9
## TRBV30             1       7       4       7       1       8       4       1
## TRBV11-2           1       3      11       5       2       4       8       4
## TRBV12-3           2       6      10       9       3       5       9      10
## TRBV10-2           0       6       3       0       1       4       0       4
## TRBV2              4       8       9       4       5       5      14       4
## TRBV15             2       2       4       6       3       4       4       2
## TRBV25-1           1       1       1       1       2       1       4       5
## TRBV21-1           2       5       4       4       5       1       3       4
## TRBV19             5      32      22      22      12       7      10       7
## TRBV7-7            0       0       3       1       0       1       2       2
## TRBV18             4       7       8      14       6       7      14       6
## TRBV13             2       0       3       3       1       5       6       5
## TRBV24-1           0       8       7       5       1       5       3       2
## TRBV7-6            7       1       3       2       2       0       4       3
## TRBV9              2       5      15       8      16       2      10      10
## TRBV5-4            2       5      12       6       4       3       6       7
## TRBV6-6            5       6       7       6       2       1       5       6
## TRBV4-2            1       0       3       2       1       3       2       1
## TRBV29-1           6       3      11      13       3       5       9       6
## TRBV12-5           0       0       3       3       0       1       0       0
## TRBV14             0       1       6       7       2       6       4       3
## TRBV23-1           1       1       0       3       0       1       1       1
## TRBV5-8            0       1       1       2       1       0       1       1
## TRBV6-4            0       0       3       1       3       0       0       2
## TRBV7-1            0       0       0       0       0       0       0       1
## TRBV5-3            0       0       0       1       0       0       0       0
## TRBV16             0       0       0       0       0       0       0       0
## TRBV7-4            0       0       1       0       1       0       0       0
##              TRBJ1-6 TRBJ2-6 TRBJ1-3 TRBJ2-2P
## TRAV14/DV4         0       0       0        0
## TRAV4              0       0       0        0
## TRAV39             0       0       0        0
## TRAV12-2           0       0       0        0
## TRAV8-4            0       0       0        0
## TRAV19             0       0       0        0
## TRAV13-1           0       0       0        0
## TRAV38-1           0       0       0        0
## TRAV17             0       0       0        0
## TRAV9-2            0       0       0        0
## TRAV12-1           0       0       0        0
## TRAV8-2            0       0       0        0
## TRAV21             0       0       0        0
## TRAV38-2/DV8       0       0       0        0
## TRAV16             0       0       0        0
## TRAV8-6            0       0       0        0
## TRAV23/DV6         0       0       0        0
## TRAV29/DV5         0       0       0        0
## TRAV8-3            0       0       0        0
## TRAV27             0       0       0        0
## TRAV35             0       0       0        0
## TRAV3              0       0       0        0
## TRAV8-1            0       0       0        0
## TRAV13-2           0       0       0        0
## TRAV26-2           0       0       0        0
## TRAV1-2            0       0       0        0
## TRAV41             0       0       0        0
## TRAV20             0       0       0        0
## TRAV12-3           0       0       0        0
## None               0       0       0        0
## TRAV10             0       0       0        0
## TRAV26-1           0       0       0        0
## TRAV2              0       0       0        0
## TRAV1-1            0       0       0        0
## TRAV6              0       0       0        0
## TRAV24             0       0       0        0
## TRAV25             0       0       0        0
## TRAV36/DV7         0       0       0        0
## TRAV5              0       0       0        0
## TRAV30             0       0       0        0
## TRAV22             0       0       0        0
## TRAV34             0       0       0        0
## TRAV40             0       0       0        0
## TRAV18             0       0       0        0
## TRBV11-1           0       0       1        0
## TRBV6-1            3       2       1        0
## TRBV20-1           9       4       6        2
## TRBV7-2            4       3       3        0
## TRBV4-1            1       0       0        0
## TRBV7-9           10       1       2        1
## TRBV7-8            6       2       0        0
## TRBV10-3           5       0       0        1
## TRBV28             5       2      11        0
## TRBV6-5            7       1       6        0
## TRBV6-2            3       1       1        0
## TRBV3-1            3       1       3        0
## TRBV4-3            5       0       1        0
## TRBV5-6            4       1       2        0
## TRBV27             5       0       4        2
## TRBV5-5            2       1       1        0
## TRBV10-1           0       1       0        0
## TRBV11-3           1       0       3        0
## TRBV7-3            1       0       0        0
## TRBV12-4           3       0       2        0
## TRBV5-1            3       4       3        1
## TRBV30             4       2       1        0
## TRBV11-2           2       1       4        0
## TRBV12-3           2       2       3        0
## TRBV10-2           1       0       2        0
## TRBV2              4       0       4        0
## TRBV15             4       1       1        0
## TRBV25-1           0       0       0        0
## TRBV21-1           1       0       1        0
## TRBV19             6       3       3        0
## TRBV7-7            0       0       1        0
## TRBV18             5       2       4        0
## TRBV13             1       0       1        0
## TRBV24-1           0       1       0        0
## TRBV7-6            1       0       0        0
## TRBV9              6       4       8        0
## TRBV5-4            2       1       4        0
## TRBV6-6            1       3       2        0
## TRBV4-2            0       2       1        0
## TRBV29-1           0       1       0        0
## TRBV12-5           0       0       0        0
## TRBV14             1       0       0        0
## TRBV23-1           2       0       0        0
## TRBV5-8            0       0       0        0
## TRBV6-4            1       0       0        0
## TRBV7-1            0       0       0        0
## TRBV5-3            0       0       0        0
## TRBV16             1       0       0        0
## TRBV7-4            0       0       0        0

3.12 Assessing CDR3 sequence similarity

Finally, one can also look at any specific HC and LC CDR3 aminoacid patterns arising across the different clones. Using the VDJ_logoplot function the user can plot a logoplot of the CDR3 region od a certain length, specyfied by the length_cdr3 argument. For instance, the logoplot below corresponds to all those CDR3 aminoacid sequences of length 25

## Loading required package: ggseqlogo

4. Integrating repertoire and gene expression

The strength of the current 5’ sequencing protocols are that the gene expression (GEX) and repertoire (VDJ) libraries are extracted from the same sample, which can then be linked back to demonstrate that a given T cell has a certain gene expression pattern and also a certain T cell receptor sequence. The following functions are meant to integrate these two pieces of information.

4.1 Integrating transcriptional clusters to the VDJ objects

One thing we may ask is how similar the B or T cells in a given clonal family are on the transcriptional level. One way we can do this is to take advantage of the transcriptional clustering performed in the automate_GEX function and then supply this information to the repertoire information. This can either be done on the level of the clone (e.g. in the format of the output of VDJ_analyze) or on the level of the cell (e.g. in the format of the output of VDJ_per_clone). Below is the example of the clonal level. The output is the same as the VDJ_analyze output, except now there are columns corresponding to the majority transcriptome cluster (e.g. if the majority of cells within the clone are in cluster 1, then this column will have a 1). Next to this there is a column that tells you the cluster percentage for all cells in that clone. Finally there is the cell index in the GEX object so you can see which cells are found in the GEX object and can explicitly call them.

## [1] "1" "1" "1" "4" "8" "8"
## [1] "5.88235294117647, 29.4117647058824, 0, 0, 23.5294117647059, 17.6470588235294, 17.6470588235294, 5.88235294117647, 0, 0, 0, 0"
## [2] "23.0769230769231, 30.7692307692308, 0, 0, 15.3846153846154, 23.0769230769231, 7.69230769230769, 0, 0, 0, 0, 0"               
## [3] "0, 37.5, 0, 0, 37.5, 12.5, 12.5, 0, 0, 0, 0, 0"                                                                              
## [4] "22.2222222222222, 11.1111111111111, 0, 0, 33.3333333333333, 22.2222222222222, 11.1111111111111, 0, 0, 0, 0, 0"               
## [5] "0, 0, 0, 2.7027027027027, 2.7027027027027, 0, 0, 2.7027027027027, 91.8918918918919, 0, 0, 0"                                 
## [6] "0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0"
## [1] "103;228;517;906;1428;1615;1636;1725;2513;2717;2833;3570;5528;6137;6787;12867;12890"                                                                                                   
## [2] "693;1679;2245;2761;3763;10328;4699;5051;5580;6318;6519;6786;6820"                                                                                                                     
## [3] "1353;2940;3475;3699;3861;4194;4814;6111"                                                                                                                                              
## [4] "273;626;651;2333;3726;4848;5476;5798;6705"                                                                                                                                            
## [5] "300;469;684;949;1069;1142;1343;1618;1939;2044;2301;2448;2578;3079;3168;3209;3258;3389;3684;3710;4129;4159;4227;4385;4400;4466;4520;4526;4633;4726;4817;11423;5372;5643;5723;5781;5813"
## [6] "388;473;1095;1229;1276;2413;2419;2454;2665;3345;3608;3922;3961;4296;4476;5148;5215;5306;5409;5943;6029;6581;6630;6718"

And now on the cell level - the output has a similar structure to the VDJ_per_clone function output. Again we can print out the cluster membership and the cell indicies for the 5th clone from the first patient’s repertoire. If the cell is only found in the VDJ repertoire and not in the GEX repertoire, it will be a blank element. As seen by the 6th cell in this clonal family.

## [1] "9" "9" "9" "9" "9" ""
## [1] "300"  "469"  "684"  "949"  "1069" ""

4.2 Relating clonal expansion to transcriptional cluster membership

The VDJ_GEX_expansion function takes the previously integrated VDJ and GEX datasets and then plots the distribution of transcriptional cluster membership for the specified clones. In the following example, we plot the the top 20 clones and their distribution of cluster membership.

## Loading required package: scales

We see that some clones did not have any barcodes overlapping between the GEX and VDJ data sets for this particular patient, and therefore has no bar at that given clonal index on the X axis.

4.3 Visualizing clones on the 2 dimensional landscape

In the case we want to overlay clones on the tsne/umap space that we previously calculated using automate_GEX, this can be accomplished with the visualize_clones_GEX function. The following code will overlay the top 10 clones on the UMAP space calculated with the automate_GEX function. The group correspond to the clonal order - e.g. group 1 is the first clonal family in the integrated VDJ list. Here we can see that there are a few cells in the T cell cluster, suggesting that there were duplets during cell capture since in this experiment B and T cells were pooled in a single reaction.

4.4 Specific gene expression information on the clonal level

We previously integrated the GEX information into the format of the VDJ output. However, we may want to ask how the gene expression looks for certain clonotypes. E.g. how many of the cells in the top clone are expressing Fas/GL7 or germinal center cell markers. For this we need to integrate the VDJ information and barcodes into the GEX object. This can first be done by using the clonotype_GEX function and then by the GEX_heatmap function. To save space the output of this function can be assigned to the original automate_GEX output, as it will be another Seurat object. By setting b.or.t to “b”, a panel of pre-selected B cell genes will be displayed. One can also supply custom genes to test specific clonotypes. The group/column colors correspond to given clonal families.

## [1] "1 from 2 repertoires"
## ================================================================================[1] "2 from 2 repertoires"
## ================================================================================
## [1] "1 from 2 repertoires"
## ================================================================================[1] "2 from 2 repertoires"
## ================================================================================
## [1] "data.frame"
##            Unclassified MemoryCD8 EffectorCD8 clonotype_id
## clonotype1    0.8181818         0   0.1818182   clonotype1
## clonotype2    0.8333333         0   0.1666667   clonotype2
## clonotype3    1.0000000         0   0.0000000   clonotype3
## clonotype4    1.0000000         0   0.0000000   clonotype4
## clonotype5    0.8333333         0   0.1666667   clonotype5
##    clonotype_id     variable     value
## 1    clonotype1 Unclassified 0.8181818
## 2    clonotype2 Unclassified 0.8333333
## 3    clonotype3 Unclassified 1.0000000
## 4    clonotype4 Unclassified 1.0000000
## 5    clonotype5 Unclassified 0.8333333
## 6    clonotype1    MemoryCD8 0.0000000
## 7    clonotype2    MemoryCD8 0.0000000
## 8    clonotype3    MemoryCD8 0.0000000
## 9    clonotype4    MemoryCD8 0.0000000
## 10   clonotype5    MemoryCD8 0.0000000
## 11   clonotype1  EffectorCD8 0.1818182
## 12   clonotype2  EffectorCD8 0.1666667
## 13   clonotype3  EffectorCD8 0.0000000
## 14   clonotype4  EffectorCD8 0.0000000
## 15   clonotype5  EffectorCD8 0.1666667

4.5 Integrating clonal lineage information and transcriptional cluster information

We can also supply transcriptional cluster information into the clonal lineages organized earlier. This can be done using the VDJ_GEX_clonal_lineage_clusters function, which will place the transcriptional cluster information into the Name of the clonal_lineage object. Since we only integrated the first patient in the covid_integrating_cell_level object, we will just take the first patients clonal lineages. Now if we print the name of the first sequence in the first clonal lineage, we see that a cluster5 has been added to the end of the name. This indicates that this particular B cell was found in cluster5 from the original automate_GEX.

## [1] "clonotype3_1_IGHA1_AACCATGAGTGGAGTC-1_cluster5"

5 Version information

## R version 3.6.1 (2019-07-05)
## Platform: x86_64-apple-darwin15.6.0 (64-bit)
## Running under: macOS Mojave 10.14.6
## 
## Matrix products: default
## BLAS:   /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRblas.0.dylib
## LAPACK: /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRlapack.dylib
## 
## locale:
## [1] C/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
## 
## attached base packages:
## [1] stats4    parallel  stats     graphics  grDevices utils     datasets 
## [8] methods   base     
## 
## other attached packages:
##  [1] scales_1.0.0         ggseqlogo_0.1        circlize_0.4.12     
##  [4] pheatmap_1.0.12      phytools_0.6-99      maps_3.3.0          
##  [7] ape_5.3              stringdist_0.9.5.5   edgeR_3.28.1        
## [10] limma_3.42.2         org.Mm.eg.db_3.10.0  AnnotationDbi_1.48.0
## [13] Biobase_2.46.0       useful_1.2.6         do_1.6.0.0          
## [16] Platypus_2.0.4       stringr_1.4.0        msa_1.18.0          
## [19] Biostrings_2.54.0    XVector_0.26.0       IRanges_2.20.2      
## [22] S4Vectors_0.24.4     BiocGenerics_0.32.0  jsonlite_1.6.1      
## [25] dplyr_1.0.1          seqinr_4.2-5         igraph_1.2.4.1      
## [28] knitr_1.28           reshape2_1.4.3       Seurat_3.1.1        
## [31] ggplot2_3.2.1       
## 
## loaded via a namespace (and not attached):
##   [1] reticulate_1.13         R.utils_2.9.0           tidyselect_1.1.0       
##   [4] RSQLite_2.2.0           htmlwidgets_1.5.1       grid_3.6.1             
##   [7] combinat_0.0-8          Rtsne_0.15              devtools_2.3.0         
##  [10] munsell_0.5.0           animation_2.6           codetools_0.2-16       
##  [13] ica_1.0-2               future_1.15.0           withr_2.1.2            
##  [16] colorspace_1.4-1        rstudioapi_0.11         ROCR_1.0-7             
##  [19] gbRd_0.4-11             listenv_0.7.0           Rdpack_0.11-0          
##  [22] labeling_0.3            mnormt_1.5-5            bit64_0.9-7            
##  [25] rprojroot_1.3-2         coda_0.19-3             vctrs_0.3.2            
##  [28] generics_0.0.2          clusterGeneration_1.3.4 xfun_0.14              
##  [31] R6_2.4.1                rsvd_1.0.2              locfit_1.5-9.1         
##  [34] bitops_1.0-6            assertthat_0.2.1        SDMTools_1.1-221.1     
##  [37] gtable_0.3.0            npsurv_0.4-0            globals_0.12.4         
##  [40] processx_3.4.2          phangorn_2.5.5          rlang_0.4.7            
##  [43] scatterplot3d_0.3-41    GlobalOptions_0.1.2     splines_3.6.1          
##  [46] lazyeval_0.2.2          yaml_2.2.0              backports_1.1.5        
##  [49] tools_3.6.1             usethis_1.6.1           ellipsis_0.3.0         
##  [52] gplots_3.0.1.1          RColorBrewer_1.1-2      sessioninfo_1.1.1      
##  [55] ggridges_0.5.1          Rcpp_1.0.5              plyr_1.8.4             
##  [58] zlibbioc_1.32.0         purrr_0.3.3             ps_1.3.2               
##  [61] prettyunits_1.1.1       pbapply_1.4-2           cowplot_1.0.0          
##  [64] zoo_1.8-6               ggrepel_0.8.1           cluster_2.1.0          
##  [67] fs_1.3.2                magrittr_1.5            data.table_1.12.6      
##  [70] RSpectra_0.15-0         lmtest_0.9-37           RANN_2.6.1             
##  [73] fitdistrplus_1.0-14     pkgload_1.0.2           lsei_1.2-0             
##  [76] evaluate_0.14           shape_1.4.5             gridExtra_2.3          
##  [79] testthat_2.3.2          compiler_3.6.1          tibble_2.1.3           
##  [82] KernSmooth_2.23-15      crayon_1.3.4            R.oo_1.23.0            
##  [85] htmltools_0.4.0         tidyr_1.0.0             expm_0.999-4           
##  [88] RcppParallel_4.4.4      DBI_1.1.0               MASS_7.3-51.4          
##  [91] Matrix_1.2-18           ade4_1.7-13             cli_2.0.2              
##  [94] quadprog_1.5-8          R.methodsS3_1.7.1       gdata_2.18.0           
##  [97] metap_1.1               pkgconfig_2.0.3         numDeriv_2016.8-1.1    
## [100] plotly_4.9.1            xml2_1.2.2              roxygen2_7.1.0         
## [103] bibtex_0.4.2            callr_3.4.3             digest_0.6.25          
## [106] sctransform_0.2.0       RcppAnnoy_0.0.14        tsne_0.1-3             
## [109] rmarkdown_2.3           leiden_0.3.1            fastmatch_1.1-0        
## [112] uwot_0.1.4              gtools_3.8.1            lifecycle_0.2.0        
## [115] nlme_3.1-140            desc_1.2.0              viridisLite_0.3.0      
## [118] fansi_0.4.0             pillar_1.4.2            lattice_0.20-38        
## [121] httr_1.4.1              plotrix_3.7-7           pkgbuild_1.0.6         
## [124] survival_3.1-12         GO.db_3.10.0            glue_1.4.1             
## [127] remotes_2.1.1           png_0.1-7               bit_1.1-15.1           
## [130] stringi_1.5.3           blob_1.2.1              caTools_1.17.1.2       
## [133] memoise_1.1.0           irlba_2.3.3             future.apply_1.3.0